@epilot/automation-client 2.24.2 → 2.24.3
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/definition.js +1 -1
- package/dist/openapi.d.ts +10 -1
- package/dist/openapi.json +12 -1
- package/package.json +15 -14
- package/LICENSE +0 -21
package/dist/definition.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(()=>{"use strict";var e={
|
|
1
|
+
(()=>{"use strict";var e={330:function(e,t,o){var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var r=n(o(466));t.default=r.default},466:e=>{e.exports=JSON.parse('{"openapi":"3.0.3","info":{"title":"","version":""},"paths":{"/v1/automation/flows":{"get":{"operationId":"searchFlows","parameters":[{"name":"schema","in":"query"},{"name":"size","in":"query"},{"name":"from","in":"query"},{"name":"trigger_source_id","in":"query"},{"name":"include_flows","in":"query"}],"responses":{}},"post":{"operationId":"createFlow","requestBody":{"content":{"application/json":{}}},"responses":{}}},"/v1/automation/flows:batchGet":{"post":{"operationId":"batchGetFlows","requestBody":{"content":{"application/json":{}}},"responses":{}}},"/v1/automation/flows/{flow_id}":{"get":{"operationId":"getFlow","parameters":[{"name":"flow_id","in":"path","required":true}],"responses":{}},"put":{"operationId":"putFlow","parameters":[{"name":"flow_id","in":"path","required":true}],"requestBody":{"content":{"application/json":{}}},"responses":{}},"delete":{"operationId":"deleteFlow","parameters":[{"name":"flow_id","in":"path","required":true}],"responses":{}}},"/v1/automation/executions":{"get":{"operationId":"getExecutions","parameters":[{"name":"entity_id","in":"query"},{"name":"size","in":"query"},{"name":"from","in":"query"},{"name":"include_flows","in":"query"}],"responses":{}},"post":{"operationId":"startExecution","requestBody":{"content":{"application/json":{}}},"responses":{}}},"/v1/automation/executions/bulk-jobs":{"post":{"operationId":"bulkTriggerExecutions","requestBody":{"content":{"application/json":{}}},"responses":{}}},"/v1/automation/executions/bulk-jobs/{job_id}":{"get":{"operationId":"getBulkJob","parameters":[{"name":"job_id","in":"path","required":true}],"responses":{}},"patch":{"operationId":"patchBulkJob","parameters":[{"name":"job_id","in":"path","required":true}],"requestBody":{"content":{"application/json":{}}},"responses":{}}},"/v1/automation/executions/{execution_id}":{"get":{"operationId":"getExecution","parameters":[{"name":"execution_id","in":"path","required":true}],"responses":{}},"delete":{"operationId":"cancelExecution","parameters":[{"name":"execution_id","in":"path","required":true}],"responses":{}}},"/v1/automation/executions/{execution_id}/{action_id}/retrigger":{"post":{"operationId":"retriggerAction","parameters":[{"name":"execution_id","in":"path","required":true},{"name":"action_id","in":"path","required":true}],"requestBody":{"required":false,"content":{"application/json":{}}},"responses":{}}},"/v1/automation/public/executions:resume":{"post":{"operationId":"resumeExecutionWithToken","requestBody":{"content":{"application/json":{}}},"responses":{}}},"/v1/automation/executions/{execution_id}/schedules/{schedule_id}":{"delete":{"operationId":"cancelSchedule","parameters":[{"name":"execution_id","in":"path","required":true},{"name":"schedule_id","in":"path","required":true}],"responses":{}}}},"components":{"responses":{"NotFoundError":{"content":{"application/json":{}}},"ForbiddenError":{"content":{"application/json":{}}}}},"servers":[{"url":"https://automation.sls.epilot.io"}]}')}},t={},o=function o(n){var r=t[n];if(void 0!==r)return r.exports;var i=t[n]={exports:{}};return e[n].call(i.exports,i,i.exports,o),i.exports}(330),n=exports;for(var r in o)n[r]=o[r];o.__esModule&&Object.defineProperty(n,"__esModule",{value:!0})})();
|
package/dist/openapi.d.ts
CHANGED
|
@@ -1335,7 +1335,7 @@ declare namespace Components {
|
|
|
1335
1335
|
repeatableItemOp?: boolean;
|
|
1336
1336
|
attributeOperation?: "all" | "updated" | "added" | "deleted";
|
|
1337
1337
|
};
|
|
1338
|
-
operation?: "equals" | "not_equals" | "any_of" | "none_of" | "contains" | "not_contains" | "starts_with" | "ends_with" | "greater_than" | "less_than" | "greater_than_or_equals" | "less_than_or_equals" | "is_empty" | "is_not_empty";
|
|
1338
|
+
operation?: "equals" | "not_equals" | "any_of" | "none_of" | "contains" | "not_contains" | "starts_with" | "ends_with" | "greater_than" | "less_than" | "greater_than_or_equals" | "less_than_or_equals" | "is_empty" | "is_not_empty" | "entity_exists" | "entity_does_not_exist";
|
|
1339
1339
|
values?: string[];
|
|
1340
1340
|
}
|
|
1341
1341
|
export interface CopyValueMapper {
|
|
@@ -1525,6 +1525,10 @@ declare namespace Components {
|
|
|
1525
1525
|
* 2f1c26a-cc7a-4c1c-92bf-1c6246cbfe88
|
|
1526
1526
|
*/
|
|
1527
1527
|
component_id?: string;
|
|
1528
|
+
/**
|
|
1529
|
+
* Whether to wait for the callback from the custom action
|
|
1530
|
+
*/
|
|
1531
|
+
wait_for_callback?: boolean;
|
|
1528
1532
|
};
|
|
1529
1533
|
/**
|
|
1530
1534
|
* Whether to stop execution in a failed state if this action fails
|
|
@@ -1807,6 +1811,11 @@ declare namespace Components {
|
|
|
1807
1811
|
* END_CUSTOMER_PORTAL
|
|
1808
1812
|
*/
|
|
1809
1813
|
origin?: string;
|
|
1814
|
+
/**
|
|
1815
|
+
* example:
|
|
1816
|
+
* any-portal-id
|
|
1817
|
+
*/
|
|
1818
|
+
portal_id?: string;
|
|
1810
1819
|
file_config?: {
|
|
1811
1820
|
/**
|
|
1812
1821
|
* example:
|
package/dist/openapi.json
CHANGED
|
@@ -2512,6 +2512,11 @@
|
|
|
2512
2512
|
"type": "string",
|
|
2513
2513
|
"description": "The ID of the component from the app. As the app can potentially have multiple custom actions, this ID is used to identify the component",
|
|
2514
2514
|
"example": "2f1c26a-cc7a-4c1c-92bf-1c6246cbfe88"
|
|
2515
|
+
},
|
|
2516
|
+
"wait_for_callback": {
|
|
2517
|
+
"type": "boolean",
|
|
2518
|
+
"description": "Whether to wait for the callback from the custom action",
|
|
2519
|
+
"default": false
|
|
2515
2520
|
}
|
|
2516
2521
|
}
|
|
2517
2522
|
}
|
|
@@ -2860,7 +2865,9 @@
|
|
|
2860
2865
|
"greater_than_or_equals",
|
|
2861
2866
|
"less_than_or_equals",
|
|
2862
2867
|
"is_empty",
|
|
2863
|
-
"is_not_empty"
|
|
2868
|
+
"is_not_empty",
|
|
2869
|
+
"entity_exists",
|
|
2870
|
+
"entity_does_not_exist"
|
|
2864
2871
|
]
|
|
2865
2872
|
},
|
|
2866
2873
|
"values": {
|
|
@@ -3948,6 +3955,10 @@
|
|
|
3948
3955
|
"type": "string",
|
|
3949
3956
|
"example": "END_CUSTOMER_PORTAL"
|
|
3950
3957
|
},
|
|
3958
|
+
"portal_id": {
|
|
3959
|
+
"type": "string",
|
|
3960
|
+
"example": "any-portal-id"
|
|
3961
|
+
},
|
|
3951
3962
|
"file_config": {
|
|
3952
3963
|
"type": "object",
|
|
3953
3964
|
"properties": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epilot/automation-client",
|
|
3
|
-
"version": "2.24.
|
|
3
|
+
"version": "2.24.3",
|
|
4
4
|
"description": "Client library for epilot automation API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -21,6 +21,18 @@
|
|
|
21
21
|
"sdk",
|
|
22
22
|
"automation"
|
|
23
23
|
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"test": "jest",
|
|
26
|
+
"typescript": "tsc",
|
|
27
|
+
"bundle-definition": "webpack",
|
|
28
|
+
"openapi": "node ../../scripts/update-openapi.js https://docs.api.epilot.io/automation.yaml",
|
|
29
|
+
"typegen": "openapi typegen src/openapi.json --client -b '/* eslint-disable */' > src/openapi.d.ts",
|
|
30
|
+
"build": "tsc && npm run build:patch && npm run bundle-definition",
|
|
31
|
+
"build:patch": "sed -i'' -e '/^__exportStar.*openapi.*$/d' dist/index.js",
|
|
32
|
+
"build:watch": "npm run build && tsc -w",
|
|
33
|
+
"prepublishOnly": "npm run typegen && npm run build",
|
|
34
|
+
"lint": "pnpm exec eslint src"
|
|
35
|
+
},
|
|
24
36
|
"files": [
|
|
25
37
|
"*.js",
|
|
26
38
|
"*.d.ts",
|
|
@@ -63,16 +75,5 @@
|
|
|
63
75
|
"webpack-cli": "^4.4.0",
|
|
64
76
|
"whatwg-url": "^11.0.0"
|
|
65
77
|
},
|
|
66
|
-
"gitHead": "39426e86cfb320fa3227dc03f60ee6a10848e7c7"
|
|
67
|
-
|
|
68
|
-
"test": "jest",
|
|
69
|
-
"typescript": "tsc",
|
|
70
|
-
"bundle-definition": "webpack",
|
|
71
|
-
"openapi": "node ../../scripts/update-openapi.js https://docs.api.epilot.io/automation.yaml",
|
|
72
|
-
"typegen": "openapi typegen src/openapi.json --client -b '/* eslint-disable */' > src/openapi.d.ts",
|
|
73
|
-
"build": "tsc && npm run build:patch && npm run bundle-definition",
|
|
74
|
-
"build:patch": "sed -i'' -e '/^__exportStar.*openapi.*$/d' dist/index.js",
|
|
75
|
-
"build:watch": "npm run build && tsc -w",
|
|
76
|
-
"lint": "pnpm exec eslint src"
|
|
77
|
-
}
|
|
78
|
-
}
|
|
78
|
+
"gitHead": "39426e86cfb320fa3227dc03f60ee6a10848e7c7"
|
|
79
|
+
}
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
The MIT License (MIT)
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2025 epilot GmbH
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
|
13
|
-
all copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
-
THE SOFTWARE.
|