@activepieces/shared 0.3.37 → 0.3.38
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
|
@@ -40,14 +40,13 @@ export declare enum PauseType {
|
|
|
40
40
|
declare type BasePauseMetadata<T extends PauseType> = {
|
|
41
41
|
type: T;
|
|
42
42
|
resumeStepMetadata: ResumeStepMetadata;
|
|
43
|
-
executionState: ExecutionState;
|
|
44
43
|
};
|
|
45
44
|
export declare type DelayPauseMetadata = BasePauseMetadata<PauseType.DELAY> & {
|
|
46
45
|
resumeDateTime: string;
|
|
47
46
|
};
|
|
48
47
|
export declare type PauseMetadata = DelayPauseMetadata;
|
|
49
48
|
export declare type PauseExecutionOutput = BaseExecutionOutput<ExecutionOutputStatus.PAUSED> & {
|
|
50
|
-
pauseMetadata:
|
|
49
|
+
pauseMetadata: PauseMetadata;
|
|
51
50
|
};
|
|
52
51
|
export declare type FinishExecutionOutput = BaseExecutionOutput<Exclude<ExecutionOutputStatus, ExecutionOutputStatus.PAUSED | ExecutionOutputStatus.STOPPED>>;
|
|
53
52
|
export declare type StopExecutionOutput = BaseExecutionOutput<ExecutionOutputStatus.STOPPED> & {
|
|
@@ -15,7 +15,7 @@ export declare type StepOutput<T extends ActionType = ActionType, O = any> = {
|
|
|
15
15
|
duration?: number;
|
|
16
16
|
errorMessage?: unknown;
|
|
17
17
|
standardOutput?: unknown;
|
|
18
|
-
pauseMetadata?:
|
|
18
|
+
pauseMetadata?: PauseMetadata;
|
|
19
19
|
stopResponse?: unknown;
|
|
20
20
|
};
|
|
21
21
|
declare type LoopOnItemsOutput = {
|
|
@@ -17,7 +17,7 @@ export declare type FlowRun = BaseModel<FlowRunId> & {
|
|
|
17
17
|
startTime: string;
|
|
18
18
|
finishTime: string;
|
|
19
19
|
environment: RunEnvironment;
|
|
20
|
-
pauseMetadata?: PauseMetadata;
|
|
20
|
+
pauseMetadata?: PauseMetadata | null;
|
|
21
21
|
executionOutput?: ExecutionOutput;
|
|
22
22
|
};
|
|
23
23
|
export declare enum RunEnvironment {
|