@epilot/automation-client 0.7.8 → 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/.gitignore +3 -0
- package/dist/client.js.map +1 -0
- package/dist/definition.js +1 -1
- package/dist/definition.js.map +1 -0
- package/dist/index.js.map +1 -0
- package/dist/openapi.d.ts +24 -0
- package/dist/openapi.json +12192 -0
- package/jest.config.ts +13 -0
- package/package-lock.json +18470 -0
- package/package.json +1 -1
- package/src/client.test.ts +19 -0
- package/src/client.ts +10 -0
- package/src/definition.ts +5 -0
- package/src/index.ts +3 -0
- package/src/openapi.d.ts +24 -0
- package/src/openapi.json +12192 -0
- package/tsconfig.json +23 -0
- package/webpack.config.js +28 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"definition.js","sourceRoot":"","sources":["../src/definition.ts"],"names":[],"mappings":";;;;;AAEA,gEAAwC;AAExC,kBAAe,sBAAsB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAAyB"}
|
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:
|
|
@@ -130,6 +134,10 @@ declare namespace Components {
|
|
|
130
134
|
status?: ExecutionStatus;
|
|
131
135
|
started_at?: string;
|
|
132
136
|
updated_at?: string;
|
|
137
|
+
/**
|
|
138
|
+
* Flag indicating whether the action was created automatically or manually
|
|
139
|
+
*/
|
|
140
|
+
created_automatically?: boolean;
|
|
133
141
|
outputs?: {
|
|
134
142
|
[name: string]: any;
|
|
135
143
|
};
|
|
@@ -241,6 +249,10 @@ declare namespace Components {
|
|
|
241
249
|
status?: ExecutionStatus;
|
|
242
250
|
started_at?: string;
|
|
243
251
|
updated_at?: string;
|
|
252
|
+
/**
|
|
253
|
+
* Flag indicating whether the action was created automatically or manually
|
|
254
|
+
*/
|
|
255
|
+
created_automatically?: boolean;
|
|
244
256
|
outputs?: {
|
|
245
257
|
[name: string]: any;
|
|
246
258
|
};
|
|
@@ -304,6 +316,10 @@ declare namespace Components {
|
|
|
304
316
|
status?: ExecutionStatus;
|
|
305
317
|
started_at?: string;
|
|
306
318
|
updated_at?: string;
|
|
319
|
+
/**
|
|
320
|
+
* Flag indicating whether the action was created automatically or manually
|
|
321
|
+
*/
|
|
322
|
+
created_automatically?: boolean;
|
|
307
323
|
}
|
|
308
324
|
export interface SendEmailActionConfig {
|
|
309
325
|
email_template_id?: string;
|
|
@@ -348,6 +364,10 @@ declare namespace Components {
|
|
|
348
364
|
status?: ExecutionStatus;
|
|
349
365
|
started_at?: string;
|
|
350
366
|
updated_at?: string;
|
|
367
|
+
/**
|
|
368
|
+
* Flag indicating whether the action was created automatically or manually
|
|
369
|
+
*/
|
|
370
|
+
created_automatically?: boolean;
|
|
351
371
|
outputs?: {
|
|
352
372
|
[name: string]: any;
|
|
353
373
|
};
|
|
@@ -398,6 +418,10 @@ declare namespace Components {
|
|
|
398
418
|
status?: ExecutionStatus;
|
|
399
419
|
started_at?: string;
|
|
400
420
|
updated_at?: string;
|
|
421
|
+
/**
|
|
422
|
+
* Flag indicating whether the action was created automatically or manually
|
|
423
|
+
*/
|
|
424
|
+
created_automatically?: boolean;
|
|
401
425
|
outputs?: {
|
|
402
426
|
workflow?: {
|
|
403
427
|
[name: string]: any;
|