@trigger.dev/core 0.0.0-v3-prerelease-20240916181030 → 0.0.0-v3-prerelease-20240923150540
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/commonjs/schemas/api.d.ts +8 -8
- package/dist/commonjs/v3/apiClient/index.d.ts +238 -60
- package/dist/commonjs/v3/build/resolvedConfig.d.ts +1 -0
- package/dist/commonjs/v3/schemas/api.d.ts +901 -194
- package/dist/commonjs/v3/schemas/api.js +23 -3
- package/dist/commonjs/v3/schemas/api.js.map +1 -1
- package/dist/commonjs/v3/schemas/build.d.ts +126 -126
- package/dist/commonjs/v3/schemas/fetch.d.ts +14 -14
- package/dist/commonjs/v3/schemas/messages.d.ts +3799 -3104
- package/dist/commonjs/v3/schemas/messages.js +28 -14
- package/dist/commonjs/v3/schemas/messages.js.map +1 -1
- package/dist/commonjs/v3/schemas/resources.d.ts +30 -30
- package/dist/commonjs/v3/schemas/schemas.d.ts +460 -460
- package/dist/commonjs/v3/utils/ioSerialization.d.ts +1 -0
- package/dist/commonjs/v3/utils/ioSerialization.js +26 -1
- package/dist/commonjs/v3/utils/ioSerialization.js.map +1 -1
- package/dist/commonjs/version.js +1 -1
- package/dist/esm/schemas/api.d.ts +8 -8
- package/dist/esm/v3/apiClient/index.d.ts +178 -0
- package/dist/esm/v3/build/resolvedConfig.d.ts +1 -0
- package/dist/esm/v3/schemas/api.d.ts +707 -0
- package/dist/esm/v3/schemas/api.js +21 -1
- package/dist/esm/v3/schemas/api.js.map +1 -1
- package/dist/esm/v3/schemas/messages.d.ts +695 -0
- package/dist/esm/v3/schemas/messages.js +28 -14
- package/dist/esm/v3/schemas/messages.js.map +1 -1
- package/dist/esm/v3/utils/ioSerialization.d.ts +1 -0
- package/dist/esm/v3/utils/ioSerialization.js +25 -1
- package/dist/esm/v3/utils/ioSerialization.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/package.json +1 -1
|
@@ -3,11 +3,11 @@ export declare const BuildExternal: z.ZodObject<{
|
|
|
3
3
|
name: z.ZodString;
|
|
4
4
|
version: z.ZodString;
|
|
5
5
|
}, "strip", z.ZodTypeAny, {
|
|
6
|
-
version: string;
|
|
7
6
|
name: string;
|
|
8
|
-
}, {
|
|
9
7
|
version: string;
|
|
8
|
+
}, {
|
|
10
9
|
name: string;
|
|
10
|
+
version: string;
|
|
11
11
|
}>;
|
|
12
12
|
export type BuildExternal = z.infer<typeof BuildExternal>;
|
|
13
13
|
export declare const BuildTarget: z.ZodEnum<["dev", "deploy"]>;
|
|
@@ -62,11 +62,11 @@ export declare const BuildManifest: z.ZodObject<{
|
|
|
62
62
|
name: z.ZodString;
|
|
63
63
|
version: z.ZodString;
|
|
64
64
|
}, "strip", z.ZodTypeAny, {
|
|
65
|
-
version: string;
|
|
66
65
|
name: string;
|
|
67
|
-
}, {
|
|
68
66
|
version: string;
|
|
67
|
+
}, {
|
|
69
68
|
name: string;
|
|
69
|
+
version: string;
|
|
70
70
|
}>, "many">>;
|
|
71
71
|
build: z.ZodObject<{
|
|
72
72
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -120,18 +120,10 @@ export declare const BuildManifest: z.ZodObject<{
|
|
|
120
120
|
exclude?: string[] | undefined;
|
|
121
121
|
}>>;
|
|
122
122
|
}, "strip", z.ZodTypeAny, {
|
|
123
|
-
config: {
|
|
124
|
-
project: string;
|
|
125
|
-
dirs: string[];
|
|
126
|
-
};
|
|
127
|
-
sources: Record<string, {
|
|
128
|
-
contentHash: string;
|
|
129
|
-
contents: string;
|
|
130
|
-
}>;
|
|
131
|
-
environment: string;
|
|
132
|
-
contentHash: string;
|
|
133
123
|
packageVersion: string;
|
|
124
|
+
contentHash: string;
|
|
134
125
|
cliPackageVersion: string;
|
|
126
|
+
environment: string;
|
|
135
127
|
deploy: {
|
|
136
128
|
env?: Record<string, string> | undefined;
|
|
137
129
|
sync?: {
|
|
@@ -140,10 +132,18 @@ export declare const BuildManifest: z.ZodObject<{
|
|
|
140
132
|
};
|
|
141
133
|
target: "dev" | "deploy";
|
|
142
134
|
runtime: "node" | "bun";
|
|
135
|
+
config: {
|
|
136
|
+
project: string;
|
|
137
|
+
dirs: string[];
|
|
138
|
+
};
|
|
143
139
|
files: {
|
|
144
140
|
entry: string;
|
|
145
141
|
out: string;
|
|
146
142
|
}[];
|
|
143
|
+
sources: Record<string, {
|
|
144
|
+
contentHash: string;
|
|
145
|
+
contents: string;
|
|
146
|
+
}>;
|
|
147
147
|
outputPath: string;
|
|
148
148
|
runWorkerEntryPoint: string;
|
|
149
149
|
indexWorkerEntryPoint: string;
|
|
@@ -156,8 +156,8 @@ export declare const BuildManifest: z.ZodObject<{
|
|
|
156
156
|
indexControllerEntryPoint?: string | undefined;
|
|
157
157
|
loaderEntryPoint?: string | undefined;
|
|
158
158
|
externals?: {
|
|
159
|
-
version: string;
|
|
160
159
|
name: string;
|
|
160
|
+
version: string;
|
|
161
161
|
}[] | undefined;
|
|
162
162
|
customConditions?: string[] | undefined;
|
|
163
163
|
image?: {
|
|
@@ -169,18 +169,10 @@ export declare const BuildManifest: z.ZodObject<{
|
|
|
169
169
|
exclude?: string[] | undefined;
|
|
170
170
|
} | undefined;
|
|
171
171
|
}, {
|
|
172
|
-
config: {
|
|
173
|
-
project: string;
|
|
174
|
-
dirs: string[];
|
|
175
|
-
};
|
|
176
|
-
sources: Record<string, {
|
|
177
|
-
contentHash: string;
|
|
178
|
-
contents: string;
|
|
179
|
-
}>;
|
|
180
|
-
environment: string;
|
|
181
|
-
contentHash: string;
|
|
182
172
|
packageVersion: string;
|
|
173
|
+
contentHash: string;
|
|
183
174
|
cliPackageVersion: string;
|
|
175
|
+
environment: string;
|
|
184
176
|
deploy: {
|
|
185
177
|
env?: Record<string, string> | undefined;
|
|
186
178
|
sync?: {
|
|
@@ -189,10 +181,18 @@ export declare const BuildManifest: z.ZodObject<{
|
|
|
189
181
|
};
|
|
190
182
|
target: "dev" | "deploy";
|
|
191
183
|
runtime: "node" | "bun";
|
|
184
|
+
config: {
|
|
185
|
+
project: string;
|
|
186
|
+
dirs: string[];
|
|
187
|
+
};
|
|
192
188
|
files: {
|
|
193
189
|
entry: string;
|
|
194
190
|
out: string;
|
|
195
191
|
}[];
|
|
192
|
+
sources: Record<string, {
|
|
193
|
+
contentHash: string;
|
|
194
|
+
contents: string;
|
|
195
|
+
}>;
|
|
196
196
|
outputPath: string;
|
|
197
197
|
runWorkerEntryPoint: string;
|
|
198
198
|
indexWorkerEntryPoint: string;
|
|
@@ -205,8 +205,8 @@ export declare const BuildManifest: z.ZodObject<{
|
|
|
205
205
|
indexControllerEntryPoint?: string | undefined;
|
|
206
206
|
loaderEntryPoint?: string | undefined;
|
|
207
207
|
externals?: {
|
|
208
|
-
version: string;
|
|
209
208
|
name: string;
|
|
209
|
+
version: string;
|
|
210
210
|
}[] | undefined;
|
|
211
211
|
customConditions?: string[] | undefined;
|
|
212
212
|
image?: {
|
|
@@ -270,11 +270,11 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
270
270
|
name: z.ZodString;
|
|
271
271
|
version: z.ZodString;
|
|
272
272
|
}, "strip", z.ZodTypeAny, {
|
|
273
|
-
version: string;
|
|
274
273
|
name: string;
|
|
275
|
-
}, {
|
|
276
274
|
version: string;
|
|
275
|
+
}, {
|
|
277
276
|
name: string;
|
|
277
|
+
version: string;
|
|
278
278
|
}>, "many">>;
|
|
279
279
|
build: z.ZodObject<{
|
|
280
280
|
env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -328,18 +328,10 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
328
328
|
exclude?: string[] | undefined;
|
|
329
329
|
}>>;
|
|
330
330
|
}, "strip", z.ZodTypeAny, {
|
|
331
|
-
config: {
|
|
332
|
-
project: string;
|
|
333
|
-
dirs: string[];
|
|
334
|
-
};
|
|
335
|
-
sources: Record<string, {
|
|
336
|
-
contentHash: string;
|
|
337
|
-
contents: string;
|
|
338
|
-
}>;
|
|
339
|
-
environment: string;
|
|
340
|
-
contentHash: string;
|
|
341
331
|
packageVersion: string;
|
|
332
|
+
contentHash: string;
|
|
342
333
|
cliPackageVersion: string;
|
|
334
|
+
environment: string;
|
|
343
335
|
deploy: {
|
|
344
336
|
env?: Record<string, string> | undefined;
|
|
345
337
|
sync?: {
|
|
@@ -348,10 +340,18 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
348
340
|
};
|
|
349
341
|
target: "dev" | "deploy";
|
|
350
342
|
runtime: "node" | "bun";
|
|
343
|
+
config: {
|
|
344
|
+
project: string;
|
|
345
|
+
dirs: string[];
|
|
346
|
+
};
|
|
351
347
|
files: {
|
|
352
348
|
entry: string;
|
|
353
349
|
out: string;
|
|
354
350
|
}[];
|
|
351
|
+
sources: Record<string, {
|
|
352
|
+
contentHash: string;
|
|
353
|
+
contents: string;
|
|
354
|
+
}>;
|
|
355
355
|
outputPath: string;
|
|
356
356
|
runWorkerEntryPoint: string;
|
|
357
357
|
indexWorkerEntryPoint: string;
|
|
@@ -364,8 +364,8 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
364
364
|
indexControllerEntryPoint?: string | undefined;
|
|
365
365
|
loaderEntryPoint?: string | undefined;
|
|
366
366
|
externals?: {
|
|
367
|
-
version: string;
|
|
368
367
|
name: string;
|
|
368
|
+
version: string;
|
|
369
369
|
}[] | undefined;
|
|
370
370
|
customConditions?: string[] | undefined;
|
|
371
371
|
image?: {
|
|
@@ -377,18 +377,10 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
377
377
|
exclude?: string[] | undefined;
|
|
378
378
|
} | undefined;
|
|
379
379
|
}, {
|
|
380
|
-
config: {
|
|
381
|
-
project: string;
|
|
382
|
-
dirs: string[];
|
|
383
|
-
};
|
|
384
|
-
sources: Record<string, {
|
|
385
|
-
contentHash: string;
|
|
386
|
-
contents: string;
|
|
387
|
-
}>;
|
|
388
|
-
environment: string;
|
|
389
|
-
contentHash: string;
|
|
390
380
|
packageVersion: string;
|
|
381
|
+
contentHash: string;
|
|
391
382
|
cliPackageVersion: string;
|
|
383
|
+
environment: string;
|
|
392
384
|
deploy: {
|
|
393
385
|
env?: Record<string, string> | undefined;
|
|
394
386
|
sync?: {
|
|
@@ -397,10 +389,18 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
397
389
|
};
|
|
398
390
|
target: "dev" | "deploy";
|
|
399
391
|
runtime: "node" | "bun";
|
|
392
|
+
config: {
|
|
393
|
+
project: string;
|
|
394
|
+
dirs: string[];
|
|
395
|
+
};
|
|
400
396
|
files: {
|
|
401
397
|
entry: string;
|
|
402
398
|
out: string;
|
|
403
399
|
}[];
|
|
400
|
+
sources: Record<string, {
|
|
401
|
+
contentHash: string;
|
|
402
|
+
contents: string;
|
|
403
|
+
}>;
|
|
404
404
|
outputPath: string;
|
|
405
405
|
runWorkerEntryPoint: string;
|
|
406
406
|
indexWorkerEntryPoint: string;
|
|
@@ -413,8 +413,8 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
413
413
|
indexControllerEntryPoint?: string | undefined;
|
|
414
414
|
loaderEntryPoint?: string | undefined;
|
|
415
415
|
externals?: {
|
|
416
|
-
version: string;
|
|
417
416
|
name: string;
|
|
417
|
+
version: string;
|
|
418
418
|
}[] | undefined;
|
|
419
419
|
customConditions?: string[] | undefined;
|
|
420
420
|
image?: {
|
|
@@ -428,18 +428,10 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
428
428
|
}>;
|
|
429
429
|
}, "strip", z.ZodTypeAny, {
|
|
430
430
|
build: {
|
|
431
|
-
config: {
|
|
432
|
-
project: string;
|
|
433
|
-
dirs: string[];
|
|
434
|
-
};
|
|
435
|
-
sources: Record<string, {
|
|
436
|
-
contentHash: string;
|
|
437
|
-
contents: string;
|
|
438
|
-
}>;
|
|
439
|
-
environment: string;
|
|
440
|
-
contentHash: string;
|
|
441
431
|
packageVersion: string;
|
|
432
|
+
contentHash: string;
|
|
442
433
|
cliPackageVersion: string;
|
|
434
|
+
environment: string;
|
|
443
435
|
deploy: {
|
|
444
436
|
env?: Record<string, string> | undefined;
|
|
445
437
|
sync?: {
|
|
@@ -448,10 +440,18 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
448
440
|
};
|
|
449
441
|
target: "dev" | "deploy";
|
|
450
442
|
runtime: "node" | "bun";
|
|
443
|
+
config: {
|
|
444
|
+
project: string;
|
|
445
|
+
dirs: string[];
|
|
446
|
+
};
|
|
451
447
|
files: {
|
|
452
448
|
entry: string;
|
|
453
449
|
out: string;
|
|
454
450
|
}[];
|
|
451
|
+
sources: Record<string, {
|
|
452
|
+
contentHash: string;
|
|
453
|
+
contents: string;
|
|
454
|
+
}>;
|
|
455
455
|
outputPath: string;
|
|
456
456
|
runWorkerEntryPoint: string;
|
|
457
457
|
indexWorkerEntryPoint: string;
|
|
@@ -464,8 +464,8 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
464
464
|
indexControllerEntryPoint?: string | undefined;
|
|
465
465
|
loaderEntryPoint?: string | undefined;
|
|
466
466
|
externals?: {
|
|
467
|
-
version: string;
|
|
468
467
|
name: string;
|
|
468
|
+
version: string;
|
|
469
469
|
}[] | undefined;
|
|
470
470
|
customConditions?: string[] | undefined;
|
|
471
471
|
image?: {
|
|
@@ -479,18 +479,10 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
479
479
|
};
|
|
480
480
|
}, {
|
|
481
481
|
build: {
|
|
482
|
-
config: {
|
|
483
|
-
project: string;
|
|
484
|
-
dirs: string[];
|
|
485
|
-
};
|
|
486
|
-
sources: Record<string, {
|
|
487
|
-
contentHash: string;
|
|
488
|
-
contents: string;
|
|
489
|
-
}>;
|
|
490
|
-
environment: string;
|
|
491
|
-
contentHash: string;
|
|
492
482
|
packageVersion: string;
|
|
483
|
+
contentHash: string;
|
|
493
484
|
cliPackageVersion: string;
|
|
485
|
+
environment: string;
|
|
494
486
|
deploy: {
|
|
495
487
|
env?: Record<string, string> | undefined;
|
|
496
488
|
sync?: {
|
|
@@ -499,10 +491,18 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
499
491
|
};
|
|
500
492
|
target: "dev" | "deploy";
|
|
501
493
|
runtime: "node" | "bun";
|
|
494
|
+
config: {
|
|
495
|
+
project: string;
|
|
496
|
+
dirs: string[];
|
|
497
|
+
};
|
|
502
498
|
files: {
|
|
503
499
|
entry: string;
|
|
504
500
|
out: string;
|
|
505
501
|
}[];
|
|
502
|
+
sources: Record<string, {
|
|
503
|
+
contentHash: string;
|
|
504
|
+
contents: string;
|
|
505
|
+
}>;
|
|
506
506
|
outputPath: string;
|
|
507
507
|
runWorkerEntryPoint: string;
|
|
508
508
|
indexWorkerEntryPoint: string;
|
|
@@ -515,8 +515,8 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
515
515
|
indexControllerEntryPoint?: string | undefined;
|
|
516
516
|
loaderEntryPoint?: string | undefined;
|
|
517
517
|
externals?: {
|
|
518
|
-
version: string;
|
|
519
518
|
name: string;
|
|
519
|
+
version: string;
|
|
520
520
|
}[] | undefined;
|
|
521
521
|
customConditions?: string[] | undefined;
|
|
522
522
|
image?: {
|
|
@@ -533,18 +533,10 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
533
533
|
type: "index";
|
|
534
534
|
data: {
|
|
535
535
|
build: {
|
|
536
|
-
config: {
|
|
537
|
-
project: string;
|
|
538
|
-
dirs: string[];
|
|
539
|
-
};
|
|
540
|
-
sources: Record<string, {
|
|
541
|
-
contentHash: string;
|
|
542
|
-
contents: string;
|
|
543
|
-
}>;
|
|
544
|
-
environment: string;
|
|
545
|
-
contentHash: string;
|
|
546
536
|
packageVersion: string;
|
|
537
|
+
contentHash: string;
|
|
547
538
|
cliPackageVersion: string;
|
|
539
|
+
environment: string;
|
|
548
540
|
deploy: {
|
|
549
541
|
env?: Record<string, string> | undefined;
|
|
550
542
|
sync?: {
|
|
@@ -553,10 +545,18 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
553
545
|
};
|
|
554
546
|
target: "dev" | "deploy";
|
|
555
547
|
runtime: "node" | "bun";
|
|
548
|
+
config: {
|
|
549
|
+
project: string;
|
|
550
|
+
dirs: string[];
|
|
551
|
+
};
|
|
556
552
|
files: {
|
|
557
553
|
entry: string;
|
|
558
554
|
out: string;
|
|
559
555
|
}[];
|
|
556
|
+
sources: Record<string, {
|
|
557
|
+
contentHash: string;
|
|
558
|
+
contents: string;
|
|
559
|
+
}>;
|
|
560
560
|
outputPath: string;
|
|
561
561
|
runWorkerEntryPoint: string;
|
|
562
562
|
indexWorkerEntryPoint: string;
|
|
@@ -569,8 +569,8 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
569
569
|
indexControllerEntryPoint?: string | undefined;
|
|
570
570
|
loaderEntryPoint?: string | undefined;
|
|
571
571
|
externals?: {
|
|
572
|
-
version: string;
|
|
573
572
|
name: string;
|
|
573
|
+
version: string;
|
|
574
574
|
}[] | undefined;
|
|
575
575
|
customConditions?: string[] | undefined;
|
|
576
576
|
image?: {
|
|
@@ -587,18 +587,10 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
587
587
|
type: "index";
|
|
588
588
|
data: {
|
|
589
589
|
build: {
|
|
590
|
-
config: {
|
|
591
|
-
project: string;
|
|
592
|
-
dirs: string[];
|
|
593
|
-
};
|
|
594
|
-
sources: Record<string, {
|
|
595
|
-
contentHash: string;
|
|
596
|
-
contents: string;
|
|
597
|
-
}>;
|
|
598
|
-
environment: string;
|
|
599
|
-
contentHash: string;
|
|
600
590
|
packageVersion: string;
|
|
591
|
+
contentHash: string;
|
|
601
592
|
cliPackageVersion: string;
|
|
593
|
+
environment: string;
|
|
602
594
|
deploy: {
|
|
603
595
|
env?: Record<string, string> | undefined;
|
|
604
596
|
sync?: {
|
|
@@ -607,10 +599,18 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
607
599
|
};
|
|
608
600
|
target: "dev" | "deploy";
|
|
609
601
|
runtime: "node" | "bun";
|
|
602
|
+
config: {
|
|
603
|
+
project: string;
|
|
604
|
+
dirs: string[];
|
|
605
|
+
};
|
|
610
606
|
files: {
|
|
611
607
|
entry: string;
|
|
612
608
|
out: string;
|
|
613
609
|
}[];
|
|
610
|
+
sources: Record<string, {
|
|
611
|
+
contentHash: string;
|
|
612
|
+
contents: string;
|
|
613
|
+
}>;
|
|
614
614
|
outputPath: string;
|
|
615
615
|
runWorkerEntryPoint: string;
|
|
616
616
|
indexWorkerEntryPoint: string;
|
|
@@ -623,8 +623,8 @@ export declare const IndexMessage: z.ZodObject<{
|
|
|
623
623
|
indexControllerEntryPoint?: string | undefined;
|
|
624
624
|
loaderEntryPoint?: string | undefined;
|
|
625
625
|
externals?: {
|
|
626
|
-
version: string;
|
|
627
626
|
name: string;
|
|
627
|
+
version: string;
|
|
628
628
|
}[] | undefined;
|
|
629
629
|
customConditions?: string[] | undefined;
|
|
630
630
|
image?: {
|
|
@@ -855,12 +855,12 @@ export declare const WorkerManifest: z.ZodObject<{
|
|
|
855
855
|
memory: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0.25>, z.ZodLiteral<0.5>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>, z.ZodLiteral<8>]>>;
|
|
856
856
|
preset: z.ZodOptional<z.ZodEnum<["micro", "small-1x", "small-2x", "medium-1x", "medium-2x", "large-1x", "large-2x"]>>;
|
|
857
857
|
}, "strip", z.ZodTypeAny, {
|
|
858
|
-
cpu?:
|
|
859
|
-
memory?:
|
|
858
|
+
cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
|
|
859
|
+
memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
|
|
860
860
|
preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
|
|
861
861
|
}, {
|
|
862
|
-
cpu?:
|
|
863
|
-
memory?:
|
|
862
|
+
cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
|
|
863
|
+
memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
|
|
864
864
|
preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
|
|
865
865
|
}>>;
|
|
866
866
|
triggerSource: z.ZodOptional<z.ZodString>;
|
|
@@ -924,8 +924,8 @@ export declare const WorkerManifest: z.ZodObject<{
|
|
|
924
924
|
randomize?: boolean | undefined;
|
|
925
925
|
} | undefined;
|
|
926
926
|
machine?: {
|
|
927
|
-
cpu?:
|
|
928
|
-
memory?:
|
|
927
|
+
cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
|
|
928
|
+
memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
|
|
929
929
|
preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
|
|
930
930
|
} | undefined;
|
|
931
931
|
triggerSource?: string | undefined;
|
|
@@ -983,8 +983,8 @@ export declare const WorkerManifest: z.ZodObject<{
|
|
|
983
983
|
randomize?: boolean | undefined;
|
|
984
984
|
} | undefined;
|
|
985
985
|
machine?: {
|
|
986
|
-
cpu?:
|
|
987
|
-
memory?:
|
|
986
|
+
cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
|
|
987
|
+
memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
|
|
988
988
|
preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
|
|
989
989
|
} | undefined;
|
|
990
990
|
triggerSource?: string | undefined;
|
|
@@ -1059,8 +1059,8 @@ export declare const WorkerManifest: z.ZodObject<{
|
|
|
1059
1059
|
randomize?: boolean | undefined;
|
|
1060
1060
|
} | undefined;
|
|
1061
1061
|
machine?: {
|
|
1062
|
-
cpu?:
|
|
1063
|
-
memory?:
|
|
1062
|
+
cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
|
|
1063
|
+
memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
|
|
1064
1064
|
preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
|
|
1065
1065
|
} | undefined;
|
|
1066
1066
|
triggerSource?: string | undefined;
|
|
@@ -1130,8 +1130,8 @@ export declare const WorkerManifest: z.ZodObject<{
|
|
|
1130
1130
|
randomize?: boolean | undefined;
|
|
1131
1131
|
} | undefined;
|
|
1132
1132
|
machine?: {
|
|
1133
|
-
cpu?:
|
|
1134
|
-
memory?:
|
|
1133
|
+
cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
|
|
1134
|
+
memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
|
|
1135
1135
|
preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
|
|
1136
1136
|
} | undefined;
|
|
1137
1137
|
triggerSource?: string | undefined;
|
|
@@ -1371,12 +1371,12 @@ export declare const WorkerManifestMessage: z.ZodObject<{
|
|
|
1371
1371
|
memory: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0.25>, z.ZodLiteral<0.5>, z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>, z.ZodLiteral<8>]>>;
|
|
1372
1372
|
preset: z.ZodOptional<z.ZodEnum<["micro", "small-1x", "small-2x", "medium-1x", "medium-2x", "large-1x", "large-2x"]>>;
|
|
1373
1373
|
}, "strip", z.ZodTypeAny, {
|
|
1374
|
-
cpu?:
|
|
1375
|
-
memory?:
|
|
1374
|
+
cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
|
|
1375
|
+
memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
|
|
1376
1376
|
preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
|
|
1377
1377
|
}, {
|
|
1378
|
-
cpu?:
|
|
1379
|
-
memory?:
|
|
1378
|
+
cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
|
|
1379
|
+
memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
|
|
1380
1380
|
preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
|
|
1381
1381
|
}>>;
|
|
1382
1382
|
triggerSource: z.ZodOptional<z.ZodString>;
|
|
@@ -1440,8 +1440,8 @@ export declare const WorkerManifestMessage: z.ZodObject<{
|
|
|
1440
1440
|
randomize?: boolean | undefined;
|
|
1441
1441
|
} | undefined;
|
|
1442
1442
|
machine?: {
|
|
1443
|
-
cpu?:
|
|
1444
|
-
memory?:
|
|
1443
|
+
cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
|
|
1444
|
+
memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
|
|
1445
1445
|
preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
|
|
1446
1446
|
} | undefined;
|
|
1447
1447
|
triggerSource?: string | undefined;
|
|
@@ -1499,8 +1499,8 @@ export declare const WorkerManifestMessage: z.ZodObject<{
|
|
|
1499
1499
|
randomize?: boolean | undefined;
|
|
1500
1500
|
} | undefined;
|
|
1501
1501
|
machine?: {
|
|
1502
|
-
cpu?:
|
|
1503
|
-
memory?:
|
|
1502
|
+
cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
|
|
1503
|
+
memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
|
|
1504
1504
|
preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
|
|
1505
1505
|
} | undefined;
|
|
1506
1506
|
triggerSource?: string | undefined;
|
|
@@ -1575,8 +1575,8 @@ export declare const WorkerManifestMessage: z.ZodObject<{
|
|
|
1575
1575
|
randomize?: boolean | undefined;
|
|
1576
1576
|
} | undefined;
|
|
1577
1577
|
machine?: {
|
|
1578
|
-
cpu?:
|
|
1579
|
-
memory?:
|
|
1578
|
+
cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
|
|
1579
|
+
memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
|
|
1580
1580
|
preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
|
|
1581
1581
|
} | undefined;
|
|
1582
1582
|
triggerSource?: string | undefined;
|
|
@@ -1646,8 +1646,8 @@ export declare const WorkerManifestMessage: z.ZodObject<{
|
|
|
1646
1646
|
randomize?: boolean | undefined;
|
|
1647
1647
|
} | undefined;
|
|
1648
1648
|
machine?: {
|
|
1649
|
-
cpu?:
|
|
1650
|
-
memory?:
|
|
1649
|
+
cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
|
|
1650
|
+
memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
|
|
1651
1651
|
preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
|
|
1652
1652
|
} | undefined;
|
|
1653
1653
|
triggerSource?: string | undefined;
|
|
@@ -1719,8 +1719,8 @@ export declare const WorkerManifestMessage: z.ZodObject<{
|
|
|
1719
1719
|
randomize?: boolean | undefined;
|
|
1720
1720
|
} | undefined;
|
|
1721
1721
|
machine?: {
|
|
1722
|
-
cpu?:
|
|
1723
|
-
memory?:
|
|
1722
|
+
cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
|
|
1723
|
+
memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
|
|
1724
1724
|
preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
|
|
1725
1725
|
} | undefined;
|
|
1726
1726
|
triggerSource?: string | undefined;
|
|
@@ -1792,8 +1792,8 @@ export declare const WorkerManifestMessage: z.ZodObject<{
|
|
|
1792
1792
|
randomize?: boolean | undefined;
|
|
1793
1793
|
} | undefined;
|
|
1794
1794
|
machine?: {
|
|
1795
|
-
cpu?:
|
|
1796
|
-
memory?:
|
|
1795
|
+
cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
|
|
1796
|
+
memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
|
|
1797
1797
|
preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
|
|
1798
1798
|
} | undefined;
|
|
1799
1799
|
triggerSource?: string | undefined;
|
|
@@ -1868,8 +1868,8 @@ export declare const WorkerManifestMessage: z.ZodObject<{
|
|
|
1868
1868
|
randomize?: boolean | undefined;
|
|
1869
1869
|
} | undefined;
|
|
1870
1870
|
machine?: {
|
|
1871
|
-
cpu?:
|
|
1872
|
-
memory?:
|
|
1871
|
+
cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
|
|
1872
|
+
memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
|
|
1873
1873
|
preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
|
|
1874
1874
|
} | undefined;
|
|
1875
1875
|
triggerSource?: string | undefined;
|
|
@@ -1944,8 +1944,8 @@ export declare const WorkerManifestMessage: z.ZodObject<{
|
|
|
1944
1944
|
randomize?: boolean | undefined;
|
|
1945
1945
|
} | undefined;
|
|
1946
1946
|
machine?: {
|
|
1947
|
-
cpu?:
|
|
1948
|
-
memory?:
|
|
1947
|
+
cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
|
|
1948
|
+
memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
|
|
1949
1949
|
preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
|
|
1950
1950
|
} | undefined;
|
|
1951
1951
|
triggerSource?: string | undefined;
|