@epilot/automation-client 2.14.6 → 2.14.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 +19 -1
- package/dist/openapi.json +39 -3
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -744,6 +744,16 @@ declare namespace Components {
|
|
|
744
744
|
* Whether the automation is enabled or not
|
|
745
745
|
*/
|
|
746
746
|
enabled?: boolean;
|
|
747
|
+
disable_details?: {
|
|
748
|
+
/**
|
|
749
|
+
* When the flow was disabled
|
|
750
|
+
*/
|
|
751
|
+
disabled_at: string; // date-time
|
|
752
|
+
/**
|
|
753
|
+
* Who disabled the flow (system or user)
|
|
754
|
+
*/
|
|
755
|
+
disabled_by: "system" | "user";
|
|
756
|
+
};
|
|
747
757
|
triggers: AnyTrigger[];
|
|
748
758
|
trigger_conditions?: /**
|
|
749
759
|
* example:
|
|
@@ -801,6 +811,10 @@ declare namespace Components {
|
|
|
801
811
|
* 2
|
|
802
812
|
*/
|
|
803
813
|
version?: number;
|
|
814
|
+
/**
|
|
815
|
+
* Source blueprint/manifest ID used when automation is created via blueprints.
|
|
816
|
+
*/
|
|
817
|
+
_manifest?: string /* uuid */[] | null;
|
|
804
818
|
}
|
|
805
819
|
/**
|
|
806
820
|
* example:
|
|
@@ -1508,7 +1522,7 @@ declare namespace Components {
|
|
|
1508
1522
|
*/
|
|
1509
1523
|
error?: string;
|
|
1510
1524
|
}
|
|
1511
|
-
export type ExecutionStatus = "pending" | "in_progress" | "paused" | "success" | "failed" | "cancelled" | "skipped" | "scheduled";
|
|
1525
|
+
export type ExecutionStatus = "pending" | "in_progress" | "paused" | "success" | "failed" | "cancelled" | "skipped" | "scheduled" | "hot";
|
|
1512
1526
|
export interface ExistsCondition {
|
|
1513
1527
|
exists?: boolean;
|
|
1514
1528
|
}
|
|
@@ -1983,6 +1997,10 @@ declare namespace Components {
|
|
|
1983
1997
|
*/
|
|
1984
1998
|
export type ResumeToken = string;
|
|
1985
1999
|
export interface RetryReq {
|
|
2000
|
+
/**
|
|
2001
|
+
* The condition id to retry when retry strategy is RETRY_ALL_PARENT_CONDITION_ACTIONS
|
|
2002
|
+
*/
|
|
2003
|
+
condition_id?: string;
|
|
1986
2004
|
retry_strategy?: /* different behaviors for retrying failed execution actions. */ RetryStrategy;
|
|
1987
2005
|
}
|
|
1988
2006
|
/**
|
package/dist/openapi.json
CHANGED
|
@@ -589,8 +589,29 @@
|
|
|
589
589
|
},
|
|
590
590
|
"enabled": {
|
|
591
591
|
"type": "boolean",
|
|
592
|
-
"description": "Whether the automation is enabled or not"
|
|
593
|
-
|
|
592
|
+
"description": "Whether the automation is enabled or not"
|
|
593
|
+
},
|
|
594
|
+
"disable_details": {
|
|
595
|
+
"type": "object",
|
|
596
|
+
"properties": {
|
|
597
|
+
"disabled_at": {
|
|
598
|
+
"type": "string",
|
|
599
|
+
"format": "date-time",
|
|
600
|
+
"description": "When the flow was disabled"
|
|
601
|
+
},
|
|
602
|
+
"disabled_by": {
|
|
603
|
+
"type": "string",
|
|
604
|
+
"enum": [
|
|
605
|
+
"system",
|
|
606
|
+
"user"
|
|
607
|
+
],
|
|
608
|
+
"description": "Who disabled the flow (system or user)"
|
|
609
|
+
}
|
|
610
|
+
},
|
|
611
|
+
"required": [
|
|
612
|
+
"disabled_at",
|
|
613
|
+
"disabled_by"
|
|
614
|
+
]
|
|
594
615
|
},
|
|
595
616
|
"triggers": {
|
|
596
617
|
"type": "array",
|
|
@@ -670,6 +691,16 @@
|
|
|
670
691
|
"type": "number",
|
|
671
692
|
"description": "Version of the flow",
|
|
672
693
|
"example": 2
|
|
694
|
+
},
|
|
695
|
+
"_manifest": {
|
|
696
|
+
"type": "array",
|
|
697
|
+
"description": "Source blueprint/manifest ID used when automation is created via blueprints.",
|
|
698
|
+
"items": {
|
|
699
|
+
"type": "string",
|
|
700
|
+
"format": "uuid",
|
|
701
|
+
"example": "123e4567-e89b-12d3-a456-426614174000"
|
|
702
|
+
},
|
|
703
|
+
"nullable": true
|
|
673
704
|
}
|
|
674
705
|
},
|
|
675
706
|
"required": [
|
|
@@ -2399,7 +2430,8 @@
|
|
|
2399
2430
|
"failed",
|
|
2400
2431
|
"cancelled",
|
|
2401
2432
|
"skipped",
|
|
2402
|
-
"scheduled"
|
|
2433
|
+
"scheduled",
|
|
2434
|
+
"hot"
|
|
2403
2435
|
]
|
|
2404
2436
|
},
|
|
2405
2437
|
"GetExecutionsResp": {
|
|
@@ -3234,6 +3266,10 @@
|
|
|
3234
3266
|
"RetryReq": {
|
|
3235
3267
|
"type": "object",
|
|
3236
3268
|
"properties": {
|
|
3269
|
+
"condition_id": {
|
|
3270
|
+
"type": "string",
|
|
3271
|
+
"description": "The condition id to retry when retry strategy is RETRY_ALL_PARENT_CONDITION_ACTIONS"
|
|
3272
|
+
},
|
|
3237
3273
|
"retry_strategy": {
|
|
3238
3274
|
"$ref": "#/components/schemas/RetryStrategy"
|
|
3239
3275
|
}
|