@shipfox/expression 2.0.0 → 2.2.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.
Files changed (53) hide show
  1. package/README.md +20 -8
  2. package/dist/evaluator/errors.d.ts.map +1 -1
  3. package/dist/evaluator/evaluate-workflow-expression.d.ts +3 -4
  4. package/dist/evaluator/evaluate-workflow-expression.d.ts.map +1 -1
  5. package/dist/evaluator/evaluate-workflow-expression.js +5 -5
  6. package/dist/evaluator/evaluate-workflow-expression.js.map +1 -1
  7. package/dist/evaluator/index.d.ts +3 -0
  8. package/dist/evaluator/index.d.ts.map +1 -1
  9. package/dist/evaluator/index.js +3 -0
  10. package/dist/evaluator/index.js.map +1 -1
  11. package/dist/evaluator/range.d.ts +2 -3
  12. package/dist/evaluator/range.d.ts.map +1 -1
  13. package/dist/evaluator/range.js +4 -43
  14. package/dist/evaluator/range.js.map +1 -1
  15. package/dist/evaluator/rehydrate-json-expression.d.ts +4 -0
  16. package/dist/evaluator/rehydrate-json-expression.d.ts.map +1 -0
  17. package/dist/evaluator/rehydrate-json-expression.js +44 -0
  18. package/dist/evaluator/rehydrate-json-expression.js.map +1 -0
  19. package/dist/evaluator/workflow-environment.d.ts +3 -0
  20. package/dist/evaluator/workflow-environment.d.ts.map +1 -0
  21. package/dist/evaluator/workflow-environment.js +17 -0
  22. package/dist/evaluator/workflow-environment.js.map +1 -0
  23. package/dist/expression/create-workflow-expression.d.ts.map +1 -1
  24. package/dist/expression/create-workflow-expression.js +48 -12
  25. package/dist/expression/create-workflow-expression.js.map +1 -1
  26. package/dist/expression/errors.d.ts.map +1 -1
  27. package/dist/index.d.ts +3 -0
  28. package/dist/index.d.ts.map +1 -1
  29. package/dist/index.js +3 -0
  30. package/dist/index.js.map +1 -1
  31. package/dist/json.d.ts +2 -0
  32. package/dist/json.d.ts.map +1 -0
  33. package/dist/json.js +7 -0
  34. package/dist/json.js.map +1 -0
  35. package/dist/plan/context-key-access.d.ts.map +1 -1
  36. package/dist/plan/context-key-access.js +7 -4
  37. package/dist/plan/context-key-access.js.map +1 -1
  38. package/dist/resolver/coerce-workflow-value-to-string.d.ts.map +1 -1
  39. package/dist/resolver/coerce-workflow-value-to-string.js +1 -5
  40. package/dist/resolver/coerce-workflow-value-to-string.js.map +1 -1
  41. package/dist/resolver/errors.d.ts.map +1 -1
  42. package/dist/run/hoist-run-command.d.ts.map +1 -1
  43. package/dist/template/errors.d.ts.map +1 -1
  44. package/dist/tsconfig.test.tsbuildinfo +1 -1
  45. package/dist/workflow-context/workflow-context-docs.d.ts +125 -125
  46. package/dist/workflow-context/workflow-context-docs.d.ts.map +1 -1
  47. package/dist/workflow-context/workflow-context.d.ts +183 -183
  48. package/dist/workflow-context/workflow-context.d.ts.map +1 -1
  49. package/dist/workflow-function-registry.d.ts +21 -0
  50. package/dist/workflow-function-registry.d.ts.map +1 -0
  51. package/dist/workflow-function-registry.js +133 -0
  52. package/dist/workflow-function-registry.js.map +1 -0
  53. package/package.json +2 -2
@@ -20,166 +20,166 @@ export interface WorkflowContextDoc {
20
20
  readonly collapse?: readonly string[];
21
21
  }
22
22
  export declare const workflowContextDocs: readonly [{
23
- readonly root: "workflow";
24
- readonly summary: "The workflow definition this run came from.";
23
+ readonly root: 'workflow';
24
+ readonly summary: 'The workflow definition this run came from.';
25
25
  readonly fields: {
26
- readonly id: "Identifier of the workflow definition.";
27
- readonly name: "Workflow `name` from the definition.";
26
+ readonly id: 'Identifier of the workflow definition.';
27
+ readonly name: 'Workflow `name` from the definition.';
28
28
  };
29
29
  }, {
30
- readonly root: "run";
31
- readonly summary: "The current run.";
30
+ readonly root: 'run';
31
+ readonly summary: 'The current run.';
32
32
  readonly fields: {
33
- readonly id: "Identifier of the run.";
34
- readonly number: "Sequential run number within the workflow definition.";
35
- readonly name: "Resolved run name, or the workflow name when `run_name` is not set.";
36
- readonly project_id: "Identifier of the project that owns the run.";
37
- readonly workspace_id: "Identifier of the workspace that owns the run.";
38
- readonly created_at: "Time the run was created.";
33
+ readonly id: 'Identifier of the run.';
34
+ readonly number: 'Sequential run number within the workflow definition.';
35
+ readonly name: 'Resolved run name, or the workflow name when `run_name` is not set.';
36
+ readonly project_id: 'Identifier of the project that owns the run.';
37
+ readonly workspace_id: 'Identifier of the workspace that owns the run.';
38
+ readonly created_at: 'Time the run was created.';
39
39
  };
40
40
  }, {
41
- readonly root: "trigger";
42
- readonly summary: "The trigger that started the run.";
41
+ readonly root: 'trigger';
42
+ readonly summary: 'The trigger that started the run.';
43
43
  readonly fields: {
44
- readonly source: "Integration connection slug, or `manual` or `cron`.";
45
- readonly event: "Shipfox event name that matched the trigger.";
46
- readonly project: "Shipfox project resolved from the event repository. Null when there is none.";
47
- readonly 'project.id': "Identifier of the resolved project.";
48
- readonly repository: "Repository the event came from, as `owner/name`. Null when there is none.";
49
- readonly ref: "Git ref the event carried. Null when there is none.";
50
- readonly commit: "Commit SHA the event carried. Null when there is none.";
44
+ readonly source: 'Integration connection slug, or `manual` or `cron`.';
45
+ readonly event: 'Shipfox event name that matched the trigger.';
46
+ readonly project: 'Shipfox project resolved from the event repository. Null when there is none.';
47
+ readonly 'project.id': 'Identifier of the resolved project.';
48
+ readonly repository: 'Repository the event came from, as `owner/name`. Null when there is none.';
49
+ readonly ref: 'Git ref the event carried. Null when there is none.';
50
+ readonly commit: 'Commit SHA the event carried. Null when there is none.';
51
51
  };
52
52
  }, {
53
- readonly root: "event";
54
- readonly summary: "The raw payload of the event that started the run.";
55
- readonly shapeNote: "The provider owns this payload, so it has no fixed shape. Each provider page under [Integrations](/integrations) lists the events Shipfox delivers and links the payload each one carries.";
53
+ readonly root: 'event';
54
+ readonly summary: 'The raw payload of the event that started the run.';
55
+ readonly shapeNote: 'The provider owns this payload, so it has no fixed shape. Each provider page under [Integrations](/integrations) lists the events Shipfox delivers and links the payload each one carries.';
56
56
  }, {
57
- readonly root: "inputs";
58
- readonly summary: "Values the trigger `with` block passed into the run.";
59
- readonly shapeNote: "The keys are the ones the trigger declares. See [trigger fields](/reference/workflow-schema#trigger-fields).";
57
+ readonly root: 'inputs';
58
+ readonly summary: 'Values the trigger `with` block passed into the run.';
59
+ readonly shapeNote: 'The keys are the ones the trigger declares. See [trigger fields](/reference/workflow-schema#trigger-fields).';
60
60
  }, {
61
- readonly root: "job";
62
- readonly summary: "The current job.";
61
+ readonly root: 'job';
62
+ readonly summary: 'The current job.';
63
63
  readonly fields: {
64
- readonly key: "Key of the job in the `jobs` map.";
65
- readonly name: "Job `name`, or the job key when no name is set.";
64
+ readonly key: 'Key of the job in the `jobs` map.';
65
+ readonly name: 'Job `name`, or the job key when no name is set.';
66
66
  };
67
67
  }, {
68
- readonly root: "executions";
69
- readonly summary: "Every execution of the current job.";
70
- readonly propertyPrefix: "executions[*].";
68
+ readonly root: 'executions';
69
+ readonly summary: 'Every execution of the current job.';
70
+ readonly propertyPrefix: 'executions[*].';
71
71
  readonly fields: {
72
- readonly index: "Position of the execution in its job, starting at zero.";
73
- readonly name: "Resolved execution name, or the job name when `execution_name` is not set.";
74
- readonly status: "Final status of the execution.";
75
- readonly started_at: "Time the execution started.";
76
- readonly finished_at: "Time the execution finished.";
77
- readonly events: "Listener events in the batch that started this execution. Empty for a standard job.";
78
- readonly 'events[*].source': "Integration connection slug that delivered the event.";
79
- readonly 'events[*].event': "Shipfox event name.";
80
- readonly 'events[*].delivery_id': "Identifier of the provider delivery.";
81
- readonly 'events[*].received_at': "Time Shipfox received the event.";
82
- readonly 'events[*].project': "Shipfox project resolved from the event repository. Null when there is none.";
83
- readonly 'events[*].project.id': "Identifier of the resolved project.";
84
- readonly 'events[*].repository': "Repository the event came from, as `owner/name`. Null when there is none.";
85
- readonly 'events[*].ref': "Git ref the event carried. Null when there is none.";
86
- readonly 'events[*].commit': "Commit SHA the event carried. Null when there is none.";
87
- readonly 'events[*].data': "Raw event payload. The provider owns its shape.";
88
- readonly outputs: "Outputs the execution produced, keyed by output name.";
72
+ readonly index: 'Position of the execution in its job, starting at zero.';
73
+ readonly name: 'Resolved execution name, or the job name when `execution_name` is not set.';
74
+ readonly status: 'Final status of the execution.';
75
+ readonly started_at: 'Time the execution started.';
76
+ readonly finished_at: 'Time the execution finished.';
77
+ readonly events: 'Listener events in the batch that started this execution. Empty for a standard job.';
78
+ readonly 'events[*].source': 'Integration connection slug that delivered the event.';
79
+ readonly 'events[*].event': 'Shipfox event name.';
80
+ readonly 'events[*].delivery_id': 'Identifier of the provider delivery.';
81
+ readonly 'events[*].received_at': 'Time Shipfox received the event.';
82
+ readonly 'events[*].project': 'Shipfox project resolved from the event repository. Null when there is none.';
83
+ readonly 'events[*].project.id': 'Identifier of the resolved project.';
84
+ readonly 'events[*].repository': 'Repository the event came from, as `owner/name`. Null when there is none.';
85
+ readonly 'events[*].ref': 'Git ref the event carried. Null when there is none.';
86
+ readonly 'events[*].commit': 'Commit SHA the event carried. Null when there is none.';
87
+ readonly 'events[*].data': 'Raw event payload. The provider owns its shape.';
88
+ readonly outputs: 'Outputs the execution produced, keyed by output name.';
89
89
  };
90
90
  }, {
91
- readonly root: "execution";
92
- readonly summary: "The current execution of the job.";
91
+ readonly root: 'execution';
92
+ readonly summary: 'The current execution of the job.';
93
93
  readonly fields: {
94
- readonly failed: "Whether an earlier step in this execution failed.";
95
- readonly index: "Position of the execution in its job, starting at zero.";
96
- readonly name: "Resolved execution name, or the job name when `execution_name` is not set.";
97
- readonly status: "Final status of the execution.";
98
- readonly started_at: "Time the execution started.";
99
- readonly finished_at: "Time the execution finished.";
100
- readonly events: "Listener events in the batch that started this execution. Empty for a standard job.";
101
- readonly 'events[*].source': "Integration connection slug that delivered the event.";
102
- readonly 'events[*].event': "Shipfox event name.";
103
- readonly 'events[*].delivery_id': "Identifier of the provider delivery.";
104
- readonly 'events[*].received_at': "Time Shipfox received the event.";
105
- readonly 'events[*].project': "Shipfox project resolved from the event repository. Null when there is none.";
106
- readonly 'events[*].project.id': "Identifier of the resolved project.";
107
- readonly 'events[*].repository': "Repository the event came from, as `owner/name`. Null when there is none.";
108
- readonly 'events[*].ref': "Git ref the event carried. Null when there is none.";
109
- readonly 'events[*].commit': "Commit SHA the event carried. Null when there is none.";
110
- readonly 'events[*].data': "Raw event payload. The provider owns its shape.";
111
- readonly outputs: "Outputs the execution produced, keyed by output name.";
94
+ readonly index: 'Position of the execution in its job, starting at zero.';
95
+ readonly name: 'Resolved execution name, or the job name when `execution_name` is not set.';
96
+ readonly status: 'Final status of the execution.';
97
+ readonly started_at: 'Time the execution started.';
98
+ readonly finished_at: 'Time the execution finished.';
99
+ readonly events: 'Listener events in the batch that started this execution. Empty for a standard job.';
100
+ readonly 'events[*].source': 'Integration connection slug that delivered the event.';
101
+ readonly 'events[*].event': 'Shipfox event name.';
102
+ readonly 'events[*].delivery_id': 'Identifier of the provider delivery.';
103
+ readonly 'events[*].received_at': 'Time Shipfox received the event.';
104
+ readonly 'events[*].project': 'Shipfox project resolved from the event repository. Null when there is none.';
105
+ readonly 'events[*].project.id': 'Identifier of the resolved project.';
106
+ readonly 'events[*].repository': 'Repository the event came from, as `owner/name`. Null when there is none.';
107
+ readonly 'events[*].ref': 'Git ref the event carried. Null when there is none.';
108
+ readonly 'events[*].commit': 'Commit SHA the event carried. Null when there is none.';
109
+ readonly 'events[*].data': 'Raw event payload. The provider owns its shape.';
110
+ readonly outputs: 'Outputs the execution produced, keyed by output name.';
111
+ readonly failed: 'Whether an earlier step in this execution failed.';
112
112
  };
113
113
  }, {
114
- readonly root: "jobs";
115
- readonly summary: "Upstream jobs, keyed by job key.";
116
- readonly shapeNote: "The keys are the job keys the workflow declares.";
117
- readonly propertyPrefix: "jobs.<job_key>.";
114
+ readonly root: 'jobs';
115
+ readonly summary: 'Upstream jobs, keyed by job key.';
116
+ readonly shapeNote: 'The keys are the job keys the workflow declares.';
117
+ readonly propertyPrefix: 'jobs.<job_key>.';
118
118
  readonly fields: {
119
- readonly key: "Key of the job in the `jobs` map.";
120
- readonly status: "Final status of the job.";
121
- readonly outputs: "Declared job outputs, keyed by output name.";
122
- readonly executions: "Executions of the job, each with the properties of the `execution` context. A standard job has one.";
119
+ readonly key: 'Key of the job in the `jobs` map.';
120
+ readonly status: 'Final status of the job.';
121
+ readonly outputs: 'Declared job outputs, keyed by output name.';
122
+ readonly executions: 'Executions of the job, each with the properties of the `execution` context. A standard job has one.';
123
123
  };
124
124
  readonly collapse: readonly ["executions"];
125
125
  }, {
126
- readonly root: "needs";
127
- readonly summary: "The jobs this job declares in `needs`.";
128
- readonly propertyPrefix: "needs[*].";
126
+ readonly root: 'needs';
127
+ readonly summary: 'The jobs this job declares in `needs`.';
128
+ readonly propertyPrefix: 'needs[*].';
129
129
  readonly fields: {
130
- readonly key: "Key of the job in the `jobs` map.";
131
- readonly status: "Final status of the job.";
132
- readonly outputs: "Declared job outputs, keyed by output name.";
133
- readonly executions: "Executions of the job, each with the properties of the `execution` context. A standard job has one.";
130
+ readonly key: 'Key of the job in the `jobs` map.';
131
+ readonly status: 'Final status of the job.';
132
+ readonly outputs: 'Declared job outputs, keyed by output name.';
133
+ readonly executions: 'Executions of the job, each with the properties of the `execution` context. A standard job has one.';
134
134
  };
135
135
  readonly collapse: readonly ["executions"];
136
136
  }, {
137
- readonly root: "steps";
138
- readonly summary: "Earlier steps of the current job, keyed by step key.";
139
- readonly shapeNote: "The keys are the step keys the workflow declares.";
140
- readonly propertyPrefix: "steps.<step_key>.";
137
+ readonly root: 'steps';
138
+ readonly summary: 'Earlier steps of the current job, keyed by step key.';
139
+ readonly shapeNote: 'The keys are the step keys the workflow declares.';
140
+ readonly propertyPrefix: 'steps.<step_key>.';
141
141
  readonly fields: {
142
- readonly status: "Final status of the step.";
143
- readonly exit_code: "Exit code of the most recent finished attempt.";
144
- readonly outputs: "Declared step outputs of the most recent finished attempt.";
145
- readonly response: "Final agent response. Absent on a run step.";
146
- readonly gate: "Gate result of the most recent finished attempt. Absent when the step has no gate.";
147
- readonly 'gate.passed': "Whether the gate expression passed.";
148
- readonly 'gate.source': "Gate expression that produced the result.";
149
- readonly 'gate.reason': "Why Shipfox could not check the gate.";
150
- readonly 'gate.exit_code': "Exit code the gate read.";
151
- readonly attempts: "Every finished attempt of the step, oldest first.";
152
- readonly 'attempts[*].status': "Final status of the attempt.";
153
- readonly 'attempts[*].exit_code': "Exit code the attempt reported.";
154
- readonly 'attempts[*].outputs': "Declared outputs the attempt reported.";
155
- readonly 'attempts[*].response': "Final agent response of the attempt. Absent on a run step.";
156
- readonly 'attempts[*].gate': "Gate result of the attempt. Absent when the step has no gate.";
157
- readonly 'attempts[*].gate.passed': "Whether the gate expression passed.";
158
- readonly 'attempts[*].gate.source': "Gate expression that produced the result.";
159
- readonly 'attempts[*].gate.reason': "Why Shipfox could not check the gate.";
160
- readonly 'attempts[*].gate.exit_code': "Exit code the gate read.";
142
+ readonly status: 'Final status of the step.';
143
+ readonly exit_code: 'Exit code of the most recent finished attempt.';
144
+ readonly outputs: 'Declared step outputs of the most recent finished attempt.';
145
+ readonly response: 'Final agent response. Absent on a run step.';
146
+ readonly gate: 'Gate result of the most recent finished attempt. Absent when the step has no gate.';
147
+ readonly 'gate.passed': 'Whether the gate expression passed.';
148
+ readonly 'gate.source': 'Gate expression that produced the result.';
149
+ readonly 'gate.reason': 'Why Shipfox could not check the gate.';
150
+ readonly 'gate.exit_code': 'Exit code the gate read.';
151
+ readonly attempts: 'Every finished attempt of the step, oldest first.';
152
+ readonly 'attempts[*].status': 'Final status of the attempt.';
153
+ readonly 'attempts[*].exit_code': 'Exit code the attempt reported.';
154
+ readonly 'attempts[*].outputs': 'Declared outputs the attempt reported.';
155
+ readonly 'attempts[*].response': 'Final agent response of the attempt. Absent on a run step.';
156
+ readonly 'attempts[*].gate': 'Gate result of the attempt. Absent when the step has no gate.';
157
+ readonly 'attempts[*].gate.passed': 'Whether the gate expression passed.';
158
+ readonly 'attempts[*].gate.source': 'Gate expression that produced the result.';
159
+ readonly 'attempts[*].gate.reason': 'Why Shipfox could not check the gate.';
160
+ readonly 'attempts[*].gate.exit_code': 'Exit code the gate read.';
161
161
  };
162
162
  }, {
163
- readonly root: "step";
164
- readonly summary: "The current step. Its properties depend on the field that reads it.";
163
+ readonly root: 'step';
164
+ readonly summary: 'The current step. Its properties depend on the field that reads it.';
165
165
  readonly fields: {
166
- readonly attempt: "Attempt number of the step, starting at one. Not readable in `gate.success`.";
167
- readonly is_retry: "Whether this is a repeat attempt. Not readable in `gate.success`.";
168
- readonly restart: "Set when a gate restarted this step. Not readable in `gate.success`.";
169
- readonly 'restart.from': "The step whose gate restarted this attempt, with the properties of a `steps` entry. Not readable in `gate.success`.";
170
- readonly 'restart.feedback': "Feedback the restarting gate produced. Not readable in `gate.success`.";
171
- readonly exit_code: "Exit code the step reported. Readable in `gate.success` only.";
172
- readonly status: "Status the step reported. Readable in `gate.success` only.";
173
- readonly outputs: "Outputs the step reported. Readable in `gate.success` only.";
166
+ readonly attempt: 'Attempt number of the step, starting at one. Not readable in `gate.success`.';
167
+ readonly is_retry: 'Whether this is a repeat attempt. Not readable in `gate.success`.';
168
+ readonly restart: 'Set when a gate restarted this step. Not readable in `gate.success`.';
169
+ readonly 'restart.from': 'The step whose gate restarted this attempt, with the properties of a `steps` entry. Not readable in `gate.success`.';
170
+ readonly 'restart.feedback': 'Feedback the restarting gate produced. Not readable in `gate.success`.';
171
+ readonly exit_code: 'Exit code the step reported. Readable in `gate.success` only.';
172
+ readonly status: 'Status the step reported. Readable in `gate.success` only.';
173
+ readonly outputs: 'Outputs the step reported. Readable in `gate.success` only.';
174
174
  };
175
175
  readonly collapse: readonly ["restart.from"];
176
176
  }, {
177
- readonly root: "vars";
178
- readonly summary: "Workspace and project variables.";
179
- readonly shapeNote: "The keys are the variable names the workspace defines. See [Secrets and variables](/reference/secrets-variables).";
177
+ readonly root: 'vars';
178
+ readonly summary: 'Workspace and project variables.';
179
+ readonly shapeNote: 'The keys are the variable names the workspace defines. See [Secrets and variables](/reference/secrets-variables).';
180
180
  }, {
181
- readonly root: "secrets";
182
- readonly summary: "Workspace and project secrets.";
183
- readonly shapeNote: "The keys are the secret names the workspace defines. See [Secrets and variables](/reference/secrets-variables).";
181
+ readonly root: 'secrets';
182
+ readonly summary: 'Workspace and project secrets.';
183
+ readonly shapeNote: 'The keys are the secret names the workspace defines. See [Secrets and variables](/reference/secrets-variables).';
184
184
  }];
185
185
  //# sourceMappingURL=workflow-context-docs.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"workflow-context-docs.d.ts","sourceRoot":"","sources":["../../src/workflow-context/workflow-context-docs.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,uBAAuB,CAAC;AAE/D;;;;;;;GAOG;AACH,MAAM,WAAW,kBAAkB;IACjC,QAAQ,CAAC,IAAI,EAAE,mBAAmB,CAAC;IACnC,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,oDAAoD;IACpD,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC;IAC5B,gEAAgE;IAChE,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,CAAC;IACjC,2DAA2D;IAC3D,QAAQ,CAAC,MAAM,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC;IACnD,gEAAgE;IAChE,QAAQ,CAAC,QAAQ,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;CACvC;AAsDD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsHkB,CAAC"}
1
+ {"version":3,"file":"workflow-context-docs.d.ts","sourceRoot":"","sources":["../../src/workflow-context/workflow-context-docs.ts"],"names":[],"mappings":"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"}