@trayio/cdk-runtime 3.2.0 → 3.3.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.
@@ -162,7 +162,10 @@ describe('OperationExecutionGateway', () => {
162
162
  .errorMessage(() => 'id must be bigger than zero'))
163
163
  .usingHttp((http) => http
164
164
  .get('http://localhost:3000/posts/:id')
165
- .handleRequest((ctx, input, request) => request.addPathParameter('id', input.id.toString()).withoutBody())
165
+ .handleRequest((ctx, input, request) => request
166
+ .withMethod(Http_1.HttpMethod.Get)
167
+ .addPathParameter('id', input.id.toString())
168
+ .withoutBody())
166
169
  .handleResponse((ctx, input, response) => response.parseWithBodyAsText((text) => OperationHandler_1.OperationHandlerResult.success({ textField: text })))));
167
170
  OperationHandlerTest_1.OperationHandlerTestSetup.configureHandlerTest(getProductOperationAsText, (handlerTest) => handlerTest
168
171
  .usingHandlerContext('test')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trayio/cdk-runtime",
3
- "version": "3.2.0",
3
+ "version": "3.3.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": "3.2.0",
18
- "@trayio/cdk-dsl": "3.2.0",
19
- "@trayio/express": "3.2.0",
20
- "@trayio/winston": "3.2.0",
17
+ "@trayio/axios": "3.3.0",
18
+ "@trayio/cdk-dsl": "3.3.0",
19
+ "@trayio/express": "3.3.0",
20
+ "@trayio/winston": "3.3.0",
21
21
  "mime": "3.0.0",
22
22
  "uuid": "9.0.0"
23
23
  },