@epilot/automation-client 2.13.2 → 2.14.0
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 +15 -5
- package/dist/openapi.json +24 -2
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -854,6 +854,10 @@ declare namespace Components {
|
|
|
854
854
|
* 8c086140-f33e-4bb7-a993-50c0f2402c7b
|
|
855
855
|
*/
|
|
856
856
|
task_token?: string;
|
|
857
|
+
/**
|
|
858
|
+
* Entity ID of the report file entity
|
|
859
|
+
*/
|
|
860
|
+
report_file_entity_id?: string;
|
|
857
861
|
/**
|
|
858
862
|
* List of entities & their automation execution id & status
|
|
859
863
|
*/
|
|
@@ -865,11 +869,7 @@ declare namespace Components {
|
|
|
865
869
|
* 7791b04a-16d2-44a2-9af9-2d59c25c512f
|
|
866
870
|
*/
|
|
867
871
|
AutomationFlowId;
|
|
868
|
-
|
|
869
|
-
* example:
|
|
870
|
-
* e3d3ebac-baab-4395-abf4-50b5bf1f8b74
|
|
871
|
-
*/
|
|
872
|
-
EntityId[];
|
|
872
|
+
entities_refs?: EntityRef[];
|
|
873
873
|
entities_query?: string;
|
|
874
874
|
}
|
|
875
875
|
/**
|
|
@@ -1455,6 +1455,14 @@ declare namespace Components {
|
|
|
1455
1455
|
};
|
|
1456
1456
|
};
|
|
1457
1457
|
}
|
|
1458
|
+
export interface EntityRef {
|
|
1459
|
+
entity_id: /**
|
|
1460
|
+
* example:
|
|
1461
|
+
* e3d3ebac-baab-4395-abf4-50b5bf1f8b74
|
|
1462
|
+
*/
|
|
1463
|
+
EntityId;
|
|
1464
|
+
entity_schema: string;
|
|
1465
|
+
}
|
|
1458
1466
|
export interface EqualsIgnoreCaseCondition {
|
|
1459
1467
|
"equals-ignore-case"?: string;
|
|
1460
1468
|
}
|
|
@@ -1481,6 +1489,7 @@ declare namespace Components {
|
|
|
1481
1489
|
* e3d3ebac-baab-4395-abf4-50b5bf1f8b74
|
|
1482
1490
|
*/
|
|
1483
1491
|
EntityId;
|
|
1492
|
+
entity_schema?: string;
|
|
1484
1493
|
execution_id?: /**
|
|
1485
1494
|
* example:
|
|
1486
1495
|
* 9baf184f-bc81-4128-bca3-d974c90a12c4
|
|
@@ -3162,6 +3171,7 @@ export type EntityItemSnapshot = Components.Schemas.EntityItemSnapshot;
|
|
|
3162
3171
|
export type EntityManualTrigger = Components.Schemas.EntityManualTrigger;
|
|
3163
3172
|
export type EntityOperation = Components.Schemas.EntityOperation;
|
|
3164
3173
|
export type EntityOperationTrigger = Components.Schemas.EntityOperationTrigger;
|
|
3174
|
+
export type EntityRef = Components.Schemas.EntityRef;
|
|
3165
3175
|
export type EqualsIgnoreCaseCondition = Components.Schemas.EqualsIgnoreCaseCondition;
|
|
3166
3176
|
export type ErrorCode = Components.Schemas.ErrorCode;
|
|
3167
3177
|
export type ErrorDetail = Components.Schemas.ErrorDetail;
|
package/dist/openapi.json
CHANGED
|
@@ -2433,10 +2433,10 @@
|
|
|
2433
2433
|
"flow_id": {
|
|
2434
2434
|
"$ref": "#/components/schemas/AutomationFlowId"
|
|
2435
2435
|
},
|
|
2436
|
-
"
|
|
2436
|
+
"entities_refs": {
|
|
2437
2437
|
"type": "array",
|
|
2438
2438
|
"items": {
|
|
2439
|
-
"$ref": "#/components/schemas/
|
|
2439
|
+
"$ref": "#/components/schemas/EntityRef"
|
|
2440
2440
|
}
|
|
2441
2441
|
},
|
|
2442
2442
|
"entities_query": {
|
|
@@ -2447,6 +2447,21 @@
|
|
|
2447
2447
|
"flow_id"
|
|
2448
2448
|
]
|
|
2449
2449
|
},
|
|
2450
|
+
"EntityRef": {
|
|
2451
|
+
"type": "object",
|
|
2452
|
+
"required": [
|
|
2453
|
+
"entity_id",
|
|
2454
|
+
"entity_schema"
|
|
2455
|
+
],
|
|
2456
|
+
"properties": {
|
|
2457
|
+
"entity_id": {
|
|
2458
|
+
"$ref": "#/components/schemas/EntityId"
|
|
2459
|
+
},
|
|
2460
|
+
"entity_schema": {
|
|
2461
|
+
"type": "string"
|
|
2462
|
+
}
|
|
2463
|
+
}
|
|
2464
|
+
},
|
|
2450
2465
|
"BulkTriggerJob": {
|
|
2451
2466
|
"type": "object",
|
|
2452
2467
|
"required": [
|
|
@@ -2505,6 +2520,10 @@
|
|
|
2505
2520
|
"description": "Task token to approve/cancel the bulk automation job",
|
|
2506
2521
|
"example": "8c086140-f33e-4bb7-a993-50c0f2402c7b"
|
|
2507
2522
|
},
|
|
2523
|
+
"report_file_entity_id": {
|
|
2524
|
+
"type": "string",
|
|
2525
|
+
"description": "Entity ID of the report file entity"
|
|
2526
|
+
},
|
|
2508
2527
|
"execution_summary": {
|
|
2509
2528
|
"type": "array",
|
|
2510
2529
|
"description": "List of entities & their automation execution id & status",
|
|
@@ -2525,6 +2544,9 @@
|
|
|
2525
2544
|
"entity_id": {
|
|
2526
2545
|
"$ref": "#/components/schemas/EntityId"
|
|
2527
2546
|
},
|
|
2547
|
+
"entity_schema": {
|
|
2548
|
+
"type": "string"
|
|
2549
|
+
},
|
|
2528
2550
|
"execution_id": {
|
|
2529
2551
|
"$ref": "#/components/schemas/AutomationExecutionId"
|
|
2530
2552
|
},
|