@activepieces/shared 0.10.61 → 0.10.62

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.
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@activepieces/shared",
3
- "version": "0.10.61",
3
+ "version": "0.10.62",
4
4
  "type": "commonjs",
5
5
  "dependencies": {
6
6
  "@sinclair/typebox": "0.26.8",
7
7
  "nanoid": "3.3.6",
8
8
  "semver": "7.5.4",
9
- "tslib": "2.6.2"
9
+ "tslib": "2.6.1"
10
10
  },
11
11
  "main": "./src/index.js"
12
12
  }
@@ -0,0 +1,4 @@
1
+ export declare enum CodeSandboxType {
2
+ NO_OP = "NO_OP",
3
+ V8_ISOLATE = "V8_ISOLATE"
4
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CodeSandboxType = void 0;
4
+ var CodeSandboxType;
5
+ (function (CodeSandboxType) {
6
+ CodeSandboxType["NO_OP"] = "NO_OP";
7
+ CodeSandboxType["V8_ISOLATE"] = "V8_ISOLATE";
8
+ })(CodeSandboxType || (exports.CodeSandboxType = CodeSandboxType = {}));
9
+ //# sourceMappingURL=code-sandbox-type.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"code-sandbox-type.js","sourceRoot":"","sources":["../../../../../../packages/shared/src/lib/engine/code-sandbox-type.ts"],"names":[],"mappings":";;;AAAA,IAAY,eAGX;AAHD,WAAY,eAAe;IACvB,kCAAe,CAAA;IACf,4CAAyB,CAAA;AAC7B,CAAC,EAHW,eAAe,+BAAf,eAAe,QAG1B"}
@@ -1,2 +1,2 @@
1
- export * from './code-executor-sandbox-type';
1
+ export * from './code-sandbox-type';
2
2
  export * from './engine-operation';
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./code-executor-sandbox-type"), exports);
4
+ tslib_1.__exportStar(require("./code-sandbox-type"), exports);
5
5
  tslib_1.__exportStar(require("./engine-operation"), exports);
6
6
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/shared/src/lib/engine/index.ts"],"names":[],"mappings":";;;AAAA,uEAA4C;AAC5C,6DAAkC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../packages/shared/src/lib/engine/index.ts"],"names":[],"mappings":";;;AAAA,8DAAmC;AACnC,6DAAkC"}
@@ -1,4 +0,0 @@
1
- export declare enum CodeExecutorSandboxType {
2
- NO_OP = "NO_OP",
3
- ISOLATE = "ISOLATE"
4
- }
@@ -1,9 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CodeExecutorSandboxType = void 0;
4
- var CodeExecutorSandboxType;
5
- (function (CodeExecutorSandboxType) {
6
- CodeExecutorSandboxType["NO_OP"] = "NO_OP";
7
- CodeExecutorSandboxType["ISOLATE"] = "ISOLATE";
8
- })(CodeExecutorSandboxType || (exports.CodeExecutorSandboxType = CodeExecutorSandboxType = {}));
9
- //# sourceMappingURL=code-executor-sandbox-type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"code-executor-sandbox-type.js","sourceRoot":"","sources":["../../../../../../packages/shared/src/lib/engine/code-executor-sandbox-type.ts"],"names":[],"mappings":";;;AAAA,IAAY,uBAGX;AAHD,WAAY,uBAAuB;IAC/B,0CAAe,CAAA;IACf,8CAAmB,CAAA;AACvB,CAAC,EAHW,uBAAuB,uCAAvB,uBAAuB,QAGlC"}