@schemastore/workflows 0.0.5 → 0.0.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/README.md +22 -6
- package/index.d.ts +30 -897
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,12 +1,28 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
1
|
+
# Type definitions for workflows
|
|
2
|
+
|
|
3
|
+
## Installation
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
npm i @schemastore/workflows
|
|
7
|
+
yarn add @schemastore/workflows
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Summary
|
|
3
11
|
|
|
4
|
-
# Summary
|
|
5
12
|
This package contains type definitions for workflows.
|
|
6
13
|
|
|
7
|
-
##
|
|
8
|
-
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
import * as workflows from '@schemastore/workflows';
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Note
|
|
21
|
+
|
|
22
|
+
The definitions were auto-generated by [schemastore-updater](https://github.com/ffflorian/schemastore-updater) using [`json-schema-to-typescript`](https://www.npmjs.com/package/json-schema-to-typescript).
|
|
9
23
|
|
|
10
24
|
## Additional Details
|
|
11
|
-
|
|
25
|
+
|
|
26
|
+
* [Schema source](https://github.com/SchemaStore/schemastore/tree/master/src/schemas/json/workflows)
|
|
27
|
+
* Last updated: Sat, Jul 19, 2025, 17:01:26 GMT
|
|
12
28
|
* Dependencies: none
|
package/index.d.ts
CHANGED
|
@@ -39,39 +39,12 @@ export type StepArray1 = [
|
|
|
39
39
|
[k: string]: Step;
|
|
40
40
|
}[]
|
|
41
41
|
];
|
|
42
|
-
/**
|
|
43
|
-
* Steps for loop
|
|
44
|
-
* https://cloud.google.com/workflows/docs/reference/syntax/iteration
|
|
45
|
-
*
|
|
46
|
-
* @minItems 1
|
|
47
|
-
*/
|
|
48
|
-
export type StepArray2 = [
|
|
49
|
-
{
|
|
50
|
-
[k: string]: Step;
|
|
51
|
-
},
|
|
52
|
-
...{
|
|
53
|
-
[k: string]: Step;
|
|
54
|
-
}[]
|
|
55
|
-
];
|
|
56
|
-
/**
|
|
57
|
-
* A list of steps
|
|
58
|
-
*
|
|
59
|
-
* @minItems 1
|
|
60
|
-
*/
|
|
61
|
-
export type StepArray3 = [
|
|
62
|
-
{
|
|
63
|
-
[k: string]: Step;
|
|
64
|
-
},
|
|
65
|
-
...{
|
|
66
|
-
[k: string]: Step;
|
|
67
|
-
}[]
|
|
68
|
-
];
|
|
69
42
|
/**
|
|
70
43
|
* An array of objects with a single step.
|
|
71
44
|
*
|
|
72
45
|
* @minItems 1
|
|
73
46
|
*/
|
|
74
|
-
export type
|
|
47
|
+
export type StepArray2 = [
|
|
75
48
|
{
|
|
76
49
|
[k: string]: Step;
|
|
77
50
|
},
|
|
@@ -84,7 +57,7 @@ export type StepArray4 = [
|
|
|
84
57
|
*
|
|
85
58
|
* @minItems 1
|
|
86
59
|
*/
|
|
87
|
-
export type
|
|
60
|
+
export type StepArray3 = [
|
|
88
61
|
{
|
|
89
62
|
[k: string]: Step;
|
|
90
63
|
},
|
|
@@ -117,19 +90,19 @@ export interface Step {
|
|
|
117
90
|
* Request headers.
|
|
118
91
|
*/
|
|
119
92
|
headers?: {
|
|
120
|
-
[k: string]: unknown;
|
|
93
|
+
[k: string]: unknown | undefined;
|
|
121
94
|
};
|
|
122
95
|
/**
|
|
123
96
|
* Request body.
|
|
124
97
|
*/
|
|
125
98
|
body?: {
|
|
126
|
-
[k: string]: unknown;
|
|
99
|
+
[k: string]: unknown | undefined;
|
|
127
100
|
};
|
|
128
101
|
/**
|
|
129
102
|
* Request query parameters.
|
|
130
103
|
*/
|
|
131
104
|
query?: {
|
|
132
|
-
[k: string]: unknown;
|
|
105
|
+
[k: string]: unknown | undefined;
|
|
133
106
|
};
|
|
134
107
|
/**
|
|
135
108
|
* Required if the API being called requires authentication.
|
|
@@ -153,7 +126,7 @@ export interface Step {
|
|
|
153
126
|
* Define a dictionary.
|
|
154
127
|
*/
|
|
155
128
|
assign?: {
|
|
156
|
-
[k: string]: unknown;
|
|
129
|
+
[k: string]: unknown | undefined;
|
|
157
130
|
}[];
|
|
158
131
|
/**
|
|
159
132
|
* Variable name where the result of an HTTP invocation step is stored.
|
|
@@ -176,7 +149,7 @@ export interface Step {
|
|
|
176
149
|
* Stop a workflow's execution and return a value, variable, or expression.
|
|
177
150
|
*/
|
|
178
151
|
return?: {
|
|
179
|
-
[k: string]: unknown;
|
|
152
|
+
[k: string]: unknown | undefined;
|
|
180
153
|
};
|
|
181
154
|
/**
|
|
182
155
|
* Raise an exception.
|
|
@@ -184,7 +157,7 @@ export interface Step {
|
|
|
184
157
|
raise?:
|
|
185
158
|
| string
|
|
186
159
|
| {
|
|
187
|
-
[k: string]: unknown;
|
|
160
|
+
[k: string]: unknown | undefined;
|
|
188
161
|
};
|
|
189
162
|
}[];
|
|
190
163
|
/**
|
|
@@ -195,7 +168,7 @@ export interface Step {
|
|
|
195
168
|
* Stop a workflow's execution and return a value, variable, or expression.
|
|
196
169
|
*/
|
|
197
170
|
return?: {
|
|
198
|
-
[k: string]: unknown;
|
|
171
|
+
[k: string]: unknown | undefined;
|
|
199
172
|
};
|
|
200
173
|
try?: Step1;
|
|
201
174
|
/**
|
|
@@ -238,7 +211,7 @@ export interface Step {
|
|
|
238
211
|
* Name of a dictionary variable that contains the error message.
|
|
239
212
|
*/
|
|
240
213
|
as?: string;
|
|
241
|
-
steps?:
|
|
214
|
+
steps?: StepArray2;
|
|
242
215
|
};
|
|
243
216
|
/**
|
|
244
217
|
* Raise an exception.
|
|
@@ -246,268 +219,8 @@ export interface Step {
|
|
|
246
219
|
raise?:
|
|
247
220
|
| string
|
|
248
221
|
| {
|
|
249
|
-
[k: string]: unknown;
|
|
222
|
+
[k: string]: unknown | undefined;
|
|
250
223
|
};
|
|
251
|
-
for?: For;
|
|
252
|
-
/**
|
|
253
|
-
* Run branches or iterations in parallel
|
|
254
|
-
*/
|
|
255
|
-
parallel?: {
|
|
256
|
-
/**
|
|
257
|
-
* The action for other branches when an exception occurs
|
|
258
|
-
*/
|
|
259
|
-
exception_policy?: "continueAll";
|
|
260
|
-
/**
|
|
261
|
-
* A list of shared variables
|
|
262
|
-
*/
|
|
263
|
-
shared?: string[];
|
|
264
|
-
/**
|
|
265
|
-
* An upper limit for branches/iterations to perform concurrently
|
|
266
|
-
*/
|
|
267
|
-
concurrency_limit?: number;
|
|
268
|
-
/**
|
|
269
|
-
* A list of branches that will run concurrently
|
|
270
|
-
*
|
|
271
|
-
* @minItems 2
|
|
272
|
-
* @maxItems 10
|
|
273
|
-
*/
|
|
274
|
-
branches?:
|
|
275
|
-
| [
|
|
276
|
-
{
|
|
277
|
-
steps?: StepArray3;
|
|
278
|
-
[k: string]: unknown;
|
|
279
|
-
},
|
|
280
|
-
{
|
|
281
|
-
steps?: StepArray3;
|
|
282
|
-
[k: string]: unknown;
|
|
283
|
-
}
|
|
284
|
-
]
|
|
285
|
-
| [
|
|
286
|
-
{
|
|
287
|
-
steps?: StepArray3;
|
|
288
|
-
[k: string]: unknown;
|
|
289
|
-
},
|
|
290
|
-
{
|
|
291
|
-
steps?: StepArray3;
|
|
292
|
-
[k: string]: unknown;
|
|
293
|
-
},
|
|
294
|
-
{
|
|
295
|
-
steps?: StepArray3;
|
|
296
|
-
[k: string]: unknown;
|
|
297
|
-
}
|
|
298
|
-
]
|
|
299
|
-
| [
|
|
300
|
-
{
|
|
301
|
-
steps?: StepArray3;
|
|
302
|
-
[k: string]: unknown;
|
|
303
|
-
},
|
|
304
|
-
{
|
|
305
|
-
steps?: StepArray3;
|
|
306
|
-
[k: string]: unknown;
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
steps?: StepArray3;
|
|
310
|
-
[k: string]: unknown;
|
|
311
|
-
},
|
|
312
|
-
{
|
|
313
|
-
steps?: StepArray3;
|
|
314
|
-
[k: string]: unknown;
|
|
315
|
-
}
|
|
316
|
-
]
|
|
317
|
-
| [
|
|
318
|
-
{
|
|
319
|
-
steps?: StepArray3;
|
|
320
|
-
[k: string]: unknown;
|
|
321
|
-
},
|
|
322
|
-
{
|
|
323
|
-
steps?: StepArray3;
|
|
324
|
-
[k: string]: unknown;
|
|
325
|
-
},
|
|
326
|
-
{
|
|
327
|
-
steps?: StepArray3;
|
|
328
|
-
[k: string]: unknown;
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
steps?: StepArray3;
|
|
332
|
-
[k: string]: unknown;
|
|
333
|
-
},
|
|
334
|
-
{
|
|
335
|
-
steps?: StepArray3;
|
|
336
|
-
[k: string]: unknown;
|
|
337
|
-
}
|
|
338
|
-
]
|
|
339
|
-
| [
|
|
340
|
-
{
|
|
341
|
-
steps?: StepArray3;
|
|
342
|
-
[k: string]: unknown;
|
|
343
|
-
},
|
|
344
|
-
{
|
|
345
|
-
steps?: StepArray3;
|
|
346
|
-
[k: string]: unknown;
|
|
347
|
-
},
|
|
348
|
-
{
|
|
349
|
-
steps?: StepArray3;
|
|
350
|
-
[k: string]: unknown;
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
steps?: StepArray3;
|
|
354
|
-
[k: string]: unknown;
|
|
355
|
-
},
|
|
356
|
-
{
|
|
357
|
-
steps?: StepArray3;
|
|
358
|
-
[k: string]: unknown;
|
|
359
|
-
},
|
|
360
|
-
{
|
|
361
|
-
steps?: StepArray3;
|
|
362
|
-
[k: string]: unknown;
|
|
363
|
-
}
|
|
364
|
-
]
|
|
365
|
-
| [
|
|
366
|
-
{
|
|
367
|
-
steps?: StepArray3;
|
|
368
|
-
[k: string]: unknown;
|
|
369
|
-
},
|
|
370
|
-
{
|
|
371
|
-
steps?: StepArray3;
|
|
372
|
-
[k: string]: unknown;
|
|
373
|
-
},
|
|
374
|
-
{
|
|
375
|
-
steps?: StepArray3;
|
|
376
|
-
[k: string]: unknown;
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
steps?: StepArray3;
|
|
380
|
-
[k: string]: unknown;
|
|
381
|
-
},
|
|
382
|
-
{
|
|
383
|
-
steps?: StepArray3;
|
|
384
|
-
[k: string]: unknown;
|
|
385
|
-
},
|
|
386
|
-
{
|
|
387
|
-
steps?: StepArray3;
|
|
388
|
-
[k: string]: unknown;
|
|
389
|
-
},
|
|
390
|
-
{
|
|
391
|
-
steps?: StepArray3;
|
|
392
|
-
[k: string]: unknown;
|
|
393
|
-
}
|
|
394
|
-
]
|
|
395
|
-
| [
|
|
396
|
-
{
|
|
397
|
-
steps?: StepArray3;
|
|
398
|
-
[k: string]: unknown;
|
|
399
|
-
},
|
|
400
|
-
{
|
|
401
|
-
steps?: StepArray3;
|
|
402
|
-
[k: string]: unknown;
|
|
403
|
-
},
|
|
404
|
-
{
|
|
405
|
-
steps?: StepArray3;
|
|
406
|
-
[k: string]: unknown;
|
|
407
|
-
},
|
|
408
|
-
{
|
|
409
|
-
steps?: StepArray3;
|
|
410
|
-
[k: string]: unknown;
|
|
411
|
-
},
|
|
412
|
-
{
|
|
413
|
-
steps?: StepArray3;
|
|
414
|
-
[k: string]: unknown;
|
|
415
|
-
},
|
|
416
|
-
{
|
|
417
|
-
steps?: StepArray3;
|
|
418
|
-
[k: string]: unknown;
|
|
419
|
-
},
|
|
420
|
-
{
|
|
421
|
-
steps?: StepArray3;
|
|
422
|
-
[k: string]: unknown;
|
|
423
|
-
},
|
|
424
|
-
{
|
|
425
|
-
steps?: StepArray3;
|
|
426
|
-
[k: string]: unknown;
|
|
427
|
-
}
|
|
428
|
-
]
|
|
429
|
-
| [
|
|
430
|
-
{
|
|
431
|
-
steps?: StepArray3;
|
|
432
|
-
[k: string]: unknown;
|
|
433
|
-
},
|
|
434
|
-
{
|
|
435
|
-
steps?: StepArray3;
|
|
436
|
-
[k: string]: unknown;
|
|
437
|
-
},
|
|
438
|
-
{
|
|
439
|
-
steps?: StepArray3;
|
|
440
|
-
[k: string]: unknown;
|
|
441
|
-
},
|
|
442
|
-
{
|
|
443
|
-
steps?: StepArray3;
|
|
444
|
-
[k: string]: unknown;
|
|
445
|
-
},
|
|
446
|
-
{
|
|
447
|
-
steps?: StepArray3;
|
|
448
|
-
[k: string]: unknown;
|
|
449
|
-
},
|
|
450
|
-
{
|
|
451
|
-
steps?: StepArray3;
|
|
452
|
-
[k: string]: unknown;
|
|
453
|
-
},
|
|
454
|
-
{
|
|
455
|
-
steps?: StepArray3;
|
|
456
|
-
[k: string]: unknown;
|
|
457
|
-
},
|
|
458
|
-
{
|
|
459
|
-
steps?: StepArray3;
|
|
460
|
-
[k: string]: unknown;
|
|
461
|
-
},
|
|
462
|
-
{
|
|
463
|
-
steps?: StepArray3;
|
|
464
|
-
[k: string]: unknown;
|
|
465
|
-
}
|
|
466
|
-
]
|
|
467
|
-
| [
|
|
468
|
-
{
|
|
469
|
-
steps?: StepArray3;
|
|
470
|
-
[k: string]: unknown;
|
|
471
|
-
},
|
|
472
|
-
{
|
|
473
|
-
steps?: StepArray3;
|
|
474
|
-
[k: string]: unknown;
|
|
475
|
-
},
|
|
476
|
-
{
|
|
477
|
-
steps?: StepArray3;
|
|
478
|
-
[k: string]: unknown;
|
|
479
|
-
},
|
|
480
|
-
{
|
|
481
|
-
steps?: StepArray3;
|
|
482
|
-
[k: string]: unknown;
|
|
483
|
-
},
|
|
484
|
-
{
|
|
485
|
-
steps?: StepArray3;
|
|
486
|
-
[k: string]: unknown;
|
|
487
|
-
},
|
|
488
|
-
{
|
|
489
|
-
steps?: StepArray3;
|
|
490
|
-
[k: string]: unknown;
|
|
491
|
-
},
|
|
492
|
-
{
|
|
493
|
-
steps?: StepArray3;
|
|
494
|
-
[k: string]: unknown;
|
|
495
|
-
},
|
|
496
|
-
{
|
|
497
|
-
steps?: StepArray3;
|
|
498
|
-
[k: string]: unknown;
|
|
499
|
-
},
|
|
500
|
-
{
|
|
501
|
-
steps?: StepArray3;
|
|
502
|
-
[k: string]: unknown;
|
|
503
|
-
},
|
|
504
|
-
{
|
|
505
|
-
steps?: StepArray3;
|
|
506
|
-
[k: string]: unknown;
|
|
507
|
-
}
|
|
508
|
-
];
|
|
509
|
-
for?: For1;
|
|
510
|
-
};
|
|
511
224
|
}
|
|
512
225
|
/**
|
|
513
226
|
* Try a single step or a list of steps.
|
|
@@ -530,19 +243,19 @@ export interface Step1 {
|
|
|
530
243
|
* Request headers.
|
|
531
244
|
*/
|
|
532
245
|
headers?: {
|
|
533
|
-
[k: string]: unknown;
|
|
246
|
+
[k: string]: unknown | undefined;
|
|
534
247
|
};
|
|
535
248
|
/**
|
|
536
249
|
* Request body.
|
|
537
250
|
*/
|
|
538
251
|
body?: {
|
|
539
|
-
[k: string]: unknown;
|
|
252
|
+
[k: string]: unknown | undefined;
|
|
540
253
|
};
|
|
541
254
|
/**
|
|
542
255
|
* Request query parameters.
|
|
543
256
|
*/
|
|
544
257
|
query?: {
|
|
545
|
-
[k: string]: unknown;
|
|
258
|
+
[k: string]: unknown | undefined;
|
|
546
259
|
};
|
|
547
260
|
/**
|
|
548
261
|
* Required if the API being called requires authentication.
|
|
@@ -566,7 +279,7 @@ export interface Step1 {
|
|
|
566
279
|
* Define a dictionary.
|
|
567
280
|
*/
|
|
568
281
|
assign?: {
|
|
569
|
-
[k: string]: unknown;
|
|
282
|
+
[k: string]: unknown | undefined;
|
|
570
283
|
}[];
|
|
571
284
|
/**
|
|
572
285
|
* Variable name where the result of an HTTP invocation step is stored.
|
|
@@ -589,7 +302,7 @@ export interface Step1 {
|
|
|
589
302
|
* Stop a workflow's execution and return a value, variable, or expression.
|
|
590
303
|
*/
|
|
591
304
|
return?: {
|
|
592
|
-
[k: string]: unknown;
|
|
305
|
+
[k: string]: unknown | undefined;
|
|
593
306
|
};
|
|
594
307
|
/**
|
|
595
308
|
* Raise an exception.
|
|
@@ -597,7 +310,7 @@ export interface Step1 {
|
|
|
597
310
|
raise?:
|
|
598
311
|
| string
|
|
599
312
|
| {
|
|
600
|
-
[k: string]: unknown;
|
|
313
|
+
[k: string]: unknown | undefined;
|
|
601
314
|
};
|
|
602
315
|
}[];
|
|
603
316
|
/**
|
|
@@ -608,7 +321,7 @@ export interface Step1 {
|
|
|
608
321
|
* Stop a workflow's execution and return a value, variable, or expression.
|
|
609
322
|
*/
|
|
610
323
|
return?: {
|
|
611
|
-
[k: string]: unknown;
|
|
324
|
+
[k: string]: unknown | undefined;
|
|
612
325
|
};
|
|
613
326
|
try?: Step1;
|
|
614
327
|
/**
|
|
@@ -651,7 +364,7 @@ export interface Step1 {
|
|
|
651
364
|
* Name of a dictionary variable that contains the error message.
|
|
652
365
|
*/
|
|
653
366
|
as?: string;
|
|
654
|
-
steps?:
|
|
367
|
+
steps?: StepArray2;
|
|
655
368
|
};
|
|
656
369
|
/**
|
|
657
370
|
* Raise an exception.
|
|
@@ -659,268 +372,8 @@ export interface Step1 {
|
|
|
659
372
|
raise?:
|
|
660
373
|
| string
|
|
661
374
|
| {
|
|
662
|
-
[k: string]: unknown;
|
|
375
|
+
[k: string]: unknown | undefined;
|
|
663
376
|
};
|
|
664
|
-
for?: For;
|
|
665
|
-
/**
|
|
666
|
-
* Run branches or iterations in parallel
|
|
667
|
-
*/
|
|
668
|
-
parallel?: {
|
|
669
|
-
/**
|
|
670
|
-
* The action for other branches when an exception occurs
|
|
671
|
-
*/
|
|
672
|
-
exception_policy?: "continueAll";
|
|
673
|
-
/**
|
|
674
|
-
* A list of shared variables
|
|
675
|
-
*/
|
|
676
|
-
shared?: string[];
|
|
677
|
-
/**
|
|
678
|
-
* An upper limit for branches/iterations to perform concurrently
|
|
679
|
-
*/
|
|
680
|
-
concurrency_limit?: number;
|
|
681
|
-
/**
|
|
682
|
-
* A list of branches that will run concurrently
|
|
683
|
-
*
|
|
684
|
-
* @minItems 2
|
|
685
|
-
* @maxItems 10
|
|
686
|
-
*/
|
|
687
|
-
branches?:
|
|
688
|
-
| [
|
|
689
|
-
{
|
|
690
|
-
steps?: StepArray3;
|
|
691
|
-
[k: string]: unknown;
|
|
692
|
-
},
|
|
693
|
-
{
|
|
694
|
-
steps?: StepArray3;
|
|
695
|
-
[k: string]: unknown;
|
|
696
|
-
}
|
|
697
|
-
]
|
|
698
|
-
| [
|
|
699
|
-
{
|
|
700
|
-
steps?: StepArray3;
|
|
701
|
-
[k: string]: unknown;
|
|
702
|
-
},
|
|
703
|
-
{
|
|
704
|
-
steps?: StepArray3;
|
|
705
|
-
[k: string]: unknown;
|
|
706
|
-
},
|
|
707
|
-
{
|
|
708
|
-
steps?: StepArray3;
|
|
709
|
-
[k: string]: unknown;
|
|
710
|
-
}
|
|
711
|
-
]
|
|
712
|
-
| [
|
|
713
|
-
{
|
|
714
|
-
steps?: StepArray3;
|
|
715
|
-
[k: string]: unknown;
|
|
716
|
-
},
|
|
717
|
-
{
|
|
718
|
-
steps?: StepArray3;
|
|
719
|
-
[k: string]: unknown;
|
|
720
|
-
},
|
|
721
|
-
{
|
|
722
|
-
steps?: StepArray3;
|
|
723
|
-
[k: string]: unknown;
|
|
724
|
-
},
|
|
725
|
-
{
|
|
726
|
-
steps?: StepArray3;
|
|
727
|
-
[k: string]: unknown;
|
|
728
|
-
}
|
|
729
|
-
]
|
|
730
|
-
| [
|
|
731
|
-
{
|
|
732
|
-
steps?: StepArray3;
|
|
733
|
-
[k: string]: unknown;
|
|
734
|
-
},
|
|
735
|
-
{
|
|
736
|
-
steps?: StepArray3;
|
|
737
|
-
[k: string]: unknown;
|
|
738
|
-
},
|
|
739
|
-
{
|
|
740
|
-
steps?: StepArray3;
|
|
741
|
-
[k: string]: unknown;
|
|
742
|
-
},
|
|
743
|
-
{
|
|
744
|
-
steps?: StepArray3;
|
|
745
|
-
[k: string]: unknown;
|
|
746
|
-
},
|
|
747
|
-
{
|
|
748
|
-
steps?: StepArray3;
|
|
749
|
-
[k: string]: unknown;
|
|
750
|
-
}
|
|
751
|
-
]
|
|
752
|
-
| [
|
|
753
|
-
{
|
|
754
|
-
steps?: StepArray3;
|
|
755
|
-
[k: string]: unknown;
|
|
756
|
-
},
|
|
757
|
-
{
|
|
758
|
-
steps?: StepArray3;
|
|
759
|
-
[k: string]: unknown;
|
|
760
|
-
},
|
|
761
|
-
{
|
|
762
|
-
steps?: StepArray3;
|
|
763
|
-
[k: string]: unknown;
|
|
764
|
-
},
|
|
765
|
-
{
|
|
766
|
-
steps?: StepArray3;
|
|
767
|
-
[k: string]: unknown;
|
|
768
|
-
},
|
|
769
|
-
{
|
|
770
|
-
steps?: StepArray3;
|
|
771
|
-
[k: string]: unknown;
|
|
772
|
-
},
|
|
773
|
-
{
|
|
774
|
-
steps?: StepArray3;
|
|
775
|
-
[k: string]: unknown;
|
|
776
|
-
}
|
|
777
|
-
]
|
|
778
|
-
| [
|
|
779
|
-
{
|
|
780
|
-
steps?: StepArray3;
|
|
781
|
-
[k: string]: unknown;
|
|
782
|
-
},
|
|
783
|
-
{
|
|
784
|
-
steps?: StepArray3;
|
|
785
|
-
[k: string]: unknown;
|
|
786
|
-
},
|
|
787
|
-
{
|
|
788
|
-
steps?: StepArray3;
|
|
789
|
-
[k: string]: unknown;
|
|
790
|
-
},
|
|
791
|
-
{
|
|
792
|
-
steps?: StepArray3;
|
|
793
|
-
[k: string]: unknown;
|
|
794
|
-
},
|
|
795
|
-
{
|
|
796
|
-
steps?: StepArray3;
|
|
797
|
-
[k: string]: unknown;
|
|
798
|
-
},
|
|
799
|
-
{
|
|
800
|
-
steps?: StepArray3;
|
|
801
|
-
[k: string]: unknown;
|
|
802
|
-
},
|
|
803
|
-
{
|
|
804
|
-
steps?: StepArray3;
|
|
805
|
-
[k: string]: unknown;
|
|
806
|
-
}
|
|
807
|
-
]
|
|
808
|
-
| [
|
|
809
|
-
{
|
|
810
|
-
steps?: StepArray3;
|
|
811
|
-
[k: string]: unknown;
|
|
812
|
-
},
|
|
813
|
-
{
|
|
814
|
-
steps?: StepArray3;
|
|
815
|
-
[k: string]: unknown;
|
|
816
|
-
},
|
|
817
|
-
{
|
|
818
|
-
steps?: StepArray3;
|
|
819
|
-
[k: string]: unknown;
|
|
820
|
-
},
|
|
821
|
-
{
|
|
822
|
-
steps?: StepArray3;
|
|
823
|
-
[k: string]: unknown;
|
|
824
|
-
},
|
|
825
|
-
{
|
|
826
|
-
steps?: StepArray3;
|
|
827
|
-
[k: string]: unknown;
|
|
828
|
-
},
|
|
829
|
-
{
|
|
830
|
-
steps?: StepArray3;
|
|
831
|
-
[k: string]: unknown;
|
|
832
|
-
},
|
|
833
|
-
{
|
|
834
|
-
steps?: StepArray3;
|
|
835
|
-
[k: string]: unknown;
|
|
836
|
-
},
|
|
837
|
-
{
|
|
838
|
-
steps?: StepArray3;
|
|
839
|
-
[k: string]: unknown;
|
|
840
|
-
}
|
|
841
|
-
]
|
|
842
|
-
| [
|
|
843
|
-
{
|
|
844
|
-
steps?: StepArray3;
|
|
845
|
-
[k: string]: unknown;
|
|
846
|
-
},
|
|
847
|
-
{
|
|
848
|
-
steps?: StepArray3;
|
|
849
|
-
[k: string]: unknown;
|
|
850
|
-
},
|
|
851
|
-
{
|
|
852
|
-
steps?: StepArray3;
|
|
853
|
-
[k: string]: unknown;
|
|
854
|
-
},
|
|
855
|
-
{
|
|
856
|
-
steps?: StepArray3;
|
|
857
|
-
[k: string]: unknown;
|
|
858
|
-
},
|
|
859
|
-
{
|
|
860
|
-
steps?: StepArray3;
|
|
861
|
-
[k: string]: unknown;
|
|
862
|
-
},
|
|
863
|
-
{
|
|
864
|
-
steps?: StepArray3;
|
|
865
|
-
[k: string]: unknown;
|
|
866
|
-
},
|
|
867
|
-
{
|
|
868
|
-
steps?: StepArray3;
|
|
869
|
-
[k: string]: unknown;
|
|
870
|
-
},
|
|
871
|
-
{
|
|
872
|
-
steps?: StepArray3;
|
|
873
|
-
[k: string]: unknown;
|
|
874
|
-
},
|
|
875
|
-
{
|
|
876
|
-
steps?: StepArray3;
|
|
877
|
-
[k: string]: unknown;
|
|
878
|
-
}
|
|
879
|
-
]
|
|
880
|
-
| [
|
|
881
|
-
{
|
|
882
|
-
steps?: StepArray3;
|
|
883
|
-
[k: string]: unknown;
|
|
884
|
-
},
|
|
885
|
-
{
|
|
886
|
-
steps?: StepArray3;
|
|
887
|
-
[k: string]: unknown;
|
|
888
|
-
},
|
|
889
|
-
{
|
|
890
|
-
steps?: StepArray3;
|
|
891
|
-
[k: string]: unknown;
|
|
892
|
-
},
|
|
893
|
-
{
|
|
894
|
-
steps?: StepArray3;
|
|
895
|
-
[k: string]: unknown;
|
|
896
|
-
},
|
|
897
|
-
{
|
|
898
|
-
steps?: StepArray3;
|
|
899
|
-
[k: string]: unknown;
|
|
900
|
-
},
|
|
901
|
-
{
|
|
902
|
-
steps?: StepArray3;
|
|
903
|
-
[k: string]: unknown;
|
|
904
|
-
},
|
|
905
|
-
{
|
|
906
|
-
steps?: StepArray3;
|
|
907
|
-
[k: string]: unknown;
|
|
908
|
-
},
|
|
909
|
-
{
|
|
910
|
-
steps?: StepArray3;
|
|
911
|
-
[k: string]: unknown;
|
|
912
|
-
},
|
|
913
|
-
{
|
|
914
|
-
steps?: StepArray3;
|
|
915
|
-
[k: string]: unknown;
|
|
916
|
-
},
|
|
917
|
-
{
|
|
918
|
-
steps?: StepArray3;
|
|
919
|
-
[k: string]: unknown;
|
|
920
|
-
}
|
|
921
|
-
];
|
|
922
|
-
for?: For1;
|
|
923
|
-
};
|
|
924
377
|
}
|
|
925
378
|
/**
|
|
926
379
|
* A single workflow step.
|
|
@@ -943,19 +396,19 @@ export interface Step2 {
|
|
|
943
396
|
* Request headers.
|
|
944
397
|
*/
|
|
945
398
|
headers?: {
|
|
946
|
-
[k: string]: unknown;
|
|
399
|
+
[k: string]: unknown | undefined;
|
|
947
400
|
};
|
|
948
401
|
/**
|
|
949
402
|
* Request body.
|
|
950
403
|
*/
|
|
951
404
|
body?: {
|
|
952
|
-
[k: string]: unknown;
|
|
405
|
+
[k: string]: unknown | undefined;
|
|
953
406
|
};
|
|
954
407
|
/**
|
|
955
408
|
* Request query parameters.
|
|
956
409
|
*/
|
|
957
410
|
query?: {
|
|
958
|
-
[k: string]: unknown;
|
|
411
|
+
[k: string]: unknown | undefined;
|
|
959
412
|
};
|
|
960
413
|
/**
|
|
961
414
|
* Required if the API being called requires authentication.
|
|
@@ -979,7 +432,7 @@ export interface Step2 {
|
|
|
979
432
|
* Define a dictionary.
|
|
980
433
|
*/
|
|
981
434
|
assign?: {
|
|
982
|
-
[k: string]: unknown;
|
|
435
|
+
[k: string]: unknown | undefined;
|
|
983
436
|
}[];
|
|
984
437
|
/**
|
|
985
438
|
* Variable name where the result of an HTTP invocation step is stored.
|
|
@@ -1002,7 +455,7 @@ export interface Step2 {
|
|
|
1002
455
|
* Stop a workflow's execution and return a value, variable, or expression.
|
|
1003
456
|
*/
|
|
1004
457
|
return?: {
|
|
1005
|
-
[k: string]: unknown;
|
|
458
|
+
[k: string]: unknown | undefined;
|
|
1006
459
|
};
|
|
1007
460
|
/**
|
|
1008
461
|
* Raise an exception.
|
|
@@ -1010,7 +463,7 @@ export interface Step2 {
|
|
|
1010
463
|
raise?:
|
|
1011
464
|
| string
|
|
1012
465
|
| {
|
|
1013
|
-
[k: string]: unknown;
|
|
466
|
+
[k: string]: unknown | undefined;
|
|
1014
467
|
};
|
|
1015
468
|
}[];
|
|
1016
469
|
/**
|
|
@@ -1021,7 +474,7 @@ export interface Step2 {
|
|
|
1021
474
|
* Stop a workflow's execution and return a value, variable, or expression.
|
|
1022
475
|
*/
|
|
1023
476
|
return?: {
|
|
1024
|
-
[k: string]: unknown;
|
|
477
|
+
[k: string]: unknown | undefined;
|
|
1025
478
|
};
|
|
1026
479
|
try?: Step1;
|
|
1027
480
|
/**
|
|
@@ -1064,7 +517,7 @@ export interface Step2 {
|
|
|
1064
517
|
* Name of a dictionary variable that contains the error message.
|
|
1065
518
|
*/
|
|
1066
519
|
as?: string;
|
|
1067
|
-
steps?:
|
|
520
|
+
steps?: StepArray2;
|
|
1068
521
|
};
|
|
1069
522
|
/**
|
|
1070
523
|
* Raise an exception.
|
|
@@ -1072,328 +525,8 @@ export interface Step2 {
|
|
|
1072
525
|
raise?:
|
|
1073
526
|
| string
|
|
1074
527
|
| {
|
|
1075
|
-
[k: string]: unknown;
|
|
528
|
+
[k: string]: unknown | undefined;
|
|
1076
529
|
};
|
|
1077
|
-
for?: For;
|
|
1078
|
-
/**
|
|
1079
|
-
* Run branches or iterations in parallel
|
|
1080
|
-
*/
|
|
1081
|
-
parallel?: {
|
|
1082
|
-
/**
|
|
1083
|
-
* The action for other branches when an exception occurs
|
|
1084
|
-
*/
|
|
1085
|
-
exception_policy?: "continueAll";
|
|
1086
|
-
/**
|
|
1087
|
-
* A list of shared variables
|
|
1088
|
-
*/
|
|
1089
|
-
shared?: string[];
|
|
1090
|
-
/**
|
|
1091
|
-
* An upper limit for branches/iterations to perform concurrently
|
|
1092
|
-
*/
|
|
1093
|
-
concurrency_limit?: number;
|
|
1094
|
-
/**
|
|
1095
|
-
* A list of branches that will run concurrently
|
|
1096
|
-
*
|
|
1097
|
-
* @minItems 2
|
|
1098
|
-
* @maxItems 10
|
|
1099
|
-
*/
|
|
1100
|
-
branches?:
|
|
1101
|
-
| [
|
|
1102
|
-
{
|
|
1103
|
-
steps?: StepArray3;
|
|
1104
|
-
[k: string]: unknown;
|
|
1105
|
-
},
|
|
1106
|
-
{
|
|
1107
|
-
steps?: StepArray3;
|
|
1108
|
-
[k: string]: unknown;
|
|
1109
|
-
}
|
|
1110
|
-
]
|
|
1111
|
-
| [
|
|
1112
|
-
{
|
|
1113
|
-
steps?: StepArray3;
|
|
1114
|
-
[k: string]: unknown;
|
|
1115
|
-
},
|
|
1116
|
-
{
|
|
1117
|
-
steps?: StepArray3;
|
|
1118
|
-
[k: string]: unknown;
|
|
1119
|
-
},
|
|
1120
|
-
{
|
|
1121
|
-
steps?: StepArray3;
|
|
1122
|
-
[k: string]: unknown;
|
|
1123
|
-
}
|
|
1124
|
-
]
|
|
1125
|
-
| [
|
|
1126
|
-
{
|
|
1127
|
-
steps?: StepArray3;
|
|
1128
|
-
[k: string]: unknown;
|
|
1129
|
-
},
|
|
1130
|
-
{
|
|
1131
|
-
steps?: StepArray3;
|
|
1132
|
-
[k: string]: unknown;
|
|
1133
|
-
},
|
|
1134
|
-
{
|
|
1135
|
-
steps?: StepArray3;
|
|
1136
|
-
[k: string]: unknown;
|
|
1137
|
-
},
|
|
1138
|
-
{
|
|
1139
|
-
steps?: StepArray3;
|
|
1140
|
-
[k: string]: unknown;
|
|
1141
|
-
}
|
|
1142
|
-
]
|
|
1143
|
-
| [
|
|
1144
|
-
{
|
|
1145
|
-
steps?: StepArray3;
|
|
1146
|
-
[k: string]: unknown;
|
|
1147
|
-
},
|
|
1148
|
-
{
|
|
1149
|
-
steps?: StepArray3;
|
|
1150
|
-
[k: string]: unknown;
|
|
1151
|
-
},
|
|
1152
|
-
{
|
|
1153
|
-
steps?: StepArray3;
|
|
1154
|
-
[k: string]: unknown;
|
|
1155
|
-
},
|
|
1156
|
-
{
|
|
1157
|
-
steps?: StepArray3;
|
|
1158
|
-
[k: string]: unknown;
|
|
1159
|
-
},
|
|
1160
|
-
{
|
|
1161
|
-
steps?: StepArray3;
|
|
1162
|
-
[k: string]: unknown;
|
|
1163
|
-
}
|
|
1164
|
-
]
|
|
1165
|
-
| [
|
|
1166
|
-
{
|
|
1167
|
-
steps?: StepArray3;
|
|
1168
|
-
[k: string]: unknown;
|
|
1169
|
-
},
|
|
1170
|
-
{
|
|
1171
|
-
steps?: StepArray3;
|
|
1172
|
-
[k: string]: unknown;
|
|
1173
|
-
},
|
|
1174
|
-
{
|
|
1175
|
-
steps?: StepArray3;
|
|
1176
|
-
[k: string]: unknown;
|
|
1177
|
-
},
|
|
1178
|
-
{
|
|
1179
|
-
steps?: StepArray3;
|
|
1180
|
-
[k: string]: unknown;
|
|
1181
|
-
},
|
|
1182
|
-
{
|
|
1183
|
-
steps?: StepArray3;
|
|
1184
|
-
[k: string]: unknown;
|
|
1185
|
-
},
|
|
1186
|
-
{
|
|
1187
|
-
steps?: StepArray3;
|
|
1188
|
-
[k: string]: unknown;
|
|
1189
|
-
}
|
|
1190
|
-
]
|
|
1191
|
-
| [
|
|
1192
|
-
{
|
|
1193
|
-
steps?: StepArray3;
|
|
1194
|
-
[k: string]: unknown;
|
|
1195
|
-
},
|
|
1196
|
-
{
|
|
1197
|
-
steps?: StepArray3;
|
|
1198
|
-
[k: string]: unknown;
|
|
1199
|
-
},
|
|
1200
|
-
{
|
|
1201
|
-
steps?: StepArray3;
|
|
1202
|
-
[k: string]: unknown;
|
|
1203
|
-
},
|
|
1204
|
-
{
|
|
1205
|
-
steps?: StepArray3;
|
|
1206
|
-
[k: string]: unknown;
|
|
1207
|
-
},
|
|
1208
|
-
{
|
|
1209
|
-
steps?: StepArray3;
|
|
1210
|
-
[k: string]: unknown;
|
|
1211
|
-
},
|
|
1212
|
-
{
|
|
1213
|
-
steps?: StepArray3;
|
|
1214
|
-
[k: string]: unknown;
|
|
1215
|
-
},
|
|
1216
|
-
{
|
|
1217
|
-
steps?: StepArray3;
|
|
1218
|
-
[k: string]: unknown;
|
|
1219
|
-
}
|
|
1220
|
-
]
|
|
1221
|
-
| [
|
|
1222
|
-
{
|
|
1223
|
-
steps?: StepArray3;
|
|
1224
|
-
[k: string]: unknown;
|
|
1225
|
-
},
|
|
1226
|
-
{
|
|
1227
|
-
steps?: StepArray3;
|
|
1228
|
-
[k: string]: unknown;
|
|
1229
|
-
},
|
|
1230
|
-
{
|
|
1231
|
-
steps?: StepArray3;
|
|
1232
|
-
[k: string]: unknown;
|
|
1233
|
-
},
|
|
1234
|
-
{
|
|
1235
|
-
steps?: StepArray3;
|
|
1236
|
-
[k: string]: unknown;
|
|
1237
|
-
},
|
|
1238
|
-
{
|
|
1239
|
-
steps?: StepArray3;
|
|
1240
|
-
[k: string]: unknown;
|
|
1241
|
-
},
|
|
1242
|
-
{
|
|
1243
|
-
steps?: StepArray3;
|
|
1244
|
-
[k: string]: unknown;
|
|
1245
|
-
},
|
|
1246
|
-
{
|
|
1247
|
-
steps?: StepArray3;
|
|
1248
|
-
[k: string]: unknown;
|
|
1249
|
-
},
|
|
1250
|
-
{
|
|
1251
|
-
steps?: StepArray3;
|
|
1252
|
-
[k: string]: unknown;
|
|
1253
|
-
}
|
|
1254
|
-
]
|
|
1255
|
-
| [
|
|
1256
|
-
{
|
|
1257
|
-
steps?: StepArray3;
|
|
1258
|
-
[k: string]: unknown;
|
|
1259
|
-
},
|
|
1260
|
-
{
|
|
1261
|
-
steps?: StepArray3;
|
|
1262
|
-
[k: string]: unknown;
|
|
1263
|
-
},
|
|
1264
|
-
{
|
|
1265
|
-
steps?: StepArray3;
|
|
1266
|
-
[k: string]: unknown;
|
|
1267
|
-
},
|
|
1268
|
-
{
|
|
1269
|
-
steps?: StepArray3;
|
|
1270
|
-
[k: string]: unknown;
|
|
1271
|
-
},
|
|
1272
|
-
{
|
|
1273
|
-
steps?: StepArray3;
|
|
1274
|
-
[k: string]: unknown;
|
|
1275
|
-
},
|
|
1276
|
-
{
|
|
1277
|
-
steps?: StepArray3;
|
|
1278
|
-
[k: string]: unknown;
|
|
1279
|
-
},
|
|
1280
|
-
{
|
|
1281
|
-
steps?: StepArray3;
|
|
1282
|
-
[k: string]: unknown;
|
|
1283
|
-
},
|
|
1284
|
-
{
|
|
1285
|
-
steps?: StepArray3;
|
|
1286
|
-
[k: string]: unknown;
|
|
1287
|
-
},
|
|
1288
|
-
{
|
|
1289
|
-
steps?: StepArray3;
|
|
1290
|
-
[k: string]: unknown;
|
|
1291
|
-
}
|
|
1292
|
-
]
|
|
1293
|
-
| [
|
|
1294
|
-
{
|
|
1295
|
-
steps?: StepArray3;
|
|
1296
|
-
[k: string]: unknown;
|
|
1297
|
-
},
|
|
1298
|
-
{
|
|
1299
|
-
steps?: StepArray3;
|
|
1300
|
-
[k: string]: unknown;
|
|
1301
|
-
},
|
|
1302
|
-
{
|
|
1303
|
-
steps?: StepArray3;
|
|
1304
|
-
[k: string]: unknown;
|
|
1305
|
-
},
|
|
1306
|
-
{
|
|
1307
|
-
steps?: StepArray3;
|
|
1308
|
-
[k: string]: unknown;
|
|
1309
|
-
},
|
|
1310
|
-
{
|
|
1311
|
-
steps?: StepArray3;
|
|
1312
|
-
[k: string]: unknown;
|
|
1313
|
-
},
|
|
1314
|
-
{
|
|
1315
|
-
steps?: StepArray3;
|
|
1316
|
-
[k: string]: unknown;
|
|
1317
|
-
},
|
|
1318
|
-
{
|
|
1319
|
-
steps?: StepArray3;
|
|
1320
|
-
[k: string]: unknown;
|
|
1321
|
-
},
|
|
1322
|
-
{
|
|
1323
|
-
steps?: StepArray3;
|
|
1324
|
-
[k: string]: unknown;
|
|
1325
|
-
},
|
|
1326
|
-
{
|
|
1327
|
-
steps?: StepArray3;
|
|
1328
|
-
[k: string]: unknown;
|
|
1329
|
-
},
|
|
1330
|
-
{
|
|
1331
|
-
steps?: StepArray3;
|
|
1332
|
-
[k: string]: unknown;
|
|
1333
|
-
}
|
|
1334
|
-
];
|
|
1335
|
-
for?: For1;
|
|
1336
|
-
};
|
|
1337
|
-
}
|
|
1338
|
-
/**
|
|
1339
|
-
* Iterates over a sequence of numbers or through a collection of data
|
|
1340
|
-
* https://cloud.google.com/workflows/docs/reference/syntax/syntax-search
|
|
1341
|
-
*/
|
|
1342
|
-
export interface For {
|
|
1343
|
-
/**
|
|
1344
|
-
* A loop variable name
|
|
1345
|
-
* https://cloud.google.com/workflows/docs/reference/syntax/iteration
|
|
1346
|
-
*/
|
|
1347
|
-
value?: string;
|
|
1348
|
-
/**
|
|
1349
|
-
* An index variable name
|
|
1350
|
-
* https://cloud.google.com/workflows/docs/reference/syntax/iteration
|
|
1351
|
-
*/
|
|
1352
|
-
index?: string;
|
|
1353
|
-
/**
|
|
1354
|
-
* A number's range
|
|
1355
|
-
* https://cloud.google.com/workflows/docs/reference/syntax/iteration
|
|
1356
|
-
*
|
|
1357
|
-
* @minItems 2
|
|
1358
|
-
* @maxItems 2
|
|
1359
|
-
*/
|
|
1360
|
-
range?: [number, number];
|
|
1361
|
-
/**
|
|
1362
|
-
* A list expression
|
|
1363
|
-
* https://cloud.google.com/workflows/docs/reference/syntax/iteration
|
|
1364
|
-
*/
|
|
1365
|
-
in?: unknown[];
|
|
1366
|
-
steps?: StepArray2;
|
|
1367
|
-
}
|
|
1368
|
-
/**
|
|
1369
|
-
* Iterates over a sequence of numbers or through a collection of data
|
|
1370
|
-
* https://cloud.google.com/workflows/docs/reference/syntax/syntax-search
|
|
1371
|
-
*/
|
|
1372
|
-
export interface For1 {
|
|
1373
|
-
/**
|
|
1374
|
-
* A loop variable name
|
|
1375
|
-
* https://cloud.google.com/workflows/docs/reference/syntax/iteration
|
|
1376
|
-
*/
|
|
1377
|
-
value?: string;
|
|
1378
|
-
/**
|
|
1379
|
-
* An index variable name
|
|
1380
|
-
* https://cloud.google.com/workflows/docs/reference/syntax/iteration
|
|
1381
|
-
*/
|
|
1382
|
-
index?: string;
|
|
1383
|
-
/**
|
|
1384
|
-
* A number's range
|
|
1385
|
-
* https://cloud.google.com/workflows/docs/reference/syntax/iteration
|
|
1386
|
-
*
|
|
1387
|
-
* @minItems 2
|
|
1388
|
-
* @maxItems 2
|
|
1389
|
-
*/
|
|
1390
|
-
range?: [number, number];
|
|
1391
|
-
/**
|
|
1392
|
-
* A list expression
|
|
1393
|
-
* https://cloud.google.com/workflows/docs/reference/syntax/iteration
|
|
1394
|
-
*/
|
|
1395
|
-
in?: unknown[];
|
|
1396
|
-
steps?: StepArray2;
|
|
1397
530
|
}
|
|
1398
531
|
/**
|
|
1399
532
|
* A subworkflow.
|
|
@@ -1406,5 +539,5 @@ export interface Subworkflow {
|
|
|
1406
539
|
* A list of parameters.
|
|
1407
540
|
*/
|
|
1408
541
|
params?: string[];
|
|
1409
|
-
steps?:
|
|
542
|
+
steps?: StepArray3;
|
|
1410
543
|
}
|
package/package.json
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"name": "@schemastore/workflows",
|
|
8
8
|
"repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/workflows",
|
|
9
9
|
"scripts": {},
|
|
10
|
-
"
|
|
10
|
+
"typeScriptVersion": "2.2",
|
|
11
11
|
"types": "index.d.ts",
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
}
|
|
12
|
+
"typesPublisherContentHash": "c840e2bbe32f356c783e6f0347eb5e8497ecf3d1d7f903f6c7ae10f90aaf29d2",
|
|
13
|
+
"version": "0.0.7"
|
|
14
|
+
}
|