@epilot/automation-client 2.8.5 → 2.8.6

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
@@ -344,7 +344,7 @@ declare namespace Components {
344
344
  */
345
345
  EntityOperationTrigger | ActivityTrigger | EntityManualTrigger | ReceivedEmailTrigger;
346
346
  export interface AnythingButCondition {
347
- "anything-but"?: string[];
347
+ "anything-but"?: (string | number)[];
348
348
  }
349
349
  export interface ApiCallerContext {
350
350
  [name: string]: any;
@@ -1029,11 +1029,11 @@ declare namespace Components {
1029
1029
  /**
1030
1030
  * The action id from which the edge starts
1031
1031
  */
1032
- start?: string;
1032
+ start: string;
1033
1033
  /**
1034
1034
  * The action id to which the edge ends
1035
1035
  */
1036
- end?: string;
1036
+ end: string;
1037
1037
  /**
1038
1038
  * The condition output of the edge (binary)
1039
1039
  */
@@ -1254,6 +1254,20 @@ declare namespace Components {
1254
1254
  type?: (string | EqualsIgnoreCaseCondition | AnythingButCondition | ExistsCondition | PrefixCondition | SuffixCondition | WildcardCondition)[];
1255
1255
  };
1256
1256
  };
1257
+ ecp_config?: {
1258
+ /**
1259
+ * example:
1260
+ * END_CUSTOMER_PORTAL
1261
+ */
1262
+ origin?: string;
1263
+ file_config?: {
1264
+ /**
1265
+ * example:
1266
+ * true
1267
+ */
1268
+ shared_with_end_customer?: boolean;
1269
+ };
1270
+ };
1257
1271
  };
1258
1272
  }
1259
1273
  export interface EqualsIgnoreCaseCondition {
@@ -1278,7 +1292,7 @@ declare namespace Components {
1278
1292
  exists?: boolean;
1279
1293
  }
1280
1294
  export type FilterConditionOnEvent = OrCondition | {
1281
- [name: string]: (string | EqualsIgnoreCaseCondition | AnythingButCondition | NumericCondition | ExistsCondition | PrefixCondition | SuffixCondition | WildcardCondition)[];
1295
+ [name: string]: (string | number | boolean | EqualsIgnoreCaseCondition | AnythingButCondition | NumericCondition | ExistsCondition | PrefixCondition | SuffixCondition | WildcardCondition)[];
1282
1296
  };
1283
1297
  export interface FrontendSubmitTrigger {
1284
1298
  type: "frontend_submission";
package/dist/openapi.json CHANGED
@@ -540,8 +540,8 @@
540
540
  },
541
541
  "required": [
542
542
  "id",
543
- "source",
544
- "target"
543
+ "start",
544
+ "end"
545
545
  ],
546
546
  "example": {
547
547
  "id": "9ec3711b-db63-449c-b894-54d5bb622a8f",
@@ -2343,6 +2343,24 @@
2343
2343
  }
2344
2344
  }
2345
2345
  }
2346
+ },
2347
+ "ecp_config": {
2348
+ "type": "object",
2349
+ "properties": {
2350
+ "origin": {
2351
+ "type": "string",
2352
+ "example": "END_CUSTOMER_PORTAL"
2353
+ },
2354
+ "file_config": {
2355
+ "type": "object",
2356
+ "properties": {
2357
+ "shared_with_end_customer": {
2358
+ "type": "boolean",
2359
+ "example": true
2360
+ }
2361
+ }
2362
+ }
2363
+ }
2346
2364
  }
2347
2365
  }
2348
2366
  }
@@ -2495,6 +2513,12 @@
2495
2513
  {
2496
2514
  "type": "string"
2497
2515
  },
2516
+ {
2517
+ "type": "number"
2518
+ },
2519
+ {
2520
+ "type": "boolean"
2521
+ },
2498
2522
  {
2499
2523
  "$ref": "#/components/schemas/EqualsIgnoreCaseCondition"
2500
2524
  },
@@ -2536,7 +2560,14 @@
2536
2560
  "anything-but": {
2537
2561
  "type": "array",
2538
2562
  "items": {
2539
- "type": "string"
2563
+ "oneOf": [
2564
+ {
2565
+ "type": "string"
2566
+ },
2567
+ {
2568
+ "type": "integer"
2569
+ }
2570
+ ]
2540
2571
  }
2541
2572
  }
2542
2573
  }
@@ -2683,9 +2714,6 @@
2683
2714
  }
2684
2715
  },
2685
2716
  "servers": [
2686
- {
2687
- "url": "https://automation.sls.epilot.io"
2688
- },
2689
2717
  {
2690
2718
  "url": "https://automation.sls.epilot.io"
2691
2719
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/automation-client",
3
- "version": "2.8.5",
3
+ "version": "2.8.6",
4
4
  "description": "Client library for epilot automation API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",