@epilot/automation-client 0.7.9 → 0.8.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.
- package/dist/definition.js +1 -1
- package/dist/openapi.d.ts +24 -6
- package/dist/openapi.json +360 -40
- package/package-lock.json +2 -2
- package/package.json +1 -1
- package/src/openapi.d.ts +24 -6
- package/src/openapi.json +360 -40
package/dist/openapi.d.ts
CHANGED
|
@@ -42,6 +42,10 @@ declare namespace Components {
|
|
|
42
42
|
status?: ExecutionStatus;
|
|
43
43
|
started_at?: string;
|
|
44
44
|
updated_at?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Flag indicating whether the action was created automatically or manually
|
|
47
|
+
*/
|
|
48
|
+
created_automatically?: boolean;
|
|
45
49
|
}
|
|
46
50
|
/**
|
|
47
51
|
* example:
|
|
@@ -94,12 +98,6 @@ declare namespace Components {
|
|
|
94
98
|
* submission
|
|
95
99
|
*/
|
|
96
100
|
entity_schema?: string;
|
|
97
|
-
/**
|
|
98
|
-
* Flag indicating whether the flow was created automatically
|
|
99
|
-
* example:
|
|
100
|
-
* true
|
|
101
|
-
*/
|
|
102
|
-
created_automatically?: boolean;
|
|
103
101
|
actions?: AnyAction[];
|
|
104
102
|
created_at?: string; // date-time
|
|
105
103
|
updated_at?: string; // date-time
|
|
@@ -136,6 +134,10 @@ declare namespace Components {
|
|
|
136
134
|
status?: ExecutionStatus;
|
|
137
135
|
started_at?: string;
|
|
138
136
|
updated_at?: string;
|
|
137
|
+
/**
|
|
138
|
+
* Flag indicating whether the action was created automatically or manually
|
|
139
|
+
*/
|
|
140
|
+
created_automatically?: boolean;
|
|
139
141
|
outputs?: {
|
|
140
142
|
[name: string]: any;
|
|
141
143
|
};
|
|
@@ -247,6 +249,10 @@ declare namespace Components {
|
|
|
247
249
|
status?: ExecutionStatus;
|
|
248
250
|
started_at?: string;
|
|
249
251
|
updated_at?: string;
|
|
252
|
+
/**
|
|
253
|
+
* Flag indicating whether the action was created automatically or manually
|
|
254
|
+
*/
|
|
255
|
+
created_automatically?: boolean;
|
|
250
256
|
outputs?: {
|
|
251
257
|
[name: string]: any;
|
|
252
258
|
};
|
|
@@ -310,6 +316,10 @@ declare namespace Components {
|
|
|
310
316
|
status?: ExecutionStatus;
|
|
311
317
|
started_at?: string;
|
|
312
318
|
updated_at?: string;
|
|
319
|
+
/**
|
|
320
|
+
* Flag indicating whether the action was created automatically or manually
|
|
321
|
+
*/
|
|
322
|
+
created_automatically?: boolean;
|
|
313
323
|
}
|
|
314
324
|
export interface SendEmailActionConfig {
|
|
315
325
|
email_template_id?: string;
|
|
@@ -354,6 +364,10 @@ declare namespace Components {
|
|
|
354
364
|
status?: ExecutionStatus;
|
|
355
365
|
started_at?: string;
|
|
356
366
|
updated_at?: string;
|
|
367
|
+
/**
|
|
368
|
+
* Flag indicating whether the action was created automatically or manually
|
|
369
|
+
*/
|
|
370
|
+
created_automatically?: boolean;
|
|
357
371
|
outputs?: {
|
|
358
372
|
[name: string]: any;
|
|
359
373
|
};
|
|
@@ -404,6 +418,10 @@ declare namespace Components {
|
|
|
404
418
|
status?: ExecutionStatus;
|
|
405
419
|
started_at?: string;
|
|
406
420
|
updated_at?: string;
|
|
421
|
+
/**
|
|
422
|
+
* Flag indicating whether the action was created automatically or manually
|
|
423
|
+
*/
|
|
424
|
+
created_automatically?: boolean;
|
|
407
425
|
outputs?: {
|
|
408
426
|
workflow?: {
|
|
409
427
|
[name: string]: any;
|