@epilot/automation-client 2.13.3 → 2.14.1

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
@@ -857,6 +857,10 @@ declare namespace Components {
857
857
  * 8c086140-f33e-4bb7-a993-50c0f2402c7b
858
858
  */
859
859
  task_token?: string;
860
+ /**
861
+ * Entity ID of the report file entity
862
+ */
863
+ report_file_entity_id?: string;
860
864
  /**
861
865
  * List of entities & their automation execution id & status
862
866
  */
@@ -868,11 +872,7 @@ declare namespace Components {
868
872
  * 7791b04a-16d2-44a2-9af9-2d59c25c512f
869
873
  */
870
874
  AutomationFlowId;
871
- entity_ids?: /**
872
- * example:
873
- * e3d3ebac-baab-4395-abf4-50b5bf1f8b74
874
- */
875
- EntityId[];
875
+ entities_refs?: EntityRef[];
876
876
  entities_query?: string;
877
877
  }
878
878
  /**
@@ -1458,6 +1458,14 @@ declare namespace Components {
1458
1458
  };
1459
1459
  };
1460
1460
  }
1461
+ export interface EntityRef {
1462
+ entity_id: /**
1463
+ * example:
1464
+ * e3d3ebac-baab-4395-abf4-50b5bf1f8b74
1465
+ */
1466
+ EntityId;
1467
+ entity_schema: string;
1468
+ }
1461
1469
  export interface EqualsIgnoreCaseCondition {
1462
1470
  "equals-ignore-case"?: string;
1463
1471
  }
@@ -1484,6 +1492,7 @@ declare namespace Components {
1484
1492
  * e3d3ebac-baab-4395-abf4-50b5bf1f8b74
1485
1493
  */
1486
1494
  EntityId;
1495
+ entity_schema?: string;
1487
1496
  execution_id?: /**
1488
1497
  * example:
1489
1498
  * 9baf184f-bc81-4128-bca3-d974c90a12c4
@@ -3165,6 +3174,7 @@ export type EntityItemSnapshot = Components.Schemas.EntityItemSnapshot;
3165
3174
  export type EntityManualTrigger = Components.Schemas.EntityManualTrigger;
3166
3175
  export type EntityOperation = Components.Schemas.EntityOperation;
3167
3176
  export type EntityOperationTrigger = Components.Schemas.EntityOperationTrigger;
3177
+ export type EntityRef = Components.Schemas.EntityRef;
3168
3178
  export type EqualsIgnoreCaseCondition = Components.Schemas.EqualsIgnoreCaseCondition;
3169
3179
  export type ErrorCode = Components.Schemas.ErrorCode;
3170
3180
  export type ErrorDetail = Components.Schemas.ErrorDetail;
package/dist/openapi.json CHANGED
@@ -2453,10 +2453,10 @@
2453
2453
  "flow_id": {
2454
2454
  "$ref": "#/components/schemas/AutomationFlowId"
2455
2455
  },
2456
- "entity_ids": {
2456
+ "entities_refs": {
2457
2457
  "type": "array",
2458
2458
  "items": {
2459
- "$ref": "#/components/schemas/EntityId"
2459
+ "$ref": "#/components/schemas/EntityRef"
2460
2460
  }
2461
2461
  },
2462
2462
  "entities_query": {
@@ -2467,6 +2467,21 @@
2467
2467
  "flow_id"
2468
2468
  ]
2469
2469
  },
2470
+ "EntityRef": {
2471
+ "type": "object",
2472
+ "required": [
2473
+ "entity_id",
2474
+ "entity_schema"
2475
+ ],
2476
+ "properties": {
2477
+ "entity_id": {
2478
+ "$ref": "#/components/schemas/EntityId"
2479
+ },
2480
+ "entity_schema": {
2481
+ "type": "string"
2482
+ }
2483
+ }
2484
+ },
2470
2485
  "BulkTriggerJob": {
2471
2486
  "type": "object",
2472
2487
  "required": [
@@ -2525,6 +2540,10 @@
2525
2540
  "description": "Task token to approve/cancel the bulk automation job",
2526
2541
  "example": "8c086140-f33e-4bb7-a993-50c0f2402c7b"
2527
2542
  },
2543
+ "report_file_entity_id": {
2544
+ "type": "string",
2545
+ "description": "Entity ID of the report file entity"
2546
+ },
2528
2547
  "execution_summary": {
2529
2548
  "type": "array",
2530
2549
  "description": "List of entities & their automation execution id & status",
@@ -2545,6 +2564,9 @@
2545
2564
  "entity_id": {
2546
2565
  "$ref": "#/components/schemas/EntityId"
2547
2566
  },
2567
+ "entity_schema": {
2568
+ "type": "string"
2569
+ },
2548
2570
  "execution_id": {
2549
2571
  "$ref": "#/components/schemas/AutomationExecutionId"
2550
2572
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/automation-client",
3
- "version": "2.13.3",
3
+ "version": "2.14.1",
4
4
  "description": "Client library for epilot automation API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",