@epilot/automation-client 2.5.3 → 2.5.5

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
@@ -653,6 +653,10 @@ declare namespace Components {
653
653
  * 123
654
654
  */
655
655
  org_id?: string;
656
+ /**
657
+ * Determines if the flow is a system generated flow
658
+ */
659
+ system_flow?: boolean;
656
660
  }
657
661
  /**
658
662
  * example:
@@ -1082,7 +1086,7 @@ declare namespace Components {
1082
1086
  error_code: ErrorCode;
1083
1087
  error_reason: string;
1084
1088
  }
1085
- export type ExecutionStatus = "pending" | "in_progress" | "success" | "failed" | "cancelled";
1089
+ export type ExecutionStatus = "pending" | "in_progress" | "success" | "failed" | "cancelled" | "skipped";
1086
1090
  export interface ExistsCondition {
1087
1091
  exists?: boolean;
1088
1092
  }
package/dist/openapi.json CHANGED
@@ -494,6 +494,10 @@
494
494
  "example": "123",
495
495
  "description": "Organization the automation flow belongs to",
496
496
  "readOnly": true
497
+ },
498
+ "system_flow": {
499
+ "type": "boolean",
500
+ "description": "Determines if the flow is a system generated flow"
497
501
  }
498
502
  },
499
503
  "required": [
@@ -1913,7 +1917,8 @@
1913
1917
  "in_progress",
1914
1918
  "success",
1915
1919
  "failed",
1916
- "cancelled"
1920
+ "cancelled",
1921
+ "skipped"
1917
1922
  ]
1918
1923
  },
1919
1924
  "GetExecutionsResp": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/automation-client",
3
- "version": "2.5.3",
3
+ "version": "2.5.5",
4
4
  "description": "Client library for epilot automation API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",