@trigger.dev/core 0.0.0-v3-prerelease-20240916161707 → 0.0.0-v3-prerelease-20240916162259

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.
@@ -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
- name: string;
7
6
  version: string;
8
- }, {
9
7
  name: string;
8
+ }, {
10
9
  version: string;
10
+ name: 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
- name: string;
66
65
  version: string;
67
- }, {
68
66
  name: string;
67
+ }, {
69
68
  version: string;
69
+ name: string;
70
70
  }>, "many">>;
71
71
  build: z.ZodObject<{
72
72
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -120,10 +120,18 @@ export declare const BuildManifest: z.ZodObject<{
120
120
  exclude?: string[] | undefined;
121
121
  }>>;
122
122
  }, "strip", z.ZodTypeAny, {
123
- packageVersion: string;
123
+ config: {
124
+ project: string;
125
+ dirs: string[];
126
+ };
127
+ sources: Record<string, {
128
+ contentHash: string;
129
+ contents: string;
130
+ }>;
131
+ environment: string;
124
132
  contentHash: string;
133
+ packageVersion: string;
125
134
  cliPackageVersion: string;
126
- environment: string;
127
135
  deploy: {
128
136
  env?: Record<string, string> | undefined;
129
137
  sync?: {
@@ -132,18 +140,10 @@ export declare const BuildManifest: z.ZodObject<{
132
140
  };
133
141
  target: "dev" | "deploy";
134
142
  runtime: "node" | "bun";
135
- config: {
136
- project: string;
137
- dirs: string[];
138
- };
139
143
  files: {
140
144
  entry: string;
141
145
  out: string;
142
146
  }[];
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
- name: string;
160
159
  version: string;
160
+ name: string;
161
161
  }[] | undefined;
162
162
  customConditions?: string[] | undefined;
163
163
  image?: {
@@ -169,10 +169,18 @@ export declare const BuildManifest: z.ZodObject<{
169
169
  exclude?: string[] | undefined;
170
170
  } | undefined;
171
171
  }, {
172
- packageVersion: string;
172
+ config: {
173
+ project: string;
174
+ dirs: string[];
175
+ };
176
+ sources: Record<string, {
177
+ contentHash: string;
178
+ contents: string;
179
+ }>;
180
+ environment: string;
173
181
  contentHash: string;
182
+ packageVersion: string;
174
183
  cliPackageVersion: string;
175
- environment: string;
176
184
  deploy: {
177
185
  env?: Record<string, string> | undefined;
178
186
  sync?: {
@@ -181,18 +189,10 @@ export declare const BuildManifest: z.ZodObject<{
181
189
  };
182
190
  target: "dev" | "deploy";
183
191
  runtime: "node" | "bun";
184
- config: {
185
- project: string;
186
- dirs: string[];
187
- };
188
192
  files: {
189
193
  entry: string;
190
194
  out: string;
191
195
  }[];
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
- name: string;
209
208
  version: string;
209
+ name: 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
- name: string;
274
273
  version: string;
275
- }, {
276
274
  name: string;
275
+ }, {
277
276
  version: string;
277
+ name: string;
278
278
  }>, "many">>;
279
279
  build: z.ZodObject<{
280
280
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -328,10 +328,18 @@ export declare const IndexMessage: z.ZodObject<{
328
328
  exclude?: string[] | undefined;
329
329
  }>>;
330
330
  }, "strip", z.ZodTypeAny, {
331
- packageVersion: string;
331
+ config: {
332
+ project: string;
333
+ dirs: string[];
334
+ };
335
+ sources: Record<string, {
336
+ contentHash: string;
337
+ contents: string;
338
+ }>;
339
+ environment: string;
332
340
  contentHash: string;
341
+ packageVersion: string;
333
342
  cliPackageVersion: string;
334
- environment: string;
335
343
  deploy: {
336
344
  env?: Record<string, string> | undefined;
337
345
  sync?: {
@@ -340,18 +348,10 @@ export declare const IndexMessage: z.ZodObject<{
340
348
  };
341
349
  target: "dev" | "deploy";
342
350
  runtime: "node" | "bun";
343
- config: {
344
- project: string;
345
- dirs: string[];
346
- };
347
351
  files: {
348
352
  entry: string;
349
353
  out: string;
350
354
  }[];
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
- name: string;
368
367
  version: string;
368
+ name: string;
369
369
  }[] | undefined;
370
370
  customConditions?: string[] | undefined;
371
371
  image?: {
@@ -377,10 +377,18 @@ export declare const IndexMessage: z.ZodObject<{
377
377
  exclude?: string[] | undefined;
378
378
  } | undefined;
379
379
  }, {
380
- packageVersion: string;
380
+ config: {
381
+ project: string;
382
+ dirs: string[];
383
+ };
384
+ sources: Record<string, {
385
+ contentHash: string;
386
+ contents: string;
387
+ }>;
388
+ environment: string;
381
389
  contentHash: string;
390
+ packageVersion: string;
382
391
  cliPackageVersion: string;
383
- environment: string;
384
392
  deploy: {
385
393
  env?: Record<string, string> | undefined;
386
394
  sync?: {
@@ -389,18 +397,10 @@ export declare const IndexMessage: z.ZodObject<{
389
397
  };
390
398
  target: "dev" | "deploy";
391
399
  runtime: "node" | "bun";
392
- config: {
393
- project: string;
394
- dirs: string[];
395
- };
396
400
  files: {
397
401
  entry: string;
398
402
  out: string;
399
403
  }[];
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
- name: string;
417
416
  version: string;
417
+ name: string;
418
418
  }[] | undefined;
419
419
  customConditions?: string[] | undefined;
420
420
  image?: {
@@ -428,10 +428,18 @@ export declare const IndexMessage: z.ZodObject<{
428
428
  }>;
429
429
  }, "strip", z.ZodTypeAny, {
430
430
  build: {
431
- packageVersion: string;
431
+ config: {
432
+ project: string;
433
+ dirs: string[];
434
+ };
435
+ sources: Record<string, {
436
+ contentHash: string;
437
+ contents: string;
438
+ }>;
439
+ environment: string;
432
440
  contentHash: string;
441
+ packageVersion: string;
433
442
  cliPackageVersion: string;
434
- environment: string;
435
443
  deploy: {
436
444
  env?: Record<string, string> | undefined;
437
445
  sync?: {
@@ -440,18 +448,10 @@ export declare const IndexMessage: z.ZodObject<{
440
448
  };
441
449
  target: "dev" | "deploy";
442
450
  runtime: "node" | "bun";
443
- config: {
444
- project: string;
445
- dirs: string[];
446
- };
447
451
  files: {
448
452
  entry: string;
449
453
  out: string;
450
454
  }[];
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
- name: string;
468
467
  version: string;
468
+ name: string;
469
469
  }[] | undefined;
470
470
  customConditions?: string[] | undefined;
471
471
  image?: {
@@ -479,10 +479,18 @@ export declare const IndexMessage: z.ZodObject<{
479
479
  };
480
480
  }, {
481
481
  build: {
482
- packageVersion: string;
482
+ config: {
483
+ project: string;
484
+ dirs: string[];
485
+ };
486
+ sources: Record<string, {
487
+ contentHash: string;
488
+ contents: string;
489
+ }>;
490
+ environment: string;
483
491
  contentHash: string;
492
+ packageVersion: string;
484
493
  cliPackageVersion: string;
485
- environment: string;
486
494
  deploy: {
487
495
  env?: Record<string, string> | undefined;
488
496
  sync?: {
@@ -491,18 +499,10 @@ export declare const IndexMessage: z.ZodObject<{
491
499
  };
492
500
  target: "dev" | "deploy";
493
501
  runtime: "node" | "bun";
494
- config: {
495
- project: string;
496
- dirs: string[];
497
- };
498
502
  files: {
499
503
  entry: string;
500
504
  out: string;
501
505
  }[];
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
- name: string;
519
518
  version: string;
519
+ name: string;
520
520
  }[] | undefined;
521
521
  customConditions?: string[] | undefined;
522
522
  image?: {
@@ -533,10 +533,18 @@ export declare const IndexMessage: z.ZodObject<{
533
533
  type: "index";
534
534
  data: {
535
535
  build: {
536
- packageVersion: string;
536
+ config: {
537
+ project: string;
538
+ dirs: string[];
539
+ };
540
+ sources: Record<string, {
541
+ contentHash: string;
542
+ contents: string;
543
+ }>;
544
+ environment: string;
537
545
  contentHash: string;
546
+ packageVersion: string;
538
547
  cliPackageVersion: string;
539
- environment: string;
540
548
  deploy: {
541
549
  env?: Record<string, string> | undefined;
542
550
  sync?: {
@@ -545,18 +553,10 @@ export declare const IndexMessage: z.ZodObject<{
545
553
  };
546
554
  target: "dev" | "deploy";
547
555
  runtime: "node" | "bun";
548
- config: {
549
- project: string;
550
- dirs: string[];
551
- };
552
556
  files: {
553
557
  entry: string;
554
558
  out: string;
555
559
  }[];
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
- name: string;
573
572
  version: string;
573
+ name: string;
574
574
  }[] | undefined;
575
575
  customConditions?: string[] | undefined;
576
576
  image?: {
@@ -587,10 +587,18 @@ export declare const IndexMessage: z.ZodObject<{
587
587
  type: "index";
588
588
  data: {
589
589
  build: {
590
- packageVersion: string;
590
+ config: {
591
+ project: string;
592
+ dirs: string[];
593
+ };
594
+ sources: Record<string, {
595
+ contentHash: string;
596
+ contents: string;
597
+ }>;
598
+ environment: string;
591
599
  contentHash: string;
600
+ packageVersion: string;
592
601
  cliPackageVersion: string;
593
- environment: string;
594
602
  deploy: {
595
603
  env?: Record<string, string> | undefined;
596
604
  sync?: {
@@ -599,18 +607,10 @@ export declare const IndexMessage: z.ZodObject<{
599
607
  };
600
608
  target: "dev" | "deploy";
601
609
  runtime: "node" | "bun";
602
- config: {
603
- project: string;
604
- dirs: string[];
605
- };
606
610
  files: {
607
611
  entry: string;
608
612
  out: string;
609
613
  }[];
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
- name: string;
627
626
  version: string;
627
+ name: 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?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
859
- memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
858
+ cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
859
+ memory?: 8 | 1 | 2 | 4 | 0.25 | 0.5 | undefined;
860
860
  preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
861
861
  }, {
862
- cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
863
- memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
862
+ cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
863
+ memory?: 8 | 1 | 2 | 4 | 0.25 | 0.5 | 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?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
928
- memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
927
+ cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
928
+ memory?: 8 | 1 | 2 | 4 | 0.25 | 0.5 | 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?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
987
- memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
986
+ cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
987
+ memory?: 8 | 1 | 2 | 4 | 0.25 | 0.5 | 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?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
1063
- memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
1062
+ cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
1063
+ memory?: 8 | 1 | 2 | 4 | 0.25 | 0.5 | 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?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
1134
- memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
1133
+ cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
1134
+ memory?: 8 | 1 | 2 | 4 | 0.25 | 0.5 | 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?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
1375
- memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
1374
+ cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
1375
+ memory?: 8 | 1 | 2 | 4 | 0.25 | 0.5 | undefined;
1376
1376
  preset?: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x" | undefined;
1377
1377
  }, {
1378
- cpu?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
1379
- memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
1378
+ cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
1379
+ memory?: 8 | 1 | 2 | 4 | 0.25 | 0.5 | 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?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
1444
- memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
1443
+ cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
1444
+ memory?: 8 | 1 | 2 | 4 | 0.25 | 0.5 | 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?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
1503
- memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
1502
+ cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
1503
+ memory?: 8 | 1 | 2 | 4 | 0.25 | 0.5 | 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?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
1579
- memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
1578
+ cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
1579
+ memory?: 8 | 1 | 2 | 4 | 0.25 | 0.5 | 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?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
1650
- memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
1649
+ cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
1650
+ memory?: 8 | 1 | 2 | 4 | 0.25 | 0.5 | 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?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
1723
- memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
1722
+ cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
1723
+ memory?: 8 | 1 | 2 | 4 | 0.25 | 0.5 | 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?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
1796
- memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
1795
+ cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
1796
+ memory?: 8 | 1 | 2 | 4 | 0.25 | 0.5 | 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?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
1872
- memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
1871
+ cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
1872
+ memory?: 8 | 1 | 2 | 4 | 0.25 | 0.5 | 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?: 2 | 1 | 4 | 0.25 | 0.5 | undefined;
1948
- memory?: 2 | 1 | 4 | 0.25 | 0.5 | 8 | undefined;
1947
+ cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
1948
+ memory?: 8 | 1 | 2 | 4 | 0.25 | 0.5 | 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;