@epilot/automation-client 2.22.0 → 2.22.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 +7 -0
- package/dist/openapi.json +7 -1
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -2192,7 +2192,14 @@ declare namespace Components {
|
|
|
2192
2192
|
id?: string; // uuid
|
|
2193
2193
|
type: "flows_trigger";
|
|
2194
2194
|
configuration: {
|
|
2195
|
+
/**
|
|
2196
|
+
* The ID of the workflow v2 that triggers this automation
|
|
2197
|
+
*/
|
|
2195
2198
|
source_id: string; // uuid
|
|
2199
|
+
/**
|
|
2200
|
+
* When Journeys are linked to Workflows V2 as Journey Automations, this field will contain the ID of the Journey
|
|
2201
|
+
*/
|
|
2202
|
+
journey_id?: string; // uuid
|
|
2196
2203
|
};
|
|
2197
2204
|
}
|
|
2198
2205
|
export interface FrontendSubmitTrigger {
|
package/dist/openapi.json
CHANGED
|
@@ -3611,7 +3611,13 @@
|
|
|
3611
3611
|
"properties": {
|
|
3612
3612
|
"source_id": {
|
|
3613
3613
|
"type": "string",
|
|
3614
|
-
"format": "uuid"
|
|
3614
|
+
"format": "uuid",
|
|
3615
|
+
"description": "The ID of the workflow v2 that triggers this automation"
|
|
3616
|
+
},
|
|
3617
|
+
"journey_id": {
|
|
3618
|
+
"type": "string",
|
|
3619
|
+
"format": "uuid",
|
|
3620
|
+
"description": "When Journeys are linked to Workflows V2 as Journey Automations, this field will contain the ID of the Journey"
|
|
3615
3621
|
}
|
|
3616
3622
|
},
|
|
3617
3623
|
"required": [
|