@rlvt/workflows-openapi-client 1.0.187 → 1.0.190
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/build/definitions.d.ts +65 -41
- package/build/definitions.js +1 -1
- package/package.json +1 -1
package/build/definitions.d.ts
CHANGED
|
@@ -67,42 +67,12 @@ export declare type SerializedWorkflowTemplate = {
|
|
|
67
67
|
};
|
|
68
68
|
};
|
|
69
69
|
export declare type WorkflowTemplate = SerializedWorkflowTemplate;
|
|
70
|
-
export declare type LegacyWorkflow = {
|
|
71
|
-
entrypoints: {
|
|
72
|
-
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
73
|
-
node: string;
|
|
74
|
-
}[];
|
|
75
|
-
nodes: {
|
|
76
|
-
[key: string]: {
|
|
77
|
-
name: string;
|
|
78
|
-
config: {
|
|
79
|
-
[key: string]: AnyValue;
|
|
80
|
-
};
|
|
81
|
-
dependencies: string[];
|
|
82
|
-
metadata: {
|
|
83
|
-
[key: string]: AnyValue;
|
|
84
|
-
};
|
|
85
|
-
} | {
|
|
86
|
-
name: string;
|
|
87
|
-
edges: {
|
|
88
|
-
node: string;
|
|
89
|
-
config: {
|
|
90
|
-
[key: string]: AnyValue;
|
|
91
|
-
};
|
|
92
|
-
}[];
|
|
93
|
-
dependencies: string[];
|
|
94
|
-
metadata: {
|
|
95
|
-
[key: string]: AnyValue;
|
|
96
|
-
};
|
|
97
|
-
};
|
|
98
|
-
};
|
|
99
|
-
};
|
|
100
70
|
export declare enum WorkflowVersionState {
|
|
101
71
|
DRAFT = "draft",
|
|
102
72
|
LIVE = "live",
|
|
103
73
|
INACTIVE = "inactive"
|
|
104
74
|
}
|
|
105
|
-
export declare type
|
|
75
|
+
export declare type Omit_WorkflowAnalyze_outputsForEntrypoint_or_entrypointsForNode_or_datasForEntrypoint_ = {
|
|
106
76
|
entrypointsByBranchesForDataNode: {
|
|
107
77
|
[key: string]: {
|
|
108
78
|
branch: string;
|
|
@@ -114,14 +84,43 @@ export declare type WorkflowAnalyze_Without_EntrypointsByBranchesForDataNode_Bra
|
|
|
114
84
|
defaultBranches: string[];
|
|
115
85
|
};
|
|
116
86
|
export declare type LegacyWorkflowVersion = {
|
|
117
|
-
definition:
|
|
87
|
+
definition: {
|
|
88
|
+
entrypoints: {
|
|
89
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
90
|
+
node: string;
|
|
91
|
+
}[];
|
|
92
|
+
nodes: {
|
|
93
|
+
[key: string]: {
|
|
94
|
+
name: string;
|
|
95
|
+
config: {
|
|
96
|
+
[key: string]: AnyValue;
|
|
97
|
+
};
|
|
98
|
+
dependencies: string[];
|
|
99
|
+
metadata: {
|
|
100
|
+
[key: string]: AnyValue;
|
|
101
|
+
};
|
|
102
|
+
} | {
|
|
103
|
+
name: string;
|
|
104
|
+
edges: {
|
|
105
|
+
node: string;
|
|
106
|
+
config: {
|
|
107
|
+
[key: string]: AnyValue;
|
|
108
|
+
};
|
|
109
|
+
}[];
|
|
110
|
+
dependencies: string[];
|
|
111
|
+
metadata: {
|
|
112
|
+
[key: string]: AnyValue;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
};
|
|
118
117
|
metadata?: {
|
|
119
118
|
[key: string]: AnyValue;
|
|
120
119
|
};
|
|
121
120
|
readonly createdAt: (Date) & readonlyP;
|
|
122
121
|
readonly updatedAt: (Date) & readonlyP;
|
|
123
122
|
readonly state: (WorkflowVersionState) & readonlyP;
|
|
124
|
-
readonly analyze: (
|
|
123
|
+
readonly analyze: (Omit_WorkflowAnalyze_outputsForEntrypoint_or_entrypointsForNode_or_datasForEntrypoint_ & {
|
|
125
124
|
outputsForEntrypoint: {
|
|
126
125
|
[key: string]: string[];
|
|
127
126
|
};
|
|
@@ -203,14 +202,43 @@ export declare type Partial_LegacyWorkflowDocument = {
|
|
|
203
202
|
readonly updatedAt?: (Date) & readonlyP;
|
|
204
203
|
};
|
|
205
204
|
export declare type Partial_LegacyWorkflowVersion = {
|
|
206
|
-
definition?:
|
|
205
|
+
definition?: {
|
|
206
|
+
entrypoints: {
|
|
207
|
+
type: "email" | "raw" | "mobile-push-image" | "mobile-app-image" | "web-image";
|
|
208
|
+
node: string;
|
|
209
|
+
}[];
|
|
210
|
+
nodes: {
|
|
211
|
+
[key: string]: {
|
|
212
|
+
name: string;
|
|
213
|
+
config: {
|
|
214
|
+
[key: string]: AnyValue;
|
|
215
|
+
};
|
|
216
|
+
dependencies: string[];
|
|
217
|
+
metadata: {
|
|
218
|
+
[key: string]: AnyValue;
|
|
219
|
+
};
|
|
220
|
+
} | {
|
|
221
|
+
name: string;
|
|
222
|
+
edges: {
|
|
223
|
+
node: string;
|
|
224
|
+
config: {
|
|
225
|
+
[key: string]: AnyValue;
|
|
226
|
+
};
|
|
227
|
+
}[];
|
|
228
|
+
dependencies: string[];
|
|
229
|
+
metadata: {
|
|
230
|
+
[key: string]: AnyValue;
|
|
231
|
+
};
|
|
232
|
+
};
|
|
233
|
+
};
|
|
234
|
+
};
|
|
207
235
|
metadata?: {
|
|
208
236
|
[key: string]: AnyValue;
|
|
209
237
|
};
|
|
210
238
|
readonly createdAt?: (Date) & readonlyP;
|
|
211
239
|
readonly updatedAt?: (Date) & readonlyP;
|
|
212
240
|
readonly state?: (WorkflowVersionState) & readonlyP;
|
|
213
|
-
readonly analyze?: (
|
|
241
|
+
readonly analyze?: (Omit_WorkflowAnalyze_outputsForEntrypoint_or_entrypointsForNode_or_datasForEntrypoint_ & {
|
|
214
242
|
outputsForEntrypoint: {
|
|
215
243
|
[key: string]: string[];
|
|
216
244
|
};
|
|
@@ -222,11 +250,7 @@ export declare type Partial_LegacyWorkflowVersion = {
|
|
|
222
250
|
};
|
|
223
251
|
}) & readonlyP;
|
|
224
252
|
};
|
|
225
|
-
export declare type
|
|
226
|
-
|
|
227
|
-
message: string;
|
|
228
|
-
payload?: {
|
|
229
|
-
[key: string]: AnyValue;
|
|
230
|
-
};
|
|
253
|
+
export declare type ErrorPayload = {
|
|
254
|
+
[key: string]: AnyValue;
|
|
231
255
|
};
|
|
232
256
|
export {};
|
package/build/definitions.js
CHANGED
|
@@ -16,4 +16,4 @@ var WorkflowStatus;
|
|
|
16
16
|
WorkflowStatus["PUBLISHED"] = "published";
|
|
17
17
|
WorkflowStatus["ERROR"] = "error";
|
|
18
18
|
})(WorkflowStatus = exports.WorkflowStatus || (exports.WorkflowStatus = {}));
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBb0ZwQixJQUFZLG9CQUlYO0FBSkQsV0FBWSxvQkFBb0I7SUFDNUIsdUNBQWUsQ0FBQTtJQUNmLHFDQUFhLENBQUE7SUFDYiw2Q0FBcUIsQ0FBQTtBQUN6QixDQUFDLEVBSlcsb0JBQW9CLEdBQXBCLDRCQUFvQixLQUFwQiw0QkFBb0IsUUFJL0I7QUErREQsSUFBWSxjQUtYO0FBTEQsV0FBWSxjQUFjO0lBQ3RCLGlDQUFlLENBQUE7SUFDZiwyQ0FBeUIsQ0FBQTtJQUN6Qix5Q0FBdUIsQ0FBQTtJQUN2QixpQ0FBZSxDQUFBO0FBQ25CLENBQUMsRUFMVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUt6QiJ9
|
package/package.json
CHANGED