@cxtms/cx-schema 1.9.5 → 1.9.7
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/cli.js +2 -1
- package/dist/cli.js.map +1 -1
- package/dist/workflowValidator.d.ts +4 -0
- package/dist/workflowValidator.d.ts.map +1 -1
- package/dist/workflowValidator.js +27 -0
- package/dist/workflowValidator.js.map +1 -1
- package/package.json +1 -1
- package/schemas/workflows/activity.json +17 -32
- package/schemas/workflows/common/step.json +38 -0
- package/schemas/workflows/tasks/csv.json +15 -13
- package/schemas/workflows/workflow.json +14 -5
- package/skills/cxtms-workflow-builder/SKILL.md +3 -3
- package/skills/cxtms-workflow-builder/ref-utilities.md +33 -4
- package/templates/workflow-api-tracking.yaml +2 -2
- package/templates/workflow-basic.yaml +2 -2
- package/templates/workflow-document.yaml +2 -2
- package/templates/workflow-entity-trigger.yaml +2 -2
- package/templates/workflow-ftp-edi.yaml +2 -2
- package/templates/workflow-ftp-tracking.yaml +2 -2
- package/templates/workflow-mcp-tool.yaml +2 -2
- package/templates/workflow-public-api.yaml +2 -2
- package/templates/workflow-scheduled-execute.yaml +75 -0
- package/templates/workflow-scheduled.yaml +2 -2
- package/templates/workflow-utility.yaml +2 -2
- package/templates/workflow-webhook.yaml +2 -2
- package/templates/workflow.yaml +2 -2
package/dist/cli.js
CHANGED
|
@@ -464,6 +464,7 @@ ${chalk_1.default.bold.yellow('WORKFLOW TEMPLATES:')}
|
|
|
464
464
|
${chalk_1.default.green('entity-trigger')} React to entity changes (Before/After triggers)
|
|
465
465
|
${chalk_1.default.green('document')} Generate PDF/Excel documents
|
|
466
466
|
${chalk_1.default.green('scheduled')} Cron-based batch processing
|
|
467
|
+
${chalk_1.default.green('scheduled-execute')} Schedule another workflow on cron
|
|
467
468
|
${chalk_1.default.green('utility')} Reusable helper (called via Workflow/Execute)
|
|
468
469
|
${chalk_1.default.green('webhook')} HTTP endpoint for external callers (anonymous, rate-limited)
|
|
469
470
|
${chalk_1.default.green('public-api')} REST API endpoint with OpenAPI documentation
|
|
@@ -1511,7 +1512,7 @@ features/ # Feature-scoped modules and workflows
|
|
|
1511
1512
|
| \`npx cxtms extract <src> <comp> --to <tgt>\` | Move component between modules |
|
|
1512
1513
|
|
|
1513
1514
|
**Module templates:** \`default\`, \`form\`, \`grid\`, \`select\`, \`configuration\`
|
|
1514
|
-
**Workflow templates:** \`basic\`, \`entity-trigger\`, \`document\`, \`scheduled\`, \`utility\`, \`webhook\`, \`public-api\`, \`mcp-tool\`, \`ftp-tracking\`, \`ftp-edi\`, \`api-tracking\`
|
|
1515
|
+
**Workflow templates:** \`basic\`, \`entity-trigger\`, \`document\`, \`scheduled\`, \`scheduled-execute\`, \`utility\`, \`webhook\`, \`public-api\`, \`mcp-tool\`, \`ftp-tracking\`, \`ftp-edi\`, \`api-tracking\`
|
|
1515
1516
|
|
|
1516
1517
|
### Skills (slash commands)
|
|
1517
1518
|
|