@epilot/cli 0.1.26 → 0.1.28

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.
@@ -70,6 +70,15 @@
70
70
  "example": "600945fe-212e-4b97-acf7-391d64648384"
71
71
  }
72
72
  },
73
+ {
74
+ "name": "target_workflow",
75
+ "in": "query",
76
+ "description": "Filter by target workflow ID. Returns only automations that have a trigger-workflow action targeting this workflow.",
77
+ "schema": {
78
+ "type": "string",
79
+ "example": "wfABCDEFGH"
80
+ }
81
+ },
73
82
  {
74
83
  "name": "include_flows",
75
84
  "in": "query",
@@ -2239,6 +2248,11 @@
2239
2248
  "type": "boolean",
2240
2249
  "description": "When enabled, the email thread will be automatically marked as done after this action completes.",
2241
2250
  "default": false
2251
+ },
2252
+ "mark_as_read": {
2253
+ "type": "boolean",
2254
+ "description": "When enabled, the email thread will be marked as read after this action completes.",
2255
+ "default": true
2242
2256
  }
2243
2257
  },
2244
2258
  "required": [
@@ -2323,6 +2337,11 @@
2323
2337
  "type": "boolean",
2324
2338
  "description": "When enabled, the email thread will be automatically marked as done after this action completes.",
2325
2339
  "default": false
2340
+ },
2341
+ "mark_as_read": {
2342
+ "type": "boolean",
2343
+ "description": "When enabled, the email thread will be marked as read after this action completes.",
2344
+ "default": false
2326
2345
  }
2327
2346
  }
2328
2347
  },
@@ -2373,6 +2392,11 @@
2373
2392
  "description": "When enabled, the email thread will be automatically marked as done after this action completes.",
2374
2393
  "default": true
2375
2394
  },
2395
+ "mark_as_read": {
2396
+ "type": "boolean",
2397
+ "description": "When enabled, the email thread will be marked as read after this action completes.",
2398
+ "default": true
2399
+ },
2376
2400
  "attachments": {
2377
2401
  "type": "array",
2378
2402
  "description": "Include extra file attachments in sent email.\nAttachments in email template will be sent regardless of this configuration.\n",
@@ -3438,6 +3462,24 @@
3438
3462
  },
3439
3463
  "_execution_chain": {
3440
3464
  "$ref": "#/components/schemas/ExecutionChain"
3465
+ },
3466
+ "entity_contexts": {
3467
+ "type": "array",
3468
+ "description": "Additional entity contexts from the parent flow execution. Used when an automation is triggered from a workflow task to carry all flow contexts into the automation, not just the primary entity.\n",
3469
+ "items": {
3470
+ "type": "object",
3471
+ "properties": {
3472
+ "entity_id": {
3473
+ "type": "string"
3474
+ },
3475
+ "entity_schema": {
3476
+ "type": "string"
3477
+ },
3478
+ "is_primary": {
3479
+ "type": "boolean"
3480
+ }
3481
+ }
3482
+ }
3441
3483
  }
3442
3484
  }
3443
3485
  },