@trayio/cdk-runtime 5.6.0 → 5.7.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.
|
@@ -453,7 +453,7 @@ describe('OperationExecutionGateway', () => {
|
|
|
453
453
|
.finallyDoNothing())
|
|
454
454
|
.nothingAfterAll());
|
|
455
455
|
});
|
|
456
|
-
describe('post multipart (with file)', () => {
|
|
456
|
+
describe.skip('post multipart (with file)', () => {
|
|
457
457
|
const multipartOperation = OperationHandlerSetup_1.OperationHandlerSetup.configureHandler((handler) => handler.usingHttp((http) => http
|
|
458
458
|
.post('http://localhost:3000/multipart-upload')
|
|
459
459
|
.handleRequest((_ctx, _input, request) => request.withBodyAsMultipart({
|
|
@@ -463,7 +463,7 @@ describe('OperationExecutionGateway', () => {
|
|
|
463
463
|
files: {
|
|
464
464
|
'test-image': {
|
|
465
465
|
name: 'testImage.png',
|
|
466
|
-
url: 'https://
|
|
466
|
+
url: 'https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/Wikipedia-logo-transparent.png/526px-Wikipedia-logo-transparent.png',
|
|
467
467
|
mime_type: 'image/png',
|
|
468
468
|
expires: 0,
|
|
469
469
|
},
|
|
@@ -514,12 +514,12 @@ describe('OperationExecutionGateway', () => {
|
|
|
514
514
|
.finallyDoNothing())
|
|
515
515
|
.nothingAfterAll());
|
|
516
516
|
});
|
|
517
|
-
describe('upload an image', () => {
|
|
517
|
+
describe.skip('upload an image', () => {
|
|
518
518
|
const uploadImageOperation = OperationHandlerSetup_1.OperationHandlerSetup.configureHandler((handler) => handler.usingHttp((http) => http
|
|
519
519
|
.post('http://localhost:3000/image-upload')
|
|
520
520
|
.handleRequest((ctx, input, request) => request.withBodyAsFile({
|
|
521
521
|
name: 'test-image',
|
|
522
|
-
url: 'https://
|
|
522
|
+
url: 'https://upload.wikimedia.org/wikipedia/en/8/80/Wikipedia-logo-v2.svg',
|
|
523
523
|
mime_type: 'image/svg+xml',
|
|
524
524
|
expires: 0,
|
|
525
525
|
}))
|
|
@@ -538,7 +538,7 @@ describe('OperationExecutionGateway', () => {
|
|
|
538
538
|
.finallyDoNothing())
|
|
539
539
|
.nothingAfterAll());
|
|
540
540
|
});
|
|
541
|
-
describe('download a file', () => {
|
|
541
|
+
describe.skip('download a file', () => {
|
|
542
542
|
const downloadFileOperation = OperationHandlerSetup_1.OperationHandlerSetup.configureHandler((handler) => handler.usingHttp((http) => http
|
|
543
543
|
.get('https://upload.wikimedia.org/wikipedia/en/8/80/Wikipedia-logo-v2.svg')
|
|
544
544
|
.handleRequest((ctx, input, request) => request.withoutBody())
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trayio/cdk-runtime",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.7.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": "5.
|
|
18
|
-
"@trayio/cdk-dsl": "5.
|
|
19
|
-
"@trayio/express": "5.
|
|
20
|
-
"@trayio/winston": "5.
|
|
17
|
+
"@trayio/axios": "5.7.0",
|
|
18
|
+
"@trayio/cdk-dsl": "5.7.0",
|
|
19
|
+
"@trayio/express": "5.7.0",
|
|
20
|
+
"@trayio/winston": "5.7.0",
|
|
21
21
|
"mime": "3.0.0",
|
|
22
22
|
"uuid": "9.0.0"
|
|
23
23
|
},
|