@trayio/cdk-runtime 3.9.2-unstable → 3.11.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.
@@ -24,6 +24,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  const stream_1 = require("stream");
27
+ const O = __importStar(require("fp-ts/Option"));
27
28
  const T = __importStar(require("fp-ts/Task"));
28
29
  const TE = __importStar(require("fp-ts/TaskEither"));
29
30
  const querystring = __importStar(require("querystring"));
@@ -132,7 +133,7 @@ class TestControllerHttp {
132
133
  },
133
134
  ];
134
135
  }
135
- const testHttpController = new ExpressHttpController_1.ExpressHttpController(new TestControllerHttp(), '/tmp');
136
+ const testHttpController = new ExpressHttpController_1.ExpressHttpController(new TestControllerHttp(), '/tmp', O.none);
136
137
  describe('OperationExecutionGateway', () => {
137
138
  let server;
138
139
  beforeAll(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trayio/cdk-runtime",
3
- "version": "3.9.2-unstable",
3
+ "version": "3.11.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.9.2-unstable",
18
- "@trayio/cdk-dsl": "3.9.2-unstable",
19
- "@trayio/express": "3.9.2-unstable",
20
- "@trayio/winston": "3.9.2-unstable",
17
+ "@trayio/axios": "3.11.0",
18
+ "@trayio/cdk-dsl": "3.11.0",
19
+ "@trayio/express": "3.11.0",
20
+ "@trayio/winston": "3.11.0",
21
21
  "mime": "3.0.0",
22
22
  "uuid": "9.0.0"
23
23
  },