@shipfox/workflow-document 2.1.3 → 3.0.0
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 +4 -1
- package/dist/document/checkout-target-validation.d.ts +19 -0
- package/dist/document/checkout-target-validation.d.ts.map +1 -0
- package/dist/document/checkout-target-validation.js +36 -0
- package/dist/document/checkout-target-validation.js.map +1 -0
- package/dist/document/index.d.ts +2 -1
- package/dist/document/index.d.ts.map +1 -1
- package/dist/document/index.js +1 -0
- package/dist/document/index.js.map +1 -1
- package/dist/document/workflow-document.d.ts +93 -11
- package/dist/document/workflow-document.d.ts.map +1 -1
- package/dist/document/workflow-document.js +140 -33
- package/dist/document/workflow-document.js.map +1 -1
- package/dist/document/workflow-json-schema.d.ts.map +1 -1
- package/dist/document/workflow-json-schema.js +116 -7
- package/dist/document/workflow-json-schema.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -139,9 +139,12 @@ parseWorkflowDocument({
|
|
|
139
139
|
});
|
|
140
140
|
```
|
|
141
141
|
|
|
142
|
-
## Behavior
|
|
142
|
+
## Behavior notes
|
|
143
143
|
|
|
144
144
|
- The public contract is the Zod schema and the TypeScript types built from it.
|
|
145
|
+
- Workflow and job `name` fields must be literal and reject `${{ ... }}`. Put
|
|
146
|
+
runtime interpolation in `run_name` or `execution_name`; write a literal
|
|
147
|
+
`${{` as `$${{`.
|
|
145
148
|
- Bad input throws a typed `Error`; UI or API code can read `validationError.issues` for field details.
|
|
146
149
|
- The `checkout` block is checked as input shape here. Default resolution,
|
|
147
150
|
permission capping, credential minting, and runner checkout behavior belong to
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export type CheckoutTargetValidationIssue = {
|
|
2
|
+
kind: 'project-with-connection';
|
|
3
|
+
path: 'connection';
|
|
4
|
+
fields: readonly ['project', 'connection'];
|
|
5
|
+
} | {
|
|
6
|
+
kind: 'project-with-repository';
|
|
7
|
+
path: 'repository';
|
|
8
|
+
fields: readonly ['project', 'repository'];
|
|
9
|
+
} | {
|
|
10
|
+
kind: 'connection-without-repository';
|
|
11
|
+
path: 'repository';
|
|
12
|
+
fields: readonly ['connection', 'repository'];
|
|
13
|
+
};
|
|
14
|
+
export declare function checkoutTargetValidationIssues(target: {
|
|
15
|
+
readonly project?: unknown;
|
|
16
|
+
readonly connection?: unknown;
|
|
17
|
+
readonly repository?: unknown;
|
|
18
|
+
}): readonly CheckoutTargetValidationIssue[];
|
|
19
|
+
//# sourceMappingURL=checkout-target-validation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"checkout-target-validation.d.ts","sourceRoot":"","sources":["../../src/document/checkout-target-validation.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,6BAA6B,GACrC;IACE,IAAI,EAAE,yBAAyB,CAAC;IAChC,IAAI,EAAE,YAAY,CAAC;IACnB,MAAM,EAAE,SAAS,CAAC,SAAS,EAAE,YAAY,CAAC,CAAC;CAC5C,GACD;IACE,IAAI,EAAE,yBAAyB,CAAC;IAChC,IAAI,EAAE,YAAY,CAAC;IACnB,MAAM,EAAE,SAAS,CAAC,SAAS,EAAE,YAAY,CAAC,CAAC;CAC5C,GACD;IACE,IAAI,EAAE,+BAA+B,CAAC;IACtC,IAAI,EAAE,YAAY,CAAC;IACnB,MAAM,EAAE,SAAS,CAAC,YAAY,EAAE,YAAY,CAAC,CAAC;CAC/C,CAAC;AAEN,wBAAgB,8BAA8B,CAAC,MAAM,EAAE;IACrD,QAAQ,CAAC,OAAO,CAAC,EAAE,OAAO,CAAC;IAC3B,QAAQ,CAAC,UAAU,CAAC,EAAE,OAAO,CAAC;IAC9B,QAAQ,CAAC,UAAU,CAAC,EAAE,OAAO,CAAC;CAC/B,GAAG,SAAS,6BAA6B,EAAE,CA8B3C"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export function checkoutTargetValidationIssues(target) {
|
|
2
|
+
const issues = [];
|
|
3
|
+
if (target.project !== undefined && target.connection !== undefined) {
|
|
4
|
+
issues.push({
|
|
5
|
+
kind: 'project-with-connection',
|
|
6
|
+
path: 'connection',
|
|
7
|
+
fields: [
|
|
8
|
+
'project',
|
|
9
|
+
'connection'
|
|
10
|
+
]
|
|
11
|
+
});
|
|
12
|
+
}
|
|
13
|
+
if (target.project !== undefined && target.repository !== undefined) {
|
|
14
|
+
issues.push({
|
|
15
|
+
kind: 'project-with-repository',
|
|
16
|
+
path: 'repository',
|
|
17
|
+
fields: [
|
|
18
|
+
'project',
|
|
19
|
+
'repository'
|
|
20
|
+
]
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
if (target.project === undefined && target.connection !== undefined && target.repository === undefined) {
|
|
24
|
+
issues.push({
|
|
25
|
+
kind: 'connection-without-repository',
|
|
26
|
+
path: 'repository',
|
|
27
|
+
fields: [
|
|
28
|
+
'connection',
|
|
29
|
+
'repository'
|
|
30
|
+
]
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
return issues;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
//# sourceMappingURL=checkout-target-validation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/document/checkout-target-validation.ts"],"sourcesContent":["export type CheckoutTargetValidationIssue =\n | {\n kind: 'project-with-connection';\n path: 'connection';\n fields: readonly ['project', 'connection'];\n }\n | {\n kind: 'project-with-repository';\n path: 'repository';\n fields: readonly ['project', 'repository'];\n }\n | {\n kind: 'connection-without-repository';\n path: 'repository';\n fields: readonly ['connection', 'repository'];\n };\n\nexport function checkoutTargetValidationIssues(target: {\n readonly project?: unknown;\n readonly connection?: unknown;\n readonly repository?: unknown;\n}): readonly CheckoutTargetValidationIssue[] {\n const issues: CheckoutTargetValidationIssue[] = [];\n\n if (target.project !== undefined && target.connection !== undefined) {\n issues.push({\n kind: 'project-with-connection',\n path: 'connection',\n fields: ['project', 'connection'],\n });\n }\n if (target.project !== undefined && target.repository !== undefined) {\n issues.push({\n kind: 'project-with-repository',\n path: 'repository',\n fields: ['project', 'repository'],\n });\n }\n if (\n target.project === undefined &&\n target.connection !== undefined &&\n target.repository === undefined\n ) {\n issues.push({\n kind: 'connection-without-repository',\n path: 'repository',\n fields: ['connection', 'repository'],\n });\n }\n\n return issues;\n}\n"],"names":["checkoutTargetValidationIssues","target","issues","project","undefined","connection","push","kind","path","fields","repository"],"mappings":"AAiBA,OAAO,SAASA,+BAA+BC,MAI9C;IACC,MAAMC,SAA0C,EAAE;IAElD,IAAID,OAAOE,OAAO,KAAKC,aAAaH,OAAOI,UAAU,KAAKD,WAAW;QACnEF,OAAOI,IAAI,CAAC;YACVC,MAAM;YACNC,MAAM;YACNC,QAAQ;gBAAC;gBAAW;aAAa;QACnC;IACF;IACA,IAAIR,OAAOE,OAAO,KAAKC,aAAaH,OAAOS,UAAU,KAAKN,WAAW;QACnEF,OAAOI,IAAI,CAAC;YACVC,MAAM;YACNC,MAAM;YACNC,QAAQ;gBAAC;gBAAW;aAAa;QACnC;IACF;IACA,IACER,OAAOE,OAAO,KAAKC,aACnBH,OAAOI,UAAU,KAAKD,aACtBH,OAAOS,UAAU,KAAKN,WACtB;QACAF,OAAOI,IAAI,CAAC;YACVC,MAAM;YACNC,MAAM;YACNC,QAAQ;gBAAC;gBAAc;aAAa;QACtC;IACF;IAEA,OAAOP;AACT"}
|
package/dist/document/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
export { type CheckoutTargetValidationIssue, checkoutTargetValidationIssues, } from './checkout-target-validation.js';
|
|
1
2
|
export { type AgentThinking, agentThinkingByHarness, agentThinkingSchema, claudeAgentThinkingSchema, DEFAULT_AGENT_THINKING, DEFAULT_HARNESS, DEFAULT_MODEL_PROVIDER, type Harness, harnessSchema, piAgentThinkingSchema, thinkingLevelsForHarness, } from './step-enums.js';
|
|
2
|
-
export { triggerSourceConfigSchemas, WORKFLOW_DOCUMENT_ENV_MAX_ENTRIES, WORKFLOW_DOCUMENT_ENV_MAX_SERIALIZED_BYTES, WORKFLOW_DOCUMENT_STEP_OUTPUT_SCHEMA_MAX_DEPTH, WORKFLOW_DOCUMENT_STEP_OUTPUT_SCHEMA_MAX_SERIALIZED_BYTES, WORKFLOW_DOCUMENT_STEP_OUTPUTS_MAX_ENTRIES, type WorkflowDocument, type WorkflowDocumentEnv, type WorkflowDocumentJob, type WorkflowDocumentJobCheckout, type WorkflowDocumentRunStepGate, type WorkflowDocumentStep, type WorkflowDocumentStepIntegration, type WorkflowDocumentStepOutputs, type WorkflowDocumentStepOutputType, type WorkflowDocumentTrigger, workflowDocumentCheckoutSchema, workflowDocumentEnvSchema, workflowDocumentJobSchema, workflowDocumentSchema, workflowDocumentStepIntegrationSchema, workflowDocumentStepIntegrationSelectionSchema, workflowDocumentStepOutputsSchema, workflowDocumentStepOutputTypes, workflowDocumentStepSchema, workflowDocumentTriggerSchema, } from './workflow-document.js';
|
|
3
|
+
export { triggerSourceConfigSchemas, WORKFLOW_DOCUMENT_ENV_MAX_ENTRIES, WORKFLOW_DOCUMENT_ENV_MAX_SERIALIZED_BYTES, WORKFLOW_DOCUMENT_STEP_OUTPUT_SCHEMA_MAX_DEPTH, WORKFLOW_DOCUMENT_STEP_OUTPUT_SCHEMA_MAX_SERIALIZED_BYTES, WORKFLOW_DOCUMENT_STEP_OUTPUTS_MAX_ENTRIES, type WorkflowDocument, type WorkflowDocumentCheckout, type WorkflowDocumentEnv, type WorkflowDocumentJob, type WorkflowDocumentJobCheckout, type WorkflowDocumentRunStepGate, type WorkflowDocumentStep, type WorkflowDocumentStepIntegration, type WorkflowDocumentStepOutputs, type WorkflowDocumentStepOutputType, type WorkflowDocumentTrigger, workflowDocumentCheckoutSchema, workflowDocumentEnvSchema, workflowDocumentJobSchema, workflowDocumentSchema, workflowDocumentStepIntegrationSchema, workflowDocumentStepIntegrationSelectionSchema, workflowDocumentStepOutputsSchema, workflowDocumentStepOutputTypes, workflowDocumentStepSchema, workflowDocumentTriggerSchema, } from './workflow-document.js';
|
|
3
4
|
export { InvalidWorkflowDocumentError, invalidWorkflowDocumentErrorCode, parseWorkflowDocument, } from './workflow-document-parser.js';
|
|
4
5
|
export { type BuildWorkflowJsonSchemaOptions, buildWorkflowJsonSchema, } from './workflow-json-schema.js';
|
|
5
6
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/document/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,aAAa,EAClB,sBAAsB,EACtB,mBAAmB,EACnB,yBAAyB,EACzB,sBAAsB,EACtB,eAAe,EACf,sBAAsB,EACtB,KAAK,OAAO,EACZ,aAAa,EACb,qBAAqB,EACrB,wBAAwB,GACzB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,0BAA0B,EAC1B,iCAAiC,EACjC,0CAA0C,EAC1C,8CAA8C,EAC9C,yDAAyD,EACzD,0CAA0C,EAC1C,KAAK,gBAAgB,EACrB,KAAK,mBAAmB,EACxB,KAAK,mBAAmB,EACxB,KAAK,2BAA2B,EAChC,KAAK,2BAA2B,EAChC,KAAK,oBAAoB,EACzB,KAAK,+BAA+B,EACpC,KAAK,2BAA2B,EAChC,KAAK,8BAA8B,EACnC,KAAK,uBAAuB,EAC5B,8BAA8B,EAC9B,yBAAyB,EACzB,yBAAyB,EACzB,sBAAsB,EACtB,qCAAqC,EACrC,8CAA8C,EAC9C,iCAAiC,EACjC,+BAA+B,EAC/B,0BAA0B,EAC1B,6BAA6B,GAC9B,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,4BAA4B,EAC5B,gCAAgC,EAChC,qBAAqB,GACtB,MAAM,+BAA+B,CAAC;AACvC,OAAO,EACL,KAAK,8BAA8B,EACnC,uBAAuB,GACxB,MAAM,2BAA2B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/document/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,6BAA6B,EAClC,8BAA8B,GAC/B,MAAM,iCAAiC,CAAC;AACzC,OAAO,EACL,KAAK,aAAa,EAClB,sBAAsB,EACtB,mBAAmB,EACnB,yBAAyB,EACzB,sBAAsB,EACtB,eAAe,EACf,sBAAsB,EACtB,KAAK,OAAO,EACZ,aAAa,EACb,qBAAqB,EACrB,wBAAwB,GACzB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,0BAA0B,EAC1B,iCAAiC,EACjC,0CAA0C,EAC1C,8CAA8C,EAC9C,yDAAyD,EACzD,0CAA0C,EAC1C,KAAK,gBAAgB,EACrB,KAAK,wBAAwB,EAC7B,KAAK,mBAAmB,EACxB,KAAK,mBAAmB,EACxB,KAAK,2BAA2B,EAChC,KAAK,2BAA2B,EAChC,KAAK,oBAAoB,EACzB,KAAK,+BAA+B,EACpC,KAAK,2BAA2B,EAChC,KAAK,8BAA8B,EACnC,KAAK,uBAAuB,EAC5B,8BAA8B,EAC9B,yBAAyB,EACzB,yBAAyB,EACzB,sBAAsB,EACtB,qCAAqC,EACrC,8CAA8C,EAC9C,iCAAiC,EACjC,+BAA+B,EAC/B,0BAA0B,EAC1B,6BAA6B,GAC9B,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,4BAA4B,EAC5B,gCAAgC,EAChC,qBAAqB,GACtB,MAAM,+BAA+B,CAAC;AACvC,OAAO,EACL,KAAK,8BAA8B,EACnC,uBAAuB,GACxB,MAAM,2BAA2B,CAAC"}
|
package/dist/document/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { checkoutTargetValidationIssues } from './checkout-target-validation.js';
|
|
1
2
|
export { agentThinkingByHarness, agentThinkingSchema, claudeAgentThinkingSchema, DEFAULT_AGENT_THINKING, DEFAULT_HARNESS, DEFAULT_MODEL_PROVIDER, harnessSchema, piAgentThinkingSchema, thinkingLevelsForHarness } from './step-enums.js';
|
|
2
3
|
export { triggerSourceConfigSchemas, WORKFLOW_DOCUMENT_ENV_MAX_ENTRIES, WORKFLOW_DOCUMENT_ENV_MAX_SERIALIZED_BYTES, WORKFLOW_DOCUMENT_STEP_OUTPUT_SCHEMA_MAX_DEPTH, WORKFLOW_DOCUMENT_STEP_OUTPUT_SCHEMA_MAX_SERIALIZED_BYTES, WORKFLOW_DOCUMENT_STEP_OUTPUTS_MAX_ENTRIES, workflowDocumentCheckoutSchema, workflowDocumentEnvSchema, workflowDocumentJobSchema, workflowDocumentSchema, workflowDocumentStepIntegrationSchema, workflowDocumentStepIntegrationSelectionSchema, workflowDocumentStepOutputsSchema, workflowDocumentStepOutputTypes, workflowDocumentStepSchema, workflowDocumentTriggerSchema } from './workflow-document.js';
|
|
3
4
|
export { InvalidWorkflowDocumentError, invalidWorkflowDocumentErrorCode, parseWorkflowDocument } from './workflow-document-parser.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/document/index.ts"],"sourcesContent":["export {\n type AgentThinking,\n agentThinkingByHarness,\n agentThinkingSchema,\n claudeAgentThinkingSchema,\n DEFAULT_AGENT_THINKING,\n DEFAULT_HARNESS,\n DEFAULT_MODEL_PROVIDER,\n type Harness,\n harnessSchema,\n piAgentThinkingSchema,\n thinkingLevelsForHarness,\n} from './step-enums.js';\nexport {\n triggerSourceConfigSchemas,\n WORKFLOW_DOCUMENT_ENV_MAX_ENTRIES,\n WORKFLOW_DOCUMENT_ENV_MAX_SERIALIZED_BYTES,\n WORKFLOW_DOCUMENT_STEP_OUTPUT_SCHEMA_MAX_DEPTH,\n WORKFLOW_DOCUMENT_STEP_OUTPUT_SCHEMA_MAX_SERIALIZED_BYTES,\n WORKFLOW_DOCUMENT_STEP_OUTPUTS_MAX_ENTRIES,\n type WorkflowDocument,\n type WorkflowDocumentEnv,\n type WorkflowDocumentJob,\n type WorkflowDocumentJobCheckout,\n type WorkflowDocumentRunStepGate,\n type WorkflowDocumentStep,\n type WorkflowDocumentStepIntegration,\n type WorkflowDocumentStepOutputs,\n type WorkflowDocumentStepOutputType,\n type WorkflowDocumentTrigger,\n workflowDocumentCheckoutSchema,\n workflowDocumentEnvSchema,\n workflowDocumentJobSchema,\n workflowDocumentSchema,\n workflowDocumentStepIntegrationSchema,\n workflowDocumentStepIntegrationSelectionSchema,\n workflowDocumentStepOutputsSchema,\n workflowDocumentStepOutputTypes,\n workflowDocumentStepSchema,\n workflowDocumentTriggerSchema,\n} from './workflow-document.js';\nexport {\n InvalidWorkflowDocumentError,\n invalidWorkflowDocumentErrorCode,\n parseWorkflowDocument,\n} from './workflow-document-parser.js';\nexport {\n type BuildWorkflowJsonSchemaOptions,\n buildWorkflowJsonSchema,\n} from './workflow-json-schema.js';\n"],"names":["agentThinkingByHarness","agentThinkingSchema","claudeAgentThinkingSchema","DEFAULT_AGENT_THINKING","DEFAULT_HARNESS","DEFAULT_MODEL_PROVIDER","harnessSchema","piAgentThinkingSchema","thinkingLevelsForHarness","triggerSourceConfigSchemas","WORKFLOW_DOCUMENT_ENV_MAX_ENTRIES","WORKFLOW_DOCUMENT_ENV_MAX_SERIALIZED_BYTES","WORKFLOW_DOCUMENT_STEP_OUTPUT_SCHEMA_MAX_DEPTH","WORKFLOW_DOCUMENT_STEP_OUTPUT_SCHEMA_MAX_SERIALIZED_BYTES","WORKFLOW_DOCUMENT_STEP_OUTPUTS_MAX_ENTRIES","workflowDocumentCheckoutSchema","workflowDocumentEnvSchema","workflowDocumentJobSchema","workflowDocumentSchema","workflowDocumentStepIntegrationSchema","workflowDocumentStepIntegrationSelectionSchema","workflowDocumentStepOutputsSchema","workflowDocumentStepOutputTypes","workflowDocumentStepSchema","workflowDocumentTriggerSchema","InvalidWorkflowDocumentError","invalidWorkflowDocumentErrorCode","parseWorkflowDocument","buildWorkflowJsonSchema"],"mappings":"AAAA,SAEEA,sBAAsB,EACtBC,mBAAmB,EACnBC,yBAAyB,EACzBC,sBAAsB,EACtBC,eAAe,EACfC,sBAAsB,EAEtBC,aAAa,EACbC,qBAAqB,EACrBC,wBAAwB,QACnB,kBAAkB;AACzB,SACEC,0BAA0B,EAC1BC,iCAAiC,EACjCC,0CAA0C,EAC1CC,8CAA8C,EAC9CC,yDAAyD,EACzDC,0CAA0C,
|
|
1
|
+
{"version":3,"sources":["../../src/document/index.ts"],"sourcesContent":["export {\n type CheckoutTargetValidationIssue,\n checkoutTargetValidationIssues,\n} from './checkout-target-validation.js';\nexport {\n type AgentThinking,\n agentThinkingByHarness,\n agentThinkingSchema,\n claudeAgentThinkingSchema,\n DEFAULT_AGENT_THINKING,\n DEFAULT_HARNESS,\n DEFAULT_MODEL_PROVIDER,\n type Harness,\n harnessSchema,\n piAgentThinkingSchema,\n thinkingLevelsForHarness,\n} from './step-enums.js';\nexport {\n triggerSourceConfigSchemas,\n WORKFLOW_DOCUMENT_ENV_MAX_ENTRIES,\n WORKFLOW_DOCUMENT_ENV_MAX_SERIALIZED_BYTES,\n WORKFLOW_DOCUMENT_STEP_OUTPUT_SCHEMA_MAX_DEPTH,\n WORKFLOW_DOCUMENT_STEP_OUTPUT_SCHEMA_MAX_SERIALIZED_BYTES,\n WORKFLOW_DOCUMENT_STEP_OUTPUTS_MAX_ENTRIES,\n type WorkflowDocument,\n type WorkflowDocumentCheckout,\n type WorkflowDocumentEnv,\n type WorkflowDocumentJob,\n type WorkflowDocumentJobCheckout,\n type WorkflowDocumentRunStepGate,\n type WorkflowDocumentStep,\n type WorkflowDocumentStepIntegration,\n type WorkflowDocumentStepOutputs,\n type WorkflowDocumentStepOutputType,\n type WorkflowDocumentTrigger,\n workflowDocumentCheckoutSchema,\n workflowDocumentEnvSchema,\n workflowDocumentJobSchema,\n workflowDocumentSchema,\n workflowDocumentStepIntegrationSchema,\n workflowDocumentStepIntegrationSelectionSchema,\n workflowDocumentStepOutputsSchema,\n workflowDocumentStepOutputTypes,\n workflowDocumentStepSchema,\n workflowDocumentTriggerSchema,\n} from './workflow-document.js';\nexport {\n InvalidWorkflowDocumentError,\n invalidWorkflowDocumentErrorCode,\n parseWorkflowDocument,\n} from './workflow-document-parser.js';\nexport {\n type BuildWorkflowJsonSchemaOptions,\n buildWorkflowJsonSchema,\n} from './workflow-json-schema.js';\n"],"names":["checkoutTargetValidationIssues","agentThinkingByHarness","agentThinkingSchema","claudeAgentThinkingSchema","DEFAULT_AGENT_THINKING","DEFAULT_HARNESS","DEFAULT_MODEL_PROVIDER","harnessSchema","piAgentThinkingSchema","thinkingLevelsForHarness","triggerSourceConfigSchemas","WORKFLOW_DOCUMENT_ENV_MAX_ENTRIES","WORKFLOW_DOCUMENT_ENV_MAX_SERIALIZED_BYTES","WORKFLOW_DOCUMENT_STEP_OUTPUT_SCHEMA_MAX_DEPTH","WORKFLOW_DOCUMENT_STEP_OUTPUT_SCHEMA_MAX_SERIALIZED_BYTES","WORKFLOW_DOCUMENT_STEP_OUTPUTS_MAX_ENTRIES","workflowDocumentCheckoutSchema","workflowDocumentEnvSchema","workflowDocumentJobSchema","workflowDocumentSchema","workflowDocumentStepIntegrationSchema","workflowDocumentStepIntegrationSelectionSchema","workflowDocumentStepOutputsSchema","workflowDocumentStepOutputTypes","workflowDocumentStepSchema","workflowDocumentTriggerSchema","InvalidWorkflowDocumentError","invalidWorkflowDocumentErrorCode","parseWorkflowDocument","buildWorkflowJsonSchema"],"mappings":"AAAA,SAEEA,8BAA8B,QACzB,kCAAkC;AACzC,SAEEC,sBAAsB,EACtBC,mBAAmB,EACnBC,yBAAyB,EACzBC,sBAAsB,EACtBC,eAAe,EACfC,sBAAsB,EAEtBC,aAAa,EACbC,qBAAqB,EACrBC,wBAAwB,QACnB,kBAAkB;AACzB,SACEC,0BAA0B,EAC1BC,iCAAiC,EACjCC,0CAA0C,EAC1CC,8CAA8C,EAC9CC,yDAAyD,EACzDC,0CAA0C,EAY1CC,8BAA8B,EAC9BC,yBAAyB,EACzBC,yBAAyB,EACzBC,sBAAsB,EACtBC,qCAAqC,EACrCC,8CAA8C,EAC9CC,iCAAiC,EACjCC,+BAA+B,EAC/BC,0BAA0B,EAC1BC,6BAA6B,QACxB,yBAAyB;AAChC,SACEC,4BAA4B,EAC5BC,gCAAgC,EAChCC,qBAAqB,QAChB,gCAAgC;AACvC,SAEEC,uBAAuB,QAClB,4BAA4B"}
|
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
export declare const WORKFLOW_LITERAL_NAME_PATTERN: RegExp;
|
|
3
|
+
export declare const WORKFLOW_INTERPOLATED_VALUE_PATTERN: RegExp;
|
|
4
|
+
export declare const agentThinkingFieldSchema: z.ZodUnion<readonly [z.ZodEnum<{
|
|
5
|
+
off: "off";
|
|
6
|
+
minimal: "minimal";
|
|
7
|
+
low: "low";
|
|
8
|
+
medium: "medium";
|
|
9
|
+
high: "high";
|
|
10
|
+
xhigh: "xhigh";
|
|
11
|
+
max: "max";
|
|
12
|
+
}>, z.ZodString]>;
|
|
2
13
|
export declare const WORKFLOW_DOCUMENT_ENV_MAX_ENTRIES = 128;
|
|
3
14
|
export declare const WORKFLOW_DOCUMENT_ENV_MAX_SERIALIZED_BYTES: number;
|
|
4
15
|
export declare const workflowDocumentStepOutputTypes: readonly ["string", "number", "boolean", "json"];
|
|
@@ -70,6 +81,12 @@ declare const workflowDocumentStepGateSchema: z.ZodObject<{
|
|
|
70
81
|
}, z.core.$strict>>;
|
|
71
82
|
}, z.core.$strict>;
|
|
72
83
|
export declare const workflowDocumentCheckoutSchema: z.ZodObject<{
|
|
84
|
+
project: z.ZodOptional<z.ZodString>;
|
|
85
|
+
connection: z.ZodOptional<z.ZodString>;
|
|
86
|
+
repository: z.ZodOptional<z.ZodString>;
|
|
87
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
88
|
+
'fetch-depth': z.ZodOptional<z.ZodNumber>;
|
|
89
|
+
path: z.ZodOptional<z.ZodString>;
|
|
73
90
|
permissions: z.ZodOptional<z.ZodObject<{
|
|
74
91
|
contents: z.ZodOptional<z.ZodEnum<{
|
|
75
92
|
read: "read";
|
|
@@ -77,7 +94,17 @@ export declare const workflowDocumentCheckoutSchema: z.ZodObject<{
|
|
|
77
94
|
}>>;
|
|
78
95
|
}, z.core.$strict>>;
|
|
79
96
|
'persist-credentials': z.ZodOptional<z.ZodBoolean>;
|
|
97
|
+
force: z.ZodOptional<z.ZodBoolean>;
|
|
80
98
|
}, z.core.$strict>;
|
|
99
|
+
declare const workflowDocumentJobCheckoutSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
100
|
+
permissions: z.ZodOptional<z.ZodObject<{
|
|
101
|
+
contents: z.ZodOptional<z.ZodEnum<{
|
|
102
|
+
read: "read";
|
|
103
|
+
write: "write";
|
|
104
|
+
}>>;
|
|
105
|
+
}, z.core.$strict>>;
|
|
106
|
+
'persist-credentials': z.ZodOptional<z.ZodBoolean>;
|
|
107
|
+
}, z.core.$strict>, z.ZodLiteral<false>]>;
|
|
81
108
|
export declare const workflowDocumentStepIntegrationSelectionSchema: z.ZodArray<z.ZodString>;
|
|
82
109
|
export declare const workflowDocumentStepIntegrationSchema: z.ZodObject<{
|
|
83
110
|
connection: z.ZodOptional<z.ZodString>;
|
|
@@ -90,14 +117,31 @@ export declare const workflowDocumentStepSchema: z.ZodObject<{
|
|
|
90
117
|
key: z.ZodOptional<z.ZodString>;
|
|
91
118
|
if: z.ZodOptional<z.ZodString>;
|
|
92
119
|
name: z.ZodOptional<z.ZodString>;
|
|
120
|
+
working_directory: z.ZodOptional<z.ZodString>;
|
|
93
121
|
run: z.ZodOptional<z.ZodString>;
|
|
122
|
+
checkout: z.ZodOptional<z.ZodObject<{
|
|
123
|
+
project: z.ZodOptional<z.ZodString>;
|
|
124
|
+
connection: z.ZodOptional<z.ZodString>;
|
|
125
|
+
repository: z.ZodOptional<z.ZodString>;
|
|
126
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
127
|
+
'fetch-depth': z.ZodOptional<z.ZodNumber>;
|
|
128
|
+
path: z.ZodOptional<z.ZodString>;
|
|
129
|
+
permissions: z.ZodOptional<z.ZodObject<{
|
|
130
|
+
contents: z.ZodOptional<z.ZodEnum<{
|
|
131
|
+
read: "read";
|
|
132
|
+
write: "write";
|
|
133
|
+
}>>;
|
|
134
|
+
}, z.core.$strict>>;
|
|
135
|
+
'persist-credentials': z.ZodOptional<z.ZodBoolean>;
|
|
136
|
+
force: z.ZodOptional<z.ZodBoolean>;
|
|
137
|
+
}, z.core.$strict>>;
|
|
94
138
|
model: z.ZodOptional<z.ZodString>;
|
|
95
139
|
prompt: z.ZodOptional<z.ZodString>;
|
|
96
140
|
harness: z.ZodOptional<z.ZodEnum<{
|
|
97
141
|
pi: "pi";
|
|
98
142
|
claude: "claude";
|
|
99
143
|
}>>;
|
|
100
|
-
thinking: z.ZodOptional<z.ZodEnum<{
|
|
144
|
+
thinking: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
101
145
|
off: "off";
|
|
102
146
|
minimal: "minimal";
|
|
103
147
|
low: "low";
|
|
@@ -105,7 +149,7 @@ export declare const workflowDocumentStepSchema: z.ZodObject<{
|
|
|
105
149
|
high: "high";
|
|
106
150
|
xhigh: "xhigh";
|
|
107
151
|
max: "max";
|
|
108
|
-
}>>;
|
|
152
|
+
}>, z.ZodString]>>;
|
|
109
153
|
provider: z.ZodOptional<z.ZodString>;
|
|
110
154
|
tools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
111
155
|
integrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -147,7 +191,7 @@ export declare const workflowDocumentJobSchema: z.ZodObject<{
|
|
|
147
191
|
success: z.ZodOptional<z.ZodString>;
|
|
148
192
|
outputs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
149
193
|
execution_timeout: z.ZodOptional<z.ZodString>;
|
|
150
|
-
checkout: z.ZodOptional<z.ZodObject<{
|
|
194
|
+
checkout: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
151
195
|
permissions: z.ZodOptional<z.ZodObject<{
|
|
152
196
|
contents: z.ZodOptional<z.ZodEnum<{
|
|
153
197
|
read: "read";
|
|
@@ -155,7 +199,7 @@ export declare const workflowDocumentJobSchema: z.ZodObject<{
|
|
|
155
199
|
}>>;
|
|
156
200
|
}, z.core.$strict>>;
|
|
157
201
|
'persist-credentials': z.ZodOptional<z.ZodBoolean>;
|
|
158
|
-
}, z.core.$strict>>;
|
|
202
|
+
}, z.core.$strict>, z.ZodLiteral<false>]>>;
|
|
159
203
|
listening: z.ZodOptional<z.ZodObject<{
|
|
160
204
|
on: z.ZodArray<z.ZodObject<{
|
|
161
205
|
event: z.ZodString;
|
|
@@ -184,19 +228,37 @@ export declare const workflowDocumentJobSchema: z.ZodObject<{
|
|
|
184
228
|
}>>;
|
|
185
229
|
}, z.core.$strict>>;
|
|
186
230
|
name: z.ZodOptional<z.ZodString>;
|
|
231
|
+
execution_name: z.ZodOptional<z.ZodString>;
|
|
187
232
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
188
233
|
steps: z.ZodArray<z.ZodObject<{
|
|
189
234
|
key: z.ZodOptional<z.ZodString>;
|
|
190
235
|
if: z.ZodOptional<z.ZodString>;
|
|
191
236
|
name: z.ZodOptional<z.ZodString>;
|
|
237
|
+
working_directory: z.ZodOptional<z.ZodString>;
|
|
192
238
|
run: z.ZodOptional<z.ZodString>;
|
|
239
|
+
checkout: z.ZodOptional<z.ZodObject<{
|
|
240
|
+
project: z.ZodOptional<z.ZodString>;
|
|
241
|
+
connection: z.ZodOptional<z.ZodString>;
|
|
242
|
+
repository: z.ZodOptional<z.ZodString>;
|
|
243
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
244
|
+
'fetch-depth': z.ZodOptional<z.ZodNumber>;
|
|
245
|
+
path: z.ZodOptional<z.ZodString>;
|
|
246
|
+
permissions: z.ZodOptional<z.ZodObject<{
|
|
247
|
+
contents: z.ZodOptional<z.ZodEnum<{
|
|
248
|
+
read: "read";
|
|
249
|
+
write: "write";
|
|
250
|
+
}>>;
|
|
251
|
+
}, z.core.$strict>>;
|
|
252
|
+
'persist-credentials': z.ZodOptional<z.ZodBoolean>;
|
|
253
|
+
force: z.ZodOptional<z.ZodBoolean>;
|
|
254
|
+
}, z.core.$strict>>;
|
|
193
255
|
model: z.ZodOptional<z.ZodString>;
|
|
194
256
|
prompt: z.ZodOptional<z.ZodString>;
|
|
195
257
|
harness: z.ZodOptional<z.ZodEnum<{
|
|
196
258
|
pi: "pi";
|
|
197
259
|
claude: "claude";
|
|
198
260
|
}>>;
|
|
199
|
-
thinking: z.ZodOptional<z.ZodEnum<{
|
|
261
|
+
thinking: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
200
262
|
off: "off";
|
|
201
263
|
minimal: "minimal";
|
|
202
264
|
low: "low";
|
|
@@ -204,7 +266,7 @@ export declare const workflowDocumentJobSchema: z.ZodObject<{
|
|
|
204
266
|
high: "high";
|
|
205
267
|
xhigh: "xhigh";
|
|
206
268
|
max: "max";
|
|
207
|
-
}>>;
|
|
269
|
+
}>, z.ZodString]>>;
|
|
208
270
|
provider: z.ZodOptional<z.ZodString>;
|
|
209
271
|
tools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
210
272
|
integrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -242,6 +304,7 @@ export declare const workflowDocumentJobSchema: z.ZodObject<{
|
|
|
242
304
|
}, z.core.$strict>;
|
|
243
305
|
export declare const workflowDocumentSchema: z.ZodObject<{
|
|
244
306
|
name: z.ZodString;
|
|
307
|
+
run_name: z.ZodOptional<z.ZodString>;
|
|
245
308
|
runner: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
246
309
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
247
310
|
triggers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -258,7 +321,7 @@ export declare const workflowDocumentSchema: z.ZodObject<{
|
|
|
258
321
|
success: z.ZodOptional<z.ZodString>;
|
|
259
322
|
outputs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
260
323
|
execution_timeout: z.ZodOptional<z.ZodString>;
|
|
261
|
-
checkout: z.ZodOptional<z.ZodObject<{
|
|
324
|
+
checkout: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
262
325
|
permissions: z.ZodOptional<z.ZodObject<{
|
|
263
326
|
contents: z.ZodOptional<z.ZodEnum<{
|
|
264
327
|
read: "read";
|
|
@@ -266,7 +329,7 @@ export declare const workflowDocumentSchema: z.ZodObject<{
|
|
|
266
329
|
}>>;
|
|
267
330
|
}, z.core.$strict>>;
|
|
268
331
|
'persist-credentials': z.ZodOptional<z.ZodBoolean>;
|
|
269
|
-
}, z.core.$strict>>;
|
|
332
|
+
}, z.core.$strict>, z.ZodLiteral<false>]>>;
|
|
270
333
|
listening: z.ZodOptional<z.ZodObject<{
|
|
271
334
|
on: z.ZodArray<z.ZodObject<{
|
|
272
335
|
event: z.ZodString;
|
|
@@ -295,19 +358,37 @@ export declare const workflowDocumentSchema: z.ZodObject<{
|
|
|
295
358
|
}>>;
|
|
296
359
|
}, z.core.$strict>>;
|
|
297
360
|
name: z.ZodOptional<z.ZodString>;
|
|
361
|
+
execution_name: z.ZodOptional<z.ZodString>;
|
|
298
362
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
|
|
299
363
|
steps: z.ZodArray<z.ZodObject<{
|
|
300
364
|
key: z.ZodOptional<z.ZodString>;
|
|
301
365
|
if: z.ZodOptional<z.ZodString>;
|
|
302
366
|
name: z.ZodOptional<z.ZodString>;
|
|
367
|
+
working_directory: z.ZodOptional<z.ZodString>;
|
|
303
368
|
run: z.ZodOptional<z.ZodString>;
|
|
369
|
+
checkout: z.ZodOptional<z.ZodObject<{
|
|
370
|
+
project: z.ZodOptional<z.ZodString>;
|
|
371
|
+
connection: z.ZodOptional<z.ZodString>;
|
|
372
|
+
repository: z.ZodOptional<z.ZodString>;
|
|
373
|
+
ref: z.ZodOptional<z.ZodString>;
|
|
374
|
+
'fetch-depth': z.ZodOptional<z.ZodNumber>;
|
|
375
|
+
path: z.ZodOptional<z.ZodString>;
|
|
376
|
+
permissions: z.ZodOptional<z.ZodObject<{
|
|
377
|
+
contents: z.ZodOptional<z.ZodEnum<{
|
|
378
|
+
read: "read";
|
|
379
|
+
write: "write";
|
|
380
|
+
}>>;
|
|
381
|
+
}, z.core.$strict>>;
|
|
382
|
+
'persist-credentials': z.ZodOptional<z.ZodBoolean>;
|
|
383
|
+
force: z.ZodOptional<z.ZodBoolean>;
|
|
384
|
+
}, z.core.$strict>>;
|
|
304
385
|
model: z.ZodOptional<z.ZodString>;
|
|
305
386
|
prompt: z.ZodOptional<z.ZodString>;
|
|
306
387
|
harness: z.ZodOptional<z.ZodEnum<{
|
|
307
388
|
pi: "pi";
|
|
308
389
|
claude: "claude";
|
|
309
390
|
}>>;
|
|
310
|
-
thinking: z.ZodOptional<z.ZodEnum<{
|
|
391
|
+
thinking: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
311
392
|
off: "off";
|
|
312
393
|
minimal: "minimal";
|
|
313
394
|
low: "low";
|
|
@@ -315,7 +396,7 @@ export declare const workflowDocumentSchema: z.ZodObject<{
|
|
|
315
396
|
high: "high";
|
|
316
397
|
xhigh: "xhigh";
|
|
317
398
|
max: "max";
|
|
318
|
-
}>>;
|
|
399
|
+
}>, z.ZodString]>>;
|
|
319
400
|
provider: z.ZodOptional<z.ZodString>;
|
|
320
401
|
tools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
321
402
|
integrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -353,7 +434,8 @@ export declare const workflowDocumentSchema: z.ZodObject<{
|
|
|
353
434
|
}, z.core.$strict>>;
|
|
354
435
|
}, z.core.$strict>;
|
|
355
436
|
export type WorkflowDocument = z.infer<typeof workflowDocumentSchema>;
|
|
356
|
-
export type
|
|
437
|
+
export type WorkflowDocumentCheckout = z.infer<typeof workflowDocumentCheckoutSchema>;
|
|
438
|
+
export type WorkflowDocumentJobCheckout = z.infer<typeof workflowDocumentJobCheckoutSchema>;
|
|
357
439
|
export type WorkflowDocumentEnv = z.infer<typeof workflowDocumentEnvSchema>;
|
|
358
440
|
export type WorkflowDocumentJob = z.infer<typeof workflowDocumentJobSchema>;
|
|
359
441
|
export type WorkflowDocumentJobListening = z.infer<typeof workflowDocumentListeningSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workflow-document.d.ts","sourceRoot":"","sources":["../../src/document/workflow-document.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"workflow-document.d.ts","sourceRoot":"","sources":["../../src/document/workflow-document.ts"],"names":[],"mappings":"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"}
|