@shipfox/expression 2.0.0 → 2.1.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/dist/evaluator/errors.d.ts.map +1 -1
- package/dist/evaluator/index.d.ts +1 -0
- package/dist/evaluator/index.d.ts.map +1 -1
- package/dist/evaluator/index.js +1 -0
- package/dist/evaluator/index.js.map +1 -1
- package/dist/evaluator/rehydrate-json-expression.d.ts +4 -0
- package/dist/evaluator/rehydrate-json-expression.d.ts.map +1 -0
- package/dist/evaluator/rehydrate-json-expression.js +44 -0
- package/dist/evaluator/rehydrate-json-expression.js.map +1 -0
- package/dist/expression/create-workflow-expression.d.ts.map +1 -1
- package/dist/expression/create-workflow-expression.js +18 -1
- package/dist/expression/create-workflow-expression.js.map +1 -1
- package/dist/expression/errors.d.ts.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/plan/context-key-access.d.ts.map +1 -1
- package/dist/plan/context-key-access.js +7 -4
- package/dist/plan/context-key-access.js.map +1 -1
- package/dist/resolver/errors.d.ts.map +1 -1
- package/dist/run/hoist-run-command.d.ts.map +1 -1
- package/dist/template/errors.d.ts.map +1 -1
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/dist/workflow-context/workflow-context-docs.d.ts +125 -125
- package/dist/workflow-context/workflow-context-docs.d.ts.map +1 -1
- package/dist/workflow-context/workflow-context.d.ts +183 -183
- package/dist/workflow-context/workflow-context.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import type { WorkflowExpressionEvaluationContext } from '../evaluator/evaluate-workflow-expression.js';
|
|
2
2
|
import type { ExpressionType, ExpressionTypeEnvironment } from '../expression/workflow-expression.js';
|
|
3
3
|
import { type OutputDeclarations } from '../outputs/output-declarations.js';
|
|
4
|
-
export declare const workflowContextNames: readonly [
|
|
4
|
+
export declare const workflowContextNames: readonly ['workflow', 'run', 'trigger', 'event', 'inputs', 'job', 'executions', 'execution', 'jobs', 'needs', 'steps', 'step', 'vars', 'secrets'];
|
|
5
5
|
export type WorkflowContextName = (typeof workflowContextNames)[number];
|
|
6
|
-
export declare const availabilitySites: readonly [
|
|
6
|
+
export declare const availabilitySites: readonly ['ingest', 'run-creation', 'execution-creation', 'job-activation', 'step-dispatch', 'step-report', 'execution-resolution', 'job-resolution'];
|
|
7
7
|
export type AvailabilitySite = (typeof availabilitySites)[number];
|
|
8
8
|
export declare const runnerFillTarget = "runner-fill";
|
|
9
9
|
export type FillTarget = AvailabilitySite | typeof runnerFillTarget;
|
|
10
|
-
export declare const workflowContextSensitivities: readonly [
|
|
10
|
+
export declare const workflowContextSensitivities: readonly ['persistable', 'ephemeral'];
|
|
11
11
|
export type WorkflowContextSensitivity = (typeof workflowContextSensitivities)[number];
|
|
12
|
-
export declare const workflowContextHosts: readonly [
|
|
12
|
+
export declare const workflowContextHosts: readonly ['server', 'runner'];
|
|
13
13
|
export type WorkflowContextHost = (typeof workflowContextHosts)[number];
|
|
14
14
|
export type ReservedRootDefinition = {
|
|
15
15
|
readonly host: 'server';
|
|
@@ -19,11 +19,11 @@ export type ReservedRootDefinition = {
|
|
|
19
19
|
};
|
|
20
20
|
export declare const workflowContextReservedRoots: {
|
|
21
21
|
readonly matrix: {
|
|
22
|
-
readonly host:
|
|
23
|
-
readonly availability:
|
|
22
|
+
readonly host: 'server';
|
|
23
|
+
readonly availability: 'job-activation';
|
|
24
24
|
};
|
|
25
25
|
readonly runner: {
|
|
26
|
-
readonly host:
|
|
26
|
+
readonly host: 'runner';
|
|
27
27
|
};
|
|
28
28
|
};
|
|
29
29
|
export type WorkflowContextReservedRoot = keyof typeof workflowContextReservedRoots;
|
|
@@ -68,140 +68,140 @@ export declare function buildTypedRootsEnvironment(params: {
|
|
|
68
68
|
}): ExpressionTypeEnvironment;
|
|
69
69
|
export declare const workflowContextDefinitions: {
|
|
70
70
|
readonly workflow: {
|
|
71
|
-
readonly availability:
|
|
72
|
-
readonly sensitivity:
|
|
73
|
-
readonly host:
|
|
74
|
-
readonly shape:
|
|
75
|
-
readonly checkMode:
|
|
71
|
+
readonly availability: 'run-creation';
|
|
72
|
+
readonly sensitivity: 'persistable';
|
|
73
|
+
readonly host: 'server';
|
|
74
|
+
readonly shape: 'known';
|
|
75
|
+
readonly checkMode: 'typed';
|
|
76
76
|
readonly typeEnvironment: {
|
|
77
77
|
readonly workflow: {
|
|
78
|
-
readonly kind:
|
|
78
|
+
readonly kind: 'object';
|
|
79
79
|
readonly fields: {
|
|
80
|
-
readonly id:
|
|
81
|
-
readonly name:
|
|
80
|
+
readonly id: 'string';
|
|
81
|
+
readonly name: 'string';
|
|
82
82
|
};
|
|
83
83
|
};
|
|
84
84
|
};
|
|
85
85
|
};
|
|
86
86
|
readonly run: {
|
|
87
|
-
readonly availability:
|
|
88
|
-
readonly sensitivity:
|
|
89
|
-
readonly host:
|
|
90
|
-
readonly shape:
|
|
91
|
-
readonly checkMode:
|
|
87
|
+
readonly availability: 'run-creation';
|
|
88
|
+
readonly sensitivity: 'persistable';
|
|
89
|
+
readonly host: 'server';
|
|
90
|
+
readonly shape: 'known';
|
|
91
|
+
readonly checkMode: 'typed';
|
|
92
92
|
readonly typeEnvironment: {
|
|
93
93
|
readonly run: {
|
|
94
|
-
readonly kind:
|
|
94
|
+
readonly kind: 'object';
|
|
95
95
|
readonly fields: {
|
|
96
|
-
readonly id:
|
|
97
|
-
readonly number:
|
|
98
|
-
readonly name:
|
|
99
|
-
readonly project_id:
|
|
100
|
-
readonly workspace_id:
|
|
101
|
-
readonly created_at:
|
|
96
|
+
readonly id: 'string';
|
|
97
|
+
readonly number: 'int';
|
|
98
|
+
readonly name: 'string';
|
|
99
|
+
readonly project_id: 'string';
|
|
100
|
+
readonly workspace_id: 'string';
|
|
101
|
+
readonly created_at: 'timestamp';
|
|
102
102
|
};
|
|
103
103
|
};
|
|
104
104
|
};
|
|
105
105
|
};
|
|
106
106
|
readonly trigger: {
|
|
107
|
-
readonly availability:
|
|
108
|
-
readonly sensitivity:
|
|
109
|
-
readonly host:
|
|
110
|
-
readonly shape:
|
|
111
|
-
readonly checkMode:
|
|
107
|
+
readonly availability: 'ingest';
|
|
108
|
+
readonly sensitivity: 'persistable';
|
|
109
|
+
readonly host: 'server';
|
|
110
|
+
readonly shape: 'known';
|
|
111
|
+
readonly checkMode: 'typed';
|
|
112
112
|
readonly typeEnvironment: {
|
|
113
113
|
readonly trigger: {
|
|
114
|
-
readonly kind:
|
|
114
|
+
readonly kind: 'object';
|
|
115
115
|
readonly fields: {
|
|
116
116
|
readonly project: {
|
|
117
|
-
readonly kind:
|
|
117
|
+
readonly kind: 'object';
|
|
118
118
|
readonly fields: {
|
|
119
|
-
readonly id:
|
|
119
|
+
readonly id: 'string';
|
|
120
120
|
};
|
|
121
121
|
};
|
|
122
|
-
readonly repository:
|
|
123
|
-
readonly ref:
|
|
124
|
-
readonly commit:
|
|
125
|
-
readonly source:
|
|
126
|
-
readonly event:
|
|
122
|
+
readonly repository: 'string';
|
|
123
|
+
readonly ref: 'string';
|
|
124
|
+
readonly commit: 'string';
|
|
125
|
+
readonly source: 'string';
|
|
126
|
+
readonly event: 'string';
|
|
127
127
|
};
|
|
128
128
|
};
|
|
129
129
|
};
|
|
130
130
|
};
|
|
131
131
|
readonly event: {
|
|
132
|
-
readonly availability:
|
|
133
|
-
readonly sensitivity:
|
|
134
|
-
readonly host:
|
|
135
|
-
readonly shape:
|
|
136
|
-
readonly checkMode:
|
|
132
|
+
readonly availability: 'ingest';
|
|
133
|
+
readonly sensitivity: 'persistable';
|
|
134
|
+
readonly host: 'server';
|
|
135
|
+
readonly shape: 'open';
|
|
136
|
+
readonly checkMode: 'syntax';
|
|
137
137
|
};
|
|
138
138
|
readonly inputs: {
|
|
139
|
-
readonly availability:
|
|
140
|
-
readonly sensitivity:
|
|
141
|
-
readonly host:
|
|
142
|
-
readonly shape:
|
|
143
|
-
readonly checkMode:
|
|
139
|
+
readonly availability: 'run-creation';
|
|
140
|
+
readonly sensitivity: 'persistable';
|
|
141
|
+
readonly host: 'server';
|
|
142
|
+
readonly shape: 'open';
|
|
143
|
+
readonly checkMode: 'syntax';
|
|
144
144
|
};
|
|
145
145
|
readonly job: {
|
|
146
|
-
readonly availability:
|
|
147
|
-
readonly sensitivity:
|
|
148
|
-
readonly host:
|
|
149
|
-
readonly shape:
|
|
150
|
-
readonly checkMode:
|
|
146
|
+
readonly availability: 'run-creation';
|
|
147
|
+
readonly sensitivity: 'persistable';
|
|
148
|
+
readonly host: 'server';
|
|
149
|
+
readonly shape: 'known';
|
|
150
|
+
readonly checkMode: 'typed';
|
|
151
151
|
readonly typeEnvironment: {
|
|
152
152
|
readonly job: {
|
|
153
|
-
readonly kind:
|
|
153
|
+
readonly kind: 'object';
|
|
154
154
|
readonly fields: {
|
|
155
|
-
readonly key:
|
|
156
|
-
readonly name:
|
|
155
|
+
readonly key: 'string';
|
|
156
|
+
readonly name: 'string';
|
|
157
157
|
};
|
|
158
158
|
};
|
|
159
159
|
};
|
|
160
160
|
};
|
|
161
161
|
readonly executions: {
|
|
162
|
-
readonly availability:
|
|
163
|
-
readonly sensitivity:
|
|
164
|
-
readonly host:
|
|
165
|
-
readonly shape:
|
|
166
|
-
readonly checkMode:
|
|
162
|
+
readonly availability: 'execution-creation';
|
|
163
|
+
readonly sensitivity: 'persistable';
|
|
164
|
+
readonly host: 'server';
|
|
165
|
+
readonly shape: 'known';
|
|
166
|
+
readonly checkMode: 'typed';
|
|
167
167
|
readonly typeEnvironment: {
|
|
168
168
|
readonly executions: {
|
|
169
|
-
readonly kind:
|
|
169
|
+
readonly kind: 'list';
|
|
170
170
|
readonly element: {
|
|
171
|
-
readonly kind:
|
|
171
|
+
readonly kind: 'object';
|
|
172
172
|
readonly fields: {
|
|
173
|
-
readonly index:
|
|
174
|
-
readonly name:
|
|
175
|
-
readonly status:
|
|
176
|
-
readonly started_at:
|
|
177
|
-
readonly finished_at:
|
|
173
|
+
readonly index: 'int';
|
|
174
|
+
readonly name: 'string';
|
|
175
|
+
readonly status: 'string';
|
|
176
|
+
readonly started_at: 'timestamp';
|
|
177
|
+
readonly finished_at: 'timestamp';
|
|
178
178
|
readonly events: {
|
|
179
|
-
readonly kind:
|
|
179
|
+
readonly kind: 'list';
|
|
180
180
|
readonly element: {
|
|
181
|
-
readonly kind:
|
|
181
|
+
readonly kind: 'object';
|
|
182
182
|
readonly fields: {
|
|
183
|
-
readonly data: {
|
|
184
|
-
readonly kind: "object";
|
|
185
|
-
readonly fields: {};
|
|
186
|
-
};
|
|
187
183
|
readonly project: {
|
|
188
|
-
readonly kind:
|
|
184
|
+
readonly kind: 'object';
|
|
189
185
|
readonly fields: {
|
|
190
|
-
readonly id:
|
|
186
|
+
readonly id: 'string';
|
|
191
187
|
};
|
|
192
188
|
};
|
|
193
|
-
readonly repository:
|
|
194
|
-
readonly ref:
|
|
195
|
-
readonly commit:
|
|
196
|
-
readonly source:
|
|
197
|
-
readonly event:
|
|
198
|
-
readonly delivery_id:
|
|
199
|
-
readonly received_at:
|
|
189
|
+
readonly repository: 'string';
|
|
190
|
+
readonly ref: 'string';
|
|
191
|
+
readonly commit: 'string';
|
|
192
|
+
readonly source: 'string';
|
|
193
|
+
readonly event: 'string';
|
|
194
|
+
readonly delivery_id: 'string';
|
|
195
|
+
readonly received_at: 'timestamp';
|
|
196
|
+
readonly data: {
|
|
197
|
+
readonly kind: 'object';
|
|
198
|
+
readonly fields: {};
|
|
199
|
+
};
|
|
200
200
|
};
|
|
201
201
|
};
|
|
202
202
|
};
|
|
203
203
|
readonly outputs: {
|
|
204
|
-
readonly kind:
|
|
204
|
+
readonly kind: 'map';
|
|
205
205
|
};
|
|
206
206
|
};
|
|
207
207
|
};
|
|
@@ -209,168 +209,168 @@ export declare const workflowContextDefinitions: {
|
|
|
209
209
|
};
|
|
210
210
|
};
|
|
211
211
|
readonly execution: {
|
|
212
|
-
readonly availability:
|
|
213
|
-
readonly sensitivity:
|
|
214
|
-
readonly host:
|
|
215
|
-
readonly shape:
|
|
216
|
-
readonly checkMode:
|
|
212
|
+
readonly availability: 'execution-creation';
|
|
213
|
+
readonly sensitivity: 'persistable';
|
|
214
|
+
readonly host: 'server';
|
|
215
|
+
readonly shape: 'known';
|
|
216
|
+
readonly checkMode: 'typed';
|
|
217
217
|
readonly typeEnvironment: {
|
|
218
218
|
readonly execution: {
|
|
219
|
-
readonly kind:
|
|
219
|
+
readonly kind: 'object';
|
|
220
220
|
readonly fields: {
|
|
221
|
-
readonly
|
|
222
|
-
readonly
|
|
223
|
-
readonly
|
|
224
|
-
readonly
|
|
225
|
-
readonly
|
|
226
|
-
readonly finished_at: "timestamp";
|
|
221
|
+
readonly index: 'int';
|
|
222
|
+
readonly name: 'string';
|
|
223
|
+
readonly status: 'string';
|
|
224
|
+
readonly started_at: 'timestamp';
|
|
225
|
+
readonly finished_at: 'timestamp';
|
|
227
226
|
readonly events: {
|
|
228
|
-
readonly kind:
|
|
227
|
+
readonly kind: 'list';
|
|
229
228
|
readonly element: {
|
|
230
|
-
readonly kind:
|
|
229
|
+
readonly kind: 'object';
|
|
231
230
|
readonly fields: {
|
|
232
|
-
readonly data: {
|
|
233
|
-
readonly kind: "object";
|
|
234
|
-
readonly fields: {};
|
|
235
|
-
};
|
|
236
231
|
readonly project: {
|
|
237
|
-
readonly kind:
|
|
232
|
+
readonly kind: 'object';
|
|
238
233
|
readonly fields: {
|
|
239
|
-
readonly id:
|
|
234
|
+
readonly id: 'string';
|
|
240
235
|
};
|
|
241
236
|
};
|
|
242
|
-
readonly repository:
|
|
243
|
-
readonly ref:
|
|
244
|
-
readonly commit:
|
|
245
|
-
readonly source:
|
|
246
|
-
readonly event:
|
|
247
|
-
readonly delivery_id:
|
|
248
|
-
readonly received_at:
|
|
237
|
+
readonly repository: 'string';
|
|
238
|
+
readonly ref: 'string';
|
|
239
|
+
readonly commit: 'string';
|
|
240
|
+
readonly source: 'string';
|
|
241
|
+
readonly event: 'string';
|
|
242
|
+
readonly delivery_id: 'string';
|
|
243
|
+
readonly received_at: 'timestamp';
|
|
244
|
+
readonly data: {
|
|
245
|
+
readonly kind: 'object';
|
|
246
|
+
readonly fields: {};
|
|
247
|
+
};
|
|
249
248
|
};
|
|
250
249
|
};
|
|
251
250
|
};
|
|
252
251
|
readonly outputs: {
|
|
253
|
-
readonly kind:
|
|
252
|
+
readonly kind: 'map';
|
|
254
253
|
};
|
|
254
|
+
readonly failed: 'bool';
|
|
255
255
|
};
|
|
256
256
|
};
|
|
257
257
|
};
|
|
258
258
|
};
|
|
259
259
|
readonly jobs: {
|
|
260
|
-
readonly availability:
|
|
261
|
-
readonly sensitivity:
|
|
262
|
-
readonly host:
|
|
263
|
-
readonly shape:
|
|
264
|
-
readonly checkMode:
|
|
260
|
+
readonly availability: 'job-activation';
|
|
261
|
+
readonly sensitivity: 'persistable';
|
|
262
|
+
readonly host: 'server';
|
|
263
|
+
readonly shape: 'open';
|
|
264
|
+
readonly checkMode: 'syntax';
|
|
265
265
|
};
|
|
266
266
|
readonly needs: {
|
|
267
|
-
readonly availability:
|
|
268
|
-
readonly sensitivity:
|
|
269
|
-
readonly host:
|
|
270
|
-
readonly shape:
|
|
271
|
-
readonly checkMode:
|
|
267
|
+
readonly availability: 'job-activation';
|
|
268
|
+
readonly sensitivity: 'persistable';
|
|
269
|
+
readonly host: 'server';
|
|
270
|
+
readonly shape: 'known';
|
|
271
|
+
readonly checkMode: 'typed';
|
|
272
272
|
readonly typeEnvironment: {
|
|
273
273
|
readonly needs: {
|
|
274
|
-
readonly kind:
|
|
274
|
+
readonly kind: 'list';
|
|
275
275
|
readonly element: ExpressionType;
|
|
276
276
|
};
|
|
277
277
|
};
|
|
278
278
|
};
|
|
279
279
|
readonly steps: {
|
|
280
|
-
readonly availability:
|
|
281
|
-
readonly sensitivity:
|
|
282
|
-
readonly host:
|
|
283
|
-
readonly shape:
|
|
284
|
-
readonly checkMode:
|
|
280
|
+
readonly availability: 'step-dispatch';
|
|
281
|
+
readonly sensitivity: 'persistable';
|
|
282
|
+
readonly host: 'server';
|
|
283
|
+
readonly shape: 'open';
|
|
284
|
+
readonly checkMode: 'syntax';
|
|
285
285
|
};
|
|
286
286
|
readonly step: {
|
|
287
|
-
readonly availability:
|
|
288
|
-
readonly sensitivity:
|
|
289
|
-
readonly host:
|
|
290
|
-
readonly shape:
|
|
291
|
-
readonly checkMode:
|
|
287
|
+
readonly availability: 'step-dispatch';
|
|
288
|
+
readonly sensitivity: 'persistable';
|
|
289
|
+
readonly host: 'server';
|
|
290
|
+
readonly shape: 'known';
|
|
291
|
+
readonly checkMode: 'typed';
|
|
292
292
|
readonly typeEnvironment: {
|
|
293
293
|
readonly step: {
|
|
294
|
-
readonly kind:
|
|
294
|
+
readonly kind: 'object';
|
|
295
295
|
readonly fields: {
|
|
296
|
-
readonly
|
|
297
|
-
readonly
|
|
298
|
-
readonly outputs: {
|
|
299
|
-
readonly kind: "map";
|
|
300
|
-
};
|
|
301
|
-
readonly attempt: "int";
|
|
302
|
-
readonly is_retry: "bool";
|
|
296
|
+
readonly attempt: 'int';
|
|
297
|
+
readonly is_retry: 'bool';
|
|
303
298
|
readonly restart: {
|
|
304
|
-
readonly kind:
|
|
299
|
+
readonly kind: 'object';
|
|
305
300
|
readonly fields: {
|
|
306
301
|
readonly from: {
|
|
307
|
-
readonly kind:
|
|
302
|
+
readonly kind: 'object';
|
|
308
303
|
readonly fields: {
|
|
304
|
+
readonly status: 'string';
|
|
305
|
+
readonly exit_code: 'int';
|
|
306
|
+
readonly outputs: {
|
|
307
|
+
readonly kind: 'map';
|
|
308
|
+
};
|
|
309
|
+
readonly response: 'string';
|
|
310
|
+
readonly gate: {
|
|
311
|
+
readonly kind: 'object';
|
|
312
|
+
readonly fields: {
|
|
313
|
+
readonly passed: 'bool';
|
|
314
|
+
readonly source: 'string';
|
|
315
|
+
readonly reason: 'string';
|
|
316
|
+
readonly exit_code: 'int';
|
|
317
|
+
};
|
|
318
|
+
};
|
|
309
319
|
readonly attempts: {
|
|
310
|
-
readonly kind:
|
|
320
|
+
readonly kind: 'list';
|
|
311
321
|
readonly element: {
|
|
312
|
-
readonly kind:
|
|
322
|
+
readonly kind: 'object';
|
|
313
323
|
readonly fields: {
|
|
314
|
-
readonly status:
|
|
315
|
-
readonly exit_code:
|
|
324
|
+
readonly status: 'string';
|
|
325
|
+
readonly exit_code: 'int';
|
|
316
326
|
readonly outputs: {
|
|
317
|
-
readonly kind:
|
|
327
|
+
readonly kind: 'map';
|
|
318
328
|
};
|
|
319
|
-
readonly response:
|
|
329
|
+
readonly response: 'string';
|
|
320
330
|
readonly gate: {
|
|
321
|
-
readonly kind:
|
|
331
|
+
readonly kind: 'object';
|
|
322
332
|
readonly fields: {
|
|
323
|
-
readonly passed:
|
|
324
|
-
readonly source:
|
|
325
|
-
readonly reason:
|
|
326
|
-
readonly exit_code:
|
|
333
|
+
readonly passed: 'bool';
|
|
334
|
+
readonly source: 'string';
|
|
335
|
+
readonly reason: 'string';
|
|
336
|
+
readonly exit_code: 'int';
|
|
327
337
|
};
|
|
328
338
|
};
|
|
329
339
|
};
|
|
330
340
|
};
|
|
331
341
|
};
|
|
332
|
-
readonly status: "string";
|
|
333
|
-
readonly exit_code: "int";
|
|
334
|
-
readonly outputs: {
|
|
335
|
-
readonly kind: "map";
|
|
336
|
-
};
|
|
337
|
-
readonly response: "string";
|
|
338
|
-
readonly gate: {
|
|
339
|
-
readonly kind: "object";
|
|
340
|
-
readonly fields: {
|
|
341
|
-
readonly passed: "bool";
|
|
342
|
-
readonly source: "string";
|
|
343
|
-
readonly reason: "string";
|
|
344
|
-
readonly exit_code: "int";
|
|
345
|
-
};
|
|
346
|
-
};
|
|
347
342
|
};
|
|
348
343
|
};
|
|
349
|
-
readonly feedback:
|
|
344
|
+
readonly feedback: 'string';
|
|
350
345
|
};
|
|
351
346
|
};
|
|
347
|
+
readonly exit_code: 'int';
|
|
348
|
+
readonly status: 'string';
|
|
349
|
+
readonly outputs: {
|
|
350
|
+
readonly kind: 'map';
|
|
351
|
+
};
|
|
352
352
|
};
|
|
353
353
|
};
|
|
354
354
|
};
|
|
355
355
|
};
|
|
356
356
|
readonly vars: {
|
|
357
|
-
readonly availability:
|
|
358
|
-
readonly sensitivity:
|
|
359
|
-
readonly host:
|
|
360
|
-
readonly shape:
|
|
361
|
-
readonly checkMode:
|
|
357
|
+
readonly availability: 'run-creation';
|
|
358
|
+
readonly sensitivity: 'persistable';
|
|
359
|
+
readonly host: 'server';
|
|
360
|
+
readonly shape: 'open';
|
|
361
|
+
readonly checkMode: 'syntax';
|
|
362
362
|
readonly literalKeyOnly: true;
|
|
363
363
|
};
|
|
364
364
|
readonly secrets: {
|
|
365
|
-
readonly sensitivity:
|
|
366
|
-
readonly host:
|
|
367
|
-
readonly shape:
|
|
368
|
-
readonly checkMode:
|
|
365
|
+
readonly sensitivity: 'ephemeral';
|
|
366
|
+
readonly host: 'runner';
|
|
367
|
+
readonly shape: 'open';
|
|
368
|
+
readonly checkMode: 'syntax';
|
|
369
369
|
readonly literalKeyOnly: true;
|
|
370
370
|
};
|
|
371
371
|
};
|
|
372
372
|
export type WorkflowInterpolationField = 'run' | 'env.value' | 'agent.prompt' | 'agent.model' | 'agent.provider' | 'agent.thinking' | 'job.runner' | 'job.outputs' | 'workflow.run_name' | 'job.execution_name' | 'step.name' | 'step.working_directory' | 'step.feedback' | 'checkout.project' | 'checkout.connection' | 'checkout.repository' | 'checkout.ref' | 'checkout.path';
|
|
373
|
-
export declare const workflowFieldFailurePolicies: readonly [
|
|
373
|
+
export declare const workflowFieldFailurePolicies: readonly ['fail', 'degrade', 'fail-closed'];
|
|
374
374
|
export type WorkflowFieldFailurePolicy = (typeof workflowFieldFailurePolicies)[number];
|
|
375
375
|
export type WorkflowInterpolationFailurePolicy = Exclude<WorkflowFieldFailurePolicy, 'fail-closed'>;
|
|
376
376
|
export interface WorkflowInterpolationFieldPolicy {
|
|
@@ -384,7 +384,7 @@ export interface WorkflowInterpolationFieldPolicy {
|
|
|
384
384
|
}
|
|
385
385
|
export declare const workflowInterpolationFieldPolicies: Readonly<Record<WorkflowInterpolationField, WorkflowInterpolationFieldPolicy>>;
|
|
386
386
|
export declare const workflowInterpolationFields: readonly WorkflowInterpolationField[];
|
|
387
|
-
export declare const workflowPredicateFields: readonly [
|
|
387
|
+
export declare const workflowPredicateFields: readonly ['step.success', 'job.success', 'trigger.filter', 'listener.on', 'listener.until', 'job.if', 'step.if'];
|
|
388
388
|
export type WorkflowPredicateField = (typeof workflowPredicateFields)[number];
|
|
389
389
|
/**
|
|
390
390
|
* The roots that the runtime passes to each server-evaluated predicate.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workflow-context.d.ts","sourceRoot":"","sources":["../../src/workflow-context/workflow-context.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,mCAAmC,EAAC,MAAM,8CAA8C,CAAC;AACtG,OAAO,KAAK,EAAC,cAAc,EAAE,yBAAyB,EAAC,MAAM,sCAAsC,CAAC;AACpG,OAAO,EACL,KAAK,kBAAkB,EAExB,MAAM,mCAAmC,CAAC;AAE3C,eAAO,MAAM,oBAAoB,
|
|
1
|
+
{"version":3,"file":"workflow-context.d.ts","sourceRoot":"","sources":["../../src/workflow-context/workflow-context.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,mCAAmC,EAAC,MAAM,8CAA8C,CAAC;AACtG,OAAO,KAAK,EAAC,cAAc,EAAE,yBAAyB,EAAC,MAAM,sCAAsC,CAAC;AACpG,OAAO,EACL,KAAK,kBAAkB,EAExB,MAAM,mCAAmC,CAAC;AAE3C,eAAO,MAAM,oBAAoB,YAC/B,UAAU,EACV,KAAK,EACL,SAAS,EACT,OAAO,EACP,QAAQ,EACR,KAAK,EACL,YAAY,EACZ,WAAW,EACX,MAAM,EACN,OAAO,EACP,OAAO,EACP,MAAM,EACN,MAAM,EACN,SAAS,CACD,CAAC;AACX,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,oBAAoB,CAAC,CAAC,MAAM,CAAC,CAAC;AAExE,eAAO,MAAM,iBAAiB,YAE5B,QAAQ,EAER,cAAc,EAEd,oBAAoB,EAEpB,gBAAgB,EAEhB,eAAe,EAEf,aAAa,EAEb,sBAAsB,EAEtB,gBAAgB,CACR,CAAC;AACX,MAAM,MAAM,gBAAgB,GAAG,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,CAAC,CAAC;AAElE,eAAO,MAAM,gBAAgB,gBAAgB,CAAC;AAC9C,MAAM,MAAM,UAAU,GAAG,gBAAgB,GAAG,OAAO,gBAAgB,CAAC;AAEpE,eAAO,MAAM,4BAA4B,YAAI,aAAa,EAAE,WAAW,CAAU,CAAC;AAClF,MAAM,MAAM,0BAA0B,GAAG,CAAC,OAAO,4BAA4B,CAAC,CAAC,MAAM,CAAC,CAAC;AAEvF,eAAO,MAAM,oBAAoB,YAAI,QAAQ,EAAE,QAAQ,CAAU,CAAC;AAClE,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,oBAAoB,CAAC,CAAC,MAAM,CAAC,CAAC;AAExE,MAAM,MAAM,sBAAsB,GAC9B;IAAC,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC;IAAC,QAAQ,CAAC,YAAY,EAAE,gBAAgB,CAAA;CAAC,GAClE;IAAC,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAA;CAAC,CAAC;AAE9B,eAAO,MAAM,4BAA4B;;iBAC9B,IAAI,EAAE,QAAQ;iBAAE,YAAY,EAAE,gBAAgB;;;iBAC9C,IAAI,EAAE,QAAQ;;CACkC,CAAC;AAC5D,MAAM,MAAM,2BAA2B,GAAG,MAAM,OAAO,4BAA4B,CAAC;AAEpF,MAAM,MAAM,oBAAoB,GAAG,OAAO,GAAG,MAAM,CAAC;AAEpD,MAAM,WAAW,8BAA8B;IAC7C,QAAQ,CAAC,YAAY,EAAE,gBAAgB,CAAC;IACxC,QAAQ,CAAC,WAAW,EAAE,0BAA0B,CAAC;IACjD,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC;IACxB,QAAQ,CAAC,KAAK,EAAE,OAAO,CAAC;IACxB,QAAQ,CAAC,SAAS,EAAE,OAAO,CAAC;IAC5B,QAAQ,CAAC,eAAe,EAAE,yBAAyB,CAAC;CACrD;AAED,MAAM,WAAW,6BAA6B;IAC5C,QAAQ,CAAC,YAAY,EAAE,gBAAgB,CAAC;IACxC,QAAQ,CAAC,WAAW,EAAE,0BAA0B,CAAC;IACjD,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC;IACxB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,SAAS,EAAE,QAAQ,CAAC;IAC7B,QAAQ,CAAC,cAAc,CAAC,EAAE,OAAO,CAAC;CACnC;AAED,MAAM,WAAW,+BAA+B;IAC9C,QAAQ,CAAC,WAAW,EAAE,WAAW,CAAC;IAClC,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC;IACxB,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,SAAS,EAAE,QAAQ,CAAC;IAC7B,QAAQ,CAAC,cAAc,CAAC,EAAE,OAAO,CAAC;CACnC;AAED,MAAM,MAAM,yBAAyB,GACjC,8BAA8B,GAC9B,6BAA6B,GAC7B,+BAA+B,CAAC;AAmLpC,MAAM,WAAW,uBAAuB;IACtC,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,OAAO,CAAC,EAAE,kBAAkB,CAAC;CACvC;AAED,MAAM,WAAW,sBAAsB;IACrC,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,OAAO,CAAC,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,CAAC,CAAC;CAC7D;AAED,wBAAgB,0BAA0B,CAAC,MAAM,EAAE;IACjD,QAAQ,CAAC,KAAK,CAAC,EAAE,SAAS,uBAAuB,EAAE,CAAC;IACpD,QAAQ,CAAC,WAAW,CAAC,EAAE,uBAAuB,CAAC;IAC/C,QAAQ,CAAC,IAAI,CAAC,EAAE,SAAS,sBAAsB,EAAE,CAAC;IAClD,QAAQ,CAAC,KAAK,CAAC,EAAE,SAAS,sBAAsB,EAAE,CAAC;CACpD,GAAG,yBAAyB,CAO5B;AAED,eAAO,MAAM,0BAA0B;;iBAEnC,YAAY,EAAE,cAAc;iBAC5B,WAAW,EAAE,aAAa;iBAC1B,IAAI,EAAE,QAAQ;iBACd,KAAK,EAAE,OAAO;iBACd,SAAS,EAAE,OAAO;iBAClB,eAAe;;yBA5Mf,IAAI,EAAE,QAAQ;yBACd,MAAM;6BACJ,EAAE,EAAE,QAAQ;6BACZ,IAAI,EAAE,QAAQ;;;;;;iBA4MhB,YAAY,EAAE,cAAc;iBAC5B,WAAW,EAAE,aAAa;iBAC1B,IAAI,EAAE,QAAQ;iBACd,KAAK,EAAE,OAAO;iBACd,SAAS,EAAE,OAAO;iBAClB,eAAe;;yBA1Mf,IAAI,EAAE,QAAQ;yBACd,MAAM;6BACJ,EAAE,EAAE,QAAQ;6BACZ,MAAM,EAAE,KAAK;6BACb,IAAI,EAAE,QAAQ;6BACd,UAAU,EAAE,QAAQ;6BACpB,YAAY,EAAE,QAAQ;6BACtB,UAAU,EAAE,WAAW;;;;;;iBAsMzB,YAAY,EAAE,QAAQ;iBACtB,WAAW,EAAE,aAAa;iBAC1B,IAAI,EAAE,QAAQ;iBACd,KAAK,EAAE,OAAO;iBACd,SAAS,EAAE,OAAO;iBAClB,eAAe;;+BA1LT,QAAQ;;;iCAVd,IAAI,EAAE,QAAQ;iCACd,MAAM;qCAAG,EAAE,EAAE,QAAQ;;;yCAEX,QAAQ;kCACf,QAAQ;qCACL,QAAQ;qCAOJ,QAAQ;oCACT,QAAQ;;;;;;iBA0LjB,YAAY,EAAE,QAAQ;iBACtB,WAAW,EAAE,aAAa;iBAC1B,IAAI,EAAE,QAAQ;iBACd,KAAK,EAAE,MAAM;iBACb,SAAS,EAAE,QAAQ;;;iBAGnB,YAAY,EAAE,cAAc;iBAC5B,WAAW,EAAE,aAAa;iBAC1B,IAAI,EAAE,QAAQ;iBACd,KAAK,EAAE,MAAM;iBACb,SAAS,EAAE,QAAQ;;;iBAGnB,YAAY,EAAE,cAAc;iBAC5B,WAAW,EAAE,aAAa;iBAC1B,IAAI,EAAE,QAAQ;iBACd,KAAK,EAAE,OAAO;iBACd,SAAS,EAAE,OAAO;iBAClB,eAAe;;yBArMf,IAAI,EAAE,QAAQ;yBACd,MAAM;6BACJ,GAAG,EAAE,QAAQ;6BACb,IAAI,EAAE,QAAQ;;;;;;iBAqMhB,YAAY,EAAE,oBAAoB;iBAClC,WAAW,EAAE,aAAa;iBAC1B,IAAI,EAAE,QAAQ;iBACd,KAAK,EAAE,OAAO;iBACd,SAAS,EAAE,OAAO;iBAClB,eAAe;;yBApKf,IAAI,EAAE,MAAM;yBACZ,OAAO;mCAlBH,QAAQ;;iCAEZ,KAAK,EAAE,KAAK;iCACZ,IAAI,EAAE,QAAQ;iCACd,MAAM,EAAE,QAAQ;iCAChB,UAAU,EAAE,WAAW;iCACvB,WAAW,EAAE,WAAW;iCACxB,MAAM;qCACJ,IAAI,EAAE,MAAM;qCACZ,OAAO;+CAxBL,QAAQ;;;iDA9BZ,IAAI,EAAE,QAAQ;iDACd,MAAM;qDAAG,EAAE,EAAE,QAAQ;;;yDAEX,QAAQ;kDACf,QAAQ;qDACL,QAAQ;qDA2BN,QAAQ;oDACT,QAAQ;0DACF,QAAQ;0DACR,WAAW;;iDAGtB,IAAI,EAAE,QAAQ;iDACd,MAAM;;;;;iCAiBR,OAAO;qCAAG,IAAI,EAAE,KAAK;;;;;;;;iBA6KrB,YAAY,EAAE,oBAAoB;iBAClC,WAAW,EAAE,aAAa;iBAC1B,IAAI,EAAE,QAAQ;iBACd,KAAK,EAAE,OAAO;iBACd,SAAS,EAAE,OAAO;iBAClB,eAAe;;+BArKT,QAAQ;;oCAtBP,KAAK;mCACN,QAAQ;qCACN,QAAQ;yCACJ,WAAW;0CACV,WAAW;;iCAEtB,IAAI,EAAE,MAAM;iCACZ,OAAO;;;;;;;;;;;;;;;;;;;;;;;;iCAEC,IAAI,EAAE,KAAK;;qCAgBX,MAAM;;;;;;iBAqKhB,YAAY,EAAE,gBAAgB;iBAC9B,WAAW,EAAE,aAAa;iBAC1B,IAAI,EAAE,QAAQ;iBACd,KAAK,EAAE,MAAM;iBACb,SAAS,EAAE,QAAQ;;;iBAGnB,YAAY,EAAE,gBAAgB;iBAC9B,WAAW,EAAE,aAAa;iBAC1B,IAAI,EAAE,QAAQ;iBACd,KAAK,EAAE,OAAO;iBACd,SAAS,EAAE,OAAO;iBAClB,eAAe;qBAAG,KAAK;yBAAG,IAAI,EAAE,MAAM;yBAAE,OAAO;;;;;iBAG/C,YAAY,EAAE,eAAe;iBAC7B,WAAW,EAAE,aAAa;iBAC1B,IAAI,EAAE,QAAQ;iBACd,KAAK,EAAE,MAAM;iBACb,SAAS,EAAE,QAAQ;;;iBAGnB,YAAY,EAAE,eAAe;iBAC7B,WAAW,EAAE,aAAa;iBAC1B,IAAI,EAAE,QAAQ;iBACd,KAAK,EAAE,OAAO;iBACd,SAAS,EAAE,OAAO;iBAClB,eAAe;;+BA7HT,QAAQ;;sCA1BH,KAAK;uCACJ,MAAM;;iCAEd,IAAI,EAAE,QAAQ;iCACd,MAAM;qCACJ,IAAI;+CAnBN,QAAQ;;qDATJ,QAAQ;wDACL,KAAK;;iDACN,IAAI,EAAE,KAAK;;uDACX,QAAQ;;uDAfd,QAAQ;;qDAEZ,MAAM,EAAE,MAAM;qDACd,MAAM,EAAE,QAAQ;qDAChB,MAAM,EAAE,QAAQ;qDAChB,SAAS,EAAE,KAAK;;;;iDAoBd,IAAI,EAAE,MAAM;iDACZ,OAAO;2DAhBL,QAAQ;;yDAEZ,MAAM,EAAE,QAAQ;yDAChB,SAAS,EAAE,KAAK;yDAChB,OAAO;6DAAG,IAAI,EAAE,KAAK;;yDACrB,QAAQ,EAAE,QAAQ;yDAClB,IAAI;;;;;;;;;;;;;;qCAyBE,QAAQ,EAAE,QAAQ;;;wCAWX,KAAK;qCACR,QAAQ;;iCACN,IAAI,EAAE,KAAK;;;;;;;iBAuIvB,YAAY,EAAE,cAAc;iBAC5B,WAAW,EAAE,aAAa;iBAC1B,IAAI,EAAE,QAAQ;iBACd,KAAK,EAAE,MAAM;iBACb,SAAS,EAAE,QAAQ;iBACnB,cAAc;;;iBAGd,WAAW,EAAE,WAAW;iBACxB,IAAI,EAAE,QAAQ;iBACd,KAAK,EAAE,MAAM;iBACb,SAAS,EAAE,QAAQ;iBACnB,cAAc;;CAEyD,CAAC;AAE5E,MAAM,MAAM,0BAA0B,GAClC,KAAK,GACL,WAAW,GACX,cAAc,GACd,aAAa,GACb,gBAAgB,GAChB,gBAAgB,GAChB,YAAY,GACZ,aAAa,GACb,mBAAmB,GACnB,oBAAoB,GACpB,WAAW,GACX,wBAAwB,GACxB,eAAe,GACf,kBAAkB,GAClB,qBAAqB,GACrB,qBAAqB,GACrB,cAAc,GACd,eAAe,CAAC;AAEpB,eAAO,MAAM,4BAA4B,YAAI,MAAM,EAAE,SAAS,EAAE,aAAa,CAAU,CAAC;AACxF,MAAM,MAAM,0BAA0B,GAAG,CAAC,OAAO,4BAA4B,CAAC,CAAC,MAAM,CAAC,CAAC;AACvF,MAAM,MAAM,kCAAkC,GAAG,OAAO,CAAC,0BAA0B,EAAE,aAAa,CAAC,CAAC;AAEpG,MAAM,WAAW,gCAAgC;IAC/C,QAAQ,CAAC,aAAa,EAAE,SAAS,mBAAmB,EAAE,CAAC;IACvD,QAAQ,CAAC,aAAa,EAAE,kCAAkC,CAAC;IAC3D,QAAQ,CAAC,iBAAiB,CAAC,EAAE,gBAAgB,CAAC;IAC9C,QAAQ,CAAC,aAAa,CAAC,EAAE;QACvB,QAAQ,CAAC,IAAI,EAAE,mBAAmB,CAAC;QACnC,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;KACtB,CAAC;CACH;AAKD,eAAO,MAAM,kCAAkC,EAAE,QAAQ,CACvD,MAAM,CAAC,0BAA0B,EAAE,gCAAgC,CAAC,CA+ErE,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAEnC,SAAS,0BAA0B,EAAE,CAAC;AAE3C,eAAO,MAAM,uBAAuB,YAClC,cAAc,EACd,aAAa,EACb,gBAAgB,EAChB,aAAa,EACb,gBAAgB,EAChB,QAAQ,EACR,SAAS,CACD,CAAC;AACX,MAAM,MAAM,sBAAsB,GAAG,CAAC,OAAO,uBAAuB,CAAC,CAAC,MAAM,CAAC,CAAC;AAa9E;;;;;;GAMG;AACH,eAAO,MAAM,6BAA6B;;;;;;;;CAQyC,CAAC;AAEpF,MAAM,MAAM,4BAA4B,CACtC,KAAK,SAAS,sBAAsB,GAAG,sBAAsB,IAC3D,CAAC,OAAO,6BAA6B,CAAC,CAAC,KAAK,CAAC,CAAC,MAAM,CAAC,CAAC;AAE1D,eAAO,MAAM,mCAAmC,eACa,CAAC;AAmB9D,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,mBAAmB,GAAG,yBAAyB,CAEjG;AAED,wBAAgB,8BAA8B,CAC5C,IAAI,EAAE,mBAAmB,GACxB,gBAAgB,GAAG,SAAS,CAG9B;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,mBAAmB,GAAG,mBAAmB,CAErF;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,MAAM,GAAG,mBAAmB,GAAG,SAAS,CAIpF;AAED,wBAAgB,8BAA8B,CAAC,IAAI,EAAE,MAAM,GAAG,gBAAgB,GAAG,SAAS,CASzF;AAED,wBAAgB,6BAA6B,CAC3C,IAAI,EAAE,mBAAmB,GACxB,0BAA0B,CAE5B;AAED,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,gBAAgB,GAAG,SAAS,mBAAmB,EAAE,CASvF;AAED,wBAAgB,kBAAkB,CAChC,KAAK,EAAE,SAAS,mBAAmB,EAAE,EACrC,IAAI,EAAE,gBAAgB,GACrB,SAAS,mBAAmB,EAAE,CAGhC;AAED,wBAAgB,iCAAiC,CAC/C,IAAI,EAAE,mBAAmB,GACxB,yBAAyB,GAAG,SAAS,CAGvC;AAED,wBAAgB,qCAAqC,CACnD,KAAK,EAAE,0BAA0B,EACjC,IAAI,EAAE,mBAAmB,GACxB,OAAO,CAET;AAED,wBAAgB,qCAAqC,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAI3E;AAED,wBAAgB,0CAA0C,CACxD,KAAK,EAAE,0BAA0B,GAChC,kCAAkC,CAEpC;AAED,wBAAgB,0CAA0C,CACxD,KAAK,EAAE,0BAA0B,GAChC,gCAAgC,CAAC,eAAe,CAAC,CAEnD;AAED,wBAAgB,8CAA8C,CAC5D,KAAK,EAAE,0BAA0B,GAChC,gBAAgB,GAAG,SAAS,CAG9B;AAED,wBAAgB,0CAA0C,CACxD,KAAK,EAAE,sBAAsB,GAC5B,gBAAgB,CAElB;AAED,wBAAgB,wCAAwC,CACtD,KAAK,EAAE,sBAAsB,EAC7B,IAAI,EAAE,mBAAmB,GACxB,yBAAyB,GAAG,SAAS,CAMvC;AAED,wBAAgB,gCAAgC,CAAC,KAAK,SAAS,sBAAsB,EACnF,KAAK,EAAE,KAAK,GACX,SAAS,4BAA4B,CAAC,KAAK,CAAC,EAAE,CAEhD;AAED;;;;;;;;GAQG;AACH,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,sBAAsB,GAAG,0BAA0B,GACzD,SAAS,mBAAmB,EAAE,CAOhC;AAED,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,sBAAsB,CAEvF;AAED,wBAAgB,+BAA+B,CAC7C,KAAK,EAAE,sBAAsB,EAC7B,OAAO,EAAE,mCAAmC,GAC3C,mCAAmC,CAKrC;AAED,MAAM,WAAW,yCAAyC;IACxD,QAAQ,CAAC,IAAI,EAAE,mBAAmB,GAAG,2BAA2B,CAAC;IACjE,QAAQ,CAAC,YAAY,CAAC,EAAE,gBAAgB,CAAC;IACzC,QAAQ,CAAC,QAAQ,EAAE,OAAO,CAAC;IAC3B,QAAQ,CAAC,WAAW,EAAE,QAAQ,CAAC,MAAM,CAAC,gBAAgB,EAAE,OAAO,CAAC,CAAC,CAAC;CACnE;AAED,wBAAgB,oCAAoC,IAAI,SAAS,yCAAyC,EAAE,CAkB3G"}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@shipfox/expression",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "2.
|
|
5
|
+
"version": "2.1.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git+https://github.com/ShipfoxHQ/shipfox.git",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@marcbachmann/cel-js": "7.6.1",
|
|
25
25
|
"ajv": "^8.20.0",
|
|
26
|
-
"@shipfox/workflow-document": "3.0.
|
|
26
|
+
"@shipfox/workflow-document": "3.0.1"
|
|
27
27
|
},
|
|
28
28
|
"shipfox": {
|
|
29
29
|
"architecture": {
|