@epilot/automation-client 1.8.6 → 1.8.8

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/openapi.d.ts CHANGED
@@ -351,6 +351,10 @@ declare namespace Components {
351
351
  execution_status?: ExecutionStatus;
352
352
  started_at?: string;
353
353
  updated_at?: string;
354
+ /**
355
+ * Whether to stop execution in a failed state if this action fails
356
+ */
357
+ allow_failure?: boolean;
354
358
  /**
355
359
  * Flag indicating whether the action was created automatically or manually
356
360
  */
@@ -488,6 +492,10 @@ declare namespace Components {
488
492
  execution_status?: ExecutionStatus;
489
493
  started_at?: string;
490
494
  updated_at?: string;
495
+ /**
496
+ * Whether to stop execution in a failed state if this action fails
497
+ */
498
+ allow_failure?: boolean;
491
499
  /**
492
500
  * Flag indicating whether the action was created automatically or manually
493
501
  */
@@ -521,6 +529,19 @@ declare namespace Components {
521
529
  * }
522
530
  */
523
531
  MappingAttributeV2 | MappingAttribute)[];
532
+ /**
533
+ * Relation attribute on the main entity where the target entity will be linked. Set to false to disable linkback
534
+ *
535
+ */
536
+ linkback_relation_attribute?: string;
537
+ /**
538
+ * Relation tags (labels) to include in main entity linkback relation attribute
539
+ */
540
+ linkback_relation_tags?: string[];
541
+ /**
542
+ * Unique key for target entity (see upsertEntity of Entity API)
543
+ */
544
+ target_unique?: string[];
524
545
  }
525
546
  export type Comparison = "equals" | "any_of" | "not_empty" | "is_empty";
526
547
  export interface CopyValueMapper {
@@ -574,6 +595,10 @@ declare namespace Components {
574
595
  execution_status?: ExecutionStatus;
575
596
  started_at?: string;
576
597
  updated_at?: string;
598
+ /**
599
+ * Whether to stop execution in a failed state if this action fails
600
+ */
601
+ allow_failure?: boolean;
577
602
  /**
578
603
  * Flag indicating whether the action was created automatically or manually
579
604
  */
@@ -641,6 +666,10 @@ declare namespace Components {
641
666
  execution_status?: ExecutionStatus;
642
667
  started_at?: string;
643
668
  updated_at?: string;
669
+ /**
670
+ * Whether to stop execution in a failed state if this action fails
671
+ */
672
+ allow_failure?: boolean;
644
673
  /**
645
674
  * Flag indicating whether the action was created automatically or manually
646
675
  */
@@ -836,6 +865,10 @@ declare namespace Components {
836
865
  execution_status?: ExecutionStatus;
837
866
  started_at?: string;
838
867
  updated_at?: string;
868
+ /**
869
+ * Whether to stop execution in a failed state if this action fails
870
+ */
871
+ allow_failure?: boolean;
839
872
  /**
840
873
  * Flag indicating whether the action was created automatically or manually
841
874
  */
@@ -1028,6 +1061,10 @@ declare namespace Components {
1028
1061
  execution_status?: ExecutionStatus;
1029
1062
  started_at?: string;
1030
1063
  updated_at?: string;
1064
+ /**
1065
+ * Whether to stop execution in a failed state if this action fails
1066
+ */
1067
+ allow_failure?: boolean;
1031
1068
  /**
1032
1069
  * Flag indicating whether the action was created automatically or manually
1033
1070
  */
@@ -1166,6 +1203,10 @@ declare namespace Components {
1166
1203
  execution_status?: ExecutionStatus;
1167
1204
  started_at?: string;
1168
1205
  updated_at?: string;
1206
+ /**
1207
+ * Whether to stop execution in a failed state if this action fails
1208
+ */
1209
+ allow_failure?: boolean;
1169
1210
  /**
1170
1211
  * Flag indicating whether the action was created automatically or manually
1171
1212
  */
@@ -1234,6 +1275,10 @@ declare namespace Components {
1234
1275
  execution_status?: ExecutionStatus;
1235
1276
  started_at?: string;
1236
1277
  updated_at?: string;
1278
+ /**
1279
+ * Whether to stop execution in a failed state if this action fails
1280
+ */
1281
+ allow_failure?: boolean;
1237
1282
  /**
1238
1283
  * Flag indicating whether the action was created automatically or manually
1239
1284
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/automation-client",
3
- "version": "1.8.6",
3
+ "version": "1.8.8",
4
4
  "description": "API Client for epilot automation API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/openapi.d.ts CHANGED
@@ -351,6 +351,10 @@ declare namespace Components {
351
351
  execution_status?: ExecutionStatus;
352
352
  started_at?: string;
353
353
  updated_at?: string;
354
+ /**
355
+ * Whether to stop execution in a failed state if this action fails
356
+ */
357
+ allow_failure?: boolean;
354
358
  /**
355
359
  * Flag indicating whether the action was created automatically or manually
356
360
  */
@@ -488,6 +492,10 @@ declare namespace Components {
488
492
  execution_status?: ExecutionStatus;
489
493
  started_at?: string;
490
494
  updated_at?: string;
495
+ /**
496
+ * Whether to stop execution in a failed state if this action fails
497
+ */
498
+ allow_failure?: boolean;
491
499
  /**
492
500
  * Flag indicating whether the action was created automatically or manually
493
501
  */
@@ -521,6 +529,19 @@ declare namespace Components {
521
529
  * }
522
530
  */
523
531
  MappingAttributeV2 | MappingAttribute)[];
532
+ /**
533
+ * Relation attribute on the main entity where the target entity will be linked. Set to false to disable linkback
534
+ *
535
+ */
536
+ linkback_relation_attribute?: string;
537
+ /**
538
+ * Relation tags (labels) to include in main entity linkback relation attribute
539
+ */
540
+ linkback_relation_tags?: string[];
541
+ /**
542
+ * Unique key for target entity (see upsertEntity of Entity API)
543
+ */
544
+ target_unique?: string[];
524
545
  }
525
546
  export type Comparison = "equals" | "any_of" | "not_empty" | "is_empty";
526
547
  export interface CopyValueMapper {
@@ -574,6 +595,10 @@ declare namespace Components {
574
595
  execution_status?: ExecutionStatus;
575
596
  started_at?: string;
576
597
  updated_at?: string;
598
+ /**
599
+ * Whether to stop execution in a failed state if this action fails
600
+ */
601
+ allow_failure?: boolean;
577
602
  /**
578
603
  * Flag indicating whether the action was created automatically or manually
579
604
  */
@@ -641,6 +666,10 @@ declare namespace Components {
641
666
  execution_status?: ExecutionStatus;
642
667
  started_at?: string;
643
668
  updated_at?: string;
669
+ /**
670
+ * Whether to stop execution in a failed state if this action fails
671
+ */
672
+ allow_failure?: boolean;
644
673
  /**
645
674
  * Flag indicating whether the action was created automatically or manually
646
675
  */
@@ -836,6 +865,10 @@ declare namespace Components {
836
865
  execution_status?: ExecutionStatus;
837
866
  started_at?: string;
838
867
  updated_at?: string;
868
+ /**
869
+ * Whether to stop execution in a failed state if this action fails
870
+ */
871
+ allow_failure?: boolean;
839
872
  /**
840
873
  * Flag indicating whether the action was created automatically or manually
841
874
  */
@@ -1028,6 +1061,10 @@ declare namespace Components {
1028
1061
  execution_status?: ExecutionStatus;
1029
1062
  started_at?: string;
1030
1063
  updated_at?: string;
1064
+ /**
1065
+ * Whether to stop execution in a failed state if this action fails
1066
+ */
1067
+ allow_failure?: boolean;
1031
1068
  /**
1032
1069
  * Flag indicating whether the action was created automatically or manually
1033
1070
  */
@@ -1166,6 +1203,10 @@ declare namespace Components {
1166
1203
  execution_status?: ExecutionStatus;
1167
1204
  started_at?: string;
1168
1205
  updated_at?: string;
1206
+ /**
1207
+ * Whether to stop execution in a failed state if this action fails
1208
+ */
1209
+ allow_failure?: boolean;
1169
1210
  /**
1170
1211
  * Flag indicating whether the action was created automatically or manually
1171
1212
  */
@@ -1234,6 +1275,10 @@ declare namespace Components {
1234
1275
  execution_status?: ExecutionStatus;
1235
1276
  started_at?: string;
1236
1277
  updated_at?: string;
1278
+ /**
1279
+ * Whether to stop execution in a failed state if this action fails
1280
+ */
1281
+ allow_failure?: boolean;
1237
1282
  /**
1238
1283
  * Flag indicating whether the action was created automatically or manually
1239
1284
  */