Skip to content

Commit

Permalink
chore: onboard plugin framework
Browse files Browse the repository at this point in the history
  • Loading branch information
utsabc committed Jun 19, 2024
1 parent abeb9e7 commit 20fb5de
Show file tree
Hide file tree
Showing 57 changed files with 4,644 additions and 4,204 deletions.
5,852 changes: 2,021 additions & 3,831 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@
"@koa/router": "^12.0.0",
"@ndhoule/extend": "^2.0.0",
"@pyroscope/nodejs": "^0.2.9",
"@rudderstack/integrations-lib": "^0.2.10",
"@rudderstack/integrations-lib": "^0.2.11",
"@rudderstack/integrations-store": "^1.0.0",
"@rudderstack/json-template-engine": "^0.13.2",
"@rudderstack/workflow-engine": "^0.8.2",
"@shopify/jest-koa-mocks": "^5.1.1",
Expand Down
1 change: 1 addition & 0 deletions src/controllers/util/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ const destination: Destination = {
Enabled: true,
WorkspaceID: 'wspId',
Transformations: [],
IsProcessorEnabled: true,
};

const message = {
Expand Down
4 changes: 2 additions & 2 deletions src/helpers/__tests__/serviceSelector.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ describe('ServiceSelector Service', () => {
},
},
},
] as ProcessorTransformationRequest[];
] as any as ProcessorTransformationRequest[];
expect(ServiceSelector['getPrimaryDestinationService'](events)).toBeInstanceOf(
CDKV1DestinationService,
);
Expand All @@ -83,7 +83,7 @@ describe('ServiceSelector Service', () => {
},
},
},
] as ProcessorTransformationRequest[];
] as any as ProcessorTransformationRequest[];
expect(ServiceSelector['getPrimaryDestinationService'](events)).toBeInstanceOf(
CDKV2DestinationService,
);
Expand Down
Loading

0 comments on commit 20fb5de

Please sign in to comment.