@epic-web/workshop-utils 4.4.0 → 4.5.1

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.
@@ -1,14 +1,17 @@
1
- import '@total-typescript/ts-reset';
2
1
  import { type CacheEntry } from '@epic-web/cachified';
2
+ import '@total-typescript/ts-reset';
3
3
  import { z } from 'zod';
4
4
  import { type Timings } from './timing.server.js';
5
5
  type CachifiedOptions = {
6
6
  timings?: Timings;
7
7
  request?: Request;
8
8
  };
9
- declare const BaseExerciseStepAppSchema: z.ZodObject<{
9
+ declare const BaseExerciseStepAppSchema: z.ZodObject<z.objectUtil.extendShape<{
10
+ /** a unique identifier for the app */
10
11
  name: z.ZodString;
12
+ /** the title of the app used for display (comes from the package.json title prop) */
11
13
  title: z.ZodString;
14
+ /** used when displaying the list of files to match the list of apps in the file system (comes the name of the directory of the app) */
12
15
  dirName: z.ZodString;
13
16
  fullPath: z.ZodString;
14
17
  relativePath: z.ZodString;
@@ -70,9 +73,10 @@ declare const BaseExerciseStepAppSchema: z.ZodObject<{
70
73
  }, {
71
74
  type: "none";
72
75
  }>]>;
76
+ }, {
73
77
  exerciseNumber: z.ZodNumber;
74
78
  stepNumber: z.ZodNumber;
75
- }, "strip", z.ZodTypeAny, {
79
+ }>, "strip", z.ZodTypeAny, {
76
80
  name: string;
77
81
  title: string;
78
82
  dirName: string;
@@ -133,9 +137,12 @@ declare const BaseExerciseStepAppSchema: z.ZodObject<{
133
137
  instructionsCode?: string | undefined;
134
138
  epicVideoEmbeds?: string[] | undefined;
135
139
  }>;
136
- declare const ProblemAppSchema: z.ZodObject<{
140
+ declare const ProblemAppSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
141
+ /** a unique identifier for the app */
137
142
  name: z.ZodString;
143
+ /** the title of the app used for display (comes from the package.json title prop) */
138
144
  title: z.ZodString;
145
+ /** used when displaying the list of files to match the list of apps in the file system (comes the name of the directory of the app) */
139
146
  dirName: z.ZodString;
140
147
  fullPath: z.ZodString;
141
148
  relativePath: z.ZodString;
@@ -197,11 +204,13 @@ declare const ProblemAppSchema: z.ZodObject<{
197
204
  }, {
198
205
  type: "none";
199
206
  }>]>;
207
+ }, {
200
208
  exerciseNumber: z.ZodNumber;
201
209
  stepNumber: z.ZodNumber;
210
+ }>, {
202
211
  type: z.ZodLiteral<"problem">;
203
212
  solutionName: z.ZodNullable<z.ZodString>;
204
- }, "strip", z.ZodTypeAny, {
213
+ }>, "strip", z.ZodTypeAny, {
205
214
  type: "problem";
206
215
  name: string;
207
216
  title: string;
@@ -266,9 +275,12 @@ declare const ProblemAppSchema: z.ZodObject<{
266
275
  instructionsCode?: string | undefined;
267
276
  epicVideoEmbeds?: string[] | undefined;
268
277
  }>;
269
- declare const SolutionAppSchema: z.ZodObject<{
278
+ declare const SolutionAppSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
279
+ /** a unique identifier for the app */
270
280
  name: z.ZodString;
281
+ /** the title of the app used for display (comes from the package.json title prop) */
271
282
  title: z.ZodString;
283
+ /** used when displaying the list of files to match the list of apps in the file system (comes the name of the directory of the app) */
272
284
  dirName: z.ZodString;
273
285
  fullPath: z.ZodString;
274
286
  relativePath: z.ZodString;
@@ -330,11 +342,13 @@ declare const SolutionAppSchema: z.ZodObject<{
330
342
  }, {
331
343
  type: "none";
332
344
  }>]>;
345
+ }, {
333
346
  exerciseNumber: z.ZodNumber;
334
347
  stepNumber: z.ZodNumber;
348
+ }>, {
335
349
  type: z.ZodLiteral<"solution">;
336
350
  problemName: z.ZodNullable<z.ZodString>;
337
- }, "strip", z.ZodTypeAny, {
351
+ }>, "strip", z.ZodTypeAny, {
338
352
  type: "solution";
339
353
  name: string;
340
354
  title: string;
@@ -399,9 +413,12 @@ declare const SolutionAppSchema: z.ZodObject<{
399
413
  instructionsCode?: string | undefined;
400
414
  epicVideoEmbeds?: string[] | undefined;
401
415
  }>;
402
- declare const ExampleAppSchema: z.ZodObject<{
416
+ declare const ExampleAppSchema: z.ZodObject<z.objectUtil.extendShape<{
417
+ /** a unique identifier for the app */
403
418
  name: z.ZodString;
419
+ /** the title of the app used for display (comes from the package.json title prop) */
404
420
  title: z.ZodString;
421
+ /** used when displaying the list of files to match the list of apps in the file system (comes the name of the directory of the app) */
405
422
  dirName: z.ZodString;
406
423
  fullPath: z.ZodString;
407
424
  relativePath: z.ZodString;
@@ -463,8 +480,9 @@ declare const ExampleAppSchema: z.ZodObject<{
463
480
  }, {
464
481
  type: "none";
465
482
  }>]>;
483
+ }, {
466
484
  type: z.ZodLiteral<"example">;
467
- }, "strip", z.ZodTypeAny, {
485
+ }>, "strip", z.ZodTypeAny, {
468
486
  type: "example";
469
487
  name: string;
470
488
  title: string;
@@ -523,9 +541,12 @@ declare const ExampleAppSchema: z.ZodObject<{
523
541
  instructionsCode?: string | undefined;
524
542
  epicVideoEmbeds?: string[] | undefined;
525
543
  }>;
526
- declare const PlaygroundAppSchema: z.ZodObject<{
544
+ declare const PlaygroundAppSchema: z.ZodObject<z.objectUtil.extendShape<{
545
+ /** a unique identifier for the app */
527
546
  name: z.ZodString;
547
+ /** the title of the app used for display (comes from the package.json title prop) */
528
548
  title: z.ZodString;
549
+ /** used when displaying the list of files to match the list of apps in the file system (comes the name of the directory of the app) */
529
550
  dirName: z.ZodString;
530
551
  fullPath: z.ZodString;
531
552
  relativePath: z.ZodString;
@@ -587,10 +608,11 @@ declare const PlaygroundAppSchema: z.ZodObject<{
587
608
  }, {
588
609
  type: "none";
589
610
  }>]>;
611
+ }, {
590
612
  type: z.ZodLiteral<"playground">;
591
613
  appName: z.ZodString;
592
614
  isUpToDate: z.ZodBoolean;
593
- }, "strip", z.ZodTypeAny, {
615
+ }>, "strip", z.ZodTypeAny, {
594
616
  type: "playground";
595
617
  name: string;
596
618
  title: string;
@@ -666,9 +688,12 @@ declare const ExerciseSchema: z.ZodObject<{
666
688
  finishedEpicVideoEmbeds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
667
689
  steps: z.ZodArray<z.ZodUnion<[z.ZodObject<{
668
690
  stepNumber: z.ZodNumber;
669
- problem: z.ZodObject<{
691
+ problem: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
692
+ /** a unique identifier for the app */
670
693
  name: z.ZodString;
694
+ /** the title of the app used for display (comes from the package.json title prop) */
671
695
  title: z.ZodString;
696
+ /** used when displaying the list of files to match the list of apps in the file system (comes the name of the directory of the app) */
672
697
  dirName: z.ZodString;
673
698
  fullPath: z.ZodString;
674
699
  relativePath: z.ZodString;
@@ -730,11 +755,13 @@ declare const ExerciseSchema: z.ZodObject<{
730
755
  }, {
731
756
  type: "none";
732
757
  }>]>;
758
+ }, {
733
759
  exerciseNumber: z.ZodNumber;
734
760
  stepNumber: z.ZodNumber;
761
+ }>, {
735
762
  type: z.ZodLiteral<"problem">;
736
763
  solutionName: z.ZodNullable<z.ZodString>;
737
- }, "strip", z.ZodTypeAny, {
764
+ }>, "strip", z.ZodTypeAny, {
738
765
  type: "problem";
739
766
  name: string;
740
767
  title: string;
@@ -799,9 +826,12 @@ declare const ExerciseSchema: z.ZodObject<{
799
826
  instructionsCode?: string | undefined;
800
827
  epicVideoEmbeds?: string[] | undefined;
801
828
  }>;
802
- solution: z.ZodObject<{
829
+ solution: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
830
+ /** a unique identifier for the app */
803
831
  name: z.ZodString;
832
+ /** the title of the app used for display (comes from the package.json title prop) */
804
833
  title: z.ZodString;
834
+ /** used when displaying the list of files to match the list of apps in the file system (comes the name of the directory of the app) */
805
835
  dirName: z.ZodString;
806
836
  fullPath: z.ZodString;
807
837
  relativePath: z.ZodString;
@@ -863,11 +893,13 @@ declare const ExerciseSchema: z.ZodObject<{
863
893
  }, {
864
894
  type: "none";
865
895
  }>]>;
896
+ }, {
866
897
  exerciseNumber: z.ZodNumber;
867
898
  stepNumber: z.ZodNumber;
899
+ }>, {
868
900
  type: z.ZodLiteral<"solution">;
869
901
  problemName: z.ZodNullable<z.ZodString>;
870
- }, "strip", z.ZodTypeAny, {
902
+ }>, "strip", z.ZodTypeAny, {
871
903
  type: "solution";
872
904
  name: string;
873
905
  title: string;
@@ -1070,9 +1102,12 @@ declare const ExerciseSchema: z.ZodObject<{
1070
1102
  };
1071
1103
  }>, z.ZodObject<{
1072
1104
  stepNumber: z.ZodNumber;
1073
- problem: z.ZodObject<{
1105
+ problem: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1106
+ /** a unique identifier for the app */
1074
1107
  name: z.ZodString;
1108
+ /** the title of the app used for display (comes from the package.json title prop) */
1075
1109
  title: z.ZodString;
1110
+ /** used when displaying the list of files to match the list of apps in the file system (comes the name of the directory of the app) */
1076
1111
  dirName: z.ZodString;
1077
1112
  fullPath: z.ZodString;
1078
1113
  relativePath: z.ZodString;
@@ -1134,11 +1169,13 @@ declare const ExerciseSchema: z.ZodObject<{
1134
1169
  }, {
1135
1170
  type: "none";
1136
1171
  }>]>;
1172
+ }, {
1137
1173
  exerciseNumber: z.ZodNumber;
1138
1174
  stepNumber: z.ZodNumber;
1175
+ }>, {
1139
1176
  type: z.ZodLiteral<"problem">;
1140
1177
  solutionName: z.ZodNullable<z.ZodString>;
1141
- }, "strip", z.ZodTypeAny, {
1178
+ }>, "strip", z.ZodTypeAny, {
1142
1179
  type: "problem";
1143
1180
  name: string;
1144
1181
  title: string;
@@ -1279,9 +1316,12 @@ declare const ExerciseSchema: z.ZodObject<{
1279
1316
  }>, z.ZodObject<{
1280
1317
  stepNumber: z.ZodNumber;
1281
1318
  problem: z.ZodOptional<z.ZodNever>;
1282
- solution: z.ZodObject<{
1319
+ solution: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1320
+ /** a unique identifier for the app */
1283
1321
  name: z.ZodString;
1322
+ /** the title of the app used for display (comes from the package.json title prop) */
1284
1323
  title: z.ZodString;
1324
+ /** used when displaying the list of files to match the list of apps in the file system (comes the name of the directory of the app) */
1285
1325
  dirName: z.ZodString;
1286
1326
  fullPath: z.ZodString;
1287
1327
  relativePath: z.ZodString;
@@ -1343,11 +1383,13 @@ declare const ExerciseSchema: z.ZodObject<{
1343
1383
  }, {
1344
1384
  type: "none";
1345
1385
  }>]>;
1386
+ }, {
1346
1387
  exerciseNumber: z.ZodNumber;
1347
1388
  stepNumber: z.ZodNumber;
1389
+ }>, {
1348
1390
  type: z.ZodLiteral<"solution">;
1349
1391
  problemName: z.ZodNullable<z.ZodString>;
1350
- }, "strip", z.ZodTypeAny, {
1392
+ }>, "strip", z.ZodTypeAny, {
1351
1393
  type: "solution";
1352
1394
  name: string;
1353
1395
  title: string;
@@ -1485,9 +1527,12 @@ declare const ExerciseSchema: z.ZodObject<{
1485
1527
  };
1486
1528
  problem?: undefined;
1487
1529
  }>]>, "many">;
1488
- problems: z.ZodArray<z.ZodObject<{
1530
+ problems: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1531
+ /** a unique identifier for the app */
1489
1532
  name: z.ZodString;
1533
+ /** the title of the app used for display (comes from the package.json title prop) */
1490
1534
  title: z.ZodString;
1535
+ /** used when displaying the list of files to match the list of apps in the file system (comes the name of the directory of the app) */
1491
1536
  dirName: z.ZodString;
1492
1537
  fullPath: z.ZodString;
1493
1538
  relativePath: z.ZodString;
@@ -1549,11 +1594,13 @@ declare const ExerciseSchema: z.ZodObject<{
1549
1594
  }, {
1550
1595
  type: "none";
1551
1596
  }>]>;
1597
+ }, {
1552
1598
  exerciseNumber: z.ZodNumber;
1553
1599
  stepNumber: z.ZodNumber;
1600
+ }>, {
1554
1601
  type: z.ZodLiteral<"problem">;
1555
1602
  solutionName: z.ZodNullable<z.ZodString>;
1556
- }, "strip", z.ZodTypeAny, {
1603
+ }>, "strip", z.ZodTypeAny, {
1557
1604
  type: "problem";
1558
1605
  name: string;
1559
1606
  title: string;
@@ -1618,9 +1665,12 @@ declare const ExerciseSchema: z.ZodObject<{
1618
1665
  instructionsCode?: string | undefined;
1619
1666
  epicVideoEmbeds?: string[] | undefined;
1620
1667
  }>, "many">;
1621
- solutions: z.ZodArray<z.ZodObject<{
1668
+ solutions: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1669
+ /** a unique identifier for the app */
1622
1670
  name: z.ZodString;
1671
+ /** the title of the app used for display (comes from the package.json title prop) */
1623
1672
  title: z.ZodString;
1673
+ /** used when displaying the list of files to match the list of apps in the file system (comes the name of the directory of the app) */
1624
1674
  dirName: z.ZodString;
1625
1675
  fullPath: z.ZodString;
1626
1676
  relativePath: z.ZodString;
@@ -1682,11 +1732,13 @@ declare const ExerciseSchema: z.ZodObject<{
1682
1732
  }, {
1683
1733
  type: "none";
1684
1734
  }>]>;
1735
+ }, {
1685
1736
  exerciseNumber: z.ZodNumber;
1686
1737
  stepNumber: z.ZodNumber;
1738
+ }>, {
1687
1739
  type: z.ZodLiteral<"solution">;
1688
1740
  problemName: z.ZodNullable<z.ZodString>;
1689
- }, "strip", z.ZodTypeAny, {
1741
+ }>, "strip", z.ZodTypeAny, {
1690
1742
  type: "solution";
1691
1743
  name: string;
1692
1744
  title: string;
@@ -2182,9 +2234,12 @@ declare const ExerciseSchema: z.ZodObject<{
2182
2234
  instructionsEpicVideoEmbeds?: string[] | undefined;
2183
2235
  finishedEpicVideoEmbeds?: string[] | undefined;
2184
2236
  }>;
2185
- declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<{
2237
+ declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
2238
+ /** a unique identifier for the app */
2186
2239
  name: z.ZodString;
2240
+ /** the title of the app used for display (comes from the package.json title prop) */
2187
2241
  title: z.ZodString;
2242
+ /** used when displaying the list of files to match the list of apps in the file system (comes the name of the directory of the app) */
2188
2243
  dirName: z.ZodString;
2189
2244
  fullPath: z.ZodString;
2190
2245
  relativePath: z.ZodString;
@@ -2246,11 +2301,13 @@ declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<{
2246
2301
  }, {
2247
2302
  type: "none";
2248
2303
  }>]>;
2304
+ }, {
2249
2305
  exerciseNumber: z.ZodNumber;
2250
2306
  stepNumber: z.ZodNumber;
2307
+ }>, {
2251
2308
  type: z.ZodLiteral<"problem">;
2252
2309
  solutionName: z.ZodNullable<z.ZodString>;
2253
- }, "strip", z.ZodTypeAny, {
2310
+ }>, "strip", z.ZodTypeAny, {
2254
2311
  type: "problem";
2255
2312
  name: string;
2256
2313
  title: string;
@@ -2314,9 +2371,12 @@ declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<{
2314
2371
  solutionName: string | null;
2315
2372
  instructionsCode?: string | undefined;
2316
2373
  epicVideoEmbeds?: string[] | undefined;
2317
- }>, z.ZodObject<{
2374
+ }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
2375
+ /** a unique identifier for the app */
2318
2376
  name: z.ZodString;
2377
+ /** the title of the app used for display (comes from the package.json title prop) */
2319
2378
  title: z.ZodString;
2379
+ /** used when displaying the list of files to match the list of apps in the file system (comes the name of the directory of the app) */
2320
2380
  dirName: z.ZodString;
2321
2381
  fullPath: z.ZodString;
2322
2382
  relativePath: z.ZodString;
@@ -2378,11 +2438,13 @@ declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<{
2378
2438
  }, {
2379
2439
  type: "none";
2380
2440
  }>]>;
2441
+ }, {
2381
2442
  exerciseNumber: z.ZodNumber;
2382
2443
  stepNumber: z.ZodNumber;
2444
+ }>, {
2383
2445
  type: z.ZodLiteral<"solution">;
2384
2446
  problemName: z.ZodNullable<z.ZodString>;
2385
- }, "strip", z.ZodTypeAny, {
2447
+ }>, "strip", z.ZodTypeAny, {
2386
2448
  type: "solution";
2387
2449
  name: string;
2388
2450
  title: string;
@@ -2447,9 +2509,12 @@ declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<{
2447
2509
  instructionsCode?: string | undefined;
2448
2510
  epicVideoEmbeds?: string[] | undefined;
2449
2511
  }>]>;
2450
- declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2512
+ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
2513
+ /** a unique identifier for the app */
2451
2514
  name: z.ZodString;
2515
+ /** the title of the app used for display (comes from the package.json title prop) */
2452
2516
  title: z.ZodString;
2517
+ /** used when displaying the list of files to match the list of apps in the file system (comes the name of the directory of the app) */
2453
2518
  dirName: z.ZodString;
2454
2519
  fullPath: z.ZodString;
2455
2520
  relativePath: z.ZodString;
@@ -2511,11 +2576,13 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2511
2576
  }, {
2512
2577
  type: "none";
2513
2578
  }>]>;
2579
+ }, {
2514
2580
  exerciseNumber: z.ZodNumber;
2515
2581
  stepNumber: z.ZodNumber;
2582
+ }>, {
2516
2583
  type: z.ZodLiteral<"problem">;
2517
2584
  solutionName: z.ZodNullable<z.ZodString>;
2518
- }, "strip", z.ZodTypeAny, {
2585
+ }>, "strip", z.ZodTypeAny, {
2519
2586
  type: "problem";
2520
2587
  name: string;
2521
2588
  title: string;
@@ -2579,9 +2646,12 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2579
2646
  solutionName: string | null;
2580
2647
  instructionsCode?: string | undefined;
2581
2648
  epicVideoEmbeds?: string[] | undefined;
2582
- }>, z.ZodObject<{
2649
+ }>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
2650
+ /** a unique identifier for the app */
2583
2651
  name: z.ZodString;
2652
+ /** the title of the app used for display (comes from the package.json title prop) */
2584
2653
  title: z.ZodString;
2654
+ /** used when displaying the list of files to match the list of apps in the file system (comes the name of the directory of the app) */
2585
2655
  dirName: z.ZodString;
2586
2656
  fullPath: z.ZodString;
2587
2657
  relativePath: z.ZodString;
@@ -2643,11 +2713,13 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2643
2713
  }, {
2644
2714
  type: "none";
2645
2715
  }>]>;
2716
+ }, {
2646
2717
  exerciseNumber: z.ZodNumber;
2647
2718
  stepNumber: z.ZodNumber;
2719
+ }>, {
2648
2720
  type: z.ZodLiteral<"solution">;
2649
2721
  problemName: z.ZodNullable<z.ZodString>;
2650
- }, "strip", z.ZodTypeAny, {
2722
+ }>, "strip", z.ZodTypeAny, {
2651
2723
  type: "solution";
2652
2724
  name: string;
2653
2725
  title: string;
@@ -2711,9 +2783,12 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2711
2783
  problemName: string | null;
2712
2784
  instructionsCode?: string | undefined;
2713
2785
  epicVideoEmbeds?: string[] | undefined;
2714
- }>]>, z.ZodObject<{
2786
+ }>]>, z.ZodObject<z.objectUtil.extendShape<{
2787
+ /** a unique identifier for the app */
2715
2788
  name: z.ZodString;
2789
+ /** the title of the app used for display (comes from the package.json title prop) */
2716
2790
  title: z.ZodString;
2791
+ /** used when displaying the list of files to match the list of apps in the file system (comes the name of the directory of the app) */
2717
2792
  dirName: z.ZodString;
2718
2793
  fullPath: z.ZodString;
2719
2794
  relativePath: z.ZodString;
@@ -2775,10 +2850,11 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2775
2850
  }, {
2776
2851
  type: "none";
2777
2852
  }>]>;
2853
+ }, {
2778
2854
  type: z.ZodLiteral<"playground">;
2779
2855
  appName: z.ZodString;
2780
2856
  isUpToDate: z.ZodBoolean;
2781
- }, "strip", z.ZodTypeAny, {
2857
+ }>, "strip", z.ZodTypeAny, {
2782
2858
  type: "playground";
2783
2859
  name: string;
2784
2860
  title: string;
@@ -2840,9 +2916,12 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2840
2916
  isUpToDate: boolean;
2841
2917
  instructionsCode?: string | undefined;
2842
2918
  epicVideoEmbeds?: string[] | undefined;
2843
- }>, z.ZodObject<{
2919
+ }>, z.ZodObject<z.objectUtil.extendShape<{
2920
+ /** a unique identifier for the app */
2844
2921
  name: z.ZodString;
2922
+ /** the title of the app used for display (comes from the package.json title prop) */
2845
2923
  title: z.ZodString;
2924
+ /** used when displaying the list of files to match the list of apps in the file system (comes the name of the directory of the app) */
2846
2925
  dirName: z.ZodString;
2847
2926
  fullPath: z.ZodString;
2848
2927
  relativePath: z.ZodString;
@@ -2904,8 +2983,9 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2904
2983
  }, {
2905
2984
  type: "none";
2906
2985
  }>]>;
2986
+ }, {
2907
2987
  type: z.ZodLiteral<"example">;
2908
- }, "strip", z.ZodTypeAny, {
2988
+ }>, "strip", z.ZodTypeAny, {
2909
2989
  type: "example";
2910
2990
  name: string;
2911
2991
  title: string;
@@ -1 +1 @@
1
- {"version":3,"file":"apps.server.d.ts","sourceRoot":"","sources":["../../src/apps.server.ts"],"names":[],"mappings":"AACA,OAAO,4BAA4B,CAAA;AAGnC,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,qBAAqB,CAAA;AAMrD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAiBvB,OAAO,EAAuB,KAAK,OAAO,EAAE,MAAM,oBAAoB,CAAA;AAiBtE,KAAK,gBAAgB,GAAG;IAAE,OAAO,CAAC,EAAE,OAAO,CAAC;IAAC,OAAO,CAAC,EAAE,OAAO,CAAA;CAAE,CAAA;AAiChE,QAAA,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG7B,CAAA;AAEF,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGpB,CAAA;AAEF,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGrB,CAAA;AAEF,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEpB,CAAA;AAEF,QAAA,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIvB,CAAA;AAEF,QAAA,MAAM,cAAc;IACnB,2CAA2C;;IAE3C,uIAAuI;;IAEvI,oFAAoF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
1
+ {"version":3,"file":"apps.server.d.ts","sourceRoot":"","sources":["../../src/apps.server.ts"],"names":[],"mappings":"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"}
@@ -1,8 +1,8 @@
1
+ import fs from 'node:fs';
2
+ import path from 'node:path';
3
+ import { remember } from '@epic-web/remember';
1
4
  /// TODO: figure out why this import is necessary (without it tsc seems to not honor the boolean reset 🤷‍♂️)
2
5
  import '@total-typescript/ts-reset';
3
- import fs from 'fs';
4
- import path from 'path';
5
- import { remember } from '@epic-web/remember';
6
6
  import { execa } from 'execa';
7
7
  import fsExtra from 'fs-extra';
8
8
  import { glob } from 'glob';
@@ -15,7 +15,6 @@ import { closeProcess, isAppRunning, runAppDev, waitOnApp, } from './process-man
15
15
  import { getServerTimeHeader } from './timing.server.js';
16
16
  import { getErrorMessage } from './utils.js';
17
17
  import { getPkgProp } from './utils.server.js';
18
- // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
19
18
  process.env.NODE_ENV ??= 'development';
20
19
  const workshopRoot = getWorkshopRoot();
21
20
  const playgroundAppNameInfoPath = path.join(getWorkshopRoot(), 'node_modules', '.cache', 'epicshop', 'playground.json');
@@ -841,7 +840,6 @@ export async function setPlayground(srcDir, { reset } = {}) {
841
840
  await execa('node', [preSetPlaygroundPath], {
842
841
  cwd: workshopRoot,
843
842
  stdio: 'inherit',
844
- // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
845
843
  env: {
846
844
  EPICSHOP_PLAYGROUND_TIMESTAMP: setPlaygroundTimestamp.toString(),
847
845
  EPICSHOP_PLAYGROUND_DEST_DIR: destDir,
@@ -925,7 +923,6 @@ export async function setPlayground(srcDir, { reset } = {}) {
925
923
  await execa('node', [postSetPlaygroundPath], {
926
924
  cwd: workshopRoot,
927
925
  stdio: 'inherit',
928
- // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
929
926
  env: {
930
927
  EPICSHOP_PLAYGROUND_TIMESTAMP: setPlaygroundTimestamp.toString(),
931
928
  EPICSHOP_PLAYGROUND_SRC_DIR: srcDir,
@@ -953,7 +950,6 @@ export async function getPlaygroundAppName() {
953
950
  }
954
951
  try {
955
952
  const jsonString = await fs.promises.readFile(playgroundAppNameInfoPath, 'utf8');
956
- // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
957
953
  const { appName } = JSON.parse(jsonString);
958
954
  if (typeof appName !== 'string')
959
955
  return null;