@epilot/automation-client 2.14.7 → 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 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
  }
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
- "default": true
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": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/automation-client",
3
- "version": "2.14.7",
3
+ "version": "2.14.8",
4
4
  "description": "Client library for epilot automation API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",