@epilot/automation-client 2.16.0 → 2.16.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 +18 -0
- package/dist/openapi.json +5 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -141,6 +141,12 @@ declare namespace Components {
|
|
|
141
141
|
* c451c26a-cc7a-4c1c-92bf-1c6246cbfe88
|
|
142
142
|
*/
|
|
143
143
|
app_id?: string;
|
|
144
|
+
/**
|
|
145
|
+
* 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
|
|
146
|
+
* example:
|
|
147
|
+
* 2f1c26a-cc7a-4c1c-92bf-1c6246cbfe88
|
|
148
|
+
*/
|
|
149
|
+
component_id?: string;
|
|
144
150
|
type: "advanced";
|
|
145
151
|
advanced_settings?: {
|
|
146
152
|
[name: string]: any;
|
|
@@ -920,6 +926,12 @@ declare namespace Components {
|
|
|
920
926
|
* c451c26a-cc7a-4c1c-92bf-1c6246cbfe88
|
|
921
927
|
*/
|
|
922
928
|
app_id?: string;
|
|
929
|
+
/**
|
|
930
|
+
* 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
|
|
931
|
+
* example:
|
|
932
|
+
* 2f1c26a-cc7a-4c1c-92bf-1c6246cbfe88
|
|
933
|
+
*/
|
|
934
|
+
component_id?: string;
|
|
923
935
|
}
|
|
924
936
|
export interface BasicCustomActionConfig {
|
|
925
937
|
/**
|
|
@@ -936,6 +948,12 @@ declare namespace Components {
|
|
|
936
948
|
* c451c26a-cc7a-4c1c-92bf-1c6246cbfe88
|
|
937
949
|
*/
|
|
938
950
|
app_id?: string;
|
|
951
|
+
/**
|
|
952
|
+
* 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
|
|
953
|
+
* example:
|
|
954
|
+
* 2f1c26a-cc7a-4c1c-92bf-1c6246cbfe88
|
|
955
|
+
*/
|
|
956
|
+
component_id?: string;
|
|
939
957
|
type: "basic";
|
|
940
958
|
basic_settings?: {
|
|
941
959
|
/**
|
package/dist/openapi.json
CHANGED
|
@@ -2020,6 +2020,11 @@
|
|
|
2020
2020
|
"type": "string",
|
|
2021
2021
|
"description": "The ID of the app to fetch configuration from the app API",
|
|
2022
2022
|
"example": "c451c26a-cc7a-4c1c-92bf-1c6246cbfe88"
|
|
2023
|
+
},
|
|
2024
|
+
"component_id": {
|
|
2025
|
+
"type": "string",
|
|
2026
|
+
"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",
|
|
2027
|
+
"example": "2f1c26a-cc7a-4c1c-92bf-1c6246cbfe88"
|
|
2023
2028
|
}
|
|
2024
2029
|
}
|
|
2025
2030
|
},
|