@trayio/cdk-runtime 4.93.0 → 4.95.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.
@@ -594,9 +594,8 @@ describe('OperationExecutionGateway', () => {
594
594
  .givenNothing()
595
595
  .when(() => ({ id: 2 }))
596
596
  .then(({ output }) => {
597
- const outputValue = OperationHandler_1.OperationHandlerResult.failure(output);
598
- if (outputValue.isFailure && outputValue.error.isFailure) {
599
- expect(outputValue.error.error.message).toEqual('Error message');
597
+ if (output.isFailure) {
598
+ expect(output.error.message).toEqual('Error message');
600
599
  }
601
600
  else {
602
601
  fail('Expected output to be a failure');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trayio/cdk-runtime",
3
- "version": "4.93.0",
3
+ "version": "4.95.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.93.0",
18
- "@trayio/cdk-dsl": "4.93.0",
19
- "@trayio/express": "4.93.0",
20
- "@trayio/winston": "4.93.0",
17
+ "@trayio/axios": "4.95.0",
18
+ "@trayio/cdk-dsl": "4.95.0",
19
+ "@trayio/express": "4.95.0",
20
+ "@trayio/winston": "4.95.0",
21
21
  "mime": "3.0.0",
22
22
  "uuid": "9.0.0"
23
23
  },