@epilot/cli 0.1.24 → 0.1.26
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/README.md +3 -1
- package/definitions/automation.json +0 -42
- package/definitions/calendar.json +675 -0
- package/definitions/configuration-hub.json +7 -134
- package/definitions/entity.json +4 -391
- package/definitions/kanban.json +1 -2
- package/definitions/pricing.json +83 -158
- package/definitions/workflow-definition.json +0 -52
- package/definitions/workflow.json +0 -24
- package/dist/bin/epilot.js +7 -6
- package/dist/calendar-IHVASAEY.js +56 -0
- package/dist/{chunk-U5JW65I3.js → chunk-QSYX2PUB.js} +11 -13
- package/dist/{completion-76TTN5FM.js → completion-AZYWK6IZ.js} +1 -1
- package/dist/{upgrade-3SGNJUWL.js → upgrade-O5G6HRVY.js} +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ npm install -g @epilot/cli
|
|
|
29
29
|
|
|
30
30
|
<!-- usage-help -->
|
|
31
31
|
```
|
|
32
|
-
epilot v0.1.
|
|
32
|
+
epilot v0.1.19 — CLI for epilot APIs
|
|
33
33
|
|
|
34
34
|
USAGE
|
|
35
35
|
epilot <api> <operationId> [params...] [flags]
|
|
@@ -70,6 +70,7 @@ APIs
|
|
|
70
70
|
automation Automation API
|
|
71
71
|
billing Billing API
|
|
72
72
|
blueprint-manifest Blueprint Manifest API
|
|
73
|
+
calendar Calendar API
|
|
73
74
|
configuration-hub Configuration Hub API
|
|
74
75
|
consent Consent API
|
|
75
76
|
customer-portal Portal API
|
|
@@ -325,6 +326,7 @@ Full documentation with sample calls and responses for all APIs:
|
|
|
325
326
|
| Automation API | `epilot automation` | [docs](./docs/automation.md) |
|
|
326
327
|
| Billing API | `epilot billing` | [docs](./docs/billing.md) |
|
|
327
328
|
| Blueprint Manifest API | `epilot blueprint-manifest` | [docs](./docs/blueprint-manifest.md) |
|
|
329
|
+
| Calendar API | `epilot calendar` | [docs](./docs/calendar.md) |
|
|
328
330
|
| Configuration Hub API | `epilot configuration-hub` | [docs](./docs/configuration-hub.md) |
|
|
329
331
|
| Consent API | `epilot consent` | [docs](./docs/consent.md) |
|
|
330
332
|
| Portal API | `epilot customer-portal` | [docs](./docs/customer-portal.md) |
|
|
@@ -70,15 +70,6 @@
|
|
|
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
|
-
},
|
|
82
73
|
{
|
|
83
74
|
"name": "include_flows",
|
|
84
75
|
"in": "query",
|
|
@@ -2248,11 +2239,6 @@
|
|
|
2248
2239
|
"type": "boolean",
|
|
2249
2240
|
"description": "When enabled, the email thread will be automatically marked as done after this action completes.",
|
|
2250
2241
|
"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
|
|
2256
2242
|
}
|
|
2257
2243
|
},
|
|
2258
2244
|
"required": [
|
|
@@ -2337,11 +2323,6 @@
|
|
|
2337
2323
|
"type": "boolean",
|
|
2338
2324
|
"description": "When enabled, the email thread will be automatically marked as done after this action completes.",
|
|
2339
2325
|
"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
|
|
2345
2326
|
}
|
|
2346
2327
|
}
|
|
2347
2328
|
},
|
|
@@ -2392,11 +2373,6 @@
|
|
|
2392
2373
|
"description": "When enabled, the email thread will be automatically marked as done after this action completes.",
|
|
2393
2374
|
"default": true
|
|
2394
2375
|
},
|
|
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
|
-
},
|
|
2400
2376
|
"attachments": {
|
|
2401
2377
|
"type": "array",
|
|
2402
2378
|
"description": "Include extra file attachments in sent email.\nAttachments in email template will be sent regardless of this configuration.\n",
|
|
@@ -3462,24 +3438,6 @@
|
|
|
3462
3438
|
},
|
|
3463
3439
|
"_execution_chain": {
|
|
3464
3440
|
"$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
|
-
}
|
|
3483
3441
|
}
|
|
3484
3442
|
}
|
|
3485
3443
|
},
|