@trayio/cdk-runtime 4.98.0 → 4.103.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -519,7 +519,7 @@ describe('OperationExecutionGateway', () => {
519
519
  .post('http://localhost:3000/image-upload')
520
520
  .handleRequest((ctx, input, request) => request.withBodyAsFile({
521
521
  name: 'test-image',
522
- url: 'https://tray.io/favicon.ico',
522
+ url: 'https://upload.wikimedia.org/wikipedia/en/8/80/Wikipedia-logo-v2.svg',
523
523
  mime_type: 'image/png',
524
524
  expires: 0,
525
525
  }))
@@ -540,7 +540,7 @@ describe('OperationExecutionGateway', () => {
540
540
  });
541
541
  describe('download a file', () => {
542
542
  const downloadFileOperation = OperationHandlerSetup_1.OperationHandlerSetup.configureHandler((handler) => handler.usingHttp((http) => http
543
- .get('https://tray.io/favicon.ico')
543
+ .get('https://upload.wikimedia.org/wikipedia/en/8/80/Wikipedia-logo-v2.svg')
544
544
  .handleRequest((ctx, input, request) => request.withoutBody())
545
545
  .handleResponse((ctx, input, response) => response.parseWithBodyAsFile((file) => OperationHandler_1.OperationHandlerResult.success(file)))));
546
546
  OperationHandlerTest_1.OperationHandlerTestSetup.configureHandlerTest(downloadFileOperation, (handlerTest) => handlerTest
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trayio/cdk-runtime",
3
- "version": "4.98.0",
3
+ "version": "4.103.0",
4
4
  "description": "A Runtime that executes connector operations defined using the CDK DSL",
5
5
  "exports": {
6
6
  "./*": "./dist/*.js"
@@ -14,10 +14,10 @@
14
14
  "node": ">=18.x"
15
15
  },
16
16
  "dependencies": {
17
- "@trayio/axios": "4.98.0",
18
- "@trayio/cdk-dsl": "4.98.0",
19
- "@trayio/express": "4.98.0",
20
- "@trayio/winston": "4.98.0",
17
+ "@trayio/axios": "4.103.0",
18
+ "@trayio/cdk-dsl": "4.103.0",
19
+ "@trayio/express": "4.103.0",
20
+ "@trayio/winston": "4.103.0",
21
21
  "mime": "3.0.0",
22
22
  "uuid": "9.0.0"
23
23
  },