@epic-web/workshop-utils 5.22.4 → 5.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/apps.server.d.ts +63 -63
- package/dist/esm/apps.server.d.ts.map +1 -1
- package/dist/esm/apps.server.js +0 -3
- package/dist/esm/apps.server.js.map +1 -1
- package/dist/esm/compile-mdx.server.d.ts.map +1 -1
- package/dist/esm/compile-mdx.server.js +95 -13
- package/dist/esm/compile-mdx.server.js.map +1 -1
- package/dist/esm/epic-api.server.d.ts +2 -1
- package/dist/esm/epic-api.server.d.ts.map +1 -1
- package/dist/esm/epic-api.server.js +51 -7
- package/dist/esm/epic-api.server.js.map +1 -1
- package/package.json +3 -2
|
@@ -11,7 +11,7 @@ type CachifiedOptions = {
|
|
|
11
11
|
timings?: Timings;
|
|
12
12
|
request?: Request;
|
|
13
13
|
};
|
|
14
|
-
declare const BaseExerciseStepAppSchema: z.ZodObject<
|
|
14
|
+
declare const BaseExerciseStepAppSchema: z.ZodObject<{
|
|
15
15
|
/** a unique identifier for the app */
|
|
16
16
|
name: z.ZodString;
|
|
17
17
|
/** the title of the app used for display (comes from the package.json title prop) */
|
|
@@ -79,10 +79,10 @@ declare const BaseExerciseStepAppSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
79
79
|
type: "none";
|
|
80
80
|
}>]>;
|
|
81
81
|
stackBlitzUrl: z.ZodNullable<z.ZodString>;
|
|
82
|
-
}
|
|
82
|
+
} & {
|
|
83
83
|
exerciseNumber: z.ZodNumber;
|
|
84
84
|
stepNumber: z.ZodNumber;
|
|
85
|
-
}
|
|
85
|
+
}, "strip", z.ZodTypeAny, {
|
|
86
86
|
title: string;
|
|
87
87
|
name: string;
|
|
88
88
|
test: {
|
|
@@ -145,7 +145,7 @@ declare const BaseExerciseStepAppSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
145
145
|
instructionsCode?: string | undefined;
|
|
146
146
|
epicVideoEmbeds?: string[] | undefined;
|
|
147
147
|
}>;
|
|
148
|
-
declare const ProblemAppSchema: z.ZodObject<
|
|
148
|
+
declare const ProblemAppSchema: z.ZodObject<{
|
|
149
149
|
/** a unique identifier for the app */
|
|
150
150
|
name: z.ZodString;
|
|
151
151
|
/** the title of the app used for display (comes from the package.json title prop) */
|
|
@@ -213,13 +213,13 @@ declare const ProblemAppSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
213
213
|
type: "none";
|
|
214
214
|
}>]>;
|
|
215
215
|
stackBlitzUrl: z.ZodNullable<z.ZodString>;
|
|
216
|
-
}
|
|
216
|
+
} & {
|
|
217
217
|
exerciseNumber: z.ZodNumber;
|
|
218
218
|
stepNumber: z.ZodNumber;
|
|
219
|
-
}
|
|
219
|
+
} & {
|
|
220
220
|
type: z.ZodLiteral<"problem">;
|
|
221
221
|
solutionName: z.ZodNullable<z.ZodString>;
|
|
222
|
-
}
|
|
222
|
+
}, "strip", z.ZodTypeAny, {
|
|
223
223
|
title: string;
|
|
224
224
|
type: "problem";
|
|
225
225
|
name: string;
|
|
@@ -286,7 +286,7 @@ declare const ProblemAppSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
286
286
|
instructionsCode?: string | undefined;
|
|
287
287
|
epicVideoEmbeds?: string[] | undefined;
|
|
288
288
|
}>;
|
|
289
|
-
declare const SolutionAppSchema: z.ZodObject<
|
|
289
|
+
declare const SolutionAppSchema: z.ZodObject<{
|
|
290
290
|
/** a unique identifier for the app */
|
|
291
291
|
name: z.ZodString;
|
|
292
292
|
/** the title of the app used for display (comes from the package.json title prop) */
|
|
@@ -354,13 +354,13 @@ declare const SolutionAppSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUt
|
|
|
354
354
|
type: "none";
|
|
355
355
|
}>]>;
|
|
356
356
|
stackBlitzUrl: z.ZodNullable<z.ZodString>;
|
|
357
|
-
}
|
|
357
|
+
} & {
|
|
358
358
|
exerciseNumber: z.ZodNumber;
|
|
359
359
|
stepNumber: z.ZodNumber;
|
|
360
|
-
}
|
|
360
|
+
} & {
|
|
361
361
|
type: z.ZodLiteral<"solution">;
|
|
362
362
|
problemName: z.ZodNullable<z.ZodString>;
|
|
363
|
-
}
|
|
363
|
+
}, "strip", z.ZodTypeAny, {
|
|
364
364
|
title: string;
|
|
365
365
|
type: "solution";
|
|
366
366
|
name: string;
|
|
@@ -427,7 +427,7 @@ declare const SolutionAppSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUt
|
|
|
427
427
|
instructionsCode?: string | undefined;
|
|
428
428
|
epicVideoEmbeds?: string[] | undefined;
|
|
429
429
|
}>;
|
|
430
|
-
declare const ExampleAppSchema: z.ZodObject<
|
|
430
|
+
declare const ExampleAppSchema: z.ZodObject<{
|
|
431
431
|
/** a unique identifier for the app */
|
|
432
432
|
name: z.ZodString;
|
|
433
433
|
/** the title of the app used for display (comes from the package.json title prop) */
|
|
@@ -495,9 +495,9 @@ declare const ExampleAppSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
495
495
|
type: "none";
|
|
496
496
|
}>]>;
|
|
497
497
|
stackBlitzUrl: z.ZodNullable<z.ZodString>;
|
|
498
|
-
}
|
|
498
|
+
} & {
|
|
499
499
|
type: z.ZodLiteral<"example">;
|
|
500
|
-
}
|
|
500
|
+
}, "strip", z.ZodTypeAny, {
|
|
501
501
|
title: string;
|
|
502
502
|
type: "example";
|
|
503
503
|
name: string;
|
|
@@ -558,7 +558,7 @@ declare const ExampleAppSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
558
558
|
instructionsCode?: string | undefined;
|
|
559
559
|
epicVideoEmbeds?: string[] | undefined;
|
|
560
560
|
}>;
|
|
561
|
-
declare const PlaygroundAppSchema: z.ZodObject<
|
|
561
|
+
declare const PlaygroundAppSchema: z.ZodObject<{
|
|
562
562
|
/** a unique identifier for the app */
|
|
563
563
|
name: z.ZodString;
|
|
564
564
|
/** the title of the app used for display (comes from the package.json title prop) */
|
|
@@ -626,11 +626,11 @@ declare const PlaygroundAppSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
626
626
|
type: "none";
|
|
627
627
|
}>]>;
|
|
628
628
|
stackBlitzUrl: z.ZodNullable<z.ZodString>;
|
|
629
|
-
}
|
|
629
|
+
} & {
|
|
630
630
|
type: z.ZodLiteral<"playground">;
|
|
631
631
|
appName: z.ZodString;
|
|
632
632
|
isUpToDate: z.ZodBoolean;
|
|
633
|
-
}
|
|
633
|
+
}, "strip", z.ZodTypeAny, {
|
|
634
634
|
title: string;
|
|
635
635
|
type: "playground";
|
|
636
636
|
name: string;
|
|
@@ -710,7 +710,7 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
710
710
|
finishedEpicVideoEmbeds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
711
711
|
steps: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
712
712
|
stepNumber: z.ZodNumber;
|
|
713
|
-
problem: z.ZodObject<
|
|
713
|
+
problem: z.ZodObject<{
|
|
714
714
|
/** a unique identifier for the app */
|
|
715
715
|
name: z.ZodString;
|
|
716
716
|
/** the title of the app used for display (comes from the package.json title prop) */
|
|
@@ -778,13 +778,13 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
778
778
|
type: "none";
|
|
779
779
|
}>]>;
|
|
780
780
|
stackBlitzUrl: z.ZodNullable<z.ZodString>;
|
|
781
|
-
}
|
|
781
|
+
} & {
|
|
782
782
|
exerciseNumber: z.ZodNumber;
|
|
783
783
|
stepNumber: z.ZodNumber;
|
|
784
|
-
}
|
|
784
|
+
} & {
|
|
785
785
|
type: z.ZodLiteral<"problem">;
|
|
786
786
|
solutionName: z.ZodNullable<z.ZodString>;
|
|
787
|
-
}
|
|
787
|
+
}, "strip", z.ZodTypeAny, {
|
|
788
788
|
title: string;
|
|
789
789
|
type: "problem";
|
|
790
790
|
name: string;
|
|
@@ -851,7 +851,7 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
851
851
|
instructionsCode?: string | undefined;
|
|
852
852
|
epicVideoEmbeds?: string[] | undefined;
|
|
853
853
|
}>;
|
|
854
|
-
solution: z.ZodObject<
|
|
854
|
+
solution: z.ZodObject<{
|
|
855
855
|
/** a unique identifier for the app */
|
|
856
856
|
name: z.ZodString;
|
|
857
857
|
/** the title of the app used for display (comes from the package.json title prop) */
|
|
@@ -919,13 +919,13 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
919
919
|
type: "none";
|
|
920
920
|
}>]>;
|
|
921
921
|
stackBlitzUrl: z.ZodNullable<z.ZodString>;
|
|
922
|
-
}
|
|
922
|
+
} & {
|
|
923
923
|
exerciseNumber: z.ZodNumber;
|
|
924
924
|
stepNumber: z.ZodNumber;
|
|
925
|
-
}
|
|
925
|
+
} & {
|
|
926
926
|
type: z.ZodLiteral<"solution">;
|
|
927
927
|
problemName: z.ZodNullable<z.ZodString>;
|
|
928
|
-
}
|
|
928
|
+
}, "strip", z.ZodTypeAny, {
|
|
929
929
|
title: string;
|
|
930
930
|
type: "solution";
|
|
931
931
|
name: string;
|
|
@@ -1134,7 +1134,7 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1134
1134
|
};
|
|
1135
1135
|
}>, z.ZodObject<{
|
|
1136
1136
|
stepNumber: z.ZodNumber;
|
|
1137
|
-
problem: z.ZodObject<
|
|
1137
|
+
problem: z.ZodObject<{
|
|
1138
1138
|
/** a unique identifier for the app */
|
|
1139
1139
|
name: z.ZodString;
|
|
1140
1140
|
/** the title of the app used for display (comes from the package.json title prop) */
|
|
@@ -1202,13 +1202,13 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1202
1202
|
type: "none";
|
|
1203
1203
|
}>]>;
|
|
1204
1204
|
stackBlitzUrl: z.ZodNullable<z.ZodString>;
|
|
1205
|
-
}
|
|
1205
|
+
} & {
|
|
1206
1206
|
exerciseNumber: z.ZodNumber;
|
|
1207
1207
|
stepNumber: z.ZodNumber;
|
|
1208
|
-
}
|
|
1208
|
+
} & {
|
|
1209
1209
|
type: z.ZodLiteral<"problem">;
|
|
1210
1210
|
solutionName: z.ZodNullable<z.ZodString>;
|
|
1211
|
-
}
|
|
1211
|
+
}, "strip", z.ZodTypeAny, {
|
|
1212
1212
|
title: string;
|
|
1213
1213
|
type: "problem";
|
|
1214
1214
|
name: string;
|
|
@@ -1353,7 +1353,7 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1353
1353
|
}>, z.ZodObject<{
|
|
1354
1354
|
stepNumber: z.ZodNumber;
|
|
1355
1355
|
problem: z.ZodOptional<z.ZodNever>;
|
|
1356
|
-
solution: z.ZodObject<
|
|
1356
|
+
solution: z.ZodObject<{
|
|
1357
1357
|
/** a unique identifier for the app */
|
|
1358
1358
|
name: z.ZodString;
|
|
1359
1359
|
/** the title of the app used for display (comes from the package.json title prop) */
|
|
@@ -1421,13 +1421,13 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1421
1421
|
type: "none";
|
|
1422
1422
|
}>]>;
|
|
1423
1423
|
stackBlitzUrl: z.ZodNullable<z.ZodString>;
|
|
1424
|
-
}
|
|
1424
|
+
} & {
|
|
1425
1425
|
exerciseNumber: z.ZodNumber;
|
|
1426
1426
|
stepNumber: z.ZodNumber;
|
|
1427
|
-
}
|
|
1427
|
+
} & {
|
|
1428
1428
|
type: z.ZodLiteral<"solution">;
|
|
1429
1429
|
problemName: z.ZodNullable<z.ZodString>;
|
|
1430
|
-
}
|
|
1430
|
+
}, "strip", z.ZodTypeAny, {
|
|
1431
1431
|
title: string;
|
|
1432
1432
|
type: "solution";
|
|
1433
1433
|
name: string;
|
|
@@ -1569,7 +1569,7 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1569
1569
|
};
|
|
1570
1570
|
problem?: undefined;
|
|
1571
1571
|
}>]>, "many">;
|
|
1572
|
-
problems: z.ZodArray<z.ZodObject<
|
|
1572
|
+
problems: z.ZodArray<z.ZodObject<{
|
|
1573
1573
|
/** a unique identifier for the app */
|
|
1574
1574
|
name: z.ZodString;
|
|
1575
1575
|
/** the title of the app used for display (comes from the package.json title prop) */
|
|
@@ -1637,13 +1637,13 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1637
1637
|
type: "none";
|
|
1638
1638
|
}>]>;
|
|
1639
1639
|
stackBlitzUrl: z.ZodNullable<z.ZodString>;
|
|
1640
|
-
}
|
|
1640
|
+
} & {
|
|
1641
1641
|
exerciseNumber: z.ZodNumber;
|
|
1642
1642
|
stepNumber: z.ZodNumber;
|
|
1643
|
-
}
|
|
1643
|
+
} & {
|
|
1644
1644
|
type: z.ZodLiteral<"problem">;
|
|
1645
1645
|
solutionName: z.ZodNullable<z.ZodString>;
|
|
1646
|
-
}
|
|
1646
|
+
}, "strip", z.ZodTypeAny, {
|
|
1647
1647
|
title: string;
|
|
1648
1648
|
type: "problem";
|
|
1649
1649
|
name: string;
|
|
@@ -1710,7 +1710,7 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1710
1710
|
instructionsCode?: string | undefined;
|
|
1711
1711
|
epicVideoEmbeds?: string[] | undefined;
|
|
1712
1712
|
}>, "many">;
|
|
1713
|
-
solutions: z.ZodArray<z.ZodObject<
|
|
1713
|
+
solutions: z.ZodArray<z.ZodObject<{
|
|
1714
1714
|
/** a unique identifier for the app */
|
|
1715
1715
|
name: z.ZodString;
|
|
1716
1716
|
/** the title of the app used for display (comes from the package.json title prop) */
|
|
@@ -1778,13 +1778,13 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1778
1778
|
type: "none";
|
|
1779
1779
|
}>]>;
|
|
1780
1780
|
stackBlitzUrl: z.ZodNullable<z.ZodString>;
|
|
1781
|
-
}
|
|
1781
|
+
} & {
|
|
1782
1782
|
exerciseNumber: z.ZodNumber;
|
|
1783
1783
|
stepNumber: z.ZodNumber;
|
|
1784
|
-
}
|
|
1784
|
+
} & {
|
|
1785
1785
|
type: z.ZodLiteral<"solution">;
|
|
1786
1786
|
problemName: z.ZodNullable<z.ZodString>;
|
|
1787
|
-
}
|
|
1787
|
+
}, "strip", z.ZodTypeAny, {
|
|
1788
1788
|
title: string;
|
|
1789
1789
|
type: "solution";
|
|
1790
1790
|
name: string;
|
|
@@ -2296,7 +2296,7 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
2296
2296
|
instructionsEpicVideoEmbeds?: string[] | undefined;
|
|
2297
2297
|
finishedEpicVideoEmbeds?: string[] | undefined;
|
|
2298
2298
|
}>;
|
|
2299
|
-
declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<
|
|
2299
|
+
declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<{
|
|
2300
2300
|
/** a unique identifier for the app */
|
|
2301
2301
|
name: z.ZodString;
|
|
2302
2302
|
/** the title of the app used for display (comes from the package.json title prop) */
|
|
@@ -2364,13 +2364,13 @@ declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2364
2364
|
type: "none";
|
|
2365
2365
|
}>]>;
|
|
2366
2366
|
stackBlitzUrl: z.ZodNullable<z.ZodString>;
|
|
2367
|
-
}
|
|
2367
|
+
} & {
|
|
2368
2368
|
exerciseNumber: z.ZodNumber;
|
|
2369
2369
|
stepNumber: z.ZodNumber;
|
|
2370
|
-
}
|
|
2370
|
+
} & {
|
|
2371
2371
|
type: z.ZodLiteral<"problem">;
|
|
2372
2372
|
solutionName: z.ZodNullable<z.ZodString>;
|
|
2373
|
-
}
|
|
2373
|
+
}, "strip", z.ZodTypeAny, {
|
|
2374
2374
|
title: string;
|
|
2375
2375
|
type: "problem";
|
|
2376
2376
|
name: string;
|
|
@@ -2436,7 +2436,7 @@ declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2436
2436
|
solutionName: string | null;
|
|
2437
2437
|
instructionsCode?: string | undefined;
|
|
2438
2438
|
epicVideoEmbeds?: string[] | undefined;
|
|
2439
|
-
}>, z.ZodObject<
|
|
2439
|
+
}>, z.ZodObject<{
|
|
2440
2440
|
/** a unique identifier for the app */
|
|
2441
2441
|
name: z.ZodString;
|
|
2442
2442
|
/** the title of the app used for display (comes from the package.json title prop) */
|
|
@@ -2504,13 +2504,13 @@ declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2504
2504
|
type: "none";
|
|
2505
2505
|
}>]>;
|
|
2506
2506
|
stackBlitzUrl: z.ZodNullable<z.ZodString>;
|
|
2507
|
-
}
|
|
2507
|
+
} & {
|
|
2508
2508
|
exerciseNumber: z.ZodNumber;
|
|
2509
2509
|
stepNumber: z.ZodNumber;
|
|
2510
|
-
}
|
|
2510
|
+
} & {
|
|
2511
2511
|
type: z.ZodLiteral<"solution">;
|
|
2512
2512
|
problemName: z.ZodNullable<z.ZodString>;
|
|
2513
|
-
}
|
|
2513
|
+
}, "strip", z.ZodTypeAny, {
|
|
2514
2514
|
title: string;
|
|
2515
2515
|
type: "solution";
|
|
2516
2516
|
name: string;
|
|
@@ -2577,7 +2577,7 @@ declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2577
2577
|
instructionsCode?: string | undefined;
|
|
2578
2578
|
epicVideoEmbeds?: string[] | undefined;
|
|
2579
2579
|
}>]>;
|
|
2580
|
-
declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<
|
|
2580
|
+
declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
2581
2581
|
/** a unique identifier for the app */
|
|
2582
2582
|
name: z.ZodString;
|
|
2583
2583
|
/** the title of the app used for display (comes from the package.json title prop) */
|
|
@@ -2645,13 +2645,13 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2645
2645
|
type: "none";
|
|
2646
2646
|
}>]>;
|
|
2647
2647
|
stackBlitzUrl: z.ZodNullable<z.ZodString>;
|
|
2648
|
-
}
|
|
2648
|
+
} & {
|
|
2649
2649
|
exerciseNumber: z.ZodNumber;
|
|
2650
2650
|
stepNumber: z.ZodNumber;
|
|
2651
|
-
}
|
|
2651
|
+
} & {
|
|
2652
2652
|
type: z.ZodLiteral<"problem">;
|
|
2653
2653
|
solutionName: z.ZodNullable<z.ZodString>;
|
|
2654
|
-
}
|
|
2654
|
+
}, "strip", z.ZodTypeAny, {
|
|
2655
2655
|
title: string;
|
|
2656
2656
|
type: "problem";
|
|
2657
2657
|
name: string;
|
|
@@ -2717,7 +2717,7 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2717
2717
|
solutionName: string | null;
|
|
2718
2718
|
instructionsCode?: string | undefined;
|
|
2719
2719
|
epicVideoEmbeds?: string[] | undefined;
|
|
2720
|
-
}>, z.ZodObject<
|
|
2720
|
+
}>, z.ZodObject<{
|
|
2721
2721
|
/** a unique identifier for the app */
|
|
2722
2722
|
name: z.ZodString;
|
|
2723
2723
|
/** the title of the app used for display (comes from the package.json title prop) */
|
|
@@ -2785,13 +2785,13 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2785
2785
|
type: "none";
|
|
2786
2786
|
}>]>;
|
|
2787
2787
|
stackBlitzUrl: z.ZodNullable<z.ZodString>;
|
|
2788
|
-
}
|
|
2788
|
+
} & {
|
|
2789
2789
|
exerciseNumber: z.ZodNumber;
|
|
2790
2790
|
stepNumber: z.ZodNumber;
|
|
2791
|
-
}
|
|
2791
|
+
} & {
|
|
2792
2792
|
type: z.ZodLiteral<"solution">;
|
|
2793
2793
|
problemName: z.ZodNullable<z.ZodString>;
|
|
2794
|
-
}
|
|
2794
|
+
}, "strip", z.ZodTypeAny, {
|
|
2795
2795
|
title: string;
|
|
2796
2796
|
type: "solution";
|
|
2797
2797
|
name: string;
|
|
@@ -2857,7 +2857,7 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2857
2857
|
problemName: string | null;
|
|
2858
2858
|
instructionsCode?: string | undefined;
|
|
2859
2859
|
epicVideoEmbeds?: string[] | undefined;
|
|
2860
|
-
}>]>, z.ZodObject<
|
|
2860
|
+
}>]>, z.ZodObject<{
|
|
2861
2861
|
/** a unique identifier for the app */
|
|
2862
2862
|
name: z.ZodString;
|
|
2863
2863
|
/** the title of the app used for display (comes from the package.json title prop) */
|
|
@@ -2925,11 +2925,11 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2925
2925
|
type: "none";
|
|
2926
2926
|
}>]>;
|
|
2927
2927
|
stackBlitzUrl: z.ZodNullable<z.ZodString>;
|
|
2928
|
-
}
|
|
2928
|
+
} & {
|
|
2929
2929
|
type: z.ZodLiteral<"playground">;
|
|
2930
2930
|
appName: z.ZodString;
|
|
2931
2931
|
isUpToDate: z.ZodBoolean;
|
|
2932
|
-
}
|
|
2932
|
+
}, "strip", z.ZodTypeAny, {
|
|
2933
2933
|
title: string;
|
|
2934
2934
|
type: "playground";
|
|
2935
2935
|
name: string;
|
|
@@ -2993,7 +2993,7 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
2993
2993
|
isUpToDate: boolean;
|
|
2994
2994
|
instructionsCode?: string | undefined;
|
|
2995
2995
|
epicVideoEmbeds?: string[] | undefined;
|
|
2996
|
-
}>, z.ZodObject<
|
|
2996
|
+
}>, z.ZodObject<{
|
|
2997
2997
|
/** a unique identifier for the app */
|
|
2998
2998
|
name: z.ZodString;
|
|
2999
2999
|
/** the title of the app used for display (comes from the package.json title prop) */
|
|
@@ -3061,9 +3061,9 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extend
|
|
|
3061
3061
|
type: "none";
|
|
3062
3062
|
}>]>;
|
|
3063
3063
|
stackBlitzUrl: z.ZodNullable<z.ZodString>;
|
|
3064
|
-
}
|
|
3064
|
+
} & {
|
|
3065
3065
|
type: z.ZodLiteral<"example">;
|
|
3066
|
-
}
|
|
3066
|
+
}, "strip", z.ZodTypeAny, {
|
|
3067
3067
|
title: string;
|
|
3068
3068
|
type: "example";
|
|
3069
3069
|
name: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"apps.server.d.ts","sourceRoot":"","sources":["../../src/apps.server.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"apps.server.d.ts","sourceRoot":"","sources":["../../src/apps.server.ts"],"names":[],"mappings":"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"}
|
package/dist/esm/apps.server.js
CHANGED
|
@@ -221,9 +221,6 @@ export function setModifiedTimesForAppDirs(...filePaths) {
|
|
|
221
221
|
if (appDir) {
|
|
222
222
|
modifiedTimes.set(appDir, now);
|
|
223
223
|
}
|
|
224
|
-
else {
|
|
225
|
-
console.warn(`filePath ${filePath} does not match any app dir`);
|
|
226
|
-
}
|
|
227
224
|
}
|
|
228
225
|
}
|
|
229
226
|
export function getForceFreshForDir(cacheEntry, ...dirs) {
|