@activepieces/shared 0.10.57 → 0.10.58

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.57",
3
+ "version": "0.10.58",
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": "1.14.1"
10
10
  },
11
11
  "main": "./src/index.js"
12
12
  }
@@ -20,7 +20,7 @@ export declare enum TriggerHookType {
20
20
  RUN = "RUN",
21
21
  TEST = "TEST"
22
22
  }
23
- export type EngineOperation = ExcuteStepOperation | ExecuteFlowOperation | ExecutePropsOptions | ExecuteTriggerOperation<TriggerHookType> | ExecuteExtractPieceMetadata | ExecuteValidateAuthOperation;
23
+ export type EngineOperation = ExecuteStepOperation | ExecuteFlowOperation | ExecutePropsOptions | ExecuteTriggerOperation<TriggerHookType> | ExecuteExtractPieceMetadata | ExecuteValidateAuthOperation;
24
24
  export type BaseEngineOperation = {
25
25
  projectId: ProjectId;
26
26
  workerToken: string;
@@ -33,7 +33,7 @@ export type ExecuteValidateAuthOperation = BaseEngineOperation & {
33
33
  export type ExecuteExtractPieceMetadata = PiecePackage & {
34
34
  projectId: string;
35
35
  };
36
- export type ExcuteStepOperation = BaseEngineOperation & {
36
+ export type ExecuteStepOperation = BaseEngineOperation & {
37
37
  stepName: string;
38
38
  flowVersion: FlowVersion;
39
39
  };