@oaknational/oak-curriculum-schema 2.11.0-beta.1 → 2.11.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/package.json +1 -1
- package/types.d.ts +43 -43
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -6726,6 +6726,7 @@ declare const lessonNewSchema: z.ZodObject<{
|
|
|
6726
6726
|
display_name: z.ZodString;
|
|
6727
6727
|
}, z.core.$strip>;
|
|
6728
6728
|
}, z.core.$strip>>>;
|
|
6729
|
+
attribution: z.ZodNullable<z.ZodArray<z.ZodObject<{}, z.core.$strip>>>;
|
|
6729
6730
|
phonics_outcome: z.ZodNullable<z.ZodString>;
|
|
6730
6731
|
key_learning_points: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
6731
6732
|
key_learning_point: z.ZodString;
|
|
@@ -6766,7 +6767,6 @@ declare const lessonNewSchema: z.ZodObject<{
|
|
|
6766
6767
|
lesson_outline: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
6767
6768
|
lesson_outline: z.ZodString;
|
|
6768
6769
|
}, z.core.$strip>>>>;
|
|
6769
|
-
attribution: z.ZodNullable<z.ZodArray<z.ZodObject<{}, z.core.$strip>>>;
|
|
6770
6770
|
deprecated_fields: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6771
6771
|
teacher_details: z.ZodNullable<z.ZodArray<z.ZodObject<{}, z.core.$strip>>>;
|
|
6772
6772
|
tags: z.ZodNullable<z.ZodArray<z.ZodNumber>>;
|
|
@@ -7616,6 +7616,9 @@ declare const lessonNewSchemaCamel: Omit<z.ZodType<{
|
|
|
7616
7616
|
displayName: string;
|
|
7617
7617
|
};
|
|
7618
7618
|
}[] | null;
|
|
7619
|
+
attribution: {
|
|
7620
|
+
[x: string]: never;
|
|
7621
|
+
}[] | null;
|
|
7619
7622
|
phonicsOutcome: string | null;
|
|
7620
7623
|
keyLearningPoints: {
|
|
7621
7624
|
keyLearningPoint: string;
|
|
@@ -7653,9 +7656,6 @@ declare const lessonNewSchemaCamel: Omit<z.ZodType<{
|
|
|
7653
7656
|
assetIdSupplementaryAsset: number | null;
|
|
7654
7657
|
assetIdLessonGuide: number | null;
|
|
7655
7658
|
expirationDate: string | null;
|
|
7656
|
-
attribution: {
|
|
7657
|
-
[x: string]: never;
|
|
7658
|
-
}[] | null;
|
|
7659
7659
|
deprecatedFields: {
|
|
7660
7660
|
[x: string]: unknown;
|
|
7661
7661
|
} | null;
|
|
@@ -7731,6 +7731,9 @@ declare const lessonNewSchemaCamel: Omit<z.ZodType<{
|
|
|
7731
7731
|
displayName: string;
|
|
7732
7732
|
};
|
|
7733
7733
|
}[] | null;
|
|
7734
|
+
attribution: {
|
|
7735
|
+
[x: string]: never;
|
|
7736
|
+
}[] | null;
|
|
7734
7737
|
phonicsOutcome: string | null;
|
|
7735
7738
|
keyLearningPoints: {
|
|
7736
7739
|
keyLearningPoint: string;
|
|
@@ -7768,9 +7771,6 @@ declare const lessonNewSchemaCamel: Omit<z.ZodType<{
|
|
|
7768
7771
|
assetIdSupplementaryAsset: number | null;
|
|
7769
7772
|
assetIdLessonGuide: number | null;
|
|
7770
7773
|
expirationDate: string | null;
|
|
7771
|
-
attribution: {
|
|
7772
|
-
[x: string]: never;
|
|
7773
|
-
}[] | null;
|
|
7774
7774
|
deprecatedFields: {
|
|
7775
7775
|
[x: string]: unknown;
|
|
7776
7776
|
} | null;
|
|
@@ -7847,6 +7847,7 @@ declare const lessonNewSchemaCamel: Omit<z.ZodType<{
|
|
|
7847
7847
|
display_name: string;
|
|
7848
7848
|
};
|
|
7849
7849
|
}[] | null;
|
|
7850
|
+
attribution: Record<string, never>[] | null;
|
|
7850
7851
|
phonics_outcome: string | null;
|
|
7851
7852
|
key_learning_points: {
|
|
7852
7853
|
key_learning_point: string;
|
|
@@ -7884,7 +7885,6 @@ declare const lessonNewSchemaCamel: Omit<z.ZodType<{
|
|
|
7884
7885
|
asset_id_supplementary_asset: number | null;
|
|
7885
7886
|
asset_id_lesson_guide: number | null;
|
|
7886
7887
|
expiration_date: string | null;
|
|
7887
|
-
attribution: Record<string, never>[] | null;
|
|
7888
7888
|
deprecated_fields: Record<string, unknown> | null;
|
|
7889
7889
|
teacher_details: Record<string, never>[] | null;
|
|
7890
7890
|
tags: number[] | null;
|
|
@@ -7950,6 +7950,9 @@ declare const lessonNewSchemaCamel: Omit<z.ZodType<{
|
|
|
7950
7950
|
displayName: string;
|
|
7951
7951
|
};
|
|
7952
7952
|
}[] | null;
|
|
7953
|
+
attribution: {
|
|
7954
|
+
[x: string]: never;
|
|
7955
|
+
}[] | null;
|
|
7953
7956
|
phonicsOutcome: string | null;
|
|
7954
7957
|
keyLearningPoints: {
|
|
7955
7958
|
keyLearningPoint: string;
|
|
@@ -7987,9 +7990,6 @@ declare const lessonNewSchemaCamel: Omit<z.ZodType<{
|
|
|
7987
7990
|
assetIdSupplementaryAsset: number | null;
|
|
7988
7991
|
assetIdLessonGuide: number | null;
|
|
7989
7992
|
expirationDate: string | null;
|
|
7990
|
-
attribution: {
|
|
7991
|
-
[x: string]: never;
|
|
7992
|
-
}[] | null;
|
|
7993
7993
|
deprecatedFields: {
|
|
7994
7994
|
[x: string]: unknown;
|
|
7995
7995
|
} | null;
|
|
@@ -8066,6 +8066,7 @@ declare const lessonNewSchemaCamel: Omit<z.ZodType<{
|
|
|
8066
8066
|
display_name: string;
|
|
8067
8067
|
};
|
|
8068
8068
|
}[] | null;
|
|
8069
|
+
attribution: Record<string, never>[] | null;
|
|
8069
8070
|
phonics_outcome: string | null;
|
|
8070
8071
|
key_learning_points: {
|
|
8071
8072
|
key_learning_point: string;
|
|
@@ -8103,7 +8104,6 @@ declare const lessonNewSchemaCamel: Omit<z.ZodType<{
|
|
|
8103
8104
|
asset_id_supplementary_asset: number | null;
|
|
8104
8105
|
asset_id_lesson_guide: number | null;
|
|
8105
8106
|
expiration_date: string | null;
|
|
8106
|
-
attribution: Record<string, never>[] | null;
|
|
8107
8107
|
deprecated_fields: Record<string, unknown> | null;
|
|
8108
8108
|
teacher_details: Record<string, never>[] | null;
|
|
8109
8109
|
tags: number[] | null;
|
|
@@ -8171,6 +8171,9 @@ declare const lessonNewSchemaCamel: Omit<z.ZodType<{
|
|
|
8171
8171
|
displayName: string;
|
|
8172
8172
|
};
|
|
8173
8173
|
}[] | null;
|
|
8174
|
+
attribution: {
|
|
8175
|
+
[x: string]: never;
|
|
8176
|
+
}[] | null;
|
|
8174
8177
|
phonicsOutcome: string | null;
|
|
8175
8178
|
keyLearningPoints: {
|
|
8176
8179
|
keyLearningPoint: string;
|
|
@@ -8208,9 +8211,6 @@ declare const lessonNewSchemaCamel: Omit<z.ZodType<{
|
|
|
8208
8211
|
assetIdSupplementaryAsset: number | null;
|
|
8209
8212
|
assetIdLessonGuide: number | null;
|
|
8210
8213
|
expirationDate: string | null;
|
|
8211
|
-
attribution: {
|
|
8212
|
-
[x: string]: never;
|
|
8213
|
-
}[] | null;
|
|
8214
8214
|
deprecatedFields: {
|
|
8215
8215
|
[x: string]: unknown;
|
|
8216
8216
|
} | null;
|
|
@@ -9437,7 +9437,6 @@ declare const questionNewSchema: z.ZodObject<{
|
|
|
9437
9437
|
}, z.core.$strip>>>;
|
|
9438
9438
|
}, z.core.$strip>>>;
|
|
9439
9439
|
}, z.core.$strip>>>;
|
|
9440
|
-
order: z.ZodNumber;
|
|
9441
9440
|
question_id: z.ZodNumber;
|
|
9442
9441
|
question_uid: z.ZodString;
|
|
9443
9442
|
question_type: z.ZodString;
|
|
@@ -9467,6 +9466,7 @@ declare const questionNewSchema: z.ZodObject<{
|
|
|
9467
9466
|
}, z.core.$strip>;
|
|
9468
9467
|
type: z.ZodLiteral<"image">;
|
|
9469
9468
|
}, z.core.$strip>]>>>>;
|
|
9469
|
+
order: z.ZodNumber;
|
|
9470
9470
|
feedback: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9471
9471
|
hint: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9472
9472
|
active: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -10437,10 +10437,10 @@ declare const questionSchemaCamel: Omit<z.ZodType<{
|
|
|
10437
10437
|
};
|
|
10438
10438
|
type QuestionCamel = z.infer<typeof questionSchemaCamel>;
|
|
10439
10439
|
declare const questionNewSchemaCamel: Omit<z.ZodType<{
|
|
10440
|
-
order: number;
|
|
10441
10440
|
questionId: number;
|
|
10442
10441
|
questionUid: string;
|
|
10443
10442
|
questionType: string;
|
|
10443
|
+
order: number;
|
|
10444
10444
|
_state: "new";
|
|
10445
10445
|
answers?: {
|
|
10446
10446
|
"multiple-choice"?: {
|
|
@@ -10517,10 +10517,10 @@ declare const questionNewSchemaCamel: Omit<z.ZodType<{
|
|
|
10517
10517
|
hint?: string | null | undefined;
|
|
10518
10518
|
active?: boolean | undefined;
|
|
10519
10519
|
}, unknown, z.core.$ZodTypeInternals<{
|
|
10520
|
-
order: number;
|
|
10521
10520
|
questionId: number;
|
|
10522
10521
|
questionUid: string;
|
|
10523
10522
|
questionType: string;
|
|
10523
|
+
order: number;
|
|
10524
10524
|
_state: "new";
|
|
10525
10525
|
answers?: {
|
|
10526
10526
|
"multiple-choice"?: {
|
|
@@ -10598,10 +10598,10 @@ declare const questionNewSchemaCamel: Omit<z.ZodType<{
|
|
|
10598
10598
|
active?: boolean | undefined;
|
|
10599
10599
|
}, unknown>>, "parse" | "safeParse"> & {
|
|
10600
10600
|
parse: (input: {
|
|
10601
|
-
order: number;
|
|
10602
10601
|
question_id: number;
|
|
10603
10602
|
question_uid: string;
|
|
10604
10603
|
question_type: string;
|
|
10604
|
+
order: number;
|
|
10605
10605
|
_state: "new";
|
|
10606
10606
|
answers?: {
|
|
10607
10607
|
"multiple-choice"?: {
|
|
@@ -10678,10 +10678,10 @@ declare const questionNewSchemaCamel: Omit<z.ZodType<{
|
|
|
10678
10678
|
hint?: string | null | undefined;
|
|
10679
10679
|
active?: boolean | undefined;
|
|
10680
10680
|
}) => {
|
|
10681
|
-
order: number;
|
|
10682
10681
|
questionId: number;
|
|
10683
10682
|
questionUid: string;
|
|
10684
10683
|
questionType: string;
|
|
10684
|
+
order: number;
|
|
10685
10685
|
_state: "new";
|
|
10686
10686
|
answers?: {
|
|
10687
10687
|
"multiple-choice"?: {
|
|
@@ -10759,10 +10759,10 @@ declare const questionNewSchemaCamel: Omit<z.ZodType<{
|
|
|
10759
10759
|
active?: boolean | undefined;
|
|
10760
10760
|
};
|
|
10761
10761
|
safeParse: (input: {
|
|
10762
|
-
order: number;
|
|
10763
10762
|
question_id: number;
|
|
10764
10763
|
question_uid: string;
|
|
10765
10764
|
question_type: string;
|
|
10765
|
+
order: number;
|
|
10766
10766
|
_state: "new";
|
|
10767
10767
|
answers?: {
|
|
10768
10768
|
"multiple-choice"?: {
|
|
@@ -10841,10 +10841,10 @@ declare const questionNewSchemaCamel: Omit<z.ZodType<{
|
|
|
10841
10841
|
}) => {
|
|
10842
10842
|
success: boolean;
|
|
10843
10843
|
data?: {
|
|
10844
|
-
order: number;
|
|
10845
10844
|
questionId: number;
|
|
10846
10845
|
questionUid: string;
|
|
10847
10846
|
questionType: string;
|
|
10847
|
+
order: number;
|
|
10848
10848
|
_state: "new";
|
|
10849
10849
|
answers?: {
|
|
10850
10850
|
"multiple-choice"?: {
|
|
@@ -20003,7 +20003,6 @@ declare const programmeListingSchema: z.ZodObject<{
|
|
|
20003
20003
|
dataset: z.ZodOptional<z.ZodString>;
|
|
20004
20004
|
}, z.core.$strip>;
|
|
20005
20005
|
is_legacy: z.ZodBoolean;
|
|
20006
|
-
programme_slug: z.ZodString;
|
|
20007
20006
|
lesson_data: z.ZodObject<{
|
|
20008
20007
|
created_at: z.ZodString;
|
|
20009
20008
|
updated_at: z.ZodString;
|
|
@@ -20117,6 +20116,7 @@ declare const programmeListingSchema: z.ZodObject<{
|
|
|
20117
20116
|
}, z.core.$strip>>>;
|
|
20118
20117
|
lesson_release_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20119
20118
|
}, z.core.$strip>;
|
|
20119
|
+
programme_slug: z.ZodString;
|
|
20120
20120
|
}, z.core.$strip>;
|
|
20121
20121
|
type ProgrammeListing = z.infer<typeof programmeListingSchema>;
|
|
20122
20122
|
declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
@@ -20157,7 +20157,6 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
20157
20157
|
dataset?: string | undefined;
|
|
20158
20158
|
};
|
|
20159
20159
|
isLegacy: boolean;
|
|
20160
|
-
programmeSlug: string;
|
|
20161
20160
|
lessonData: {
|
|
20162
20161
|
createdAt: string;
|
|
20163
20162
|
updatedAt: string;
|
|
@@ -20278,6 +20277,7 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
20278
20277
|
} | null | undefined;
|
|
20279
20278
|
lessonReleaseDate?: string | null | undefined;
|
|
20280
20279
|
};
|
|
20280
|
+
programmeSlug: string;
|
|
20281
20281
|
}, unknown, z.core.$ZodTypeInternals<{
|
|
20282
20282
|
programmeFields: {
|
|
20283
20283
|
subject: "Computing (non-GCSE)" | "Art and design" | "Citizenship" | "Computing" | "Computer Science" | "Design and technology" | "Drama" | "English" | "English grammar" | "English reading for pleasure" | "English spelling" | "Expressive arts and design" | "Financial education" | "French" | "Geography" | "German" | "History" | "Latin" | "Literacy" | "Maths" | "Music" | "Personal, social and emotional development" | "Physical education" | "RSHE (PSHE)" | "Religious education" | "Rule of law" | "Science" | "Biology" | "Chemistry" | "Combined science" | "Physics" | "Spanish" | "Understanding the world" | "Specialist" | "Communication and language" | "Creative arts" | "Independent living" | "Numeracy" | "Physical development" | "Therapies" | "Occupational therapy" | "Physical therapy" | "Sensory integration" | "Speech and language therapy" | "QA testing only" | "Cooking and nutrition";
|
|
@@ -20316,7 +20316,6 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
20316
20316
|
dataset?: string | undefined;
|
|
20317
20317
|
};
|
|
20318
20318
|
isLegacy: boolean;
|
|
20319
|
-
programmeSlug: string;
|
|
20320
20319
|
lessonData: {
|
|
20321
20320
|
createdAt: string;
|
|
20322
20321
|
updatedAt: string;
|
|
@@ -20437,6 +20436,7 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
20437
20436
|
} | null | undefined;
|
|
20438
20437
|
lessonReleaseDate?: string | null | undefined;
|
|
20439
20438
|
};
|
|
20439
|
+
programmeSlug: string;
|
|
20440
20440
|
}, unknown>>, "parse" | "safeParse"> & {
|
|
20441
20441
|
parse: (input: {
|
|
20442
20442
|
programme_fields: {
|
|
@@ -20476,7 +20476,6 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
20476
20476
|
dataset?: string | undefined;
|
|
20477
20477
|
};
|
|
20478
20478
|
is_legacy: boolean;
|
|
20479
|
-
programme_slug: string;
|
|
20480
20479
|
lesson_data: {
|
|
20481
20480
|
created_at: string;
|
|
20482
20481
|
updated_at: string;
|
|
@@ -20585,6 +20584,7 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
20585
20584
|
}[]> | null | undefined;
|
|
20586
20585
|
lesson_release_date?: string | null | undefined;
|
|
20587
20586
|
};
|
|
20587
|
+
programme_slug: string;
|
|
20588
20588
|
}) => {
|
|
20589
20589
|
programmeFields: {
|
|
20590
20590
|
subject: "Computing (non-GCSE)" | "Art and design" | "Citizenship" | "Computing" | "Computer Science" | "Design and technology" | "Drama" | "English" | "English grammar" | "English reading for pleasure" | "English spelling" | "Expressive arts and design" | "Financial education" | "French" | "Geography" | "German" | "History" | "Latin" | "Literacy" | "Maths" | "Music" | "Personal, social and emotional development" | "Physical education" | "RSHE (PSHE)" | "Religious education" | "Rule of law" | "Science" | "Biology" | "Chemistry" | "Combined science" | "Physics" | "Spanish" | "Understanding the world" | "Specialist" | "Communication and language" | "Creative arts" | "Independent living" | "Numeracy" | "Physical development" | "Therapies" | "Occupational therapy" | "Physical therapy" | "Sensory integration" | "Speech and language therapy" | "QA testing only" | "Cooking and nutrition";
|
|
@@ -20623,7 +20623,6 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
20623
20623
|
dataset?: string | undefined;
|
|
20624
20624
|
};
|
|
20625
20625
|
isLegacy: boolean;
|
|
20626
|
-
programmeSlug: string;
|
|
20627
20626
|
lessonData: {
|
|
20628
20627
|
createdAt: string;
|
|
20629
20628
|
updatedAt: string;
|
|
@@ -20744,6 +20743,7 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
20744
20743
|
} | null | undefined;
|
|
20745
20744
|
lessonReleaseDate?: string | null | undefined;
|
|
20746
20745
|
};
|
|
20746
|
+
programmeSlug: string;
|
|
20747
20747
|
};
|
|
20748
20748
|
safeParse: (input: {
|
|
20749
20749
|
programme_fields: {
|
|
@@ -20783,7 +20783,6 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
20783
20783
|
dataset?: string | undefined;
|
|
20784
20784
|
};
|
|
20785
20785
|
is_legacy: boolean;
|
|
20786
|
-
programme_slug: string;
|
|
20787
20786
|
lesson_data: {
|
|
20788
20787
|
created_at: string;
|
|
20789
20788
|
updated_at: string;
|
|
@@ -20892,6 +20891,7 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
20892
20891
|
}[]> | null | undefined;
|
|
20893
20892
|
lesson_release_date?: string | null | undefined;
|
|
20894
20893
|
};
|
|
20894
|
+
programme_slug: string;
|
|
20895
20895
|
}) => {
|
|
20896
20896
|
success: boolean;
|
|
20897
20897
|
data?: {
|
|
@@ -20932,7 +20932,6 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
20932
20932
|
dataset?: string | undefined;
|
|
20933
20933
|
};
|
|
20934
20934
|
isLegacy: boolean;
|
|
20935
|
-
programmeSlug: string;
|
|
20936
20935
|
lessonData: {
|
|
20937
20936
|
createdAt: string;
|
|
20938
20937
|
updatedAt: string;
|
|
@@ -21053,6 +21052,7 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
21053
21052
|
} | null | undefined;
|
|
21054
21053
|
lessonReleaseDate?: string | null | undefined;
|
|
21055
21054
|
};
|
|
21055
|
+
programmeSlug: string;
|
|
21056
21056
|
} | undefined;
|
|
21057
21057
|
error?: any;
|
|
21058
21058
|
};
|
|
@@ -21350,7 +21350,6 @@ declare const programmeListingArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
21350
21350
|
dataset: z.ZodOptional<z.ZodString>;
|
|
21351
21351
|
}, z.core.$strip>;
|
|
21352
21352
|
is_legacy: z.ZodBoolean;
|
|
21353
|
-
programme_slug: z.ZodString;
|
|
21354
21353
|
lesson_data: z.ZodObject<{
|
|
21355
21354
|
created_at: z.ZodString;
|
|
21356
21355
|
updated_at: z.ZodString;
|
|
@@ -21464,6 +21463,7 @@ declare const programmeListingArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
21464
21463
|
}, z.core.$strip>>>;
|
|
21465
21464
|
lesson_release_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21466
21465
|
}, z.core.$strip>;
|
|
21466
|
+
programme_slug: z.ZodString;
|
|
21467
21467
|
}, z.core.$strip>>;
|
|
21468
21468
|
type ProgrammeListingArray = z.infer<typeof programmeListingArraySchema>;
|
|
21469
21469
|
declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
@@ -21504,7 +21504,6 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
21504
21504
|
dataset?: string | undefined;
|
|
21505
21505
|
};
|
|
21506
21506
|
isLegacy: boolean;
|
|
21507
|
-
programmeSlug: string;
|
|
21508
21507
|
lessonData: {
|
|
21509
21508
|
createdAt: string;
|
|
21510
21509
|
updatedAt: string;
|
|
@@ -21625,6 +21624,7 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
21625
21624
|
} | null | undefined;
|
|
21626
21625
|
lessonReleaseDate?: string | null | undefined;
|
|
21627
21626
|
};
|
|
21627
|
+
programmeSlug: string;
|
|
21628
21628
|
}[], unknown, z.core.$ZodTypeInternals<{
|
|
21629
21629
|
programmeFields: {
|
|
21630
21630
|
subject: "Computing (non-GCSE)" | "Art and design" | "Citizenship" | "Computing" | "Computer Science" | "Design and technology" | "Drama" | "English" | "English grammar" | "English reading for pleasure" | "English spelling" | "Expressive arts and design" | "Financial education" | "French" | "Geography" | "German" | "History" | "Latin" | "Literacy" | "Maths" | "Music" | "Personal, social and emotional development" | "Physical education" | "RSHE (PSHE)" | "Religious education" | "Rule of law" | "Science" | "Biology" | "Chemistry" | "Combined science" | "Physics" | "Spanish" | "Understanding the world" | "Specialist" | "Communication and language" | "Creative arts" | "Independent living" | "Numeracy" | "Physical development" | "Therapies" | "Occupational therapy" | "Physical therapy" | "Sensory integration" | "Speech and language therapy" | "QA testing only" | "Cooking and nutrition";
|
|
@@ -21663,7 +21663,6 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
21663
21663
|
dataset?: string | undefined;
|
|
21664
21664
|
};
|
|
21665
21665
|
isLegacy: boolean;
|
|
21666
|
-
programmeSlug: string;
|
|
21667
21666
|
lessonData: {
|
|
21668
21667
|
createdAt: string;
|
|
21669
21668
|
updatedAt: string;
|
|
@@ -21784,6 +21783,7 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
21784
21783
|
} | null | undefined;
|
|
21785
21784
|
lessonReleaseDate?: string | null | undefined;
|
|
21786
21785
|
};
|
|
21786
|
+
programmeSlug: string;
|
|
21787
21787
|
}[], unknown>>, "parse" | "safeParse"> & {
|
|
21788
21788
|
parse: (input: {
|
|
21789
21789
|
programme_fields: {
|
|
@@ -21823,7 +21823,6 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
21823
21823
|
dataset?: string | undefined;
|
|
21824
21824
|
};
|
|
21825
21825
|
is_legacy: boolean;
|
|
21826
|
-
programme_slug: string;
|
|
21827
21826
|
lesson_data: {
|
|
21828
21827
|
created_at: string;
|
|
21829
21828
|
updated_at: string;
|
|
@@ -21932,6 +21931,7 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
21932
21931
|
}[]> | null | undefined;
|
|
21933
21932
|
lesson_release_date?: string | null | undefined;
|
|
21934
21933
|
};
|
|
21934
|
+
programme_slug: string;
|
|
21935
21935
|
}[]) => {
|
|
21936
21936
|
programmeFields: {
|
|
21937
21937
|
subject: "Computing (non-GCSE)" | "Art and design" | "Citizenship" | "Computing" | "Computer Science" | "Design and technology" | "Drama" | "English" | "English grammar" | "English reading for pleasure" | "English spelling" | "Expressive arts and design" | "Financial education" | "French" | "Geography" | "German" | "History" | "Latin" | "Literacy" | "Maths" | "Music" | "Personal, social and emotional development" | "Physical education" | "RSHE (PSHE)" | "Religious education" | "Rule of law" | "Science" | "Biology" | "Chemistry" | "Combined science" | "Physics" | "Spanish" | "Understanding the world" | "Specialist" | "Communication and language" | "Creative arts" | "Independent living" | "Numeracy" | "Physical development" | "Therapies" | "Occupational therapy" | "Physical therapy" | "Sensory integration" | "Speech and language therapy" | "QA testing only" | "Cooking and nutrition";
|
|
@@ -21970,7 +21970,6 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
21970
21970
|
dataset?: string | undefined;
|
|
21971
21971
|
};
|
|
21972
21972
|
isLegacy: boolean;
|
|
21973
|
-
programmeSlug: string;
|
|
21974
21973
|
lessonData: {
|
|
21975
21974
|
createdAt: string;
|
|
21976
21975
|
updatedAt: string;
|
|
@@ -22091,6 +22090,7 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
22091
22090
|
} | null | undefined;
|
|
22092
22091
|
lessonReleaseDate?: string | null | undefined;
|
|
22093
22092
|
};
|
|
22093
|
+
programmeSlug: string;
|
|
22094
22094
|
}[];
|
|
22095
22095
|
safeParse: (input: {
|
|
22096
22096
|
programme_fields: {
|
|
@@ -22130,7 +22130,6 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
22130
22130
|
dataset?: string | undefined;
|
|
22131
22131
|
};
|
|
22132
22132
|
is_legacy: boolean;
|
|
22133
|
-
programme_slug: string;
|
|
22134
22133
|
lesson_data: {
|
|
22135
22134
|
created_at: string;
|
|
22136
22135
|
updated_at: string;
|
|
@@ -22239,6 +22238,7 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
22239
22238
|
}[]> | null | undefined;
|
|
22240
22239
|
lesson_release_date?: string | null | undefined;
|
|
22241
22240
|
};
|
|
22241
|
+
programme_slug: string;
|
|
22242
22242
|
}[]) => {
|
|
22243
22243
|
success: boolean;
|
|
22244
22244
|
data?: {
|
|
@@ -22279,7 +22279,6 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
22279
22279
|
dataset?: string | undefined;
|
|
22280
22280
|
};
|
|
22281
22281
|
isLegacy: boolean;
|
|
22282
|
-
programmeSlug: string;
|
|
22283
22282
|
lessonData: {
|
|
22284
22283
|
createdAt: string;
|
|
22285
22284
|
updatedAt: string;
|
|
@@ -22400,6 +22399,7 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
22400
22399
|
} | null | undefined;
|
|
22401
22400
|
lessonReleaseDate?: string | null | undefined;
|
|
22402
22401
|
};
|
|
22402
|
+
programmeSlug: string;
|
|
22403
22403
|
}[] | undefined;
|
|
22404
22404
|
error?: any;
|
|
22405
22405
|
};
|
|
@@ -27220,7 +27220,6 @@ declare const syntheticUnitvariantLessonsByKsSchema: z.ZodObject<{
|
|
|
27220
27220
|
group_by_subjectcategory: z.ZodBoolean;
|
|
27221
27221
|
}, z.core.$strip>>;
|
|
27222
27222
|
}, z.core.$strip>>>;
|
|
27223
|
-
programme_slug: z.ZodString;
|
|
27224
27223
|
lesson_data: z.ZodObject<{
|
|
27225
27224
|
created_at: z.ZodString;
|
|
27226
27225
|
updated_at: z.ZodString;
|
|
@@ -27354,6 +27353,7 @@ declare const syntheticUnitvariantLessonsByKsSchema: z.ZodObject<{
|
|
|
27354
27353
|
expiration_date: z.ZodNullable<z.ZodString>;
|
|
27355
27354
|
}, z.core.$strip>;
|
|
27356
27355
|
unit_slug: z.ZodString;
|
|
27356
|
+
programme_slug: z.ZodString;
|
|
27357
27357
|
null_unitvariant_id: z.ZodNumber;
|
|
27358
27358
|
static_lesson_list: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
27359
27359
|
slug: z.ZodString;
|
|
@@ -27410,7 +27410,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
27410
27410
|
};
|
|
27411
27411
|
lessonSlug: string;
|
|
27412
27412
|
isLegacy: boolean;
|
|
27413
|
-
programmeSlug: string;
|
|
27414
27413
|
lessonData: {
|
|
27415
27414
|
createdAt: string;
|
|
27416
27415
|
updatedAt: string;
|
|
@@ -27548,6 +27547,7 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
27548
27547
|
priorKnowledgeRequirements?: string[] | null | undefined;
|
|
27549
27548
|
};
|
|
27550
27549
|
unitSlug: string;
|
|
27550
|
+
programmeSlug: string;
|
|
27551
27551
|
nullUnitvariantId: number;
|
|
27552
27552
|
features?: {
|
|
27553
27553
|
pePractical?: boolean | undefined;
|
|
@@ -27666,7 +27666,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
27666
27666
|
};
|
|
27667
27667
|
lessonSlug: string;
|
|
27668
27668
|
isLegacy: boolean;
|
|
27669
|
-
programmeSlug: string;
|
|
27670
27669
|
lessonData: {
|
|
27671
27670
|
createdAt: string;
|
|
27672
27671
|
updatedAt: string;
|
|
@@ -27804,6 +27803,7 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
27804
27803
|
priorKnowledgeRequirements?: string[] | null | undefined;
|
|
27805
27804
|
};
|
|
27806
27805
|
unitSlug: string;
|
|
27806
|
+
programmeSlug: string;
|
|
27807
27807
|
nullUnitvariantId: number;
|
|
27808
27808
|
features?: {
|
|
27809
27809
|
pePractical?: boolean | undefined;
|
|
@@ -27923,7 +27923,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
27923
27923
|
};
|
|
27924
27924
|
lesson_slug: string;
|
|
27925
27925
|
is_legacy: boolean;
|
|
27926
|
-
programme_slug: string;
|
|
27927
27926
|
lesson_data: {
|
|
27928
27927
|
created_at: string;
|
|
27929
27928
|
updated_at: string;
|
|
@@ -28047,6 +28046,7 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
28047
28046
|
prior_knowledge_requirements?: string[] | null | undefined;
|
|
28048
28047
|
};
|
|
28049
28048
|
unit_slug: string;
|
|
28049
|
+
programme_slug: string;
|
|
28050
28050
|
null_unitvariant_id: number;
|
|
28051
28051
|
features?: {
|
|
28052
28052
|
pe_practical?: boolean | undefined;
|
|
@@ -28165,7 +28165,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
28165
28165
|
};
|
|
28166
28166
|
lessonSlug: string;
|
|
28167
28167
|
isLegacy: boolean;
|
|
28168
|
-
programmeSlug: string;
|
|
28169
28168
|
lessonData: {
|
|
28170
28169
|
createdAt: string;
|
|
28171
28170
|
updatedAt: string;
|
|
@@ -28303,6 +28302,7 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
28303
28302
|
priorKnowledgeRequirements?: string[] | null | undefined;
|
|
28304
28303
|
};
|
|
28305
28304
|
unitSlug: string;
|
|
28305
|
+
programmeSlug: string;
|
|
28306
28306
|
nullUnitvariantId: number;
|
|
28307
28307
|
features?: {
|
|
28308
28308
|
pePractical?: boolean | undefined;
|
|
@@ -28422,7 +28422,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
28422
28422
|
};
|
|
28423
28423
|
lesson_slug: string;
|
|
28424
28424
|
is_legacy: boolean;
|
|
28425
|
-
programme_slug: string;
|
|
28426
28425
|
lesson_data: {
|
|
28427
28426
|
created_at: string;
|
|
28428
28427
|
updated_at: string;
|
|
@@ -28546,6 +28545,7 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
28546
28545
|
prior_knowledge_requirements?: string[] | null | undefined;
|
|
28547
28546
|
};
|
|
28548
28547
|
unit_slug: string;
|
|
28548
|
+
programme_slug: string;
|
|
28549
28549
|
null_unitvariant_id: number;
|
|
28550
28550
|
features?: {
|
|
28551
28551
|
pe_practical?: boolean | undefined;
|
|
@@ -28666,7 +28666,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
28666
28666
|
};
|
|
28667
28667
|
lessonSlug: string;
|
|
28668
28668
|
isLegacy: boolean;
|
|
28669
|
-
programmeSlug: string;
|
|
28670
28669
|
lessonData: {
|
|
28671
28670
|
createdAt: string;
|
|
28672
28671
|
updatedAt: string;
|
|
@@ -28804,6 +28803,7 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
28804
28803
|
priorKnowledgeRequirements?: string[] | null | undefined;
|
|
28805
28804
|
};
|
|
28806
28805
|
unitSlug: string;
|
|
28806
|
+
programmeSlug: string;
|
|
28807
28807
|
nullUnitvariantId: number;
|
|
28808
28808
|
features?: {
|
|
28809
28809
|
pePractical?: boolean | undefined;
|