@epilot/automation-client 2.5.2 → 2.5.4

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
@@ -1082,7 +1082,7 @@ declare namespace Components {
1082
1082
  error_code: ErrorCode;
1083
1083
  error_reason: string;
1084
1084
  }
1085
- export type ExecutionStatus = "pending" | "in_progress" | "success" | "failed" | "cancelled";
1085
+ export type ExecutionStatus = "pending" | "in_progress" | "success" | "failed" | "cancelled" | "skipped";
1086
1086
  export interface ExistsCondition {
1087
1087
  exists?: boolean;
1088
1088
  }
@@ -1545,6 +1545,10 @@ declare namespace Components {
1545
1545
  export interface SendEmailConfig {
1546
1546
  email_template_id?: string;
1547
1547
  language_code?: "de" | "en";
1548
+ /**
1549
+ * Send an email exclusively to the portal user if they are registered on the portal.
1550
+ */
1551
+ notify_portal_user_only?: boolean;
1548
1552
  /**
1549
1553
  * Include extra file attachments in sent email.
1550
1554
  *
package/dist/openapi.json CHANGED
@@ -1327,6 +1327,11 @@
1327
1327
  "en"
1328
1328
  ]
1329
1329
  },
1330
+ "notify_portal_user_only": {
1331
+ "type": "boolean",
1332
+ "description": "Send an email exclusively to the portal user if they are registered on the portal.",
1333
+ "default": false
1334
+ },
1330
1335
  "attachments": {
1331
1336
  "type": "array",
1332
1337
  "description": "Include extra file attachments in sent email.\n\nAttachments in email template will be sent regardless of this configuration.\n",
@@ -1908,7 +1913,8 @@
1908
1913
  "in_progress",
1909
1914
  "success",
1910
1915
  "failed",
1911
- "cancelled"
1916
+ "cancelled",
1917
+ "skipped"
1912
1918
  ]
1913
1919
  },
1914
1920
  "GetExecutionsResp": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/automation-client",
3
- "version": "2.5.2",
3
+ "version": "2.5.4",
4
4
  "description": "Client library for epilot automation API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",