@epic-web/workshop-utils 6.15.0 → 6.15.2
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 +244 -244
- package/dist/esm/apps.server.d.ts.map +1 -1
- package/dist/esm/apps.server.js +2 -5
- package/dist/esm/apps.server.js.map +1 -1
- package/dist/esm/cache.server.d.ts +27 -27
- package/dist/esm/cache.server.d.ts.map +1 -1
- package/dist/esm/cache.server.js +3 -1
- package/dist/esm/cache.server.js.map +1 -1
- package/dist/esm/compile-mdx.server.d.ts +1 -0
- package/dist/esm/compile-mdx.server.d.ts.map +1 -1
- package/dist/esm/compile-mdx.server.js +1 -0
- package/dist/esm/compile-mdx.server.js.map +1 -1
- package/dist/esm/config.server.d.ts +6 -7
- package/dist/esm/config.server.d.ts.map +1 -1
- package/dist/esm/config.server.js +4 -3
- package/dist/esm/config.server.js.map +1 -1
- package/dist/esm/db.server.d.ts +1 -0
- package/dist/esm/db.server.d.ts.map +1 -1
- package/dist/esm/db.server.js +1 -0
- package/dist/esm/db.server.js.map +1 -1
- package/dist/esm/diff.server.d.ts.map +1 -1
- package/dist/esm/diff.server.js +2 -0
- package/dist/esm/diff.server.js.map +1 -1
- package/dist/esm/env.server.d.ts +6 -0
- package/dist/esm/env.server.d.ts.map +1 -1
- package/dist/esm/env.server.js +6 -0
- package/dist/esm/env.server.js.map +1 -1
- package/dist/esm/epic-api.server.d.ts +2 -2
- package/dist/esm/epic-api.server.d.ts.map +1 -1
- package/dist/esm/epic-api.server.js +2 -0
- package/dist/esm/epic-api.server.js.map +1 -1
- package/dist/esm/git.server.d.ts +1 -0
- package/dist/esm/git.server.d.ts.map +1 -1
- package/dist/esm/git.server.js +1 -0
- package/dist/esm/git.server.js.map +1 -1
- package/dist/esm/init-env.d.ts +16 -0
- package/dist/esm/init-env.d.ts.map +1 -0
- package/dist/esm/init-env.js +6 -0
- package/dist/esm/init-env.js.map +1 -0
- package/dist/esm/modified-time.server.d.ts +1 -0
- package/dist/esm/modified-time.server.d.ts.map +1 -1
- package/dist/esm/modified-time.server.js +1 -0
- package/dist/esm/modified-time.server.js.map +1 -1
- package/dist/esm/notifications.server.d.ts +3 -3
- package/dist/esm/notifications.server.d.ts.map +1 -1
- package/dist/esm/notifications.server.js +2 -0
- package/dist/esm/notifications.server.js.map +1 -1
- package/dist/esm/playwright.server.d.ts +1 -0
- package/dist/esm/playwright.server.d.ts.map +1 -1
- package/dist/esm/playwright.server.js +1 -0
- package/dist/esm/playwright.server.js.map +1 -1
- package/dist/esm/process-manager.server.d.ts +1 -0
- package/dist/esm/process-manager.server.d.ts.map +1 -1
- package/dist/esm/process-manager.server.js +1 -0
- package/dist/esm/process-manager.server.js.map +1 -1
- package/dist/esm/request-context.server.d.ts +1 -0
- package/dist/esm/request-context.server.d.ts.map +1 -1
- package/dist/esm/request-context.server.js +1 -0
- package/dist/esm/request-context.server.js.map +1 -1
- package/dist/esm/timing.server.d.ts +1 -0
- package/dist/esm/timing.server.d.ts.map +1 -1
- package/dist/esm/timing.server.js +1 -0
- package/dist/esm/timing.server.js.map +1 -1
- package/dist/esm/user.server.d.ts.map +1 -1
- package/dist/esm/user.server.js +2 -0
- package/dist/esm/user.server.js.map +1 -1
- package/dist/esm/utils.d.ts +1 -0
- package/dist/esm/utils.d.ts.map +1 -1
- package/dist/esm/utils.js +1 -0
- package/dist/esm/utils.js.map +1 -1
- package/dist/esm/utils.server.d.ts +1 -0
- package/dist/esm/utils.server.d.ts.map +1 -1
- package/dist/esm/utils.server.js +1 -0
- package/dist/esm/utils.server.js.map +1 -1
- package/package.json +1 -1
|
@@ -83,8 +83,6 @@ declare const BaseExerciseStepAppSchema: z.ZodObject<{
|
|
|
83
83
|
exerciseNumber: z.ZodNumber;
|
|
84
84
|
stepNumber: z.ZodNumber;
|
|
85
85
|
}, "strip", z.ZodTypeAny, {
|
|
86
|
-
title: string;
|
|
87
|
-
name: string;
|
|
88
86
|
test: {
|
|
89
87
|
type: "browser";
|
|
90
88
|
pathname: string;
|
|
@@ -95,6 +93,8 @@ declare const BaseExerciseStepAppSchema: z.ZodObject<{
|
|
|
95
93
|
} | {
|
|
96
94
|
type: "none";
|
|
97
95
|
};
|
|
96
|
+
title: string;
|
|
97
|
+
name: string;
|
|
98
98
|
fullPath: string;
|
|
99
99
|
dev: {
|
|
100
100
|
type: "browser";
|
|
@@ -114,8 +114,6 @@ declare const BaseExerciseStepAppSchema: z.ZodObject<{
|
|
|
114
114
|
instructionsCode?: string | undefined;
|
|
115
115
|
epicVideoEmbeds?: string[] | undefined;
|
|
116
116
|
}, {
|
|
117
|
-
title: string;
|
|
118
|
-
name: string;
|
|
119
117
|
test: {
|
|
120
118
|
type: "browser";
|
|
121
119
|
pathname: string;
|
|
@@ -126,6 +124,8 @@ declare const BaseExerciseStepAppSchema: z.ZodObject<{
|
|
|
126
124
|
} | {
|
|
127
125
|
type: "none";
|
|
128
126
|
};
|
|
127
|
+
title: string;
|
|
128
|
+
name: string;
|
|
129
129
|
fullPath: string;
|
|
130
130
|
dev: {
|
|
131
131
|
type: "browser";
|
|
@@ -220,9 +220,6 @@ declare const ProblemAppSchema: z.ZodObject<{
|
|
|
220
220
|
type: z.ZodLiteral<"problem">;
|
|
221
221
|
solutionName: z.ZodNullable<z.ZodString>;
|
|
222
222
|
}, "strip", z.ZodTypeAny, {
|
|
223
|
-
title: string;
|
|
224
|
-
type: "problem";
|
|
225
|
-
name: string;
|
|
226
223
|
test: {
|
|
227
224
|
type: "browser";
|
|
228
225
|
pathname: string;
|
|
@@ -233,6 +230,9 @@ declare const ProblemAppSchema: z.ZodObject<{
|
|
|
233
230
|
} | {
|
|
234
231
|
type: "none";
|
|
235
232
|
};
|
|
233
|
+
type: "problem";
|
|
234
|
+
title: string;
|
|
235
|
+
name: string;
|
|
236
236
|
fullPath: string;
|
|
237
237
|
dev: {
|
|
238
238
|
type: "browser";
|
|
@@ -253,9 +253,6 @@ declare const ProblemAppSchema: z.ZodObject<{
|
|
|
253
253
|
instructionsCode?: string | undefined;
|
|
254
254
|
epicVideoEmbeds?: string[] | undefined;
|
|
255
255
|
}, {
|
|
256
|
-
title: string;
|
|
257
|
-
type: "problem";
|
|
258
|
-
name: string;
|
|
259
256
|
test: {
|
|
260
257
|
type: "browser";
|
|
261
258
|
pathname: string;
|
|
@@ -266,6 +263,9 @@ declare const ProblemAppSchema: z.ZodObject<{
|
|
|
266
263
|
} | {
|
|
267
264
|
type: "none";
|
|
268
265
|
};
|
|
266
|
+
type: "problem";
|
|
267
|
+
title: string;
|
|
268
|
+
name: string;
|
|
269
269
|
fullPath: string;
|
|
270
270
|
dev: {
|
|
271
271
|
type: "browser";
|
|
@@ -361,9 +361,6 @@ declare const SolutionAppSchema: z.ZodObject<{
|
|
|
361
361
|
type: z.ZodLiteral<"solution">;
|
|
362
362
|
problemName: z.ZodNullable<z.ZodString>;
|
|
363
363
|
}, "strip", z.ZodTypeAny, {
|
|
364
|
-
title: string;
|
|
365
|
-
type: "solution";
|
|
366
|
-
name: string;
|
|
367
364
|
test: {
|
|
368
365
|
type: "browser";
|
|
369
366
|
pathname: string;
|
|
@@ -374,6 +371,9 @@ declare const SolutionAppSchema: z.ZodObject<{
|
|
|
374
371
|
} | {
|
|
375
372
|
type: "none";
|
|
376
373
|
};
|
|
374
|
+
type: "solution";
|
|
375
|
+
title: string;
|
|
376
|
+
name: string;
|
|
377
377
|
fullPath: string;
|
|
378
378
|
dev: {
|
|
379
379
|
type: "browser";
|
|
@@ -394,9 +394,6 @@ declare const SolutionAppSchema: z.ZodObject<{
|
|
|
394
394
|
instructionsCode?: string | undefined;
|
|
395
395
|
epicVideoEmbeds?: string[] | undefined;
|
|
396
396
|
}, {
|
|
397
|
-
title: string;
|
|
398
|
-
type: "solution";
|
|
399
|
-
name: string;
|
|
400
397
|
test: {
|
|
401
398
|
type: "browser";
|
|
402
399
|
pathname: string;
|
|
@@ -407,6 +404,9 @@ declare const SolutionAppSchema: z.ZodObject<{
|
|
|
407
404
|
} | {
|
|
408
405
|
type: "none";
|
|
409
406
|
};
|
|
407
|
+
type: "solution";
|
|
408
|
+
title: string;
|
|
409
|
+
name: string;
|
|
410
410
|
fullPath: string;
|
|
411
411
|
dev: {
|
|
412
412
|
type: "browser";
|
|
@@ -498,9 +498,6 @@ declare const ExampleAppSchema: z.ZodObject<{
|
|
|
498
498
|
} & {
|
|
499
499
|
type: z.ZodLiteral<"example">;
|
|
500
500
|
}, "strip", z.ZodTypeAny, {
|
|
501
|
-
title: string;
|
|
502
|
-
type: "example";
|
|
503
|
-
name: string;
|
|
504
501
|
test: {
|
|
505
502
|
type: "browser";
|
|
506
503
|
pathname: string;
|
|
@@ -511,6 +508,9 @@ declare const ExampleAppSchema: z.ZodObject<{
|
|
|
511
508
|
} | {
|
|
512
509
|
type: "none";
|
|
513
510
|
};
|
|
511
|
+
type: "example";
|
|
512
|
+
title: string;
|
|
513
|
+
name: string;
|
|
514
514
|
fullPath: string;
|
|
515
515
|
dev: {
|
|
516
516
|
type: "browser";
|
|
@@ -528,9 +528,6 @@ declare const ExampleAppSchema: z.ZodObject<{
|
|
|
528
528
|
instructionsCode?: string | undefined;
|
|
529
529
|
epicVideoEmbeds?: string[] | undefined;
|
|
530
530
|
}, {
|
|
531
|
-
title: string;
|
|
532
|
-
type: "example";
|
|
533
|
-
name: string;
|
|
534
531
|
test: {
|
|
535
532
|
type: "browser";
|
|
536
533
|
pathname: string;
|
|
@@ -541,6 +538,9 @@ declare const ExampleAppSchema: z.ZodObject<{
|
|
|
541
538
|
} | {
|
|
542
539
|
type: "none";
|
|
543
540
|
};
|
|
541
|
+
type: "example";
|
|
542
|
+
title: string;
|
|
543
|
+
name: string;
|
|
544
544
|
fullPath: string;
|
|
545
545
|
dev: {
|
|
546
546
|
type: "browser";
|
|
@@ -631,9 +631,6 @@ declare const PlaygroundAppSchema: z.ZodObject<{
|
|
|
631
631
|
appName: z.ZodString;
|
|
632
632
|
isUpToDate: z.ZodBoolean;
|
|
633
633
|
}, "strip", z.ZodTypeAny, {
|
|
634
|
-
title: string;
|
|
635
|
-
type: "playground";
|
|
636
|
-
name: string;
|
|
637
634
|
test: {
|
|
638
635
|
type: "browser";
|
|
639
636
|
pathname: string;
|
|
@@ -644,6 +641,9 @@ declare const PlaygroundAppSchema: z.ZodObject<{
|
|
|
644
641
|
} | {
|
|
645
642
|
type: "none";
|
|
646
643
|
};
|
|
644
|
+
type: "playground";
|
|
645
|
+
title: string;
|
|
646
|
+
name: string;
|
|
647
647
|
fullPath: string;
|
|
648
648
|
dev: {
|
|
649
649
|
type: "browser";
|
|
@@ -663,9 +663,6 @@ declare const PlaygroundAppSchema: z.ZodObject<{
|
|
|
663
663
|
instructionsCode?: string | undefined;
|
|
664
664
|
epicVideoEmbeds?: string[] | undefined;
|
|
665
665
|
}, {
|
|
666
|
-
title: string;
|
|
667
|
-
type: "playground";
|
|
668
|
-
name: string;
|
|
669
666
|
test: {
|
|
670
667
|
type: "browser";
|
|
671
668
|
pathname: string;
|
|
@@ -676,6 +673,9 @@ declare const PlaygroundAppSchema: z.ZodObject<{
|
|
|
676
673
|
} | {
|
|
677
674
|
type: "none";
|
|
678
675
|
};
|
|
676
|
+
type: "playground";
|
|
677
|
+
title: string;
|
|
678
|
+
name: string;
|
|
679
679
|
fullPath: string;
|
|
680
680
|
dev: {
|
|
681
681
|
type: "browser";
|
|
@@ -785,9 +785,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
785
785
|
type: z.ZodLiteral<"problem">;
|
|
786
786
|
solutionName: z.ZodNullable<z.ZodString>;
|
|
787
787
|
}, "strip", z.ZodTypeAny, {
|
|
788
|
-
title: string;
|
|
789
|
-
type: "problem";
|
|
790
|
-
name: string;
|
|
791
788
|
test: {
|
|
792
789
|
type: "browser";
|
|
793
790
|
pathname: string;
|
|
@@ -798,6 +795,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
798
795
|
} | {
|
|
799
796
|
type: "none";
|
|
800
797
|
};
|
|
798
|
+
type: "problem";
|
|
799
|
+
title: string;
|
|
800
|
+
name: string;
|
|
801
801
|
fullPath: string;
|
|
802
802
|
dev: {
|
|
803
803
|
type: "browser";
|
|
@@ -818,9 +818,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
818
818
|
instructionsCode?: string | undefined;
|
|
819
819
|
epicVideoEmbeds?: string[] | undefined;
|
|
820
820
|
}, {
|
|
821
|
-
title: string;
|
|
822
|
-
type: "problem";
|
|
823
|
-
name: string;
|
|
824
821
|
test: {
|
|
825
822
|
type: "browser";
|
|
826
823
|
pathname: string;
|
|
@@ -831,6 +828,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
831
828
|
} | {
|
|
832
829
|
type: "none";
|
|
833
830
|
};
|
|
831
|
+
type: "problem";
|
|
832
|
+
title: string;
|
|
833
|
+
name: string;
|
|
834
834
|
fullPath: string;
|
|
835
835
|
dev: {
|
|
836
836
|
type: "browser";
|
|
@@ -926,9 +926,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
926
926
|
type: z.ZodLiteral<"solution">;
|
|
927
927
|
problemName: z.ZodNullable<z.ZodString>;
|
|
928
928
|
}, "strip", z.ZodTypeAny, {
|
|
929
|
-
title: string;
|
|
930
|
-
type: "solution";
|
|
931
|
-
name: string;
|
|
932
929
|
test: {
|
|
933
930
|
type: "browser";
|
|
934
931
|
pathname: string;
|
|
@@ -939,6 +936,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
939
936
|
} | {
|
|
940
937
|
type: "none";
|
|
941
938
|
};
|
|
939
|
+
type: "solution";
|
|
940
|
+
title: string;
|
|
941
|
+
name: string;
|
|
942
942
|
fullPath: string;
|
|
943
943
|
dev: {
|
|
944
944
|
type: "browser";
|
|
@@ -959,9 +959,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
959
959
|
instructionsCode?: string | undefined;
|
|
960
960
|
epicVideoEmbeds?: string[] | undefined;
|
|
961
961
|
}, {
|
|
962
|
-
title: string;
|
|
963
|
-
type: "solution";
|
|
964
|
-
name: string;
|
|
965
962
|
test: {
|
|
966
963
|
type: "browser";
|
|
967
964
|
pathname: string;
|
|
@@ -972,6 +969,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
972
969
|
} | {
|
|
973
970
|
type: "none";
|
|
974
971
|
};
|
|
972
|
+
type: "solution";
|
|
973
|
+
title: string;
|
|
974
|
+
name: string;
|
|
975
975
|
fullPath: string;
|
|
976
976
|
dev: {
|
|
977
977
|
type: "browser";
|
|
@@ -995,9 +995,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
995
995
|
}, "strip", z.ZodTypeAny, {
|
|
996
996
|
stepNumber: number;
|
|
997
997
|
solution: {
|
|
998
|
-
title: string;
|
|
999
|
-
type: "solution";
|
|
1000
|
-
name: string;
|
|
1001
998
|
test: {
|
|
1002
999
|
type: "browser";
|
|
1003
1000
|
pathname: string;
|
|
@@ -1008,6 +1005,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1008
1005
|
} | {
|
|
1009
1006
|
type: "none";
|
|
1010
1007
|
};
|
|
1008
|
+
type: "solution";
|
|
1009
|
+
title: string;
|
|
1010
|
+
name: string;
|
|
1011
1011
|
fullPath: string;
|
|
1012
1012
|
dev: {
|
|
1013
1013
|
type: "browser";
|
|
@@ -1029,9 +1029,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1029
1029
|
epicVideoEmbeds?: string[] | undefined;
|
|
1030
1030
|
};
|
|
1031
1031
|
problem: {
|
|
1032
|
-
title: string;
|
|
1033
|
-
type: "problem";
|
|
1034
|
-
name: string;
|
|
1035
1032
|
test: {
|
|
1036
1033
|
type: "browser";
|
|
1037
1034
|
pathname: string;
|
|
@@ -1042,6 +1039,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1042
1039
|
} | {
|
|
1043
1040
|
type: "none";
|
|
1044
1041
|
};
|
|
1042
|
+
type: "problem";
|
|
1043
|
+
title: string;
|
|
1044
|
+
name: string;
|
|
1045
1045
|
fullPath: string;
|
|
1046
1046
|
dev: {
|
|
1047
1047
|
type: "browser";
|
|
@@ -1065,9 +1065,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1065
1065
|
}, {
|
|
1066
1066
|
stepNumber: number;
|
|
1067
1067
|
solution: {
|
|
1068
|
-
title: string;
|
|
1069
|
-
type: "solution";
|
|
1070
|
-
name: string;
|
|
1071
1068
|
test: {
|
|
1072
1069
|
type: "browser";
|
|
1073
1070
|
pathname: string;
|
|
@@ -1078,6 +1075,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1078
1075
|
} | {
|
|
1079
1076
|
type: "none";
|
|
1080
1077
|
};
|
|
1078
|
+
type: "solution";
|
|
1079
|
+
title: string;
|
|
1080
|
+
name: string;
|
|
1081
1081
|
fullPath: string;
|
|
1082
1082
|
dev: {
|
|
1083
1083
|
type: "browser";
|
|
@@ -1099,9 +1099,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1099
1099
|
epicVideoEmbeds?: string[] | undefined;
|
|
1100
1100
|
};
|
|
1101
1101
|
problem: {
|
|
1102
|
-
title: string;
|
|
1103
|
-
type: "problem";
|
|
1104
|
-
name: string;
|
|
1105
1102
|
test: {
|
|
1106
1103
|
type: "browser";
|
|
1107
1104
|
pathname: string;
|
|
@@ -1112,6 +1109,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1112
1109
|
} | {
|
|
1113
1110
|
type: "none";
|
|
1114
1111
|
};
|
|
1112
|
+
type: "problem";
|
|
1113
|
+
title: string;
|
|
1114
|
+
name: string;
|
|
1115
1115
|
fullPath: string;
|
|
1116
1116
|
dev: {
|
|
1117
1117
|
type: "browser";
|
|
@@ -1209,9 +1209,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1209
1209
|
type: z.ZodLiteral<"problem">;
|
|
1210
1210
|
solutionName: z.ZodNullable<z.ZodString>;
|
|
1211
1211
|
}, "strip", z.ZodTypeAny, {
|
|
1212
|
-
title: string;
|
|
1213
|
-
type: "problem";
|
|
1214
|
-
name: string;
|
|
1215
1212
|
test: {
|
|
1216
1213
|
type: "browser";
|
|
1217
1214
|
pathname: string;
|
|
@@ -1222,6 +1219,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1222
1219
|
} | {
|
|
1223
1220
|
type: "none";
|
|
1224
1221
|
};
|
|
1222
|
+
type: "problem";
|
|
1223
|
+
title: string;
|
|
1224
|
+
name: string;
|
|
1225
1225
|
fullPath: string;
|
|
1226
1226
|
dev: {
|
|
1227
1227
|
type: "browser";
|
|
@@ -1242,9 +1242,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1242
1242
|
instructionsCode?: string | undefined;
|
|
1243
1243
|
epicVideoEmbeds?: string[] | undefined;
|
|
1244
1244
|
}, {
|
|
1245
|
-
title: string;
|
|
1246
|
-
type: "problem";
|
|
1247
|
-
name: string;
|
|
1248
1245
|
test: {
|
|
1249
1246
|
type: "browser";
|
|
1250
1247
|
pathname: string;
|
|
@@ -1255,6 +1252,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1255
1252
|
} | {
|
|
1256
1253
|
type: "none";
|
|
1257
1254
|
};
|
|
1255
|
+
type: "problem";
|
|
1256
|
+
title: string;
|
|
1257
|
+
name: string;
|
|
1258
1258
|
fullPath: string;
|
|
1259
1259
|
dev: {
|
|
1260
1260
|
type: "browser";
|
|
@@ -1279,9 +1279,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1279
1279
|
}, "strip", z.ZodTypeAny, {
|
|
1280
1280
|
stepNumber: number;
|
|
1281
1281
|
problem: {
|
|
1282
|
-
title: string;
|
|
1283
|
-
type: "problem";
|
|
1284
|
-
name: string;
|
|
1285
1282
|
test: {
|
|
1286
1283
|
type: "browser";
|
|
1287
1284
|
pathname: string;
|
|
@@ -1292,6 +1289,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1292
1289
|
} | {
|
|
1293
1290
|
type: "none";
|
|
1294
1291
|
};
|
|
1292
|
+
type: "problem";
|
|
1293
|
+
title: string;
|
|
1294
|
+
name: string;
|
|
1295
1295
|
fullPath: string;
|
|
1296
1296
|
dev: {
|
|
1297
1297
|
type: "browser";
|
|
@@ -1316,9 +1316,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1316
1316
|
}, {
|
|
1317
1317
|
stepNumber: number;
|
|
1318
1318
|
problem: {
|
|
1319
|
-
title: string;
|
|
1320
|
-
type: "problem";
|
|
1321
|
-
name: string;
|
|
1322
1319
|
test: {
|
|
1323
1320
|
type: "browser";
|
|
1324
1321
|
pathname: string;
|
|
@@ -1329,6 +1326,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1329
1326
|
} | {
|
|
1330
1327
|
type: "none";
|
|
1331
1328
|
};
|
|
1329
|
+
type: "problem";
|
|
1330
|
+
title: string;
|
|
1331
|
+
name: string;
|
|
1332
1332
|
fullPath: string;
|
|
1333
1333
|
dev: {
|
|
1334
1334
|
type: "browser";
|
|
@@ -1428,9 +1428,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1428
1428
|
type: z.ZodLiteral<"solution">;
|
|
1429
1429
|
problemName: z.ZodNullable<z.ZodString>;
|
|
1430
1430
|
}, "strip", z.ZodTypeAny, {
|
|
1431
|
-
title: string;
|
|
1432
|
-
type: "solution";
|
|
1433
|
-
name: string;
|
|
1434
1431
|
test: {
|
|
1435
1432
|
type: "browser";
|
|
1436
1433
|
pathname: string;
|
|
@@ -1441,6 +1438,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1441
1438
|
} | {
|
|
1442
1439
|
type: "none";
|
|
1443
1440
|
};
|
|
1441
|
+
type: "solution";
|
|
1442
|
+
title: string;
|
|
1443
|
+
name: string;
|
|
1444
1444
|
fullPath: string;
|
|
1445
1445
|
dev: {
|
|
1446
1446
|
type: "browser";
|
|
@@ -1461,9 +1461,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1461
1461
|
instructionsCode?: string | undefined;
|
|
1462
1462
|
epicVideoEmbeds?: string[] | undefined;
|
|
1463
1463
|
}, {
|
|
1464
|
-
title: string;
|
|
1465
|
-
type: "solution";
|
|
1466
|
-
name: string;
|
|
1467
1464
|
test: {
|
|
1468
1465
|
type: "browser";
|
|
1469
1466
|
pathname: string;
|
|
@@ -1474,6 +1471,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1474
1471
|
} | {
|
|
1475
1472
|
type: "none";
|
|
1476
1473
|
};
|
|
1474
|
+
type: "solution";
|
|
1475
|
+
title: string;
|
|
1476
|
+
name: string;
|
|
1477
1477
|
fullPath: string;
|
|
1478
1478
|
dev: {
|
|
1479
1479
|
type: "browser";
|
|
@@ -1497,9 +1497,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1497
1497
|
}, "strip", z.ZodTypeAny, {
|
|
1498
1498
|
stepNumber: number;
|
|
1499
1499
|
solution: {
|
|
1500
|
-
title: string;
|
|
1501
|
-
type: "solution";
|
|
1502
|
-
name: string;
|
|
1503
1500
|
test: {
|
|
1504
1501
|
type: "browser";
|
|
1505
1502
|
pathname: string;
|
|
@@ -1510,6 +1507,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1510
1507
|
} | {
|
|
1511
1508
|
type: "none";
|
|
1512
1509
|
};
|
|
1510
|
+
type: "solution";
|
|
1511
|
+
title: string;
|
|
1512
|
+
name: string;
|
|
1513
1513
|
fullPath: string;
|
|
1514
1514
|
dev: {
|
|
1515
1515
|
type: "browser";
|
|
@@ -1534,9 +1534,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1534
1534
|
}, {
|
|
1535
1535
|
stepNumber: number;
|
|
1536
1536
|
solution: {
|
|
1537
|
-
title: string;
|
|
1538
|
-
type: "solution";
|
|
1539
|
-
name: string;
|
|
1540
1537
|
test: {
|
|
1541
1538
|
type: "browser";
|
|
1542
1539
|
pathname: string;
|
|
@@ -1547,6 +1544,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1547
1544
|
} | {
|
|
1548
1545
|
type: "none";
|
|
1549
1546
|
};
|
|
1547
|
+
type: "solution";
|
|
1548
|
+
title: string;
|
|
1549
|
+
name: string;
|
|
1550
1550
|
fullPath: string;
|
|
1551
1551
|
dev: {
|
|
1552
1552
|
type: "browser";
|
|
@@ -1644,9 +1644,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1644
1644
|
type: z.ZodLiteral<"problem">;
|
|
1645
1645
|
solutionName: z.ZodNullable<z.ZodString>;
|
|
1646
1646
|
}, "strip", z.ZodTypeAny, {
|
|
1647
|
-
title: string;
|
|
1648
|
-
type: "problem";
|
|
1649
|
-
name: string;
|
|
1650
1647
|
test: {
|
|
1651
1648
|
type: "browser";
|
|
1652
1649
|
pathname: string;
|
|
@@ -1657,6 +1654,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1657
1654
|
} | {
|
|
1658
1655
|
type: "none";
|
|
1659
1656
|
};
|
|
1657
|
+
type: "problem";
|
|
1658
|
+
title: string;
|
|
1659
|
+
name: string;
|
|
1660
1660
|
fullPath: string;
|
|
1661
1661
|
dev: {
|
|
1662
1662
|
type: "browser";
|
|
@@ -1677,9 +1677,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1677
1677
|
instructionsCode?: string | undefined;
|
|
1678
1678
|
epicVideoEmbeds?: string[] | undefined;
|
|
1679
1679
|
}, {
|
|
1680
|
-
title: string;
|
|
1681
|
-
type: "problem";
|
|
1682
|
-
name: string;
|
|
1683
1680
|
test: {
|
|
1684
1681
|
type: "browser";
|
|
1685
1682
|
pathname: string;
|
|
@@ -1690,6 +1687,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1690
1687
|
} | {
|
|
1691
1688
|
type: "none";
|
|
1692
1689
|
};
|
|
1690
|
+
type: "problem";
|
|
1691
|
+
title: string;
|
|
1692
|
+
name: string;
|
|
1693
1693
|
fullPath: string;
|
|
1694
1694
|
dev: {
|
|
1695
1695
|
type: "browser";
|
|
@@ -1785,9 +1785,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1785
1785
|
type: z.ZodLiteral<"solution">;
|
|
1786
1786
|
problemName: z.ZodNullable<z.ZodString>;
|
|
1787
1787
|
}, "strip", z.ZodTypeAny, {
|
|
1788
|
-
title: string;
|
|
1789
|
-
type: "solution";
|
|
1790
|
-
name: string;
|
|
1791
1788
|
test: {
|
|
1792
1789
|
type: "browser";
|
|
1793
1790
|
pathname: string;
|
|
@@ -1798,6 +1795,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1798
1795
|
} | {
|
|
1799
1796
|
type: "none";
|
|
1800
1797
|
};
|
|
1798
|
+
type: "solution";
|
|
1799
|
+
title: string;
|
|
1800
|
+
name: string;
|
|
1801
1801
|
fullPath: string;
|
|
1802
1802
|
dev: {
|
|
1803
1803
|
type: "browser";
|
|
@@ -1818,9 +1818,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1818
1818
|
instructionsCode?: string | undefined;
|
|
1819
1819
|
epicVideoEmbeds?: string[] | undefined;
|
|
1820
1820
|
}, {
|
|
1821
|
-
title: string;
|
|
1822
|
-
type: "solution";
|
|
1823
|
-
name: string;
|
|
1824
1821
|
test: {
|
|
1825
1822
|
type: "browser";
|
|
1826
1823
|
pathname: string;
|
|
@@ -1831,6 +1828,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1831
1828
|
} | {
|
|
1832
1829
|
type: "none";
|
|
1833
1830
|
};
|
|
1831
|
+
type: "solution";
|
|
1832
|
+
title: string;
|
|
1833
|
+
name: string;
|
|
1834
1834
|
fullPath: string;
|
|
1835
1835
|
dev: {
|
|
1836
1836
|
type: "browser";
|
|
@@ -1859,9 +1859,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1859
1859
|
steps: ({
|
|
1860
1860
|
stepNumber: number;
|
|
1861
1861
|
solution: {
|
|
1862
|
-
title: string;
|
|
1863
|
-
type: "solution";
|
|
1864
|
-
name: string;
|
|
1865
1862
|
test: {
|
|
1866
1863
|
type: "browser";
|
|
1867
1864
|
pathname: string;
|
|
@@ -1872,6 +1869,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1872
1869
|
} | {
|
|
1873
1870
|
type: "none";
|
|
1874
1871
|
};
|
|
1872
|
+
type: "solution";
|
|
1873
|
+
title: string;
|
|
1874
|
+
name: string;
|
|
1875
1875
|
fullPath: string;
|
|
1876
1876
|
dev: {
|
|
1877
1877
|
type: "browser";
|
|
@@ -1893,9 +1893,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1893
1893
|
epicVideoEmbeds?: string[] | undefined;
|
|
1894
1894
|
};
|
|
1895
1895
|
problem: {
|
|
1896
|
-
title: string;
|
|
1897
|
-
type: "problem";
|
|
1898
|
-
name: string;
|
|
1899
1896
|
test: {
|
|
1900
1897
|
type: "browser";
|
|
1901
1898
|
pathname: string;
|
|
@@ -1906,6 +1903,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1906
1903
|
} | {
|
|
1907
1904
|
type: "none";
|
|
1908
1905
|
};
|
|
1906
|
+
type: "problem";
|
|
1907
|
+
title: string;
|
|
1908
|
+
name: string;
|
|
1909
1909
|
fullPath: string;
|
|
1910
1910
|
dev: {
|
|
1911
1911
|
type: "browser";
|
|
@@ -1929,9 +1929,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1929
1929
|
} | {
|
|
1930
1930
|
stepNumber: number;
|
|
1931
1931
|
problem: {
|
|
1932
|
-
title: string;
|
|
1933
|
-
type: "problem";
|
|
1934
|
-
name: string;
|
|
1935
1932
|
test: {
|
|
1936
1933
|
type: "browser";
|
|
1937
1934
|
pathname: string;
|
|
@@ -1942,6 +1939,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1942
1939
|
} | {
|
|
1943
1940
|
type: "none";
|
|
1944
1941
|
};
|
|
1942
|
+
type: "problem";
|
|
1943
|
+
title: string;
|
|
1944
|
+
name: string;
|
|
1945
1945
|
fullPath: string;
|
|
1946
1946
|
dev: {
|
|
1947
1947
|
type: "browser";
|
|
@@ -1966,9 +1966,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1966
1966
|
} | {
|
|
1967
1967
|
stepNumber: number;
|
|
1968
1968
|
solution: {
|
|
1969
|
-
title: string;
|
|
1970
|
-
type: "solution";
|
|
1971
|
-
name: string;
|
|
1972
1969
|
test: {
|
|
1973
1970
|
type: "browser";
|
|
1974
1971
|
pathname: string;
|
|
@@ -1979,6 +1976,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
1979
1976
|
} | {
|
|
1980
1977
|
type: "none";
|
|
1981
1978
|
};
|
|
1979
|
+
type: "solution";
|
|
1980
|
+
title: string;
|
|
1981
|
+
name: string;
|
|
1982
1982
|
fullPath: string;
|
|
1983
1983
|
dev: {
|
|
1984
1984
|
type: "browser";
|
|
@@ -2002,9 +2002,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
2002
2002
|
problem?: undefined;
|
|
2003
2003
|
})[];
|
|
2004
2004
|
problems: {
|
|
2005
|
-
title: string;
|
|
2006
|
-
type: "problem";
|
|
2007
|
-
name: string;
|
|
2008
2005
|
test: {
|
|
2009
2006
|
type: "browser";
|
|
2010
2007
|
pathname: string;
|
|
@@ -2015,6 +2012,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
2015
2012
|
} | {
|
|
2016
2013
|
type: "none";
|
|
2017
2014
|
};
|
|
2015
|
+
type: "problem";
|
|
2016
|
+
title: string;
|
|
2017
|
+
name: string;
|
|
2018
2018
|
fullPath: string;
|
|
2019
2019
|
dev: {
|
|
2020
2020
|
type: "browser";
|
|
@@ -2036,9 +2036,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
2036
2036
|
epicVideoEmbeds?: string[] | undefined;
|
|
2037
2037
|
}[];
|
|
2038
2038
|
solutions: {
|
|
2039
|
-
title: string;
|
|
2040
|
-
type: "solution";
|
|
2041
|
-
name: string;
|
|
2042
2039
|
test: {
|
|
2043
2040
|
type: "browser";
|
|
2044
2041
|
pathname: string;
|
|
@@ -2049,6 +2046,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
2049
2046
|
} | {
|
|
2050
2047
|
type: "none";
|
|
2051
2048
|
};
|
|
2049
|
+
type: "solution";
|
|
2050
|
+
title: string;
|
|
2051
|
+
name: string;
|
|
2052
2052
|
fullPath: string;
|
|
2053
2053
|
dev: {
|
|
2054
2054
|
type: "browser";
|
|
@@ -2081,9 +2081,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
2081
2081
|
steps: ({
|
|
2082
2082
|
stepNumber: number;
|
|
2083
2083
|
solution: {
|
|
2084
|
-
title: string;
|
|
2085
|
-
type: "solution";
|
|
2086
|
-
name: string;
|
|
2087
2084
|
test: {
|
|
2088
2085
|
type: "browser";
|
|
2089
2086
|
pathname: string;
|
|
@@ -2094,6 +2091,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
2094
2091
|
} | {
|
|
2095
2092
|
type: "none";
|
|
2096
2093
|
};
|
|
2094
|
+
type: "solution";
|
|
2095
|
+
title: string;
|
|
2096
|
+
name: string;
|
|
2097
2097
|
fullPath: string;
|
|
2098
2098
|
dev: {
|
|
2099
2099
|
type: "browser";
|
|
@@ -2115,9 +2115,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
2115
2115
|
epicVideoEmbeds?: string[] | undefined;
|
|
2116
2116
|
};
|
|
2117
2117
|
problem: {
|
|
2118
|
-
title: string;
|
|
2119
|
-
type: "problem";
|
|
2120
|
-
name: string;
|
|
2121
2118
|
test: {
|
|
2122
2119
|
type: "browser";
|
|
2123
2120
|
pathname: string;
|
|
@@ -2128,6 +2125,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
2128
2125
|
} | {
|
|
2129
2126
|
type: "none";
|
|
2130
2127
|
};
|
|
2128
|
+
type: "problem";
|
|
2129
|
+
title: string;
|
|
2130
|
+
name: string;
|
|
2131
2131
|
fullPath: string;
|
|
2132
2132
|
dev: {
|
|
2133
2133
|
type: "browser";
|
|
@@ -2151,9 +2151,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
2151
2151
|
} | {
|
|
2152
2152
|
stepNumber: number;
|
|
2153
2153
|
problem: {
|
|
2154
|
-
title: string;
|
|
2155
|
-
type: "problem";
|
|
2156
|
-
name: string;
|
|
2157
2154
|
test: {
|
|
2158
2155
|
type: "browser";
|
|
2159
2156
|
pathname: string;
|
|
@@ -2164,6 +2161,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
2164
2161
|
} | {
|
|
2165
2162
|
type: "none";
|
|
2166
2163
|
};
|
|
2164
|
+
type: "problem";
|
|
2165
|
+
title: string;
|
|
2166
|
+
name: string;
|
|
2167
2167
|
fullPath: string;
|
|
2168
2168
|
dev: {
|
|
2169
2169
|
type: "browser";
|
|
@@ -2188,9 +2188,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
2188
2188
|
} | {
|
|
2189
2189
|
stepNumber: number;
|
|
2190
2190
|
solution: {
|
|
2191
|
-
title: string;
|
|
2192
|
-
type: "solution";
|
|
2193
|
-
name: string;
|
|
2194
2191
|
test: {
|
|
2195
2192
|
type: "browser";
|
|
2196
2193
|
pathname: string;
|
|
@@ -2201,6 +2198,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
2201
2198
|
} | {
|
|
2202
2199
|
type: "none";
|
|
2203
2200
|
};
|
|
2201
|
+
type: "solution";
|
|
2202
|
+
title: string;
|
|
2203
|
+
name: string;
|
|
2204
2204
|
fullPath: string;
|
|
2205
2205
|
dev: {
|
|
2206
2206
|
type: "browser";
|
|
@@ -2224,9 +2224,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
2224
2224
|
problem?: undefined;
|
|
2225
2225
|
})[];
|
|
2226
2226
|
problems: {
|
|
2227
|
-
title: string;
|
|
2228
|
-
type: "problem";
|
|
2229
|
-
name: string;
|
|
2230
2227
|
test: {
|
|
2231
2228
|
type: "browser";
|
|
2232
2229
|
pathname: string;
|
|
@@ -2237,6 +2234,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
2237
2234
|
} | {
|
|
2238
2235
|
type: "none";
|
|
2239
2236
|
};
|
|
2237
|
+
type: "problem";
|
|
2238
|
+
title: string;
|
|
2239
|
+
name: string;
|
|
2240
2240
|
fullPath: string;
|
|
2241
2241
|
dev: {
|
|
2242
2242
|
type: "browser";
|
|
@@ -2258,9 +2258,6 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
2258
2258
|
epicVideoEmbeds?: string[] | undefined;
|
|
2259
2259
|
}[];
|
|
2260
2260
|
solutions: {
|
|
2261
|
-
title: string;
|
|
2262
|
-
type: "solution";
|
|
2263
|
-
name: string;
|
|
2264
2261
|
test: {
|
|
2265
2262
|
type: "browser";
|
|
2266
2263
|
pathname: string;
|
|
@@ -2271,6 +2268,9 @@ declare const ExerciseSchema: z.ZodObject<{
|
|
|
2271
2268
|
} | {
|
|
2272
2269
|
type: "none";
|
|
2273
2270
|
};
|
|
2271
|
+
type: "solution";
|
|
2272
|
+
title: string;
|
|
2273
|
+
name: string;
|
|
2274
2274
|
fullPath: string;
|
|
2275
2275
|
dev: {
|
|
2276
2276
|
type: "browser";
|
|
@@ -2371,9 +2371,6 @@ declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2371
2371
|
type: z.ZodLiteral<"problem">;
|
|
2372
2372
|
solutionName: z.ZodNullable<z.ZodString>;
|
|
2373
2373
|
}, "strip", z.ZodTypeAny, {
|
|
2374
|
-
title: string;
|
|
2375
|
-
type: "problem";
|
|
2376
|
-
name: string;
|
|
2377
2374
|
test: {
|
|
2378
2375
|
type: "browser";
|
|
2379
2376
|
pathname: string;
|
|
@@ -2384,6 +2381,9 @@ declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2384
2381
|
} | {
|
|
2385
2382
|
type: "none";
|
|
2386
2383
|
};
|
|
2384
|
+
type: "problem";
|
|
2385
|
+
title: string;
|
|
2386
|
+
name: string;
|
|
2387
2387
|
fullPath: string;
|
|
2388
2388
|
dev: {
|
|
2389
2389
|
type: "browser";
|
|
@@ -2404,9 +2404,6 @@ declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2404
2404
|
instructionsCode?: string | undefined;
|
|
2405
2405
|
epicVideoEmbeds?: string[] | undefined;
|
|
2406
2406
|
}, {
|
|
2407
|
-
title: string;
|
|
2408
|
-
type: "problem";
|
|
2409
|
-
name: string;
|
|
2410
2407
|
test: {
|
|
2411
2408
|
type: "browser";
|
|
2412
2409
|
pathname: string;
|
|
@@ -2417,6 +2414,9 @@ declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2417
2414
|
} | {
|
|
2418
2415
|
type: "none";
|
|
2419
2416
|
};
|
|
2417
|
+
type: "problem";
|
|
2418
|
+
title: string;
|
|
2419
|
+
name: string;
|
|
2420
2420
|
fullPath: string;
|
|
2421
2421
|
dev: {
|
|
2422
2422
|
type: "browser";
|
|
@@ -2511,9 +2511,6 @@ declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2511
2511
|
type: z.ZodLiteral<"solution">;
|
|
2512
2512
|
problemName: z.ZodNullable<z.ZodString>;
|
|
2513
2513
|
}, "strip", z.ZodTypeAny, {
|
|
2514
|
-
title: string;
|
|
2515
|
-
type: "solution";
|
|
2516
|
-
name: string;
|
|
2517
2514
|
test: {
|
|
2518
2515
|
type: "browser";
|
|
2519
2516
|
pathname: string;
|
|
@@ -2524,6 +2521,9 @@ declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2524
2521
|
} | {
|
|
2525
2522
|
type: "none";
|
|
2526
2523
|
};
|
|
2524
|
+
type: "solution";
|
|
2525
|
+
title: string;
|
|
2526
|
+
name: string;
|
|
2527
2527
|
fullPath: string;
|
|
2528
2528
|
dev: {
|
|
2529
2529
|
type: "browser";
|
|
@@ -2544,9 +2544,6 @@ declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2544
2544
|
instructionsCode?: string | undefined;
|
|
2545
2545
|
epicVideoEmbeds?: string[] | undefined;
|
|
2546
2546
|
}, {
|
|
2547
|
-
title: string;
|
|
2548
|
-
type: "solution";
|
|
2549
|
-
name: string;
|
|
2550
2547
|
test: {
|
|
2551
2548
|
type: "browser";
|
|
2552
2549
|
pathname: string;
|
|
@@ -2557,6 +2554,9 @@ declare const ExerciseStepAppSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2557
2554
|
} | {
|
|
2558
2555
|
type: "none";
|
|
2559
2556
|
};
|
|
2557
|
+
type: "solution";
|
|
2558
|
+
title: string;
|
|
2559
|
+
name: string;
|
|
2560
2560
|
fullPath: string;
|
|
2561
2561
|
dev: {
|
|
2562
2562
|
type: "browser";
|
|
@@ -2652,9 +2652,6 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
2652
2652
|
type: z.ZodLiteral<"problem">;
|
|
2653
2653
|
solutionName: z.ZodNullable<z.ZodString>;
|
|
2654
2654
|
}, "strip", z.ZodTypeAny, {
|
|
2655
|
-
title: string;
|
|
2656
|
-
type: "problem";
|
|
2657
|
-
name: string;
|
|
2658
2655
|
test: {
|
|
2659
2656
|
type: "browser";
|
|
2660
2657
|
pathname: string;
|
|
@@ -2665,6 +2662,9 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
2665
2662
|
} | {
|
|
2666
2663
|
type: "none";
|
|
2667
2664
|
};
|
|
2665
|
+
type: "problem";
|
|
2666
|
+
title: string;
|
|
2667
|
+
name: string;
|
|
2668
2668
|
fullPath: string;
|
|
2669
2669
|
dev: {
|
|
2670
2670
|
type: "browser";
|
|
@@ -2685,9 +2685,6 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
2685
2685
|
instructionsCode?: string | undefined;
|
|
2686
2686
|
epicVideoEmbeds?: string[] | undefined;
|
|
2687
2687
|
}, {
|
|
2688
|
-
title: string;
|
|
2689
|
-
type: "problem";
|
|
2690
|
-
name: string;
|
|
2691
2688
|
test: {
|
|
2692
2689
|
type: "browser";
|
|
2693
2690
|
pathname: string;
|
|
@@ -2698,6 +2695,9 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
2698
2695
|
} | {
|
|
2699
2696
|
type: "none";
|
|
2700
2697
|
};
|
|
2698
|
+
type: "problem";
|
|
2699
|
+
title: string;
|
|
2700
|
+
name: string;
|
|
2701
2701
|
fullPath: string;
|
|
2702
2702
|
dev: {
|
|
2703
2703
|
type: "browser";
|
|
@@ -2792,9 +2792,6 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
2792
2792
|
type: z.ZodLiteral<"solution">;
|
|
2793
2793
|
problemName: z.ZodNullable<z.ZodString>;
|
|
2794
2794
|
}, "strip", z.ZodTypeAny, {
|
|
2795
|
-
title: string;
|
|
2796
|
-
type: "solution";
|
|
2797
|
-
name: string;
|
|
2798
2795
|
test: {
|
|
2799
2796
|
type: "browser";
|
|
2800
2797
|
pathname: string;
|
|
@@ -2805,6 +2802,9 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
2805
2802
|
} | {
|
|
2806
2803
|
type: "none";
|
|
2807
2804
|
};
|
|
2805
|
+
type: "solution";
|
|
2806
|
+
title: string;
|
|
2807
|
+
name: string;
|
|
2808
2808
|
fullPath: string;
|
|
2809
2809
|
dev: {
|
|
2810
2810
|
type: "browser";
|
|
@@ -2825,9 +2825,6 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
2825
2825
|
instructionsCode?: string | undefined;
|
|
2826
2826
|
epicVideoEmbeds?: string[] | undefined;
|
|
2827
2827
|
}, {
|
|
2828
|
-
title: string;
|
|
2829
|
-
type: "solution";
|
|
2830
|
-
name: string;
|
|
2831
2828
|
test: {
|
|
2832
2829
|
type: "browser";
|
|
2833
2830
|
pathname: string;
|
|
@@ -2838,6 +2835,9 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
2838
2835
|
} | {
|
|
2839
2836
|
type: "none";
|
|
2840
2837
|
};
|
|
2838
|
+
type: "solution";
|
|
2839
|
+
title: string;
|
|
2840
|
+
name: string;
|
|
2841
2841
|
fullPath: string;
|
|
2842
2842
|
dev: {
|
|
2843
2843
|
type: "browser";
|
|
@@ -2930,9 +2930,6 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
2930
2930
|
appName: z.ZodString;
|
|
2931
2931
|
isUpToDate: z.ZodBoolean;
|
|
2932
2932
|
}, "strip", z.ZodTypeAny, {
|
|
2933
|
-
title: string;
|
|
2934
|
-
type: "playground";
|
|
2935
|
-
name: string;
|
|
2936
2933
|
test: {
|
|
2937
2934
|
type: "browser";
|
|
2938
2935
|
pathname: string;
|
|
@@ -2943,6 +2940,9 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
2943
2940
|
} | {
|
|
2944
2941
|
type: "none";
|
|
2945
2942
|
};
|
|
2943
|
+
type: "playground";
|
|
2944
|
+
title: string;
|
|
2945
|
+
name: string;
|
|
2946
2946
|
fullPath: string;
|
|
2947
2947
|
dev: {
|
|
2948
2948
|
type: "browser";
|
|
@@ -2962,9 +2962,6 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
2962
2962
|
instructionsCode?: string | undefined;
|
|
2963
2963
|
epicVideoEmbeds?: string[] | undefined;
|
|
2964
2964
|
}, {
|
|
2965
|
-
title: string;
|
|
2966
|
-
type: "playground";
|
|
2967
|
-
name: string;
|
|
2968
2965
|
test: {
|
|
2969
2966
|
type: "browser";
|
|
2970
2967
|
pathname: string;
|
|
@@ -2975,6 +2972,9 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
2975
2972
|
} | {
|
|
2976
2973
|
type: "none";
|
|
2977
2974
|
};
|
|
2975
|
+
type: "playground";
|
|
2976
|
+
title: string;
|
|
2977
|
+
name: string;
|
|
2978
2978
|
fullPath: string;
|
|
2979
2979
|
dev: {
|
|
2980
2980
|
type: "browser";
|
|
@@ -3064,9 +3064,6 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3064
3064
|
} & {
|
|
3065
3065
|
type: z.ZodLiteral<"example">;
|
|
3066
3066
|
}, "strip", z.ZodTypeAny, {
|
|
3067
|
-
title: string;
|
|
3068
|
-
type: "example";
|
|
3069
|
-
name: string;
|
|
3070
3067
|
test: {
|
|
3071
3068
|
type: "browser";
|
|
3072
3069
|
pathname: string;
|
|
@@ -3077,6 +3074,9 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3077
3074
|
} | {
|
|
3078
3075
|
type: "none";
|
|
3079
3076
|
};
|
|
3077
|
+
type: "example";
|
|
3078
|
+
title: string;
|
|
3079
|
+
name: string;
|
|
3080
3080
|
fullPath: string;
|
|
3081
3081
|
dev: {
|
|
3082
3082
|
type: "browser";
|
|
@@ -3094,9 +3094,6 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3094
3094
|
instructionsCode?: string | undefined;
|
|
3095
3095
|
epicVideoEmbeds?: string[] | undefined;
|
|
3096
3096
|
}, {
|
|
3097
|
-
title: string;
|
|
3098
|
-
type: "example";
|
|
3099
|
-
name: string;
|
|
3100
3097
|
test: {
|
|
3101
3098
|
type: "browser";
|
|
3102
3099
|
pathname: string;
|
|
@@ -3107,6 +3104,9 @@ declare const AppSchema: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
3107
3104
|
} | {
|
|
3108
3105
|
type: "none";
|
|
3109
3106
|
};
|
|
3107
|
+
type: "example";
|
|
3108
|
+
title: string;
|
|
3109
|
+
name: string;
|
|
3110
3110
|
fullPath: string;
|
|
3111
3111
|
dev: {
|
|
3112
3112
|
type: "browser";
|
|
@@ -3183,9 +3183,6 @@ export declare function getExercise(exerciseNumber: number | string, { request,
|
|
|
3183
3183
|
steps: ({
|
|
3184
3184
|
stepNumber: number;
|
|
3185
3185
|
solution: {
|
|
3186
|
-
title: string;
|
|
3187
|
-
type: "solution";
|
|
3188
|
-
name: string;
|
|
3189
3186
|
test: {
|
|
3190
3187
|
type: "browser";
|
|
3191
3188
|
pathname: string;
|
|
@@ -3196,6 +3193,9 @@ export declare function getExercise(exerciseNumber: number | string, { request,
|
|
|
3196
3193
|
} | {
|
|
3197
3194
|
type: "none";
|
|
3198
3195
|
};
|
|
3196
|
+
type: "solution";
|
|
3197
|
+
title: string;
|
|
3198
|
+
name: string;
|
|
3199
3199
|
fullPath: string;
|
|
3200
3200
|
dev: {
|
|
3201
3201
|
type: "browser";
|
|
@@ -3217,9 +3217,6 @@ export declare function getExercise(exerciseNumber: number | string, { request,
|
|
|
3217
3217
|
epicVideoEmbeds?: string[] | undefined;
|
|
3218
3218
|
};
|
|
3219
3219
|
problem: {
|
|
3220
|
-
title: string;
|
|
3221
|
-
type: "problem";
|
|
3222
|
-
name: string;
|
|
3223
3220
|
test: {
|
|
3224
3221
|
type: "browser";
|
|
3225
3222
|
pathname: string;
|
|
@@ -3230,6 +3227,9 @@ export declare function getExercise(exerciseNumber: number | string, { request,
|
|
|
3230
3227
|
} | {
|
|
3231
3228
|
type: "none";
|
|
3232
3229
|
};
|
|
3230
|
+
type: "problem";
|
|
3231
|
+
title: string;
|
|
3232
|
+
name: string;
|
|
3233
3233
|
fullPath: string;
|
|
3234
3234
|
dev: {
|
|
3235
3235
|
type: "browser";
|
|
@@ -3253,9 +3253,6 @@ export declare function getExercise(exerciseNumber: number | string, { request,
|
|
|
3253
3253
|
} | {
|
|
3254
3254
|
stepNumber: number;
|
|
3255
3255
|
problem: {
|
|
3256
|
-
title: string;
|
|
3257
|
-
type: "problem";
|
|
3258
|
-
name: string;
|
|
3259
3256
|
test: {
|
|
3260
3257
|
type: "browser";
|
|
3261
3258
|
pathname: string;
|
|
@@ -3266,6 +3263,9 @@ export declare function getExercise(exerciseNumber: number | string, { request,
|
|
|
3266
3263
|
} | {
|
|
3267
3264
|
type: "none";
|
|
3268
3265
|
};
|
|
3266
|
+
type: "problem";
|
|
3267
|
+
title: string;
|
|
3268
|
+
name: string;
|
|
3269
3269
|
fullPath: string;
|
|
3270
3270
|
dev: {
|
|
3271
3271
|
type: "browser";
|
|
@@ -3290,9 +3290,6 @@ export declare function getExercise(exerciseNumber: number | string, { request,
|
|
|
3290
3290
|
} | {
|
|
3291
3291
|
stepNumber: number;
|
|
3292
3292
|
solution: {
|
|
3293
|
-
title: string;
|
|
3294
|
-
type: "solution";
|
|
3295
|
-
name: string;
|
|
3296
3293
|
test: {
|
|
3297
3294
|
type: "browser";
|
|
3298
3295
|
pathname: string;
|
|
@@ -3303,6 +3300,9 @@ export declare function getExercise(exerciseNumber: number | string, { request,
|
|
|
3303
3300
|
} | {
|
|
3304
3301
|
type: "none";
|
|
3305
3302
|
};
|
|
3303
|
+
type: "solution";
|
|
3304
|
+
title: string;
|
|
3305
|
+
name: string;
|
|
3306
3306
|
fullPath: string;
|
|
3307
3307
|
dev: {
|
|
3308
3308
|
type: "browser";
|
|
@@ -3326,9 +3326,6 @@ export declare function getExercise(exerciseNumber: number | string, { request,
|
|
|
3326
3326
|
problem?: undefined;
|
|
3327
3327
|
})[];
|
|
3328
3328
|
problems: {
|
|
3329
|
-
title: string;
|
|
3330
|
-
type: "problem";
|
|
3331
|
-
name: string;
|
|
3332
3329
|
test: {
|
|
3333
3330
|
type: "browser";
|
|
3334
3331
|
pathname: string;
|
|
@@ -3339,6 +3336,9 @@ export declare function getExercise(exerciseNumber: number | string, { request,
|
|
|
3339
3336
|
} | {
|
|
3340
3337
|
type: "none";
|
|
3341
3338
|
};
|
|
3339
|
+
type: "problem";
|
|
3340
|
+
title: string;
|
|
3341
|
+
name: string;
|
|
3342
3342
|
fullPath: string;
|
|
3343
3343
|
dev: {
|
|
3344
3344
|
type: "browser";
|
|
@@ -3360,9 +3360,6 @@ export declare function getExercise(exerciseNumber: number | string, { request,
|
|
|
3360
3360
|
epicVideoEmbeds?: string[] | undefined;
|
|
3361
3361
|
}[];
|
|
3362
3362
|
solutions: {
|
|
3363
|
-
title: string;
|
|
3364
|
-
type: "solution";
|
|
3365
|
-
name: string;
|
|
3366
3363
|
test: {
|
|
3367
3364
|
type: "browser";
|
|
3368
3365
|
pathname: string;
|
|
@@ -3373,6 +3370,9 @@ export declare function getExercise(exerciseNumber: number | string, { request,
|
|
|
3373
3370
|
} | {
|
|
3374
3371
|
type: "none";
|
|
3375
3372
|
};
|
|
3373
|
+
type: "solution";
|
|
3374
|
+
title: string;
|
|
3375
|
+
name: string;
|
|
3376
3376
|
fullPath: string;
|
|
3377
3377
|
dev: {
|
|
3378
3378
|
type: "browser";
|
|
@@ -3406,9 +3406,6 @@ export declare function requireExercise(exerciseNumber: number | string, { reque
|
|
|
3406
3406
|
steps: ({
|
|
3407
3407
|
stepNumber: number;
|
|
3408
3408
|
solution: {
|
|
3409
|
-
title: string;
|
|
3410
|
-
type: "solution";
|
|
3411
|
-
name: string;
|
|
3412
3409
|
test: {
|
|
3413
3410
|
type: "browser";
|
|
3414
3411
|
pathname: string;
|
|
@@ -3419,6 +3416,9 @@ export declare function requireExercise(exerciseNumber: number | string, { reque
|
|
|
3419
3416
|
} | {
|
|
3420
3417
|
type: "none";
|
|
3421
3418
|
};
|
|
3419
|
+
type: "solution";
|
|
3420
|
+
title: string;
|
|
3421
|
+
name: string;
|
|
3422
3422
|
fullPath: string;
|
|
3423
3423
|
dev: {
|
|
3424
3424
|
type: "browser";
|
|
@@ -3440,9 +3440,6 @@ export declare function requireExercise(exerciseNumber: number | string, { reque
|
|
|
3440
3440
|
epicVideoEmbeds?: string[] | undefined;
|
|
3441
3441
|
};
|
|
3442
3442
|
problem: {
|
|
3443
|
-
title: string;
|
|
3444
|
-
type: "problem";
|
|
3445
|
-
name: string;
|
|
3446
3443
|
test: {
|
|
3447
3444
|
type: "browser";
|
|
3448
3445
|
pathname: string;
|
|
@@ -3453,6 +3450,9 @@ export declare function requireExercise(exerciseNumber: number | string, { reque
|
|
|
3453
3450
|
} | {
|
|
3454
3451
|
type: "none";
|
|
3455
3452
|
};
|
|
3453
|
+
type: "problem";
|
|
3454
|
+
title: string;
|
|
3455
|
+
name: string;
|
|
3456
3456
|
fullPath: string;
|
|
3457
3457
|
dev: {
|
|
3458
3458
|
type: "browser";
|
|
@@ -3476,9 +3476,6 @@ export declare function requireExercise(exerciseNumber: number | string, { reque
|
|
|
3476
3476
|
} | {
|
|
3477
3477
|
stepNumber: number;
|
|
3478
3478
|
problem: {
|
|
3479
|
-
title: string;
|
|
3480
|
-
type: "problem";
|
|
3481
|
-
name: string;
|
|
3482
3479
|
test: {
|
|
3483
3480
|
type: "browser";
|
|
3484
3481
|
pathname: string;
|
|
@@ -3489,6 +3486,9 @@ export declare function requireExercise(exerciseNumber: number | string, { reque
|
|
|
3489
3486
|
} | {
|
|
3490
3487
|
type: "none";
|
|
3491
3488
|
};
|
|
3489
|
+
type: "problem";
|
|
3490
|
+
title: string;
|
|
3491
|
+
name: string;
|
|
3492
3492
|
fullPath: string;
|
|
3493
3493
|
dev: {
|
|
3494
3494
|
type: "browser";
|
|
@@ -3513,9 +3513,6 @@ export declare function requireExercise(exerciseNumber: number | string, { reque
|
|
|
3513
3513
|
} | {
|
|
3514
3514
|
stepNumber: number;
|
|
3515
3515
|
solution: {
|
|
3516
|
-
title: string;
|
|
3517
|
-
type: "solution";
|
|
3518
|
-
name: string;
|
|
3519
3516
|
test: {
|
|
3520
3517
|
type: "browser";
|
|
3521
3518
|
pathname: string;
|
|
@@ -3526,6 +3523,9 @@ export declare function requireExercise(exerciseNumber: number | string, { reque
|
|
|
3526
3523
|
} | {
|
|
3527
3524
|
type: "none";
|
|
3528
3525
|
};
|
|
3526
|
+
type: "solution";
|
|
3527
|
+
title: string;
|
|
3528
|
+
name: string;
|
|
3529
3529
|
fullPath: string;
|
|
3530
3530
|
dev: {
|
|
3531
3531
|
type: "browser";
|
|
@@ -3549,9 +3549,6 @@ export declare function requireExercise(exerciseNumber: number | string, { reque
|
|
|
3549
3549
|
problem?: undefined;
|
|
3550
3550
|
})[];
|
|
3551
3551
|
problems: {
|
|
3552
|
-
title: string;
|
|
3553
|
-
type: "problem";
|
|
3554
|
-
name: string;
|
|
3555
3552
|
test: {
|
|
3556
3553
|
type: "browser";
|
|
3557
3554
|
pathname: string;
|
|
@@ -3562,6 +3559,9 @@ export declare function requireExercise(exerciseNumber: number | string, { reque
|
|
|
3562
3559
|
} | {
|
|
3563
3560
|
type: "none";
|
|
3564
3561
|
};
|
|
3562
|
+
type: "problem";
|
|
3563
|
+
title: string;
|
|
3564
|
+
name: string;
|
|
3565
3565
|
fullPath: string;
|
|
3566
3566
|
dev: {
|
|
3567
3567
|
type: "browser";
|
|
@@ -3583,9 +3583,6 @@ export declare function requireExercise(exerciseNumber: number | string, { reque
|
|
|
3583
3583
|
epicVideoEmbeds?: string[] | undefined;
|
|
3584
3584
|
}[];
|
|
3585
3585
|
solutions: {
|
|
3586
|
-
title: string;
|
|
3587
|
-
type: "solution";
|
|
3588
|
-
name: string;
|
|
3589
3586
|
test: {
|
|
3590
3587
|
type: "browser";
|
|
3591
3588
|
pathname: string;
|
|
@@ -3596,6 +3593,9 @@ export declare function requireExercise(exerciseNumber: number | string, { reque
|
|
|
3596
3593
|
} | {
|
|
3597
3594
|
type: "none";
|
|
3598
3595
|
};
|
|
3596
|
+
type: "solution";
|
|
3597
|
+
title: string;
|
|
3598
|
+
name: string;
|
|
3599
3599
|
fullPath: string;
|
|
3600
3600
|
dev: {
|
|
3601
3601
|
type: "browser";
|
|
@@ -3622,9 +3622,6 @@ export declare function requireExercise(exerciseNumber: number | string, { reque
|
|
|
3622
3622
|
finishedEpicVideoEmbeds?: string[] | undefined;
|
|
3623
3623
|
}>;
|
|
3624
3624
|
export declare function requireExerciseApp(params: Parameters<typeof getExerciseApp>[0], { request, timings }?: CachifiedOptions): Promise<{
|
|
3625
|
-
title: string;
|
|
3626
|
-
type: "solution";
|
|
3627
|
-
name: string;
|
|
3628
3625
|
test: {
|
|
3629
3626
|
type: "browser";
|
|
3630
3627
|
pathname: string;
|
|
@@ -3635,6 +3632,9 @@ export declare function requireExerciseApp(params: Parameters<typeof getExercise
|
|
|
3635
3632
|
} | {
|
|
3636
3633
|
type: "none";
|
|
3637
3634
|
};
|
|
3635
|
+
type: "solution";
|
|
3636
|
+
title: string;
|
|
3637
|
+
name: string;
|
|
3638
3638
|
fullPath: string;
|
|
3639
3639
|
dev: {
|
|
3640
3640
|
type: "browser";
|
|
@@ -3655,9 +3655,6 @@ export declare function requireExerciseApp(params: Parameters<typeof getExercise
|
|
|
3655
3655
|
instructionsCode?: string | undefined;
|
|
3656
3656
|
epicVideoEmbeds?: string[] | undefined;
|
|
3657
3657
|
} | {
|
|
3658
|
-
title: string;
|
|
3659
|
-
type: "problem";
|
|
3660
|
-
name: string;
|
|
3661
3658
|
test: {
|
|
3662
3659
|
type: "browser";
|
|
3663
3660
|
pathname: string;
|
|
@@ -3668,6 +3665,9 @@ export declare function requireExerciseApp(params: Parameters<typeof getExercise
|
|
|
3668
3665
|
} | {
|
|
3669
3666
|
type: "none";
|
|
3670
3667
|
};
|
|
3668
|
+
type: "problem";
|
|
3669
|
+
title: string;
|
|
3670
|
+
name: string;
|
|
3671
3671
|
fullPath: string;
|
|
3672
3672
|
dev: {
|
|
3673
3673
|
type: "browser";
|
|
@@ -3693,9 +3693,6 @@ export declare function getExerciseApp(params: {
|
|
|
3693
3693
|
exerciseNumber?: string;
|
|
3694
3694
|
stepNumber?: string;
|
|
3695
3695
|
}, { request, timings }?: CachifiedOptions): Promise<{
|
|
3696
|
-
title: string;
|
|
3697
|
-
type: "solution";
|
|
3698
|
-
name: string;
|
|
3699
3696
|
test: {
|
|
3700
3697
|
type: "browser";
|
|
3701
3698
|
pathname: string;
|
|
@@ -3706,6 +3703,9 @@ export declare function getExerciseApp(params: {
|
|
|
3706
3703
|
} | {
|
|
3707
3704
|
type: "none";
|
|
3708
3705
|
};
|
|
3706
|
+
type: "solution";
|
|
3707
|
+
title: string;
|
|
3708
|
+
name: string;
|
|
3709
3709
|
fullPath: string;
|
|
3710
3710
|
dev: {
|
|
3711
3711
|
type: "browser";
|
|
@@ -3726,9 +3726,6 @@ export declare function getExerciseApp(params: {
|
|
|
3726
3726
|
instructionsCode?: string | undefined;
|
|
3727
3727
|
epicVideoEmbeds?: string[] | undefined;
|
|
3728
3728
|
} | {
|
|
3729
|
-
title: string;
|
|
3730
|
-
type: "problem";
|
|
3731
|
-
name: string;
|
|
3732
3729
|
test: {
|
|
3733
3730
|
type: "browser";
|
|
3734
3731
|
pathname: string;
|
|
@@ -3739,6 +3736,9 @@ export declare function getExerciseApp(params: {
|
|
|
3739
3736
|
} | {
|
|
3740
3737
|
type: "none";
|
|
3741
3738
|
};
|
|
3739
|
+
type: "problem";
|
|
3740
|
+
title: string;
|
|
3741
|
+
name: string;
|
|
3742
3742
|
fullPath: string;
|
|
3743
3743
|
dev: {
|
|
3744
3744
|
type: "browser";
|
|
@@ -3760,9 +3760,6 @@ export declare function getExerciseApp(params: {
|
|
|
3760
3760
|
epicVideoEmbeds?: string[] | undefined;
|
|
3761
3761
|
} | null>;
|
|
3762
3762
|
export declare function getAppByName(name: string, { request, timings }?: CachifiedOptions): Promise<{
|
|
3763
|
-
title: string;
|
|
3764
|
-
type: "solution";
|
|
3765
|
-
name: string;
|
|
3766
3763
|
test: {
|
|
3767
3764
|
type: "browser";
|
|
3768
3765
|
pathname: string;
|
|
@@ -3773,6 +3770,9 @@ export declare function getAppByName(name: string, { request, timings }?: Cachif
|
|
|
3773
3770
|
} | {
|
|
3774
3771
|
type: "none";
|
|
3775
3772
|
};
|
|
3773
|
+
type: "solution";
|
|
3774
|
+
title: string;
|
|
3775
|
+
name: string;
|
|
3776
3776
|
fullPath: string;
|
|
3777
3777
|
dev: {
|
|
3778
3778
|
type: "browser";
|
|
@@ -3793,9 +3793,6 @@ export declare function getAppByName(name: string, { request, timings }?: Cachif
|
|
|
3793
3793
|
instructionsCode?: string | undefined;
|
|
3794
3794
|
epicVideoEmbeds?: string[] | undefined;
|
|
3795
3795
|
} | {
|
|
3796
|
-
title: string;
|
|
3797
|
-
type: "problem";
|
|
3798
|
-
name: string;
|
|
3799
3796
|
test: {
|
|
3800
3797
|
type: "browser";
|
|
3801
3798
|
pathname: string;
|
|
@@ -3806,6 +3803,9 @@ export declare function getAppByName(name: string, { request, timings }?: Cachif
|
|
|
3806
3803
|
} | {
|
|
3807
3804
|
type: "none";
|
|
3808
3805
|
};
|
|
3806
|
+
type: "problem";
|
|
3807
|
+
title: string;
|
|
3808
|
+
name: string;
|
|
3809
3809
|
fullPath: string;
|
|
3810
3810
|
dev: {
|
|
3811
3811
|
type: "browser";
|
|
@@ -3826,9 +3826,6 @@ export declare function getAppByName(name: string, { request, timings }?: Cachif
|
|
|
3826
3826
|
instructionsCode?: string | undefined;
|
|
3827
3827
|
epicVideoEmbeds?: string[] | undefined;
|
|
3828
3828
|
} | {
|
|
3829
|
-
title: string;
|
|
3830
|
-
type: "example";
|
|
3831
|
-
name: string;
|
|
3832
3829
|
test: {
|
|
3833
3830
|
type: "browser";
|
|
3834
3831
|
pathname: string;
|
|
@@ -3839,6 +3836,9 @@ export declare function getAppByName(name: string, { request, timings }?: Cachif
|
|
|
3839
3836
|
} | {
|
|
3840
3837
|
type: "none";
|
|
3841
3838
|
};
|
|
3839
|
+
type: "example";
|
|
3840
|
+
title: string;
|
|
3841
|
+
name: string;
|
|
3842
3842
|
fullPath: string;
|
|
3843
3843
|
dev: {
|
|
3844
3844
|
type: "browser";
|
|
@@ -3856,9 +3856,6 @@ export declare function getAppByName(name: string, { request, timings }?: Cachif
|
|
|
3856
3856
|
instructionsCode?: string | undefined;
|
|
3857
3857
|
epicVideoEmbeds?: string[] | undefined;
|
|
3858
3858
|
} | {
|
|
3859
|
-
title: string;
|
|
3860
|
-
type: "playground";
|
|
3861
|
-
name: string;
|
|
3862
3859
|
test: {
|
|
3863
3860
|
type: "browser";
|
|
3864
3861
|
pathname: string;
|
|
@@ -3869,6 +3866,9 @@ export declare function getAppByName(name: string, { request, timings }?: Cachif
|
|
|
3869
3866
|
} | {
|
|
3870
3867
|
type: "none";
|
|
3871
3868
|
};
|
|
3869
|
+
type: "playground";
|
|
3870
|
+
title: string;
|
|
3871
|
+
name: string;
|
|
3872
3872
|
fullPath: string;
|
|
3873
3873
|
dev: {
|
|
3874
3874
|
type: "browser";
|
|
@@ -3889,9 +3889,6 @@ export declare function getAppByName(name: string, { request, timings }?: Cachif
|
|
|
3889
3889
|
epicVideoEmbeds?: string[] | undefined;
|
|
3890
3890
|
} | undefined>;
|
|
3891
3891
|
export declare function getNextExerciseApp(app: ExerciseStepApp, { request, timings }?: CachifiedOptions): Promise<{
|
|
3892
|
-
title: string;
|
|
3893
|
-
type: "solution";
|
|
3894
|
-
name: string;
|
|
3895
3892
|
test: {
|
|
3896
3893
|
type: "browser";
|
|
3897
3894
|
pathname: string;
|
|
@@ -3902,6 +3899,9 @@ export declare function getNextExerciseApp(app: ExerciseStepApp, { request, timi
|
|
|
3902
3899
|
} | {
|
|
3903
3900
|
type: "none";
|
|
3904
3901
|
};
|
|
3902
|
+
type: "solution";
|
|
3903
|
+
title: string;
|
|
3904
|
+
name: string;
|
|
3905
3905
|
fullPath: string;
|
|
3906
3906
|
dev: {
|
|
3907
3907
|
type: "browser";
|
|
@@ -3922,9 +3922,6 @@ export declare function getNextExerciseApp(app: ExerciseStepApp, { request, timi
|
|
|
3922
3922
|
instructionsCode?: string | undefined;
|
|
3923
3923
|
epicVideoEmbeds?: string[] | undefined;
|
|
3924
3924
|
} | {
|
|
3925
|
-
title: string;
|
|
3926
|
-
type: "problem";
|
|
3927
|
-
name: string;
|
|
3928
3925
|
test: {
|
|
3929
3926
|
type: "browser";
|
|
3930
3927
|
pathname: string;
|
|
@@ -3935,6 +3932,9 @@ export declare function getNextExerciseApp(app: ExerciseStepApp, { request, timi
|
|
|
3935
3932
|
} | {
|
|
3936
3933
|
type: "none";
|
|
3937
3934
|
};
|
|
3935
|
+
type: "problem";
|
|
3936
|
+
title: string;
|
|
3937
|
+
name: string;
|
|
3938
3938
|
fullPath: string;
|
|
3939
3939
|
dev: {
|
|
3940
3940
|
type: "browser";
|
|
@@ -3956,9 +3956,6 @@ export declare function getNextExerciseApp(app: ExerciseStepApp, { request, timi
|
|
|
3956
3956
|
epicVideoEmbeds?: string[] | undefined;
|
|
3957
3957
|
} | null>;
|
|
3958
3958
|
export declare function getPrevExerciseApp(app: ExerciseStepApp, { request, timings }?: CachifiedOptions): Promise<{
|
|
3959
|
-
title: string;
|
|
3960
|
-
type: "solution";
|
|
3961
|
-
name: string;
|
|
3962
3959
|
test: {
|
|
3963
3960
|
type: "browser";
|
|
3964
3961
|
pathname: string;
|
|
@@ -3969,6 +3966,9 @@ export declare function getPrevExerciseApp(app: ExerciseStepApp, { request, timi
|
|
|
3969
3966
|
} | {
|
|
3970
3967
|
type: "none";
|
|
3971
3968
|
};
|
|
3969
|
+
type: "solution";
|
|
3970
|
+
title: string;
|
|
3971
|
+
name: string;
|
|
3972
3972
|
fullPath: string;
|
|
3973
3973
|
dev: {
|
|
3974
3974
|
type: "browser";
|
|
@@ -3989,9 +3989,6 @@ export declare function getPrevExerciseApp(app: ExerciseStepApp, { request, timi
|
|
|
3989
3989
|
instructionsCode?: string | undefined;
|
|
3990
3990
|
epicVideoEmbeds?: string[] | undefined;
|
|
3991
3991
|
} | {
|
|
3992
|
-
title: string;
|
|
3993
|
-
type: "problem";
|
|
3994
|
-
name: string;
|
|
3995
3992
|
test: {
|
|
3996
3993
|
type: "browser";
|
|
3997
3994
|
pathname: string;
|
|
@@ -4002,6 +3999,9 @@ export declare function getPrevExerciseApp(app: ExerciseStepApp, { request, timi
|
|
|
4002
3999
|
} | {
|
|
4003
4000
|
type: "none";
|
|
4004
4001
|
};
|
|
4002
|
+
type: "problem";
|
|
4003
|
+
title: string;
|
|
4004
|
+
name: string;
|
|
4005
4005
|
fullPath: string;
|
|
4006
4006
|
dev: {
|
|
4007
4007
|
type: "browser";
|
|
@@ -4030,9 +4030,6 @@ export declare function getAppPageRoute(app: ExerciseStepApp, { subroute, search
|
|
|
4030
4030
|
* Given a file path, this will find the app that file path belongs to.
|
|
4031
4031
|
*/
|
|
4032
4032
|
export declare function getAppFromFile(filePath: string): Promise<{
|
|
4033
|
-
title: string;
|
|
4034
|
-
type: "solution";
|
|
4035
|
-
name: string;
|
|
4036
4033
|
test: {
|
|
4037
4034
|
type: "browser";
|
|
4038
4035
|
pathname: string;
|
|
@@ -4043,6 +4040,9 @@ export declare function getAppFromFile(filePath: string): Promise<{
|
|
|
4043
4040
|
} | {
|
|
4044
4041
|
type: "none";
|
|
4045
4042
|
};
|
|
4043
|
+
type: "solution";
|
|
4044
|
+
title: string;
|
|
4045
|
+
name: string;
|
|
4046
4046
|
fullPath: string;
|
|
4047
4047
|
dev: {
|
|
4048
4048
|
type: "browser";
|
|
@@ -4063,9 +4063,6 @@ export declare function getAppFromFile(filePath: string): Promise<{
|
|
|
4063
4063
|
instructionsCode?: string | undefined;
|
|
4064
4064
|
epicVideoEmbeds?: string[] | undefined;
|
|
4065
4065
|
} | {
|
|
4066
|
-
title: string;
|
|
4067
|
-
type: "problem";
|
|
4068
|
-
name: string;
|
|
4069
4066
|
test: {
|
|
4070
4067
|
type: "browser";
|
|
4071
4068
|
pathname: string;
|
|
@@ -4076,6 +4073,9 @@ export declare function getAppFromFile(filePath: string): Promise<{
|
|
|
4076
4073
|
} | {
|
|
4077
4074
|
type: "none";
|
|
4078
4075
|
};
|
|
4076
|
+
type: "problem";
|
|
4077
|
+
title: string;
|
|
4078
|
+
name: string;
|
|
4079
4079
|
fullPath: string;
|
|
4080
4080
|
dev: {
|
|
4081
4081
|
type: "browser";
|
|
@@ -4096,9 +4096,6 @@ export declare function getAppFromFile(filePath: string): Promise<{
|
|
|
4096
4096
|
instructionsCode?: string | undefined;
|
|
4097
4097
|
epicVideoEmbeds?: string[] | undefined;
|
|
4098
4098
|
} | {
|
|
4099
|
-
title: string;
|
|
4100
|
-
type: "example";
|
|
4101
|
-
name: string;
|
|
4102
4099
|
test: {
|
|
4103
4100
|
type: "browser";
|
|
4104
4101
|
pathname: string;
|
|
@@ -4109,6 +4106,9 @@ export declare function getAppFromFile(filePath: string): Promise<{
|
|
|
4109
4106
|
} | {
|
|
4110
4107
|
type: "none";
|
|
4111
4108
|
};
|
|
4109
|
+
type: "example";
|
|
4110
|
+
title: string;
|
|
4111
|
+
name: string;
|
|
4112
4112
|
fullPath: string;
|
|
4113
4113
|
dev: {
|
|
4114
4114
|
type: "browser";
|
|
@@ -4126,9 +4126,6 @@ export declare function getAppFromFile(filePath: string): Promise<{
|
|
|
4126
4126
|
instructionsCode?: string | undefined;
|
|
4127
4127
|
epicVideoEmbeds?: string[] | undefined;
|
|
4128
4128
|
} | {
|
|
4129
|
-
title: string;
|
|
4130
|
-
type: "playground";
|
|
4131
|
-
name: string;
|
|
4132
4129
|
test: {
|
|
4133
4130
|
type: "browser";
|
|
4134
4131
|
pathname: string;
|
|
@@ -4139,6 +4136,9 @@ export declare function getAppFromFile(filePath: string): Promise<{
|
|
|
4139
4136
|
} | {
|
|
4140
4137
|
type: "none";
|
|
4141
4138
|
};
|
|
4139
|
+
type: "playground";
|
|
4140
|
+
title: string;
|
|
4141
|
+
name: string;
|
|
4142
4142
|
fullPath: string;
|
|
4143
4143
|
dev: {
|
|
4144
4144
|
type: "browser";
|