@oaknational/oak-curriculum-schema 2.5.0 → 2.9.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/cjs/index.cjs +1 -1
- package/cjs/schema/internal/entity_state/entity_state.fixture.cjs +2 -0
- package/cjs/schema/internal/entity_state/entity_state.fixture.cjs.map +1 -0
- package/cjs/schema/internal/entity_state/entity_state.schema.cjs +2 -0
- package/cjs/schema/internal/entity_state/entity_state.schema.cjs.map +1 -0
- package/cjs/schema/published/components/assetObject/assetObject.schema.cjs +2 -0
- package/cjs/schema/published/components/assetObject/assetObject.schema.cjs.map +1 -0
- package/cjs/schema/published/lessonAssets/lessonAssets.schema.cjs +2 -0
- package/cjs/schema/published/lessonAssets/lessonAssets.schema.cjs.map +1 -0
- package/cjs/schema/published/publishedAssets/publishedAssets.fixture.cjs +2 -0
- package/cjs/schema/published/publishedAssets/publishedAssets.fixture.cjs.map +1 -0
- package/cjs/schema/published/publishedAssets/publishedAssets.schema.cjs +2 -0
- package/cjs/schema/published/publishedAssets/publishedAssets.schema.cjs.map +1 -0
- package/cjs/schema/published/syntheticUnitvariantLessons/syntheticUnitvariantLessons.fixture.cjs +1 -1
- package/cjs/schema/published/syntheticUnitvariantLessons/syntheticUnitvariantLessons.fixture.cjs.map +1 -1
- package/cjs/schema/published/syntheticUnitvariantLessons/syntheticUnitvariantLessons.schema.cjs +1 -1
- package/cjs/schema/published/syntheticUnitvariantLessons/syntheticUnitvariantLessons.schema.cjs.map +1 -1
- package/esm/index.js +1 -1
- package/esm/schema/internal/entity_state/entity_state.fixture.js +2 -0
- package/esm/schema/internal/entity_state/entity_state.fixture.js.map +1 -0
- package/esm/schema/internal/entity_state/entity_state.schema.js +2 -0
- package/esm/schema/internal/entity_state/entity_state.schema.js.map +1 -0
- package/esm/schema/published/components/assetObject/assetObject.schema.js +2 -0
- package/esm/schema/published/components/assetObject/assetObject.schema.js.map +1 -0
- package/esm/schema/published/lessonAssets/lessonAssets.schema.js +2 -0
- package/esm/schema/published/lessonAssets/lessonAssets.schema.js.map +1 -0
- package/esm/schema/published/publishedAssets/publishedAssets.fixture.js +2 -0
- package/esm/schema/published/publishedAssets/publishedAssets.fixture.js.map +1 -0
- package/esm/schema/published/publishedAssets/publishedAssets.schema.js +2 -0
- package/esm/schema/published/publishedAssets/publishedAssets.schema.js.map +1 -0
- package/esm/schema/published/syntheticUnitvariantLessons/syntheticUnitvariantLessons.fixture.js +1 -1
- package/esm/schema/published/syntheticUnitvariantLessons/syntheticUnitvariantLessons.fixture.js.map +1 -1
- package/esm/schema/published/syntheticUnitvariantLessons/syntheticUnitvariantLessons.schema.js +1 -1
- package/esm/schema/published/syntheticUnitvariantLessons/syntheticUnitvariantLessons.schema.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/schema/internal/entity_state/entity_state.fixture.ts +32 -0
- package/src/schema/internal/entity_state/entity_state.schema.ts +44 -0
- package/src/schema/internal/entity_state/index.ts +3 -0
- package/src/schema/internal/index.ts +1 -0
- package/src/schema/published/components/assetObject/assetObject.schema.ts +28 -0
- package/src/schema/published/components/assetObject/index.ts +2 -0
- package/src/schema/published/components/index.ts +1 -0
- package/src/schema/published/index.ts +2 -0
- package/src/schema/published/lessonAssets/index.ts +2 -0
- package/src/schema/published/lessonAssets/lessonAssets.schema.ts +67 -0
- package/src/schema/published/publishedAssets/index.ts +3 -0
- package/src/schema/published/publishedAssets/publishedAssets.fixture.ts +26 -0
- package/src/schema/published/publishedAssets/publishedAssets.schema.ts +22 -0
- package/src/schema/published/syntheticUnitvariantLessons/syntheticUnitvariantLessons.fixture.ts +1 -0
- package/src/schema/published/syntheticUnitvariantLessons/syntheticUnitvariantLessons.schema.ts +1 -1
- package/types.d.ts +724 -39
package/types.d.ts
CHANGED
|
@@ -23,6 +23,139 @@ declare const videoIngestStatesSchema: z.ZodEnum<{
|
|
|
23
23
|
}>;
|
|
24
24
|
type VideoIngestStates = z.infer<typeof videoIngestStatesSchema>;
|
|
25
25
|
|
|
26
|
+
declare const entityStatusSchema: z.ZodEnum<{
|
|
27
|
+
api_neutral: "api_neutral";
|
|
28
|
+
api_queued: "api_queued";
|
|
29
|
+
api_in_progress: "api_in_progress";
|
|
30
|
+
api_failed: "api_failed";
|
|
31
|
+
ingest_in_progress: "ingest_in_progress";
|
|
32
|
+
ingest_failed: "ingest_failed";
|
|
33
|
+
ingest_completed: "ingest_completed";
|
|
34
|
+
}>;
|
|
35
|
+
type EntityStatus = z.infer<typeof entityStatusSchema>;
|
|
36
|
+
declare const entityTypeSchema: z.ZodEnum<{
|
|
37
|
+
lesson_guide: "lesson_guide";
|
|
38
|
+
quiz: "quiz";
|
|
39
|
+
slidedeck: "slidedeck";
|
|
40
|
+
video: "video";
|
|
41
|
+
worksheet: "worksheet";
|
|
42
|
+
worksheet_answers: "worksheet_answers";
|
|
43
|
+
lesson: "lesson";
|
|
44
|
+
downloadable_file: "downloadable_file";
|
|
45
|
+
supplementary_resource: "supplementary_resource";
|
|
46
|
+
media_clip: "media_clip";
|
|
47
|
+
videocaption: "videocaption";
|
|
48
|
+
}>;
|
|
49
|
+
type EntityType = z.infer<typeof entityTypeSchema>;
|
|
50
|
+
declare const entityStateSchema: z.ZodObject<{
|
|
51
|
+
created_at: z.ZodString;
|
|
52
|
+
updated_at: z.ZodString;
|
|
53
|
+
entity_id: z.ZodNumber;
|
|
54
|
+
entity_type: z.ZodEnum<{
|
|
55
|
+
lesson_guide: "lesson_guide";
|
|
56
|
+
quiz: "quiz";
|
|
57
|
+
slidedeck: "slidedeck";
|
|
58
|
+
video: "video";
|
|
59
|
+
worksheet: "worksheet";
|
|
60
|
+
worksheet_answers: "worksheet_answers";
|
|
61
|
+
lesson: "lesson";
|
|
62
|
+
downloadable_file: "downloadable_file";
|
|
63
|
+
supplementary_resource: "supplementary_resource";
|
|
64
|
+
media_clip: "media_clip";
|
|
65
|
+
videocaption: "videocaption";
|
|
66
|
+
}>;
|
|
67
|
+
entity_status: z.ZodDefault<z.ZodEnum<{
|
|
68
|
+
api_neutral: "api_neutral";
|
|
69
|
+
api_queued: "api_queued";
|
|
70
|
+
api_in_progress: "api_in_progress";
|
|
71
|
+
api_failed: "api_failed";
|
|
72
|
+
ingest_in_progress: "ingest_in_progress";
|
|
73
|
+
ingest_failed: "ingest_failed";
|
|
74
|
+
ingest_completed: "ingest_completed";
|
|
75
|
+
}>>;
|
|
76
|
+
last_error_location: z.ZodNullable<z.ZodString>;
|
|
77
|
+
last_error_message: z.ZodNullable<z.ZodString>;
|
|
78
|
+
last_error_timestamp: z.ZodNullable<z.ZodString>;
|
|
79
|
+
last_ingest_id: z.ZodNullable<z.ZodUUID>;
|
|
80
|
+
}, z.core.$strip>;
|
|
81
|
+
type EntityState = z.infer<typeof entityStateSchema>;
|
|
82
|
+
declare const entityStateSchemaCamel: Omit<z.ZodType<{
|
|
83
|
+
createdAt: string;
|
|
84
|
+
updatedAt: string;
|
|
85
|
+
entityId: number;
|
|
86
|
+
entityType: "lesson_guide" | "quiz" | "slidedeck" | "video" | "worksheet" | "worksheet_answers" | "lesson" | "downloadable_file" | "supplementary_resource" | "media_clip" | "videocaption";
|
|
87
|
+
entityStatus: "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed" | "ingest_completed";
|
|
88
|
+
lastErrorLocation: string | null;
|
|
89
|
+
lastErrorMessage: string | null;
|
|
90
|
+
lastErrorTimestamp: string | null;
|
|
91
|
+
lastIngestId: string | null;
|
|
92
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
93
|
+
createdAt: string;
|
|
94
|
+
updatedAt: string;
|
|
95
|
+
entityId: number;
|
|
96
|
+
entityType: "lesson_guide" | "quiz" | "slidedeck" | "video" | "worksheet" | "worksheet_answers" | "lesson" | "downloadable_file" | "supplementary_resource" | "media_clip" | "videocaption";
|
|
97
|
+
entityStatus: "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed" | "ingest_completed";
|
|
98
|
+
lastErrorLocation: string | null;
|
|
99
|
+
lastErrorMessage: string | null;
|
|
100
|
+
lastErrorTimestamp: string | null;
|
|
101
|
+
lastIngestId: string | null;
|
|
102
|
+
}, unknown>>, "parse" | "safeParse"> & {
|
|
103
|
+
parse: (input: {
|
|
104
|
+
created_at: string;
|
|
105
|
+
updated_at: string;
|
|
106
|
+
entity_id: number;
|
|
107
|
+
entity_type: "lesson_guide" | "quiz" | "slidedeck" | "video" | "worksheet" | "worksheet_answers" | "lesson" | "downloadable_file" | "supplementary_resource" | "media_clip" | "videocaption";
|
|
108
|
+
entity_status: "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed" | "ingest_completed";
|
|
109
|
+
last_error_location: string | null;
|
|
110
|
+
last_error_message: string | null;
|
|
111
|
+
last_error_timestamp: string | null;
|
|
112
|
+
last_ingest_id: string | null;
|
|
113
|
+
}) => {
|
|
114
|
+
createdAt: string;
|
|
115
|
+
updatedAt: string;
|
|
116
|
+
entityId: number;
|
|
117
|
+
entityType: "lesson_guide" | "quiz" | "slidedeck" | "video" | "worksheet" | "worksheet_answers" | "lesson" | "downloadable_file" | "supplementary_resource" | "media_clip" | "videocaption";
|
|
118
|
+
entityStatus: "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed" | "ingest_completed";
|
|
119
|
+
lastErrorLocation: string | null;
|
|
120
|
+
lastErrorMessage: string | null;
|
|
121
|
+
lastErrorTimestamp: string | null;
|
|
122
|
+
lastIngestId: string | null;
|
|
123
|
+
};
|
|
124
|
+
safeParse: (input: {
|
|
125
|
+
created_at: string;
|
|
126
|
+
updated_at: string;
|
|
127
|
+
entity_id: number;
|
|
128
|
+
entity_type: "lesson_guide" | "quiz" | "slidedeck" | "video" | "worksheet" | "worksheet_answers" | "lesson" | "downloadable_file" | "supplementary_resource" | "media_clip" | "videocaption";
|
|
129
|
+
entity_status: "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed" | "ingest_completed";
|
|
130
|
+
last_error_location: string | null;
|
|
131
|
+
last_error_message: string | null;
|
|
132
|
+
last_error_timestamp: string | null;
|
|
133
|
+
last_ingest_id: string | null;
|
|
134
|
+
}) => {
|
|
135
|
+
success: boolean;
|
|
136
|
+
data?: {
|
|
137
|
+
createdAt: string;
|
|
138
|
+
updatedAt: string;
|
|
139
|
+
entityId: number;
|
|
140
|
+
entityType: "lesson_guide" | "quiz" | "slidedeck" | "video" | "worksheet" | "worksheet_answers" | "lesson" | "downloadable_file" | "supplementary_resource" | "media_clip" | "videocaption";
|
|
141
|
+
entityStatus: "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed" | "ingest_completed";
|
|
142
|
+
lastErrorLocation: string | null;
|
|
143
|
+
lastErrorMessage: string | null;
|
|
144
|
+
lastErrorTimestamp: string | null;
|
|
145
|
+
lastIngestId: string | null;
|
|
146
|
+
} | undefined;
|
|
147
|
+
error?: any;
|
|
148
|
+
};
|
|
149
|
+
};
|
|
150
|
+
type EntityStateCamel = z.infer<typeof entityStateSchemaCamel>;
|
|
151
|
+
|
|
152
|
+
declare const entityStateFixture: ({ overrides, }?: {
|
|
153
|
+
overrides?: Partial<EntityState>;
|
|
154
|
+
}) => EntityState;
|
|
155
|
+
declare const entityStateFixtureCamel: ({ overrides, }?: {
|
|
156
|
+
overrides?: Partial<EntityStateCamel>;
|
|
157
|
+
}) => EntityStateCamel;
|
|
158
|
+
|
|
26
159
|
declare const reviewLessonsSchema: z.ZodObject<{
|
|
27
160
|
created_at: z.ZodString;
|
|
28
161
|
updated_at: z.ZodString;
|
|
@@ -15162,6 +15295,280 @@ declare const actionsFixtureCamel: ({ overrides, }?: {
|
|
|
15162
15295
|
overrides?: Partial<ActionsCamel>;
|
|
15163
15296
|
}) => ActionsCamel;
|
|
15164
15297
|
|
|
15298
|
+
/**
|
|
15299
|
+
* Covers all file format types in the asset_object JSONB column, including
|
|
15300
|
+
* text formats (word, opendocument_text) used by supplementary and lesson guide assets.
|
|
15301
|
+
*
|
|
15302
|
+
* Uses partial+nullable bucket schemas because asset_object JSONB can contain
|
|
15303
|
+
* bucket entries with absent fields when content has not been fully populated.
|
|
15304
|
+
*/
|
|
15305
|
+
declare const publishedAssetObjectSchema: z.ZodObject<{
|
|
15306
|
+
pdf: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15307
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15308
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15309
|
+
}, z.core.$strip>>>;
|
|
15310
|
+
powerpoint: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15311
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15312
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15313
|
+
}, z.core.$strip>>>;
|
|
15314
|
+
opendocument_presentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15315
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15316
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15317
|
+
}, z.core.$strip>>>;
|
|
15318
|
+
word: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15319
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15320
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15321
|
+
}, z.core.$strip>>>;
|
|
15322
|
+
opendocument_text: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15323
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15324
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15325
|
+
}, z.core.$strip>>>;
|
|
15326
|
+
google_drive: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15327
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15328
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
15329
|
+
}, z.core.$strip>>>;
|
|
15330
|
+
google_slide: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15331
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15332
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
15333
|
+
}, z.core.$strip>>>;
|
|
15334
|
+
}, z.core.$strip>;
|
|
15335
|
+
type PublishedAssetObject = z.infer<typeof publishedAssetObjectSchema>;
|
|
15336
|
+
|
|
15337
|
+
declare const lessonAssetsSchema: z.ZodObject<{
|
|
15338
|
+
lesson_id: z.ZodNumber;
|
|
15339
|
+
slug: z.ZodString;
|
|
15340
|
+
features: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15341
|
+
pe_practical: z.ZodOptional<z.ZodBoolean>;
|
|
15342
|
+
age_restriction: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15343
|
+
agf__geo_restricted: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
15344
|
+
agf__login_required: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
15345
|
+
}, z.core.$strip>>>;
|
|
15346
|
+
quiz_exit: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15347
|
+
quiz_uid: z.ZodString;
|
|
15348
|
+
quiz_object: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15349
|
+
quiz: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15350
|
+
pdf: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15351
|
+
bucket_name: z.ZodNullable<z.ZodString>;
|
|
15352
|
+
bucket_path: z.ZodNullable<z.ZodString>;
|
|
15353
|
+
}, z.core.$strip>>>;
|
|
15354
|
+
}, z.core.$strip>>>;
|
|
15355
|
+
quiz_answers: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15356
|
+
pdf: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15357
|
+
bucket_name: z.ZodNullable<z.ZodString>;
|
|
15358
|
+
bucket_path: z.ZodNullable<z.ZodString>;
|
|
15359
|
+
}, z.core.$strip>>>;
|
|
15360
|
+
}, z.core.$strip>>>;
|
|
15361
|
+
}, z.core.$strip>>>;
|
|
15362
|
+
updated_at: z.ZodString;
|
|
15363
|
+
}, z.core.$strip>>>;
|
|
15364
|
+
quiz_starter: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15365
|
+
quiz_uid: z.ZodString;
|
|
15366
|
+
quiz_object: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15367
|
+
quiz: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15368
|
+
pdf: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15369
|
+
bucket_name: z.ZodNullable<z.ZodString>;
|
|
15370
|
+
bucket_path: z.ZodNullable<z.ZodString>;
|
|
15371
|
+
}, z.core.$strip>>>;
|
|
15372
|
+
}, z.core.$strip>>>;
|
|
15373
|
+
quiz_answers: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15374
|
+
pdf: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15375
|
+
bucket_name: z.ZodNullable<z.ZodString>;
|
|
15376
|
+
bucket_path: z.ZodNullable<z.ZodString>;
|
|
15377
|
+
}, z.core.$strip>>>;
|
|
15378
|
+
}, z.core.$strip>>>;
|
|
15379
|
+
}, z.core.$strip>>>;
|
|
15380
|
+
updated_at: z.ZodString;
|
|
15381
|
+
}, z.core.$strip>>>;
|
|
15382
|
+
asset_slidedeck: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15383
|
+
asset_uid: z.ZodString;
|
|
15384
|
+
asset_object: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15385
|
+
pdf: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15386
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15387
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15388
|
+
}, z.core.$strip>>>;
|
|
15389
|
+
powerpoint: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15390
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15391
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15392
|
+
}, z.core.$strip>>>;
|
|
15393
|
+
opendocument_presentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15394
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15395
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15396
|
+
}, z.core.$strip>>>;
|
|
15397
|
+
word: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15398
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15399
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15400
|
+
}, z.core.$strip>>>;
|
|
15401
|
+
opendocument_text: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15402
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15403
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15404
|
+
}, z.core.$strip>>>;
|
|
15405
|
+
google_drive: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15406
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15407
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
15408
|
+
}, z.core.$strip>>>;
|
|
15409
|
+
google_slide: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15410
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15411
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
15412
|
+
}, z.core.$strip>>>;
|
|
15413
|
+
}, z.core.$strip>>>;
|
|
15414
|
+
created_at: z.ZodString;
|
|
15415
|
+
updated_at: z.ZodString;
|
|
15416
|
+
asset_type: z.ZodLiteral<"slidedeck">;
|
|
15417
|
+
}, z.core.$strip>>>;
|
|
15418
|
+
asset_worksheet: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15419
|
+
asset_uid: z.ZodString;
|
|
15420
|
+
asset_object: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15421
|
+
pdf: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15422
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15423
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15424
|
+
}, z.core.$strip>>>;
|
|
15425
|
+
powerpoint: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15426
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15427
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15428
|
+
}, z.core.$strip>>>;
|
|
15429
|
+
opendocument_presentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15430
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15431
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15432
|
+
}, z.core.$strip>>>;
|
|
15433
|
+
word: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15434
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15435
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15436
|
+
}, z.core.$strip>>>;
|
|
15437
|
+
opendocument_text: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15438
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15439
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15440
|
+
}, z.core.$strip>>>;
|
|
15441
|
+
google_drive: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15442
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15443
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
15444
|
+
}, z.core.$strip>>>;
|
|
15445
|
+
google_slide: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15446
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15447
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
15448
|
+
}, z.core.$strip>>>;
|
|
15449
|
+
}, z.core.$strip>>>;
|
|
15450
|
+
created_at: z.ZodString;
|
|
15451
|
+
updated_at: z.ZodString;
|
|
15452
|
+
asset_type: z.ZodLiteral<"worksheet">;
|
|
15453
|
+
}, z.core.$strip>>>;
|
|
15454
|
+
asset_worksheet_answers: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15455
|
+
asset_uid: z.ZodString;
|
|
15456
|
+
asset_object: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15457
|
+
pdf: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15458
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15459
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15460
|
+
}, z.core.$strip>>>;
|
|
15461
|
+
powerpoint: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15462
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15463
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15464
|
+
}, z.core.$strip>>>;
|
|
15465
|
+
opendocument_presentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15466
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15467
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15468
|
+
}, z.core.$strip>>>;
|
|
15469
|
+
word: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15470
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15471
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15472
|
+
}, z.core.$strip>>>;
|
|
15473
|
+
opendocument_text: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15474
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15475
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15476
|
+
}, z.core.$strip>>>;
|
|
15477
|
+
google_drive: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15478
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15479
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
15480
|
+
}, z.core.$strip>>>;
|
|
15481
|
+
google_slide: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15482
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15483
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
15484
|
+
}, z.core.$strip>>>;
|
|
15485
|
+
}, z.core.$strip>>>;
|
|
15486
|
+
created_at: z.ZodString;
|
|
15487
|
+
updated_at: z.ZodString;
|
|
15488
|
+
asset_type: z.ZodLiteral<"worksheet_answers">;
|
|
15489
|
+
}, z.core.$strip>>>;
|
|
15490
|
+
asset_supplementary_asset: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15491
|
+
asset_uid: z.ZodString;
|
|
15492
|
+
asset_object: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15493
|
+
pdf: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15494
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15495
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15496
|
+
}, z.core.$strip>>>;
|
|
15497
|
+
powerpoint: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15498
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15499
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15500
|
+
}, z.core.$strip>>>;
|
|
15501
|
+
opendocument_presentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15502
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15503
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15504
|
+
}, z.core.$strip>>>;
|
|
15505
|
+
word: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15506
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15507
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15508
|
+
}, z.core.$strip>>>;
|
|
15509
|
+
opendocument_text: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15510
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15511
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15512
|
+
}, z.core.$strip>>>;
|
|
15513
|
+
google_drive: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15514
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15515
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
15516
|
+
}, z.core.$strip>>>;
|
|
15517
|
+
google_slide: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15518
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15519
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
15520
|
+
}, z.core.$strip>>>;
|
|
15521
|
+
}, z.core.$strip>>>;
|
|
15522
|
+
created_at: z.ZodString;
|
|
15523
|
+
updated_at: z.ZodString;
|
|
15524
|
+
asset_type: z.ZodLiteral<"supplementary_resource">;
|
|
15525
|
+
}, z.core.$strip>>>;
|
|
15526
|
+
asset_lesson_guide: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15527
|
+
asset_uid: z.ZodString;
|
|
15528
|
+
asset_object: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15529
|
+
pdf: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15530
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15531
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15532
|
+
}, z.core.$strip>>>;
|
|
15533
|
+
powerpoint: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15534
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15535
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15536
|
+
}, z.core.$strip>>>;
|
|
15537
|
+
opendocument_presentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15538
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15539
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15540
|
+
}, z.core.$strip>>>;
|
|
15541
|
+
word: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15542
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15543
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15544
|
+
}, z.core.$strip>>>;
|
|
15545
|
+
opendocument_text: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15546
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15547
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15548
|
+
}, z.core.$strip>>>;
|
|
15549
|
+
google_drive: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15550
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15551
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
15552
|
+
}, z.core.$strip>>>;
|
|
15553
|
+
google_slide: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
15554
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15555
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
15556
|
+
}, z.core.$strip>>>;
|
|
15557
|
+
}, z.core.$strip>>>;
|
|
15558
|
+
created_at: z.ZodString;
|
|
15559
|
+
updated_at: z.ZodString;
|
|
15560
|
+
asset_type: z.ZodLiteral<"lesson_guide">;
|
|
15561
|
+
url: z.ZodString;
|
|
15562
|
+
}, z.core.$strip>>>;
|
|
15563
|
+
tpc_downloadablefiles: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
15564
|
+
asset_id: z.ZodNullable<z.ZodNumber>;
|
|
15565
|
+
media_object: z.ZodObject<{
|
|
15566
|
+
display_name: z.ZodString;
|
|
15567
|
+
}, z.core.$loose>;
|
|
15568
|
+
}, z.core.$strip>>>>;
|
|
15569
|
+
}, z.core.$strip>;
|
|
15570
|
+
type LessonAssets = z.infer<typeof lessonAssetsSchema>;
|
|
15571
|
+
|
|
15165
15572
|
declare const lessonContentSchema: z.ZodObject<{
|
|
15166
15573
|
lesson_id: z.ZodNumber;
|
|
15167
15574
|
_state: z.ZodUnion<readonly [z.ZodLiteral<"published">, z.ZodLiteral<"new">, z.ZodLiteral<"migration">]>;
|
|
@@ -19024,6 +19431,7 @@ declare const programmeListingSchema: z.ZodObject<{
|
|
|
19024
19431
|
dataset: z.ZodOptional<z.ZodString>;
|
|
19025
19432
|
}, z.core.$strip>;
|
|
19026
19433
|
is_legacy: z.ZodBoolean;
|
|
19434
|
+
programme_slug: z.ZodString;
|
|
19027
19435
|
lesson_data: z.ZodObject<{
|
|
19028
19436
|
created_at: z.ZodString;
|
|
19029
19437
|
updated_at: z.ZodString;
|
|
@@ -19137,7 +19545,6 @@ declare const programmeListingSchema: z.ZodObject<{
|
|
|
19137
19545
|
}, z.core.$strip>>>;
|
|
19138
19546
|
lesson_release_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19139
19547
|
}, z.core.$strip>;
|
|
19140
|
-
programme_slug: z.ZodString;
|
|
19141
19548
|
}, z.core.$strip>;
|
|
19142
19549
|
type ProgrammeListing = z.infer<typeof programmeListingSchema>;
|
|
19143
19550
|
declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
@@ -19178,6 +19585,7 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
19178
19585
|
dataset?: string | undefined;
|
|
19179
19586
|
};
|
|
19180
19587
|
isLegacy: boolean;
|
|
19588
|
+
programmeSlug: string;
|
|
19181
19589
|
lessonData: {
|
|
19182
19590
|
createdAt: string;
|
|
19183
19591
|
updatedAt: string;
|
|
@@ -19298,7 +19706,6 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
19298
19706
|
} | null | undefined;
|
|
19299
19707
|
lessonReleaseDate?: string | null | undefined;
|
|
19300
19708
|
};
|
|
19301
|
-
programmeSlug: string;
|
|
19302
19709
|
}, unknown, z.core.$ZodTypeInternals<{
|
|
19303
19710
|
programmeFields: {
|
|
19304
19711
|
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";
|
|
@@ -19337,6 +19744,7 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
19337
19744
|
dataset?: string | undefined;
|
|
19338
19745
|
};
|
|
19339
19746
|
isLegacy: boolean;
|
|
19747
|
+
programmeSlug: string;
|
|
19340
19748
|
lessonData: {
|
|
19341
19749
|
createdAt: string;
|
|
19342
19750
|
updatedAt: string;
|
|
@@ -19457,7 +19865,6 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
19457
19865
|
} | null | undefined;
|
|
19458
19866
|
lessonReleaseDate?: string | null | undefined;
|
|
19459
19867
|
};
|
|
19460
|
-
programmeSlug: string;
|
|
19461
19868
|
}, unknown>>, "parse" | "safeParse"> & {
|
|
19462
19869
|
parse: (input: {
|
|
19463
19870
|
programme_fields: {
|
|
@@ -19497,6 +19904,7 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
19497
19904
|
dataset?: string | undefined;
|
|
19498
19905
|
};
|
|
19499
19906
|
is_legacy: boolean;
|
|
19907
|
+
programme_slug: string;
|
|
19500
19908
|
lesson_data: {
|
|
19501
19909
|
created_at: string;
|
|
19502
19910
|
updated_at: string;
|
|
@@ -19605,7 +20013,6 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
19605
20013
|
}[]> | null | undefined;
|
|
19606
20014
|
lesson_release_date?: string | null | undefined;
|
|
19607
20015
|
};
|
|
19608
|
-
programme_slug: string;
|
|
19609
20016
|
}) => {
|
|
19610
20017
|
programmeFields: {
|
|
19611
20018
|
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";
|
|
@@ -19644,6 +20051,7 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
19644
20051
|
dataset?: string | undefined;
|
|
19645
20052
|
};
|
|
19646
20053
|
isLegacy: boolean;
|
|
20054
|
+
programmeSlug: string;
|
|
19647
20055
|
lessonData: {
|
|
19648
20056
|
createdAt: string;
|
|
19649
20057
|
updatedAt: string;
|
|
@@ -19764,7 +20172,6 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
19764
20172
|
} | null | undefined;
|
|
19765
20173
|
lessonReleaseDate?: string | null | undefined;
|
|
19766
20174
|
};
|
|
19767
|
-
programmeSlug: string;
|
|
19768
20175
|
};
|
|
19769
20176
|
safeParse: (input: {
|
|
19770
20177
|
programme_fields: {
|
|
@@ -19804,6 +20211,7 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
19804
20211
|
dataset?: string | undefined;
|
|
19805
20212
|
};
|
|
19806
20213
|
is_legacy: boolean;
|
|
20214
|
+
programme_slug: string;
|
|
19807
20215
|
lesson_data: {
|
|
19808
20216
|
created_at: string;
|
|
19809
20217
|
updated_at: string;
|
|
@@ -19912,7 +20320,6 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
19912
20320
|
}[]> | null | undefined;
|
|
19913
20321
|
lesson_release_date?: string | null | undefined;
|
|
19914
20322
|
};
|
|
19915
|
-
programme_slug: string;
|
|
19916
20323
|
}) => {
|
|
19917
20324
|
success: boolean;
|
|
19918
20325
|
data?: {
|
|
@@ -19953,6 +20360,7 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
19953
20360
|
dataset?: string | undefined;
|
|
19954
20361
|
};
|
|
19955
20362
|
isLegacy: boolean;
|
|
20363
|
+
programmeSlug: string;
|
|
19956
20364
|
lessonData: {
|
|
19957
20365
|
createdAt: string;
|
|
19958
20366
|
updatedAt: string;
|
|
@@ -20073,7 +20481,6 @@ declare const programmeListingSchemaCamel: Omit<z.ZodType<{
|
|
|
20073
20481
|
} | null | undefined;
|
|
20074
20482
|
lessonReleaseDate?: string | null | undefined;
|
|
20075
20483
|
};
|
|
20076
|
-
programmeSlug: string;
|
|
20077
20484
|
} | undefined;
|
|
20078
20485
|
error?: any;
|
|
20079
20486
|
};
|
|
@@ -20371,6 +20778,7 @@ declare const programmeListingArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
20371
20778
|
dataset: z.ZodOptional<z.ZodString>;
|
|
20372
20779
|
}, z.core.$strip>;
|
|
20373
20780
|
is_legacy: z.ZodBoolean;
|
|
20781
|
+
programme_slug: z.ZodString;
|
|
20374
20782
|
lesson_data: z.ZodObject<{
|
|
20375
20783
|
created_at: z.ZodString;
|
|
20376
20784
|
updated_at: z.ZodString;
|
|
@@ -20484,7 +20892,6 @@ declare const programmeListingArraySchema: z.ZodArray<z.ZodObject<{
|
|
|
20484
20892
|
}, z.core.$strip>>>;
|
|
20485
20893
|
lesson_release_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20486
20894
|
}, z.core.$strip>;
|
|
20487
|
-
programme_slug: z.ZodString;
|
|
20488
20895
|
}, z.core.$strip>>;
|
|
20489
20896
|
type ProgrammeListingArray = z.infer<typeof programmeListingArraySchema>;
|
|
20490
20897
|
declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
@@ -20525,6 +20932,7 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
20525
20932
|
dataset?: string | undefined;
|
|
20526
20933
|
};
|
|
20527
20934
|
isLegacy: boolean;
|
|
20935
|
+
programmeSlug: string;
|
|
20528
20936
|
lessonData: {
|
|
20529
20937
|
createdAt: string;
|
|
20530
20938
|
updatedAt: string;
|
|
@@ -20645,7 +21053,6 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
20645
21053
|
} | null | undefined;
|
|
20646
21054
|
lessonReleaseDate?: string | null | undefined;
|
|
20647
21055
|
};
|
|
20648
|
-
programmeSlug: string;
|
|
20649
21056
|
}[], unknown, z.core.$ZodTypeInternals<{
|
|
20650
21057
|
programmeFields: {
|
|
20651
21058
|
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";
|
|
@@ -20684,6 +21091,7 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
20684
21091
|
dataset?: string | undefined;
|
|
20685
21092
|
};
|
|
20686
21093
|
isLegacy: boolean;
|
|
21094
|
+
programmeSlug: string;
|
|
20687
21095
|
lessonData: {
|
|
20688
21096
|
createdAt: string;
|
|
20689
21097
|
updatedAt: string;
|
|
@@ -20804,7 +21212,6 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
20804
21212
|
} | null | undefined;
|
|
20805
21213
|
lessonReleaseDate?: string | null | undefined;
|
|
20806
21214
|
};
|
|
20807
|
-
programmeSlug: string;
|
|
20808
21215
|
}[], unknown>>, "parse" | "safeParse"> & {
|
|
20809
21216
|
parse: (input: {
|
|
20810
21217
|
programme_fields: {
|
|
@@ -20844,6 +21251,7 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
20844
21251
|
dataset?: string | undefined;
|
|
20845
21252
|
};
|
|
20846
21253
|
is_legacy: boolean;
|
|
21254
|
+
programme_slug: string;
|
|
20847
21255
|
lesson_data: {
|
|
20848
21256
|
created_at: string;
|
|
20849
21257
|
updated_at: string;
|
|
@@ -20952,7 +21360,6 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
20952
21360
|
}[]> | null | undefined;
|
|
20953
21361
|
lesson_release_date?: string | null | undefined;
|
|
20954
21362
|
};
|
|
20955
|
-
programme_slug: string;
|
|
20956
21363
|
}[]) => {
|
|
20957
21364
|
programmeFields: {
|
|
20958
21365
|
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";
|
|
@@ -20991,6 +21398,7 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
20991
21398
|
dataset?: string | undefined;
|
|
20992
21399
|
};
|
|
20993
21400
|
isLegacy: boolean;
|
|
21401
|
+
programmeSlug: string;
|
|
20994
21402
|
lessonData: {
|
|
20995
21403
|
createdAt: string;
|
|
20996
21404
|
updatedAt: string;
|
|
@@ -21111,7 +21519,6 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
21111
21519
|
} | null | undefined;
|
|
21112
21520
|
lessonReleaseDate?: string | null | undefined;
|
|
21113
21521
|
};
|
|
21114
|
-
programmeSlug: string;
|
|
21115
21522
|
}[];
|
|
21116
21523
|
safeParse: (input: {
|
|
21117
21524
|
programme_fields: {
|
|
@@ -21151,6 +21558,7 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
21151
21558
|
dataset?: string | undefined;
|
|
21152
21559
|
};
|
|
21153
21560
|
is_legacy: boolean;
|
|
21561
|
+
programme_slug: string;
|
|
21154
21562
|
lesson_data: {
|
|
21155
21563
|
created_at: string;
|
|
21156
21564
|
updated_at: string;
|
|
@@ -21259,7 +21667,6 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
21259
21667
|
}[]> | null | undefined;
|
|
21260
21668
|
lesson_release_date?: string | null | undefined;
|
|
21261
21669
|
};
|
|
21262
|
-
programme_slug: string;
|
|
21263
21670
|
}[]) => {
|
|
21264
21671
|
success: boolean;
|
|
21265
21672
|
data?: {
|
|
@@ -21300,6 +21707,7 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
21300
21707
|
dataset?: string | undefined;
|
|
21301
21708
|
};
|
|
21302
21709
|
isLegacy: boolean;
|
|
21710
|
+
programmeSlug: string;
|
|
21303
21711
|
lessonData: {
|
|
21304
21712
|
createdAt: string;
|
|
21305
21713
|
updatedAt: string;
|
|
@@ -21420,13 +21828,290 @@ declare const programmeListingArraySchemaCamel: Omit<z.ZodType<{
|
|
|
21420
21828
|
} | null | undefined;
|
|
21421
21829
|
lessonReleaseDate?: string | null | undefined;
|
|
21422
21830
|
};
|
|
21423
|
-
programmeSlug: string;
|
|
21424
21831
|
}[] | undefined;
|
|
21425
21832
|
error?: any;
|
|
21426
21833
|
};
|
|
21427
21834
|
};
|
|
21428
21835
|
type ProgrammeListingArrayCamel = z.infer<typeof programmeListingArraySchemaCamel>;
|
|
21429
21836
|
|
|
21837
|
+
declare const publishedAssetsSchema: z.ZodObject<{
|
|
21838
|
+
created_at: z.ZodString;
|
|
21839
|
+
updated_at: z.ZodString;
|
|
21840
|
+
asset_id: z.ZodNumber;
|
|
21841
|
+
asset_uid: z.ZodString;
|
|
21842
|
+
asset_type: z.ZodEnum<{
|
|
21843
|
+
lesson_guide: "lesson_guide";
|
|
21844
|
+
slidedeck: "slidedeck";
|
|
21845
|
+
worksheet: "worksheet";
|
|
21846
|
+
worksheet_answers: "worksheet_answers";
|
|
21847
|
+
downloadable_file: "downloadable_file";
|
|
21848
|
+
supplementary_resource: "supplementary_resource";
|
|
21849
|
+
}>;
|
|
21850
|
+
asset_object: z.ZodObject<{
|
|
21851
|
+
pdf: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
21852
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21853
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21854
|
+
}, z.core.$strip>>>;
|
|
21855
|
+
powerpoint: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
21856
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21857
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21858
|
+
}, z.core.$strip>>>;
|
|
21859
|
+
opendocument_presentation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
21860
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21861
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21862
|
+
}, z.core.$strip>>>;
|
|
21863
|
+
word: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
21864
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21865
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21866
|
+
}, z.core.$strip>>>;
|
|
21867
|
+
opendocument_text: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
21868
|
+
bucket_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21869
|
+
bucket_path: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21870
|
+
}, z.core.$strip>>>;
|
|
21871
|
+
google_drive: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
21872
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21873
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
21874
|
+
}, z.core.$strip>>>;
|
|
21875
|
+
google_slide: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
21876
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21877
|
+
url: z.ZodOptional<z.ZodNullable<z.ZodURL>>;
|
|
21878
|
+
}, z.core.$strip>>>;
|
|
21879
|
+
}, z.core.$strip>;
|
|
21880
|
+
}, z.core.$strip>;
|
|
21881
|
+
type PublishedAssets = z.infer<typeof publishedAssetsSchema>;
|
|
21882
|
+
declare const publishedAssetsSchemaCamel: Omit<z.ZodType<{
|
|
21883
|
+
createdAt: string;
|
|
21884
|
+
updatedAt: string;
|
|
21885
|
+
assetId: number;
|
|
21886
|
+
assetUid: string;
|
|
21887
|
+
assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
|
|
21888
|
+
assetObject: {
|
|
21889
|
+
pdf?: {
|
|
21890
|
+
bucketName?: string | null | undefined;
|
|
21891
|
+
bucketPath?: string | null | undefined;
|
|
21892
|
+
} | null | undefined;
|
|
21893
|
+
powerpoint?: {
|
|
21894
|
+
bucketName?: string | null | undefined;
|
|
21895
|
+
bucketPath?: string | null | undefined;
|
|
21896
|
+
} | null | undefined;
|
|
21897
|
+
opendocumentPresentation?: {
|
|
21898
|
+
bucketName?: string | null | undefined;
|
|
21899
|
+
bucketPath?: string | null | undefined;
|
|
21900
|
+
} | null | undefined;
|
|
21901
|
+
word?: {
|
|
21902
|
+
bucketName?: string | null | undefined;
|
|
21903
|
+
bucketPath?: string | null | undefined;
|
|
21904
|
+
} | null | undefined;
|
|
21905
|
+
opendocumentText?: {
|
|
21906
|
+
bucketName?: string | null | undefined;
|
|
21907
|
+
bucketPath?: string | null | undefined;
|
|
21908
|
+
} | null | undefined;
|
|
21909
|
+
googleDrive?: {
|
|
21910
|
+
id?: string | null | undefined;
|
|
21911
|
+
url?: string | null | undefined;
|
|
21912
|
+
} | null | undefined;
|
|
21913
|
+
googleSlide?: {
|
|
21914
|
+
id?: string | null | undefined;
|
|
21915
|
+
url?: string | null | undefined;
|
|
21916
|
+
} | null | undefined;
|
|
21917
|
+
};
|
|
21918
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
21919
|
+
createdAt: string;
|
|
21920
|
+
updatedAt: string;
|
|
21921
|
+
assetId: number;
|
|
21922
|
+
assetUid: string;
|
|
21923
|
+
assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
|
|
21924
|
+
assetObject: {
|
|
21925
|
+
pdf?: {
|
|
21926
|
+
bucketName?: string | null | undefined;
|
|
21927
|
+
bucketPath?: string | null | undefined;
|
|
21928
|
+
} | null | undefined;
|
|
21929
|
+
powerpoint?: {
|
|
21930
|
+
bucketName?: string | null | undefined;
|
|
21931
|
+
bucketPath?: string | null | undefined;
|
|
21932
|
+
} | null | undefined;
|
|
21933
|
+
opendocumentPresentation?: {
|
|
21934
|
+
bucketName?: string | null | undefined;
|
|
21935
|
+
bucketPath?: string | null | undefined;
|
|
21936
|
+
} | null | undefined;
|
|
21937
|
+
word?: {
|
|
21938
|
+
bucketName?: string | null | undefined;
|
|
21939
|
+
bucketPath?: string | null | undefined;
|
|
21940
|
+
} | null | undefined;
|
|
21941
|
+
opendocumentText?: {
|
|
21942
|
+
bucketName?: string | null | undefined;
|
|
21943
|
+
bucketPath?: string | null | undefined;
|
|
21944
|
+
} | null | undefined;
|
|
21945
|
+
googleDrive?: {
|
|
21946
|
+
id?: string | null | undefined;
|
|
21947
|
+
url?: string | null | undefined;
|
|
21948
|
+
} | null | undefined;
|
|
21949
|
+
googleSlide?: {
|
|
21950
|
+
id?: string | null | undefined;
|
|
21951
|
+
url?: string | null | undefined;
|
|
21952
|
+
} | null | undefined;
|
|
21953
|
+
};
|
|
21954
|
+
}, unknown>>, "parse" | "safeParse"> & {
|
|
21955
|
+
parse: (input: {
|
|
21956
|
+
created_at: string;
|
|
21957
|
+
updated_at: string;
|
|
21958
|
+
asset_id: number;
|
|
21959
|
+
asset_uid: string;
|
|
21960
|
+
asset_type: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
|
|
21961
|
+
asset_object: {
|
|
21962
|
+
pdf?: {
|
|
21963
|
+
bucket_name?: string | null | undefined;
|
|
21964
|
+
bucket_path?: string | null | undefined;
|
|
21965
|
+
} | null | undefined;
|
|
21966
|
+
powerpoint?: {
|
|
21967
|
+
bucket_name?: string | null | undefined;
|
|
21968
|
+
bucket_path?: string | null | undefined;
|
|
21969
|
+
} | null | undefined;
|
|
21970
|
+
opendocument_presentation?: {
|
|
21971
|
+
bucket_name?: string | null | undefined;
|
|
21972
|
+
bucket_path?: string | null | undefined;
|
|
21973
|
+
} | null | undefined;
|
|
21974
|
+
word?: {
|
|
21975
|
+
bucket_name?: string | null | undefined;
|
|
21976
|
+
bucket_path?: string | null | undefined;
|
|
21977
|
+
} | null | undefined;
|
|
21978
|
+
opendocument_text?: {
|
|
21979
|
+
bucket_name?: string | null | undefined;
|
|
21980
|
+
bucket_path?: string | null | undefined;
|
|
21981
|
+
} | null | undefined;
|
|
21982
|
+
google_drive?: {
|
|
21983
|
+
id?: string | null | undefined;
|
|
21984
|
+
url?: string | null | undefined;
|
|
21985
|
+
} | null | undefined;
|
|
21986
|
+
google_slide?: {
|
|
21987
|
+
id?: string | null | undefined;
|
|
21988
|
+
url?: string | null | undefined;
|
|
21989
|
+
} | null | undefined;
|
|
21990
|
+
};
|
|
21991
|
+
}) => {
|
|
21992
|
+
createdAt: string;
|
|
21993
|
+
updatedAt: string;
|
|
21994
|
+
assetId: number;
|
|
21995
|
+
assetUid: string;
|
|
21996
|
+
assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
|
|
21997
|
+
assetObject: {
|
|
21998
|
+
pdf?: {
|
|
21999
|
+
bucketName?: string | null | undefined;
|
|
22000
|
+
bucketPath?: string | null | undefined;
|
|
22001
|
+
} | null | undefined;
|
|
22002
|
+
powerpoint?: {
|
|
22003
|
+
bucketName?: string | null | undefined;
|
|
22004
|
+
bucketPath?: string | null | undefined;
|
|
22005
|
+
} | null | undefined;
|
|
22006
|
+
opendocumentPresentation?: {
|
|
22007
|
+
bucketName?: string | null | undefined;
|
|
22008
|
+
bucketPath?: string | null | undefined;
|
|
22009
|
+
} | null | undefined;
|
|
22010
|
+
word?: {
|
|
22011
|
+
bucketName?: string | null | undefined;
|
|
22012
|
+
bucketPath?: string | null | undefined;
|
|
22013
|
+
} | null | undefined;
|
|
22014
|
+
opendocumentText?: {
|
|
22015
|
+
bucketName?: string | null | undefined;
|
|
22016
|
+
bucketPath?: string | null | undefined;
|
|
22017
|
+
} | null | undefined;
|
|
22018
|
+
googleDrive?: {
|
|
22019
|
+
id?: string | null | undefined;
|
|
22020
|
+
url?: string | null | undefined;
|
|
22021
|
+
} | null | undefined;
|
|
22022
|
+
googleSlide?: {
|
|
22023
|
+
id?: string | null | undefined;
|
|
22024
|
+
url?: string | null | undefined;
|
|
22025
|
+
} | null | undefined;
|
|
22026
|
+
};
|
|
22027
|
+
};
|
|
22028
|
+
safeParse: (input: {
|
|
22029
|
+
created_at: string;
|
|
22030
|
+
updated_at: string;
|
|
22031
|
+
asset_id: number;
|
|
22032
|
+
asset_uid: string;
|
|
22033
|
+
asset_type: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
|
|
22034
|
+
asset_object: {
|
|
22035
|
+
pdf?: {
|
|
22036
|
+
bucket_name?: string | null | undefined;
|
|
22037
|
+
bucket_path?: string | null | undefined;
|
|
22038
|
+
} | null | undefined;
|
|
22039
|
+
powerpoint?: {
|
|
22040
|
+
bucket_name?: string | null | undefined;
|
|
22041
|
+
bucket_path?: string | null | undefined;
|
|
22042
|
+
} | null | undefined;
|
|
22043
|
+
opendocument_presentation?: {
|
|
22044
|
+
bucket_name?: string | null | undefined;
|
|
22045
|
+
bucket_path?: string | null | undefined;
|
|
22046
|
+
} | null | undefined;
|
|
22047
|
+
word?: {
|
|
22048
|
+
bucket_name?: string | null | undefined;
|
|
22049
|
+
bucket_path?: string | null | undefined;
|
|
22050
|
+
} | null | undefined;
|
|
22051
|
+
opendocument_text?: {
|
|
22052
|
+
bucket_name?: string | null | undefined;
|
|
22053
|
+
bucket_path?: string | null | undefined;
|
|
22054
|
+
} | null | undefined;
|
|
22055
|
+
google_drive?: {
|
|
22056
|
+
id?: string | null | undefined;
|
|
22057
|
+
url?: string | null | undefined;
|
|
22058
|
+
} | null | undefined;
|
|
22059
|
+
google_slide?: {
|
|
22060
|
+
id?: string | null | undefined;
|
|
22061
|
+
url?: string | null | undefined;
|
|
22062
|
+
} | null | undefined;
|
|
22063
|
+
};
|
|
22064
|
+
}) => {
|
|
22065
|
+
success: boolean;
|
|
22066
|
+
data?: {
|
|
22067
|
+
createdAt: string;
|
|
22068
|
+
updatedAt: string;
|
|
22069
|
+
assetId: number;
|
|
22070
|
+
assetUid: string;
|
|
22071
|
+
assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
|
|
22072
|
+
assetObject: {
|
|
22073
|
+
pdf?: {
|
|
22074
|
+
bucketName?: string | null | undefined;
|
|
22075
|
+
bucketPath?: string | null | undefined;
|
|
22076
|
+
} | null | undefined;
|
|
22077
|
+
powerpoint?: {
|
|
22078
|
+
bucketName?: string | null | undefined;
|
|
22079
|
+
bucketPath?: string | null | undefined;
|
|
22080
|
+
} | null | undefined;
|
|
22081
|
+
opendocumentPresentation?: {
|
|
22082
|
+
bucketName?: string | null | undefined;
|
|
22083
|
+
bucketPath?: string | null | undefined;
|
|
22084
|
+
} | null | undefined;
|
|
22085
|
+
word?: {
|
|
22086
|
+
bucketName?: string | null | undefined;
|
|
22087
|
+
bucketPath?: string | null | undefined;
|
|
22088
|
+
} | null | undefined;
|
|
22089
|
+
opendocumentText?: {
|
|
22090
|
+
bucketName?: string | null | undefined;
|
|
22091
|
+
bucketPath?: string | null | undefined;
|
|
22092
|
+
} | null | undefined;
|
|
22093
|
+
googleDrive?: {
|
|
22094
|
+
id?: string | null | undefined;
|
|
22095
|
+
url?: string | null | undefined;
|
|
22096
|
+
} | null | undefined;
|
|
22097
|
+
googleSlide?: {
|
|
22098
|
+
id?: string | null | undefined;
|
|
22099
|
+
url?: string | null | undefined;
|
|
22100
|
+
} | null | undefined;
|
|
22101
|
+
};
|
|
22102
|
+
} | undefined;
|
|
22103
|
+
error?: any;
|
|
22104
|
+
};
|
|
22105
|
+
};
|
|
22106
|
+
type PublishedAssetsCamel = z.infer<typeof publishedAssetsSchemaCamel>;
|
|
22107
|
+
|
|
22108
|
+
declare const publishedAssetsFixture: ({ overrides, }?: {
|
|
22109
|
+
overrides?: Partial<PublishedAssets>;
|
|
22110
|
+
}) => PublishedAssets;
|
|
22111
|
+
declare const publishedAssetsFixtureCamel: ({ overrides, }?: {
|
|
22112
|
+
overrides?: Partial<PublishedAssetsCamel>;
|
|
22113
|
+
}) => PublishedAssetsCamel;
|
|
22114
|
+
|
|
21430
22115
|
declare const syntheticProgrammesByYearSchema: z.ZodObject<{
|
|
21431
22116
|
year_slug: z.ZodEnum<{
|
|
21432
22117
|
reception: "reception";
|
|
@@ -22965,7 +23650,7 @@ declare const syntheticUnitvariantLessonsSchema: z.ZodObject<{
|
|
|
22965
23650
|
expiration_date: z.ZodNullable<z.ZodString>;
|
|
22966
23651
|
}, z.core.$strip>;
|
|
22967
23652
|
null_unitvariant_id: z.ZodNumber;
|
|
22968
|
-
unitvariant_id: z.
|
|
23653
|
+
unitvariant_id: z.ZodNumber;
|
|
22969
23654
|
programme_fields: z.ZodObject<{
|
|
22970
23655
|
pathway: z.ZodNullable<z.ZodEnum<{
|
|
22971
23656
|
Core: "Core";
|
|
@@ -23841,6 +24526,7 @@ declare const syntheticUnitvariantLessonsSchemaCamel: Omit<z.ZodType<{
|
|
|
23841
24526
|
priorKnowledgeRequirements?: string[] | null | undefined;
|
|
23842
24527
|
};
|
|
23843
24528
|
nullUnitvariantId: number;
|
|
24529
|
+
unitvariantId: number;
|
|
23844
24530
|
programmeFields: {
|
|
23845
24531
|
pathway: "Core" | "GCSE" | null;
|
|
23846
24532
|
pathwayId: number | null;
|
|
@@ -23886,7 +24572,6 @@ declare const syntheticUnitvariantLessonsSchemaCamel: Omit<z.ZodType<{
|
|
|
23886
24572
|
unitOrder: number;
|
|
23887
24573
|
orderInUnit: number;
|
|
23888
24574
|
};
|
|
23889
|
-
unitvariantId?: number | null | undefined;
|
|
23890
24575
|
actions?: {
|
|
23891
24576
|
exclusions?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
23892
24577
|
optOut?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
@@ -24099,6 +24784,7 @@ declare const syntheticUnitvariantLessonsSchemaCamel: Omit<z.ZodType<{
|
|
|
24099
24784
|
priorKnowledgeRequirements?: string[] | null | undefined;
|
|
24100
24785
|
};
|
|
24101
24786
|
nullUnitvariantId: number;
|
|
24787
|
+
unitvariantId: number;
|
|
24102
24788
|
programmeFields: {
|
|
24103
24789
|
pathway: "Core" | "GCSE" | null;
|
|
24104
24790
|
pathwayId: number | null;
|
|
@@ -24144,7 +24830,6 @@ declare const syntheticUnitvariantLessonsSchemaCamel: Omit<z.ZodType<{
|
|
|
24144
24830
|
unitOrder: number;
|
|
24145
24831
|
orderInUnit: number;
|
|
24146
24832
|
};
|
|
24147
|
-
unitvariantId?: number | null | undefined;
|
|
24148
24833
|
actions?: {
|
|
24149
24834
|
exclusions?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
24150
24835
|
optOut?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
@@ -24344,6 +25029,7 @@ declare const syntheticUnitvariantLessonsSchemaCamel: Omit<z.ZodType<{
|
|
|
24344
25029
|
prior_knowledge_requirements?: string[] | null | undefined;
|
|
24345
25030
|
};
|
|
24346
25031
|
null_unitvariant_id: number;
|
|
25032
|
+
unitvariant_id: number;
|
|
24347
25033
|
programme_fields: {
|
|
24348
25034
|
pathway: "Core" | "GCSE" | null;
|
|
24349
25035
|
pathway_id: number | null;
|
|
@@ -24389,7 +25075,6 @@ declare const syntheticUnitvariantLessonsSchemaCamel: Omit<z.ZodType<{
|
|
|
24389
25075
|
unit_order: number;
|
|
24390
25076
|
order_in_unit: number;
|
|
24391
25077
|
};
|
|
24392
|
-
unitvariant_id?: number | null | undefined;
|
|
24393
25078
|
actions?: {
|
|
24394
25079
|
exclusions?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
24395
25080
|
opt_out?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
@@ -24602,6 +25287,7 @@ declare const syntheticUnitvariantLessonsSchemaCamel: Omit<z.ZodType<{
|
|
|
24602
25287
|
priorKnowledgeRequirements?: string[] | null | undefined;
|
|
24603
25288
|
};
|
|
24604
25289
|
nullUnitvariantId: number;
|
|
25290
|
+
unitvariantId: number;
|
|
24605
25291
|
programmeFields: {
|
|
24606
25292
|
pathway: "Core" | "GCSE" | null;
|
|
24607
25293
|
pathwayId: number | null;
|
|
@@ -24647,7 +25333,6 @@ declare const syntheticUnitvariantLessonsSchemaCamel: Omit<z.ZodType<{
|
|
|
24647
25333
|
unitOrder: number;
|
|
24648
25334
|
orderInUnit: number;
|
|
24649
25335
|
};
|
|
24650
|
-
unitvariantId?: number | null | undefined;
|
|
24651
25336
|
actions?: {
|
|
24652
25337
|
exclusions?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
24653
25338
|
optOut?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
@@ -24847,6 +25532,7 @@ declare const syntheticUnitvariantLessonsSchemaCamel: Omit<z.ZodType<{
|
|
|
24847
25532
|
prior_knowledge_requirements?: string[] | null | undefined;
|
|
24848
25533
|
};
|
|
24849
25534
|
null_unitvariant_id: number;
|
|
25535
|
+
unitvariant_id: number;
|
|
24850
25536
|
programme_fields: {
|
|
24851
25537
|
pathway: "Core" | "GCSE" | null;
|
|
24852
25538
|
pathway_id: number | null;
|
|
@@ -24892,7 +25578,6 @@ declare const syntheticUnitvariantLessonsSchemaCamel: Omit<z.ZodType<{
|
|
|
24892
25578
|
unit_order: number;
|
|
24893
25579
|
order_in_unit: number;
|
|
24894
25580
|
};
|
|
24895
|
-
unitvariant_id?: number | null | undefined;
|
|
24896
25581
|
actions?: {
|
|
24897
25582
|
exclusions?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
24898
25583
|
opt_out?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
@@ -25107,6 +25792,7 @@ declare const syntheticUnitvariantLessonsSchemaCamel: Omit<z.ZodType<{
|
|
|
25107
25792
|
priorKnowledgeRequirements?: string[] | null | undefined;
|
|
25108
25793
|
};
|
|
25109
25794
|
nullUnitvariantId: number;
|
|
25795
|
+
unitvariantId: number;
|
|
25110
25796
|
programmeFields: {
|
|
25111
25797
|
pathway: "Core" | "GCSE" | null;
|
|
25112
25798
|
pathwayId: number | null;
|
|
@@ -25152,7 +25838,6 @@ declare const syntheticUnitvariantLessonsSchemaCamel: Omit<z.ZodType<{
|
|
|
25152
25838
|
unitOrder: number;
|
|
25153
25839
|
orderInUnit: number;
|
|
25154
25840
|
};
|
|
25155
|
-
unitvariantId?: number | null | undefined;
|
|
25156
25841
|
actions?: {
|
|
25157
25842
|
exclusions?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
25158
25843
|
optOut?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
@@ -25245,7 +25930,7 @@ declare const syntheticUnitvariantLessonsByKsSchema: z.ZodObject<{
|
|
|
25245
25930
|
agf__geo_restricted: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
25246
25931
|
agf__login_required: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
25247
25932
|
}, z.core.$strip>>>;
|
|
25248
|
-
unitvariant_id: z.
|
|
25933
|
+
unitvariant_id: z.ZodNumber;
|
|
25249
25934
|
programme_fields: z.ZodObject<{
|
|
25250
25935
|
pathway: z.ZodNullable<z.ZodEnum<{
|
|
25251
25936
|
Core: "Core";
|
|
@@ -25550,8 +26235,6 @@ declare const syntheticUnitvariantLessonsByKsSchema: z.ZodObject<{
|
|
|
25550
26235
|
legacy: z.ZodOptional<z.ZodString>;
|
|
25551
26236
|
dataset: z.ZodOptional<z.ZodString>;
|
|
25552
26237
|
}, z.core.$strip>;
|
|
25553
|
-
lesson_slug: z.ZodString;
|
|
25554
|
-
is_legacy: z.ZodBoolean;
|
|
25555
26238
|
actions: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
25556
26239
|
exclusions: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodEnum<{
|
|
25557
26240
|
pupilSubjectListingQuery: "pupilSubjectListingQuery";
|
|
@@ -25963,6 +26646,9 @@ declare const syntheticUnitvariantLessonsByKsSchema: z.ZodObject<{
|
|
|
25963
26646
|
group_by_subjectcategory: z.ZodBoolean;
|
|
25964
26647
|
}, z.core.$strip>>;
|
|
25965
26648
|
}, z.core.$strip>>>;
|
|
26649
|
+
lesson_slug: z.ZodString;
|
|
26650
|
+
is_legacy: z.ZodBoolean;
|
|
26651
|
+
programme_slug: z.ZodString;
|
|
25966
26652
|
lesson_data: z.ZodObject<{
|
|
25967
26653
|
created_at: z.ZodString;
|
|
25968
26654
|
updated_at: z.ZodString;
|
|
@@ -26096,7 +26782,6 @@ declare const syntheticUnitvariantLessonsByKsSchema: z.ZodObject<{
|
|
|
26096
26782
|
expiration_date: z.ZodNullable<z.ZodString>;
|
|
26097
26783
|
}, z.core.$strip>;
|
|
26098
26784
|
unit_slug: z.ZodString;
|
|
26099
|
-
programme_slug: z.ZodString;
|
|
26100
26785
|
null_unitvariant_id: z.ZodNumber;
|
|
26101
26786
|
static_lesson_list: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
26102
26787
|
slug: z.ZodString;
|
|
@@ -26109,6 +26794,7 @@ type SyntheticUnitvariantLessonsByKs = z.infer<typeof syntheticUnitvariantLesson
|
|
|
26109
26794
|
declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
26110
26795
|
programmeSlugByYear: string[];
|
|
26111
26796
|
orderInUnit: number;
|
|
26797
|
+
unitvariantId: number;
|
|
26112
26798
|
programmeFields: {
|
|
26113
26799
|
pathway: "Core" | "GCSE" | null;
|
|
26114
26800
|
pathwayId: number | null;
|
|
@@ -26152,6 +26838,7 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
26152
26838
|
};
|
|
26153
26839
|
lessonSlug: string;
|
|
26154
26840
|
isLegacy: boolean;
|
|
26841
|
+
programmeSlug: string;
|
|
26155
26842
|
lessonData: {
|
|
26156
26843
|
createdAt: string;
|
|
26157
26844
|
updatedAt: string;
|
|
@@ -26289,7 +26976,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
26289
26976
|
priorKnowledgeRequirements?: string[] | null | undefined;
|
|
26290
26977
|
};
|
|
26291
26978
|
unitSlug: string;
|
|
26292
|
-
programmeSlug: string;
|
|
26293
26979
|
nullUnitvariantId: number;
|
|
26294
26980
|
features?: {
|
|
26295
26981
|
pePractical?: boolean | undefined;
|
|
@@ -26297,7 +26983,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
26297
26983
|
agfGeoRestricted?: boolean | null | undefined;
|
|
26298
26984
|
agfLoginRequired?: boolean | null | undefined;
|
|
26299
26985
|
} | null | undefined;
|
|
26300
|
-
unitvariantId?: number | null | undefined;
|
|
26301
26986
|
actions?: {
|
|
26302
26987
|
exclusions?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
26303
26988
|
optOut?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
@@ -26365,6 +27050,7 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
26365
27050
|
}, unknown, z.core.$ZodTypeInternals<{
|
|
26366
27051
|
programmeSlugByYear: string[];
|
|
26367
27052
|
orderInUnit: number;
|
|
27053
|
+
unitvariantId: number;
|
|
26368
27054
|
programmeFields: {
|
|
26369
27055
|
pathway: "Core" | "GCSE" | null;
|
|
26370
27056
|
pathwayId: number | null;
|
|
@@ -26408,6 +27094,7 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
26408
27094
|
};
|
|
26409
27095
|
lessonSlug: string;
|
|
26410
27096
|
isLegacy: boolean;
|
|
27097
|
+
programmeSlug: string;
|
|
26411
27098
|
lessonData: {
|
|
26412
27099
|
createdAt: string;
|
|
26413
27100
|
updatedAt: string;
|
|
@@ -26545,7 +27232,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
26545
27232
|
priorKnowledgeRequirements?: string[] | null | undefined;
|
|
26546
27233
|
};
|
|
26547
27234
|
unitSlug: string;
|
|
26548
|
-
programmeSlug: string;
|
|
26549
27235
|
nullUnitvariantId: number;
|
|
26550
27236
|
features?: {
|
|
26551
27237
|
pePractical?: boolean | undefined;
|
|
@@ -26553,7 +27239,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
26553
27239
|
agfGeoRestricted?: boolean | null | undefined;
|
|
26554
27240
|
agfLoginRequired?: boolean | null | undefined;
|
|
26555
27241
|
} | null | undefined;
|
|
26556
|
-
unitvariantId?: number | null | undefined;
|
|
26557
27242
|
actions?: {
|
|
26558
27243
|
exclusions?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
26559
27244
|
optOut?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
@@ -26622,6 +27307,7 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
26622
27307
|
parse: (input: {
|
|
26623
27308
|
programme_slug_by_year: string[];
|
|
26624
27309
|
order_in_unit: number;
|
|
27310
|
+
unitvariant_id: number;
|
|
26625
27311
|
programme_fields: {
|
|
26626
27312
|
pathway: "Core" | "GCSE" | null;
|
|
26627
27313
|
pathway_id: number | null;
|
|
@@ -26665,6 +27351,7 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
26665
27351
|
};
|
|
26666
27352
|
lesson_slug: string;
|
|
26667
27353
|
is_legacy: boolean;
|
|
27354
|
+
programme_slug: string;
|
|
26668
27355
|
lesson_data: {
|
|
26669
27356
|
created_at: string;
|
|
26670
27357
|
updated_at: string;
|
|
@@ -26788,7 +27475,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
26788
27475
|
prior_knowledge_requirements?: string[] | null | undefined;
|
|
26789
27476
|
};
|
|
26790
27477
|
unit_slug: string;
|
|
26791
|
-
programme_slug: string;
|
|
26792
27478
|
null_unitvariant_id: number;
|
|
26793
27479
|
features?: {
|
|
26794
27480
|
pe_practical?: boolean | undefined;
|
|
@@ -26796,7 +27482,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
26796
27482
|
agf__geo_restricted?: boolean | null | undefined;
|
|
26797
27483
|
agf__login_required?: boolean | null | undefined;
|
|
26798
27484
|
} | null | undefined;
|
|
26799
|
-
unitvariant_id?: number | null | undefined;
|
|
26800
27485
|
actions?: {
|
|
26801
27486
|
exclusions?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
26802
27487
|
opt_out?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
@@ -26864,6 +27549,7 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
26864
27549
|
}) => {
|
|
26865
27550
|
programmeSlugByYear: string[];
|
|
26866
27551
|
orderInUnit: number;
|
|
27552
|
+
unitvariantId: number;
|
|
26867
27553
|
programmeFields: {
|
|
26868
27554
|
pathway: "Core" | "GCSE" | null;
|
|
26869
27555
|
pathwayId: number | null;
|
|
@@ -26907,6 +27593,7 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
26907
27593
|
};
|
|
26908
27594
|
lessonSlug: string;
|
|
26909
27595
|
isLegacy: boolean;
|
|
27596
|
+
programmeSlug: string;
|
|
26910
27597
|
lessonData: {
|
|
26911
27598
|
createdAt: string;
|
|
26912
27599
|
updatedAt: string;
|
|
@@ -27044,7 +27731,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
27044
27731
|
priorKnowledgeRequirements?: string[] | null | undefined;
|
|
27045
27732
|
};
|
|
27046
27733
|
unitSlug: string;
|
|
27047
|
-
programmeSlug: string;
|
|
27048
27734
|
nullUnitvariantId: number;
|
|
27049
27735
|
features?: {
|
|
27050
27736
|
pePractical?: boolean | undefined;
|
|
@@ -27052,7 +27738,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
27052
27738
|
agfGeoRestricted?: boolean | null | undefined;
|
|
27053
27739
|
agfLoginRequired?: boolean | null | undefined;
|
|
27054
27740
|
} | null | undefined;
|
|
27055
|
-
unitvariantId?: number | null | undefined;
|
|
27056
27741
|
actions?: {
|
|
27057
27742
|
exclusions?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
27058
27743
|
optOut?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
@@ -27121,6 +27806,7 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
27121
27806
|
safeParse: (input: {
|
|
27122
27807
|
programme_slug_by_year: string[];
|
|
27123
27808
|
order_in_unit: number;
|
|
27809
|
+
unitvariant_id: number;
|
|
27124
27810
|
programme_fields: {
|
|
27125
27811
|
pathway: "Core" | "GCSE" | null;
|
|
27126
27812
|
pathway_id: number | null;
|
|
@@ -27164,6 +27850,7 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
27164
27850
|
};
|
|
27165
27851
|
lesson_slug: string;
|
|
27166
27852
|
is_legacy: boolean;
|
|
27853
|
+
programme_slug: string;
|
|
27167
27854
|
lesson_data: {
|
|
27168
27855
|
created_at: string;
|
|
27169
27856
|
updated_at: string;
|
|
@@ -27287,7 +27974,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
27287
27974
|
prior_knowledge_requirements?: string[] | null | undefined;
|
|
27288
27975
|
};
|
|
27289
27976
|
unit_slug: string;
|
|
27290
|
-
programme_slug: string;
|
|
27291
27977
|
null_unitvariant_id: number;
|
|
27292
27978
|
features?: {
|
|
27293
27979
|
pe_practical?: boolean | undefined;
|
|
@@ -27295,7 +27981,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
27295
27981
|
agf__geo_restricted?: boolean | null | undefined;
|
|
27296
27982
|
agf__login_required?: boolean | null | undefined;
|
|
27297
27983
|
} | null | undefined;
|
|
27298
|
-
unitvariant_id?: number | null | undefined;
|
|
27299
27984
|
actions?: {
|
|
27300
27985
|
exclusions?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
27301
27986
|
opt_out?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
@@ -27365,6 +28050,7 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
27365
28050
|
data?: {
|
|
27366
28051
|
programmeSlugByYear: string[];
|
|
27367
28052
|
orderInUnit: number;
|
|
28053
|
+
unitvariantId: number;
|
|
27368
28054
|
programmeFields: {
|
|
27369
28055
|
pathway: "Core" | "GCSE" | null;
|
|
27370
28056
|
pathwayId: number | null;
|
|
@@ -27408,6 +28094,7 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
27408
28094
|
};
|
|
27409
28095
|
lessonSlug: string;
|
|
27410
28096
|
isLegacy: boolean;
|
|
28097
|
+
programmeSlug: string;
|
|
27411
28098
|
lessonData: {
|
|
27412
28099
|
createdAt: string;
|
|
27413
28100
|
updatedAt: string;
|
|
@@ -27545,7 +28232,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
27545
28232
|
priorKnowledgeRequirements?: string[] | null | undefined;
|
|
27546
28233
|
};
|
|
27547
28234
|
unitSlug: string;
|
|
27548
|
-
programmeSlug: string;
|
|
27549
28235
|
nullUnitvariantId: number;
|
|
27550
28236
|
features?: {
|
|
27551
28237
|
pePractical?: boolean | undefined;
|
|
@@ -27553,7 +28239,6 @@ declare const syntheticUnitvariantLessonsByKsSchemaCamel: Omit<z.ZodType<{
|
|
|
27553
28239
|
agfGeoRestricted?: boolean | null | undefined;
|
|
27554
28240
|
agfLoginRequired?: boolean | null | undefined;
|
|
27555
28241
|
} | null | undefined;
|
|
27556
|
-
unitvariantId?: number | null | undefined;
|
|
27557
28242
|
actions?: {
|
|
27558
28243
|
exclusions?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
27559
28244
|
optOut?: ("pupil" | "teacher" | "pupilSubjectListingQuery" | "pupilProgrammeListingQuery" | "pupilUnitListingQuery" | "pupilLessonListingQuery" | "pupilLessonQuery" | "unitListingQuery" | "lessonListingQuery" | "programmeListingQuery" | "subjectListingQuery" | "lessonOverviewQuery" | "lessonDownloadsQuery" | "lessonBetaDownloadsQuery" | "lessonShareQuery" | "lessonMediaClipsQuery" | "teacherPreviewLessonQuery" | "teachersPreviewLessonDownloadQuery" | "teachersPreviewUnitListingQuery" | "curriculum")[] | undefined;
|
|
@@ -32467,5 +33152,5 @@ declare const syntheticUnitvariantsWithLessonIdsByYearsFixtureCamel: ({ override
|
|
|
32467
33152
|
overrides?: Partial<SyntheticUnitvariantsWithLessonIdsByYearsCamel>;
|
|
32468
33153
|
}) => SyntheticUnitvariantsWithLessonIdsByYearsCamel;
|
|
32469
33154
|
|
|
32470
|
-
export { _cohortSchema, _stateSchema, actionsFixture, actionsFixtureCamel, actionsSchema, actionsSchemaCamel, additionalCyclesFixture, additionalCyclesFixtureCamel, additionalFileObjectSchema, additionalFileObjectSchemaCamel, additionalFilesFixture, additionalFilesFixtureCamel, additionalFilesSchema, additionalFilesSchemaCamel, assetFixture, assetFixtureCamel, assetIngestStatesSchema as assetIngestStates, assetIngestStatesSchema, assetNewSchema, assetNewSchemaCamel, assetObjectSchema, assetObjectSchemaCamel, assetPublishedSchema, assetPublishedSchemaCamel, assetSchema, assetSchemaCamel, assetTypeSchema, assetsFixture, assetsFixtureCamel, assetsSchema, baseIngestStatesSchema as baseIngestStates, baseIngestStatesSchema, bucketSchema, bucketSchemaCamel, contentGuidanceFixture, contentGuidanceFixtureCamel, contentGuidanceSchema, contentGuidanceSchemaCamel, equipmentAndResourcesFixture, equipmentAndResourcesFixtureCamel, equipmentAndResourcesSchema, equipmentAndResourcesSchemaCamel, examboardDescriptions, examboardSlugs, examboards, featuresFixture, featuresFixtureCamel, featuresSchema, featuresSchemaCamel, googleSchema, googleSchemaCamel, imageItemFixture, imageItemFixtureCamel, imageItemSchema, imageItemSchemaCamel, imageObjectFixture, imageObjectFixtureCamel, imageObjectSchema, imageObjectSchemaCamel, journeysAndQueriesSchema, journeysSchema, keyLearningPointsFixture, keyLearningPointsFixtureCamel, keyLearningPointsSchema, keyLearningPointsSchemaCamel, keystageDescriptions, keystageSlugs, keystages, keywordsFixture, keywordsFixtureCamel, keywordsSchema, keywordsSchemaCamel, lessonContentFixture, lessonContentFixtureCamel, lessonContentSchema, lessonContentSchemaCamel, lessonData, lessonDataFixture, lessonDataFixtureCamel, lessonDataSchema, lessonFixture, lessonFixtureCamel, lessonMediaClipsSchema, lessonMediaClipsSchemaCamel, lessonNewSchema, lessonNewSchemaCamel, lessonOutlineFixture, lessonOutlineFixtureCamel, lessonOutlineSchema, lessonOutlineSchemaCamel, lessonPublishedSchema, lessonPublishedSchemaCamel, lessonSchema, lessonSchemaCamel, matchFixture, matchFixtureCamel, matchQuestion, matchQuestionCamel, matchSchema, matchSchemaCamel, mediaClipCycleFixture, mediaClipCycleFixtureCamel, mediaClipCycleSchema, mediaClipCycleSchemaCamel, mediaClipObjectSchema, mediaClipObjectSchemaCamel, mediaClipsFixture, mediaClipsFixtureCamel, mediaClipsRecordSchema, mediaClipsRecordSchemaCamel, mediaObjectFixture, mediaObjectFixtureCamel, migrationState, misconceptionsAndCommonMistakesFixture, misconceptionsAndCommonMistakesFixtureCamel, misconceptionsAndCommonMistakesSchema, misconceptionsAndCommonMistakesSchemaCamel, multipleChoiceFixture, multipleChoiceFixtureCamel, multipleChoiceQuestion, multipleChoiceQuestionCamel, multipleChoiceSchema, multipleChoiceSchemaCamel, newState, orderFixture, orderFixtureCamel, orderQuestion, orderQuestionCamel, orderSchema, orderSchemaCamel, overridesAndExceptionsFixture, overridesAndExceptionsFixtureCamel, overridesAndExceptionsSchema, overridesAndExceptionsSchemaCamel, pathwayDescriptions, pathwaySlugs, pathways, phaseDescriptions, phaseSlugs, phases, programmeFieldsFixture, programmeFieldsFixtureCamel, programmeFieldsSchema, programmeFieldsSchemaCamel, programmeListingArraySchema, programmeListingArraySchemaCamel, programmeListingSchema as programmeListingResponseSchema, programmeListingArraySchema as programmeListingResponseSchemaArray, programmeListingArraySchemaCamel as programmeListingResponseSchemaArrayCamel, programmeListingSchemaCamel as programmeListingResponseSchemaCamel, programmeListingSchema, programmeListingSchemaCamel, publishedState, queriesSchema, questionNewSchema, questionNewSchemaCamel, questionPublishedSchema, questionPublishedSchemaCamel, questionSchema, questionSchemaCamel, quizQuestionSchema, reviewLessonsFixture, reviewLessonsFixtureCamel, reviewLessonsNewSchema, reviewLessonsNewSchemaCamel, reviewLessonsPublishedSchema, reviewLessonsPublishedSchemaCamel, reviewLessonsSchema, reviewLessonsSchemaCamel, safeString, selectByFeaturesItemSchema, selectByProgrammeFieldsItemSchema, shortAnswerFixture, shortAnswerFixtureCamel, shortAnswerQuestion, shortAnswerQuestionCamel, shortAnswerSchema, shortAnswerSchemaCamel, staticLessonCamel, staticLessonListSchema, staticLessonListSchemaCamel, subjectSlugs, subjects, syntheticProgrammesByYearFixture, syntheticProgrammesByYearFixtureCamel, syntheticProgrammesByYearSchema, syntheticProgrammesByYearSchemaCamel, syntheticUnitvariantLessonsByKsFixture, syntheticUnitvariantLessonsByKsFixtureCamel, syntheticUnitvariantLessonsByKsSchema, syntheticUnitvariantLessonsByKsSchemaCamel, syntheticUnitvariantLessonsFixture, syntheticUnitvariantLessonsFixtureCamel, syntheticUnitvariantLessonsSchema, syntheticUnitvariantLessonsSchemaCamel, syntheticUnitvariantsWithLessonIdsBaseSchema, syntheticUnitvariantsWithLessonIdsBaseSchemaCamel, syntheticUnitvariantsWithLessonIdsByKsFixture, syntheticUnitvariantsWithLessonIdsByKsFixtureCamel, syntheticUnitvariantsWithLessonIdsByKsSchema, syntheticUnitvariantsWithLessonIdsByKsSchemaCamel, syntheticUnitvariantsWithLessonIdsByYearsFixture, syntheticUnitvariantsWithLessonIdsByYearsFixtureCamel, syntheticUnitvariantsWithLessonIdsByYearsSchema, syntheticUnitvariantsWithLessonIdsByYearsSchemaCamel, syntheticUnitvariantsWithLessonIdsFixture, syntheticUnitvariantsWithLessonIdsFixtureCamel, teacherTipsFixture, teacherTipsFixtureCamel, teacherTipsSchema, teacherTipsSchemaCamel, textAndImageItemFixture, textAndImageItemFixtureCamel, textItemFixture, textItemFixtureCamel, textItemSchema, textItemSchemaCamel, threadFixture, threadFixtureCamel, threadSchema, threadSchemaCamel, tierDescriptions, tierSlugs, tiers, timestampsSchema, unitDataFixture, unitDataFixtureCamel, unitFixture, unitFixtureCamel, unitNewSchema, unitNewSchemaCamel, unitPublishedSchema, unitPublishedSchemaCamel, unitSchema, unitSchemaCamel, unitvariantFixture, unitvariantFixtureCamel, unitvariantNewSchema, unitvariantNewSchemaCamel, unitvariantPublishedSchema, unitvariantPublishedSchemaCamel, unitvariantSchema, unitvariantSchemaCamel, videoClipObjectSchema, videoClipObjectSchemaCamel, videoIngestStatesSchema as videoIngestStates, videoIngestStatesSchema, videoObjectFixture, videoObjectFixtureCamel, yearDescriptions, yearSlugs, years };
|
|
32471
|
-
export type { Actions, ActionsCamel, AdditionalFileObject, AdditionalFileObjectCamel, AdditionalFiles, AdditionalFilesCamel, Asset, AssetCamel, AssetIngestStates, AssetNew, AssetNewCamel, AssetObjectType, AssetObjectTypeCamel, AssetPublished, AssetPublishedCamel, AssetType, AssetTypeType, BaseIngestStates, BucketType, BucketTypeCamel, ContentGuidance, ContentGuidanceCamel, EquipmentAndResources, EquipmentAndResourcesCamel, Features, FeaturesCamel, GoogleType, GoogleTypeCamel, ImageItem, ImageItemCamel, ImageObject, ImageObjectCamel, KeyLearningPoints, KeyLearningPointsCamel, Keywords, KeywordsCamel, Lesson, LessonCamel, LessonContent, LessonContentCamel, LessonData, LessonMediaClips, LessonMediaClipsCamel, LessonNew, LessonNewCamel, LessonOutline, LessonOutlineCamel, LessonPublished, LessonPublishedCamel, Match, MatchCamel, MediaClipCycle, MediaClipCycleCamel, MediaClipObject, MediaClipObjectCamel, MediaClipsRecord, MediaClipsRecordCamel, MisconceptionsAndCommonMistakes, MisconceptionsAndCommonMistakesCamel, MultipleChoice, MultipleChoiceCamel, Order, OrderCamel, OverridesAndExceptions, OverridesAndExceptionsCamel, ProgrammeFields, ProgrammeFieldsCamel, ProgrammeListing, ProgrammeListingArray, ProgrammeListingArrayCamel, ProgrammeListingCamel, ProgrammeListing as ProgrammeListingResponse, ProgrammeListingArray as ProgrammeListingResponseArray, ProgrammeListingArrayCamel as ProgrammeListingResponseArrayCamel, ProgrammeListingCamel as ProgrammeListingResponseCamel, Question, QuestionCamel, QuestionNew, QuestionNewCamel, QuestionPublished, QuestionPublishedCamel, QuizQuestion, ReviewLessons, ReviewLessonsCamel, ReviewLessonsNew, ReviewLessonsNewCamel, ReviewLessonsPublished, ReviewLessonsPublishedCamel, ShortAnswer, ShortAnswerCamel, StaticLesson, StaticLessonCamel, StaticLessonList, StaticLessonListCamel, SyntheticProgrammesByYear, SyntheticProgrammesByYearCamel, SyntheticUnitvariantLessons, SyntheticUnitvariantLessonsByKs, SyntheticUnitvariantLessonsByKsCamel, SyntheticUnitvariantLessonsCamel, SyntheticUnitvariantsWithLessonIdsBase, SyntheticUnitvariantsWithLessonIdsBaseCamel, SyntheticUnitvariantsWithLessonIdsByKs, SyntheticUnitvariantsWithLessonIdsByKsCamel, SyntheticUnitvariantsWithLessonIdsByYears, SyntheticUnitvariantsWithLessonIdsByYearsCamel, TeacherTips, TeacherTipsCamel, TextItem, TextItemCamel, Thread, ThreadCamel, Unit, UnitCamel, UnitNew, UnitNewCamel, UnitPublished, UnitPublishedCamel, Unitvariant, UnitvariantCamel, UnitvariantNew, UnitvariantNewCamel, UnitvariantPublished, UnitvariantPublishedCamel, VideoClipObject, VideoClipObjectCamel, VideoIngestStates };
|
|
33155
|
+
export { _cohortSchema, _stateSchema, actionsFixture, actionsFixtureCamel, actionsSchema, actionsSchemaCamel, additionalCyclesFixture, additionalCyclesFixtureCamel, additionalFileObjectSchema, additionalFileObjectSchemaCamel, additionalFilesFixture, additionalFilesFixtureCamel, additionalFilesSchema, additionalFilesSchemaCamel, assetFixture, assetFixtureCamel, assetIngestStatesSchema as assetIngestStates, assetIngestStatesSchema, assetNewSchema, assetNewSchemaCamel, assetObjectSchema, assetObjectSchemaCamel, assetPublishedSchema, assetPublishedSchemaCamel, assetSchema, assetSchemaCamel, assetTypeSchema, assetsFixture, assetsFixtureCamel, assetsSchema, baseIngestStatesSchema as baseIngestStates, baseIngestStatesSchema, bucketSchema, bucketSchemaCamel, contentGuidanceFixture, contentGuidanceFixtureCamel, contentGuidanceSchema, contentGuidanceSchemaCamel, entityStateFixture, entityStateFixtureCamel, entityStateSchema, entityStateSchemaCamel, entityStatusSchema, entityTypeSchema, equipmentAndResourcesFixture, equipmentAndResourcesFixtureCamel, equipmentAndResourcesSchema, equipmentAndResourcesSchemaCamel, examboardDescriptions, examboardSlugs, examboards, featuresFixture, featuresFixtureCamel, featuresSchema, featuresSchemaCamel, googleSchema, googleSchemaCamel, imageItemFixture, imageItemFixtureCamel, imageItemSchema, imageItemSchemaCamel, imageObjectFixture, imageObjectFixtureCamel, imageObjectSchema, imageObjectSchemaCamel, journeysAndQueriesSchema, journeysSchema, keyLearningPointsFixture, keyLearningPointsFixtureCamel, keyLearningPointsSchema, keyLearningPointsSchemaCamel, keystageDescriptions, keystageSlugs, keystages, keywordsFixture, keywordsFixtureCamel, keywordsSchema, keywordsSchemaCamel, lessonAssetsSchema, lessonContentFixture, lessonContentFixtureCamel, lessonContentSchema, lessonContentSchemaCamel, lessonData, lessonDataFixture, lessonDataFixtureCamel, lessonDataSchema, lessonFixture, lessonFixtureCamel, lessonMediaClipsSchema, lessonMediaClipsSchemaCamel, lessonNewSchema, lessonNewSchemaCamel, lessonOutlineFixture, lessonOutlineFixtureCamel, lessonOutlineSchema, lessonOutlineSchemaCamel, lessonPublishedSchema, lessonPublishedSchemaCamel, lessonSchema, lessonSchemaCamel, matchFixture, matchFixtureCamel, matchQuestion, matchQuestionCamel, matchSchema, matchSchemaCamel, mediaClipCycleFixture, mediaClipCycleFixtureCamel, mediaClipCycleSchema, mediaClipCycleSchemaCamel, mediaClipObjectSchema, mediaClipObjectSchemaCamel, mediaClipsFixture, mediaClipsFixtureCamel, mediaClipsRecordSchema, mediaClipsRecordSchemaCamel, mediaObjectFixture, mediaObjectFixtureCamel, migrationState, misconceptionsAndCommonMistakesFixture, misconceptionsAndCommonMistakesFixtureCamel, misconceptionsAndCommonMistakesSchema, misconceptionsAndCommonMistakesSchemaCamel, multipleChoiceFixture, multipleChoiceFixtureCamel, multipleChoiceQuestion, multipleChoiceQuestionCamel, multipleChoiceSchema, multipleChoiceSchemaCamel, newState, orderFixture, orderFixtureCamel, orderQuestion, orderQuestionCamel, orderSchema, orderSchemaCamel, overridesAndExceptionsFixture, overridesAndExceptionsFixtureCamel, overridesAndExceptionsSchema, overridesAndExceptionsSchemaCamel, pathwayDescriptions, pathwaySlugs, pathways, phaseDescriptions, phaseSlugs, phases, programmeFieldsFixture, programmeFieldsFixtureCamel, programmeFieldsSchema, programmeFieldsSchemaCamel, programmeListingArraySchema, programmeListingArraySchemaCamel, programmeListingSchema as programmeListingResponseSchema, programmeListingArraySchema as programmeListingResponseSchemaArray, programmeListingArraySchemaCamel as programmeListingResponseSchemaArrayCamel, programmeListingSchemaCamel as programmeListingResponseSchemaCamel, programmeListingSchema, programmeListingSchemaCamel, publishedAssetObjectSchema, publishedAssetsFixture, publishedAssetsFixtureCamel, publishedAssetsSchema, publishedAssetsSchemaCamel, publishedState, queriesSchema, questionNewSchema, questionNewSchemaCamel, questionPublishedSchema, questionPublishedSchemaCamel, questionSchema, questionSchemaCamel, quizQuestionSchema, reviewLessonsFixture, reviewLessonsFixtureCamel, reviewLessonsNewSchema, reviewLessonsNewSchemaCamel, reviewLessonsPublishedSchema, reviewLessonsPublishedSchemaCamel, reviewLessonsSchema, reviewLessonsSchemaCamel, safeString, selectByFeaturesItemSchema, selectByProgrammeFieldsItemSchema, shortAnswerFixture, shortAnswerFixtureCamel, shortAnswerQuestion, shortAnswerQuestionCamel, shortAnswerSchema, shortAnswerSchemaCamel, staticLessonCamel, staticLessonListSchema, staticLessonListSchemaCamel, subjectSlugs, subjects, syntheticProgrammesByYearFixture, syntheticProgrammesByYearFixtureCamel, syntheticProgrammesByYearSchema, syntheticProgrammesByYearSchemaCamel, syntheticUnitvariantLessonsByKsFixture, syntheticUnitvariantLessonsByKsFixtureCamel, syntheticUnitvariantLessonsByKsSchema, syntheticUnitvariantLessonsByKsSchemaCamel, syntheticUnitvariantLessonsFixture, syntheticUnitvariantLessonsFixtureCamel, syntheticUnitvariantLessonsSchema, syntheticUnitvariantLessonsSchemaCamel, syntheticUnitvariantsWithLessonIdsBaseSchema, syntheticUnitvariantsWithLessonIdsBaseSchemaCamel, syntheticUnitvariantsWithLessonIdsByKsFixture, syntheticUnitvariantsWithLessonIdsByKsFixtureCamel, syntheticUnitvariantsWithLessonIdsByKsSchema, syntheticUnitvariantsWithLessonIdsByKsSchemaCamel, syntheticUnitvariantsWithLessonIdsByYearsFixture, syntheticUnitvariantsWithLessonIdsByYearsFixtureCamel, syntheticUnitvariantsWithLessonIdsByYearsSchema, syntheticUnitvariantsWithLessonIdsByYearsSchemaCamel, syntheticUnitvariantsWithLessonIdsFixture, syntheticUnitvariantsWithLessonIdsFixtureCamel, teacherTipsFixture, teacherTipsFixtureCamel, teacherTipsSchema, teacherTipsSchemaCamel, textAndImageItemFixture, textAndImageItemFixtureCamel, textItemFixture, textItemFixtureCamel, textItemSchema, textItemSchemaCamel, threadFixture, threadFixtureCamel, threadSchema, threadSchemaCamel, tierDescriptions, tierSlugs, tiers, timestampsSchema, unitDataFixture, unitDataFixtureCamel, unitFixture, unitFixtureCamel, unitNewSchema, unitNewSchemaCamel, unitPublishedSchema, unitPublishedSchemaCamel, unitSchema, unitSchemaCamel, unitvariantFixture, unitvariantFixtureCamel, unitvariantNewSchema, unitvariantNewSchemaCamel, unitvariantPublishedSchema, unitvariantPublishedSchemaCamel, unitvariantSchema, unitvariantSchemaCamel, videoClipObjectSchema, videoClipObjectSchemaCamel, videoIngestStatesSchema as videoIngestStates, videoIngestStatesSchema, videoObjectFixture, videoObjectFixtureCamel, yearDescriptions, yearSlugs, years };
|
|
33156
|
+
export type { Actions, ActionsCamel, AdditionalFileObject, AdditionalFileObjectCamel, AdditionalFiles, AdditionalFilesCamel, Asset, AssetCamel, AssetIngestStates, AssetNew, AssetNewCamel, AssetObjectType, AssetObjectTypeCamel, AssetPublished, AssetPublishedCamel, AssetType, AssetTypeType, BaseIngestStates, BucketType, BucketTypeCamel, ContentGuidance, ContentGuidanceCamel, EntityState, EntityStateCamel, EntityStatus, EntityType, EquipmentAndResources, EquipmentAndResourcesCamel, Features, FeaturesCamel, GoogleType, GoogleTypeCamel, ImageItem, ImageItemCamel, ImageObject, ImageObjectCamel, KeyLearningPoints, KeyLearningPointsCamel, Keywords, KeywordsCamel, Lesson, LessonAssets, LessonCamel, LessonContent, LessonContentCamel, LessonData, LessonMediaClips, LessonMediaClipsCamel, LessonNew, LessonNewCamel, LessonOutline, LessonOutlineCamel, LessonPublished, LessonPublishedCamel, Match, MatchCamel, MediaClipCycle, MediaClipCycleCamel, MediaClipObject, MediaClipObjectCamel, MediaClipsRecord, MediaClipsRecordCamel, MisconceptionsAndCommonMistakes, MisconceptionsAndCommonMistakesCamel, MultipleChoice, MultipleChoiceCamel, Order, OrderCamel, OverridesAndExceptions, OverridesAndExceptionsCamel, ProgrammeFields, ProgrammeFieldsCamel, ProgrammeListing, ProgrammeListingArray, ProgrammeListingArrayCamel, ProgrammeListingCamel, ProgrammeListing as ProgrammeListingResponse, ProgrammeListingArray as ProgrammeListingResponseArray, ProgrammeListingArrayCamel as ProgrammeListingResponseArrayCamel, ProgrammeListingCamel as ProgrammeListingResponseCamel, PublishedAssetObject, PublishedAssets, PublishedAssetsCamel, Question, QuestionCamel, QuestionNew, QuestionNewCamel, QuestionPublished, QuestionPublishedCamel, QuizQuestion, ReviewLessons, ReviewLessonsCamel, ReviewLessonsNew, ReviewLessonsNewCamel, ReviewLessonsPublished, ReviewLessonsPublishedCamel, ShortAnswer, ShortAnswerCamel, StaticLesson, StaticLessonCamel, StaticLessonList, StaticLessonListCamel, SyntheticProgrammesByYear, SyntheticProgrammesByYearCamel, SyntheticUnitvariantLessons, SyntheticUnitvariantLessonsByKs, SyntheticUnitvariantLessonsByKsCamel, SyntheticUnitvariantLessonsCamel, SyntheticUnitvariantsWithLessonIdsBase, SyntheticUnitvariantsWithLessonIdsBaseCamel, SyntheticUnitvariantsWithLessonIdsByKs, SyntheticUnitvariantsWithLessonIdsByKsCamel, SyntheticUnitvariantsWithLessonIdsByYears, SyntheticUnitvariantsWithLessonIdsByYearsCamel, TeacherTips, TeacherTipsCamel, TextItem, TextItemCamel, Thread, ThreadCamel, Unit, UnitCamel, UnitNew, UnitNewCamel, UnitPublished, UnitPublishedCamel, Unitvariant, UnitvariantCamel, UnitvariantNew, UnitvariantNewCamel, UnitvariantPublished, UnitvariantPublishedCamel, VideoClipObject, VideoClipObjectCamel, VideoIngestStates };
|