@oaknational/oak-curriculum-schema 2.12.0 → 2.13.0-beta.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.
@@ -1,2 +1,2 @@
1
- "use strict";var e=require("zod"),t=require("zod-to-camel-case"),s=require("../../public/components/base/base.schema.cjs");function a(e){return e&&e.__esModule?e:{default:e}}var i=a(t);const r=e.z.enum(["api_neutral","api_queued","api_in_progress","api_failed","ingest_in_progress","ingest_failed","ingest_completed"]),n=e.z.enum(["lesson","quiz","worksheet_answers","downloadable_file","supplementary_resource","worksheet","slidedeck","lesson_guide","media_clip","video","videocaption"]),l=s.timestampsSchema.extend({entity_id:e.z.number(),entity_type:n,entity_status:r.default("api_neutral"),last_error_location:e.z.string().nullable(),last_error_message:e.z.string().nullable(),last_error_timestamp:e.z.string().nullable(),last_ingest_id:e.z.uuid().nullable()}),o=i.default(l);exports.entityStateSchema=l,exports.entityStateSchemaCamel=o,exports.entityStatusSchema=r,exports.entityTypeSchema=n;
1
+ "use strict";var e=require("zod"),t=require("zod-to-camel-case"),s=require("../../public/components/base/base.schema.cjs");function a(e){return e&&e.__esModule?e:{default:e}}var i=a(t);const r=e.z.enum(["api_neutral","api_queued","api_in_progress","api_failed","ingest_in_progress","ingest_failed","ingest_complete"]),n=e.z.enum(["lesson","quiz","worksheet_answers","downloadable_file","supplementary_resource","worksheet","slidedeck","lesson_guide","media_clip","video","videocaption"]),l=s.timestampsSchema.extend({entity_id:e.z.number(),entity_type:n,entity_status:r.default("api_neutral"),last_error_location:e.z.string().nullable(),last_error_message:e.z.string().nullable(),last_error_timestamp:e.z.string().nullable(),last_ingest_id:e.z.uuid().nullable()}),o=i.default(l);exports.entityStateSchema=l,exports.entityStateSchemaCamel=o,exports.entityStatusSchema=r,exports.entityTypeSchema=n;
2
2
  //# sourceMappingURL=entity_state.schema.cjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"entity_state.schema.cjs","sources":["../../../../../src/schema/internal/entity_state/entity_state.schema.ts"],"sourcesContent":["import { z } from \"zod\";\nimport zodToCamelCase from \"zod-to-camel-case\";\n\nimport { timestampsSchema } from \"@/schema/public/components/base/base.schema\";\n\nexport const entityStatusSchema = z.enum([\n \"api_neutral\",\n \"api_queued\",\n \"api_in_progress\",\n \"api_failed\",\n \"ingest_in_progress\",\n \"ingest_failed\",\n \"ingest_completed\",\n]);\nexport type EntityStatus = z.infer<typeof entityStatusSchema>;\n\nexport const entityTypeSchema = z.enum([\n \"lesson\",\n \"quiz\",\n \"worksheet_answers\",\n \"downloadable_file\",\n \"supplementary_resource\",\n \"worksheet\",\n \"slidedeck\",\n \"lesson_guide\",\n \"media_clip\",\n \"video\",\n \"videocaption\",\n]);\nexport type EntityType = z.infer<typeof entityTypeSchema>;\n\nexport const entityStateSchema = timestampsSchema.extend({\n entity_id: z.number(),\n entity_type: entityTypeSchema,\n entity_status: entityStatusSchema.default(\"api_neutral\"),\n last_error_location: z.string().nullable(),\n last_error_message: z.string().nullable(),\n last_error_timestamp: z.string().nullable(),\n last_ingest_id: z.uuid().nullable(),\n});\nexport type EntityState = z.infer<typeof entityStateSchema>;\n\nexport const entityStateSchemaCamel = zodToCamelCase(entityStateSchema);\nexport type EntityStateCamel = z.infer<typeof entityStateSchemaCamel>;\n"],"names":["entityStatusSchema","z","enum","entityTypeSchema","entityStateSchema","timestampsSchema","extend","entity_id","number","entity_type","entity_status","default","last_error_location","string","nullable","last_error_message","last_error_timestamp","last_ingest_id","uuid","entityStateSchemaCamel","zodToCamelCase"],"mappings":"yLAKO,MAAMA,EAAqBC,EAAAA,EAAEC,KAAK,CACvC,cACA,aACA,kBACA,aACA,qBACA,gBACA,qBAIWC,EAAmBF,EAAAA,EAAEC,KAAK,CACrC,SACA,OACA,oBACA,oBACA,yBACA,YACA,YACA,eACA,aACA,QACA,iBAIWE,EAAoBC,EAAAA,iBAAiBC,OAAO,CACvDC,UAAWN,EAAAA,EAAEO,SACbC,YAAaN,EACbO,cAAeV,EAAmBW,QAAQ,eAC1CC,oBAAqBX,EAAAA,EAAEY,SAASC,WAChCC,mBAAoBd,EAAAA,EAAEY,SAASC,WAC/BE,qBAAsBf,EAAAA,EAAEY,SAASC,WACjCG,eAAgBhB,EAAAA,EAAEiB,OAAOJ,aAIdK,EAAyBC,EAAAA,QAAehB"}
1
+ {"version":3,"file":"entity_state.schema.cjs","sources":["../../../../../src/schema/internal/entity_state/entity_state.schema.ts"],"sourcesContent":["import { z } from \"zod\";\nimport zodToCamelCase from \"zod-to-camel-case\";\n\nimport { timestampsSchema } from \"@/schema/public/components/base/base.schema\";\n\nexport const entityStatusSchema = z.enum([\n \"api_neutral\",\n \"api_queued\",\n \"api_in_progress\",\n \"api_failed\",\n \"ingest_in_progress\",\n \"ingest_failed\",\n \"ingest_complete\",\n]);\nexport type EntityStatus = z.infer<typeof entityStatusSchema>;\n\nexport const entityTypeSchema = z.enum([\n \"lesson\",\n \"quiz\",\n \"worksheet_answers\",\n \"downloadable_file\",\n \"supplementary_resource\",\n \"worksheet\",\n \"slidedeck\",\n \"lesson_guide\",\n \"media_clip\",\n \"video\",\n \"videocaption\",\n]);\nexport type EntityType = z.infer<typeof entityTypeSchema>;\n\nexport const entityStateSchema = timestampsSchema.extend({\n entity_id: z.number(),\n entity_type: entityTypeSchema,\n entity_status: entityStatusSchema.default(\"api_neutral\"),\n last_error_location: z.string().nullable(),\n last_error_message: z.string().nullable(),\n last_error_timestamp: z.string().nullable(),\n last_ingest_id: z.uuid().nullable(),\n});\nexport type EntityState = z.infer<typeof entityStateSchema>;\n\nexport const entityStateSchemaCamel = zodToCamelCase(entityStateSchema);\nexport type EntityStateCamel = z.infer<typeof entityStateSchemaCamel>;\n"],"names":["entityStatusSchema","z","enum","entityTypeSchema","entityStateSchema","timestampsSchema","extend","entity_id","number","entity_type","entity_status","default","last_error_location","string","nullable","last_error_message","last_error_timestamp","last_ingest_id","uuid","entityStateSchemaCamel","zodToCamelCase"],"mappings":"yLAKO,MAAMA,EAAqBC,EAAAA,EAAEC,KAAK,CACvC,cACA,aACA,kBACA,aACA,qBACA,gBACA,oBAIWC,EAAmBF,EAAAA,EAAEC,KAAK,CACrC,SACA,OACA,oBACA,oBACA,yBACA,YACA,YACA,eACA,aACA,QACA,iBAIWE,EAAoBC,EAAAA,iBAAiBC,OAAO,CACvDC,UAAWN,EAAAA,EAAEO,SACbC,YAAaN,EACbO,cAAeV,EAAmBW,QAAQ,eAC1CC,oBAAqBX,EAAAA,EAAEY,SAASC,WAChCC,mBAAoBd,EAAAA,EAAEY,SAASC,WAC/BE,qBAAsBf,EAAAA,EAAEY,SAASC,WACjCG,eAAgBhB,EAAAA,EAAEiB,OAAOJ,aAIdK,EAAyBC,EAAAA,QAAehB"}
@@ -1,2 +1,2 @@
1
- import{z as e}from"zod";import t from"zod-to-camel-case";import{timestampsSchema as s}from"../../public/components/base/base.schema.js";const i=e.enum(["api_neutral","api_queued","api_in_progress","api_failed","ingest_in_progress","ingest_failed","ingest_completed"]),a=e.enum(["lesson","quiz","worksheet_answers","downloadable_file","supplementary_resource","worksheet","slidedeck","lesson_guide","media_clip","video","videocaption"]),l=s.extend({entity_id:e.number(),entity_type:a,entity_status:i.default("api_neutral"),last_error_location:e.string().nullable(),last_error_message:e.string().nullable(),last_error_timestamp:e.string().nullable(),last_ingest_id:e.uuid().nullable()}),n=t(l);export{l as entityStateSchema,n as entityStateSchemaCamel,i as entityStatusSchema,a as entityTypeSchema};
1
+ import{z as e}from"zod";import t from"zod-to-camel-case";import{timestampsSchema as s}from"../../public/components/base/base.schema.js";const i=e.enum(["api_neutral","api_queued","api_in_progress","api_failed","ingest_in_progress","ingest_failed","ingest_complete"]),a=e.enum(["lesson","quiz","worksheet_answers","downloadable_file","supplementary_resource","worksheet","slidedeck","lesson_guide","media_clip","video","videocaption"]),l=s.extend({entity_id:e.number(),entity_type:a,entity_status:i.default("api_neutral"),last_error_location:e.string().nullable(),last_error_message:e.string().nullable(),last_error_timestamp:e.string().nullable(),last_ingest_id:e.uuid().nullable()}),n=t(l);export{l as entityStateSchema,n as entityStateSchemaCamel,i as entityStatusSchema,a as entityTypeSchema};
2
2
  //# sourceMappingURL=entity_state.schema.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"entity_state.schema.js","sources":["../../../../../src/schema/internal/entity_state/entity_state.schema.ts"],"sourcesContent":["import { z } from \"zod\";\nimport zodToCamelCase from \"zod-to-camel-case\";\n\nimport { timestampsSchema } from \"@/schema/public/components/base/base.schema\";\n\nexport const entityStatusSchema = z.enum([\n \"api_neutral\",\n \"api_queued\",\n \"api_in_progress\",\n \"api_failed\",\n \"ingest_in_progress\",\n \"ingest_failed\",\n \"ingest_completed\",\n]);\nexport type EntityStatus = z.infer<typeof entityStatusSchema>;\n\nexport const entityTypeSchema = z.enum([\n \"lesson\",\n \"quiz\",\n \"worksheet_answers\",\n \"downloadable_file\",\n \"supplementary_resource\",\n \"worksheet\",\n \"slidedeck\",\n \"lesson_guide\",\n \"media_clip\",\n \"video\",\n \"videocaption\",\n]);\nexport type EntityType = z.infer<typeof entityTypeSchema>;\n\nexport const entityStateSchema = timestampsSchema.extend({\n entity_id: z.number(),\n entity_type: entityTypeSchema,\n entity_status: entityStatusSchema.default(\"api_neutral\"),\n last_error_location: z.string().nullable(),\n last_error_message: z.string().nullable(),\n last_error_timestamp: z.string().nullable(),\n last_ingest_id: z.uuid().nullable(),\n});\nexport type EntityState = z.infer<typeof entityStateSchema>;\n\nexport const entityStateSchemaCamel = zodToCamelCase(entityStateSchema);\nexport type EntityStateCamel = z.infer<typeof entityStateSchemaCamel>;\n"],"names":["entityStatusSchema","z","enum","entityTypeSchema","entityStateSchema","timestampsSchema","extend","entity_id","number","entity_type","entity_status","default","last_error_location","string","nullable","last_error_message","last_error_timestamp","last_ingest_id","uuid","entityStateSchemaCamel","zodToCamelCase"],"mappings":"wIAKO,MAAMA,EAAqBC,EAAEC,KAAK,CACvC,cACA,aACA,kBACA,aACA,qBACA,gBACA,qBAIWC,EAAmBF,EAAEC,KAAK,CACrC,SACA,OACA,oBACA,oBACA,yBACA,YACA,YACA,eACA,aACA,QACA,iBAIWE,EAAoBC,EAAiBC,OAAO,CACvDC,UAAWN,EAAEO,SACbC,YAAaN,EACbO,cAAeV,EAAmBW,QAAQ,eAC1CC,oBAAqBX,EAAEY,SAASC,WAChCC,mBAAoBd,EAAEY,SAASC,WAC/BE,qBAAsBf,EAAEY,SAASC,WACjCG,eAAgBhB,EAAEiB,OAAOJ,aAIdK,EAAyBC,EAAehB"}
1
+ {"version":3,"file":"entity_state.schema.js","sources":["../../../../../src/schema/internal/entity_state/entity_state.schema.ts"],"sourcesContent":["import { z } from \"zod\";\nimport zodToCamelCase from \"zod-to-camel-case\";\n\nimport { timestampsSchema } from \"@/schema/public/components/base/base.schema\";\n\nexport const entityStatusSchema = z.enum([\n \"api_neutral\",\n \"api_queued\",\n \"api_in_progress\",\n \"api_failed\",\n \"ingest_in_progress\",\n \"ingest_failed\",\n \"ingest_complete\",\n]);\nexport type EntityStatus = z.infer<typeof entityStatusSchema>;\n\nexport const entityTypeSchema = z.enum([\n \"lesson\",\n \"quiz\",\n \"worksheet_answers\",\n \"downloadable_file\",\n \"supplementary_resource\",\n \"worksheet\",\n \"slidedeck\",\n \"lesson_guide\",\n \"media_clip\",\n \"video\",\n \"videocaption\",\n]);\nexport type EntityType = z.infer<typeof entityTypeSchema>;\n\nexport const entityStateSchema = timestampsSchema.extend({\n entity_id: z.number(),\n entity_type: entityTypeSchema,\n entity_status: entityStatusSchema.default(\"api_neutral\"),\n last_error_location: z.string().nullable(),\n last_error_message: z.string().nullable(),\n last_error_timestamp: z.string().nullable(),\n last_ingest_id: z.uuid().nullable(),\n});\nexport type EntityState = z.infer<typeof entityStateSchema>;\n\nexport const entityStateSchemaCamel = zodToCamelCase(entityStateSchema);\nexport type EntityStateCamel = z.infer<typeof entityStateSchemaCamel>;\n"],"names":["entityStatusSchema","z","enum","entityTypeSchema","entityStateSchema","timestampsSchema","extend","entity_id","number","entity_type","entity_status","default","last_error_location","string","nullable","last_error_message","last_error_timestamp","last_ingest_id","uuid","entityStateSchemaCamel","zodToCamelCase"],"mappings":"wIAKO,MAAMA,EAAqBC,EAAEC,KAAK,CACvC,cACA,aACA,kBACA,aACA,qBACA,gBACA,oBAIWC,EAAmBF,EAAEC,KAAK,CACrC,SACA,OACA,oBACA,oBACA,yBACA,YACA,YACA,eACA,aACA,QACA,iBAIWE,EAAoBC,EAAiBC,OAAO,CACvDC,UAAWN,EAAEO,SACbC,YAAaN,EACbO,cAAeV,EAAmBW,QAAQ,eAC1CC,oBAAqBX,EAAEY,SAASC,WAChCC,mBAAoBd,EAAEY,SAASC,WAC/BE,qBAAsBf,EAAEY,SAASC,WACjCG,eAAgBhB,EAAEiB,OAAOJ,aAIdK,EAAyBC,EAAehB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oaknational/oak-curriculum-schema",
3
- "version": "2.12.0",
3
+ "version": "2.13.0-beta.2",
4
4
  "type": "module",
5
5
  "description": "Contract tests to ensure data integrity between Oak apps and their data",
6
6
  "main": "cjs/index.cjs",
@@ -10,7 +10,7 @@ export const entityStatusSchema = z.enum([
10
10
  "api_failed",
11
11
  "ingest_in_progress",
12
12
  "ingest_failed",
13
- "ingest_completed",
13
+ "ingest_complete",
14
14
  ]);
15
15
  export type EntityStatus = z.infer<typeof entityStatusSchema>;
16
16
 
package/types.d.ts CHANGED
@@ -24,26 +24,26 @@ declare const videoIngestStatesSchema: z.ZodEnum<{
24
24
  type VideoIngestStates = z.infer<typeof videoIngestStatesSchema>;
25
25
 
26
26
  declare const entityStatusSchema: z.ZodEnum<{
27
+ ingest_complete: "ingest_complete";
27
28
  api_neutral: "api_neutral";
28
29
  api_queued: "api_queued";
29
30
  api_in_progress: "api_in_progress";
30
31
  api_failed: "api_failed";
31
32
  ingest_in_progress: "ingest_in_progress";
32
33
  ingest_failed: "ingest_failed";
33
- ingest_completed: "ingest_completed";
34
34
  }>;
35
35
  type EntityStatus = z.infer<typeof entityStatusSchema>;
36
36
  declare const entityTypeSchema: z.ZodEnum<{
37
- lesson: "lesson";
37
+ lesson_guide: "lesson_guide";
38
38
  quiz: "quiz";
39
+ slidedeck: "slidedeck";
40
+ video: "video";
41
+ worksheet: "worksheet";
39
42
  worksheet_answers: "worksheet_answers";
43
+ lesson: "lesson";
40
44
  downloadable_file: "downloadable_file";
41
45
  supplementary_resource: "supplementary_resource";
42
- worksheet: "worksheet";
43
- slidedeck: "slidedeck";
44
- lesson_guide: "lesson_guide";
45
46
  media_clip: "media_clip";
46
- video: "video";
47
47
  videocaption: "videocaption";
48
48
  }>;
49
49
  type EntityType = z.infer<typeof entityTypeSchema>;
@@ -52,26 +52,26 @@ declare const entityStateSchema: z.ZodObject<{
52
52
  updated_at: z.ZodString;
53
53
  entity_id: z.ZodNumber;
54
54
  entity_type: z.ZodEnum<{
55
- lesson: "lesson";
55
+ lesson_guide: "lesson_guide";
56
56
  quiz: "quiz";
57
+ slidedeck: "slidedeck";
58
+ video: "video";
59
+ worksheet: "worksheet";
57
60
  worksheet_answers: "worksheet_answers";
61
+ lesson: "lesson";
58
62
  downloadable_file: "downloadable_file";
59
63
  supplementary_resource: "supplementary_resource";
60
- worksheet: "worksheet";
61
- slidedeck: "slidedeck";
62
- lesson_guide: "lesson_guide";
63
64
  media_clip: "media_clip";
64
- video: "video";
65
65
  videocaption: "videocaption";
66
66
  }>;
67
67
  entity_status: z.ZodDefault<z.ZodEnum<{
68
+ ingest_complete: "ingest_complete";
68
69
  api_neutral: "api_neutral";
69
70
  api_queued: "api_queued";
70
71
  api_in_progress: "api_in_progress";
71
72
  api_failed: "api_failed";
72
73
  ingest_in_progress: "ingest_in_progress";
73
74
  ingest_failed: "ingest_failed";
74
- ingest_completed: "ingest_completed";
75
75
  }>>;
76
76
  last_error_location: z.ZodNullable<z.ZodString>;
77
77
  last_error_message: z.ZodNullable<z.ZodString>;
@@ -83,8 +83,8 @@ declare const entityStateSchemaCamel: Omit<z.ZodType<{
83
83
  createdAt: string;
84
84
  updatedAt: string;
85
85
  entityId: number;
86
- entityType: "lesson" | "quiz" | "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide" | "media_clip" | "video" | "videocaption";
87
- entityStatus: "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed" | "ingest_completed";
86
+ entityType: "lesson_guide" | "quiz" | "slidedeck" | "video" | "worksheet" | "worksheet_answers" | "lesson" | "downloadable_file" | "supplementary_resource" | "media_clip" | "videocaption";
87
+ entityStatus: "ingest_complete" | "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed";
88
88
  lastErrorLocation: string | null;
89
89
  lastErrorMessage: string | null;
90
90
  lastErrorTimestamp: string | null;
@@ -93,8 +93,8 @@ declare const entityStateSchemaCamel: Omit<z.ZodType<{
93
93
  createdAt: string;
94
94
  updatedAt: string;
95
95
  entityId: number;
96
- entityType: "lesson" | "quiz" | "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide" | "media_clip" | "video" | "videocaption";
97
- entityStatus: "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed" | "ingest_completed";
96
+ entityType: "lesson_guide" | "quiz" | "slidedeck" | "video" | "worksheet" | "worksheet_answers" | "lesson" | "downloadable_file" | "supplementary_resource" | "media_clip" | "videocaption";
97
+ entityStatus: "ingest_complete" | "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed";
98
98
  lastErrorLocation: string | null;
99
99
  lastErrorMessage: string | null;
100
100
  lastErrorTimestamp: string | null;
@@ -104,8 +104,8 @@ declare const entityStateSchemaCamel: Omit<z.ZodType<{
104
104
  created_at: string;
105
105
  updated_at: string;
106
106
  entity_id: number;
107
- entity_type: "lesson" | "quiz" | "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide" | "media_clip" | "video" | "videocaption";
108
- entity_status: "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed" | "ingest_completed";
107
+ entity_type: "lesson_guide" | "quiz" | "slidedeck" | "video" | "worksheet" | "worksheet_answers" | "lesson" | "downloadable_file" | "supplementary_resource" | "media_clip" | "videocaption";
108
+ entity_status: "ingest_complete" | "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed";
109
109
  last_error_location: string | null;
110
110
  last_error_message: string | null;
111
111
  last_error_timestamp: string | null;
@@ -114,8 +114,8 @@ declare const entityStateSchemaCamel: Omit<z.ZodType<{
114
114
  createdAt: string;
115
115
  updatedAt: string;
116
116
  entityId: number;
117
- entityType: "lesson" | "quiz" | "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide" | "media_clip" | "video" | "videocaption";
118
- entityStatus: "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed" | "ingest_completed";
117
+ entityType: "lesson_guide" | "quiz" | "slidedeck" | "video" | "worksheet" | "worksheet_answers" | "lesson" | "downloadable_file" | "supplementary_resource" | "media_clip" | "videocaption";
118
+ entityStatus: "ingest_complete" | "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed";
119
119
  lastErrorLocation: string | null;
120
120
  lastErrorMessage: string | null;
121
121
  lastErrorTimestamp: string | null;
@@ -125,8 +125,8 @@ declare const entityStateSchemaCamel: Omit<z.ZodType<{
125
125
  created_at: string;
126
126
  updated_at: string;
127
127
  entity_id: number;
128
- entity_type: "lesson" | "quiz" | "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide" | "media_clip" | "video" | "videocaption";
129
- entity_status: "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed" | "ingest_completed";
128
+ entity_type: "lesson_guide" | "quiz" | "slidedeck" | "video" | "worksheet" | "worksheet_answers" | "lesson" | "downloadable_file" | "supplementary_resource" | "media_clip" | "videocaption";
129
+ entity_status: "ingest_complete" | "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed";
130
130
  last_error_location: string | null;
131
131
  last_error_message: string | null;
132
132
  last_error_timestamp: string | null;
@@ -137,8 +137,8 @@ declare const entityStateSchemaCamel: Omit<z.ZodType<{
137
137
  createdAt: string;
138
138
  updatedAt: string;
139
139
  entityId: number;
140
- entityType: "lesson" | "quiz" | "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide" | "media_clip" | "video" | "videocaption";
141
- entityStatus: "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed" | "ingest_completed";
140
+ entityType: "lesson_guide" | "quiz" | "slidedeck" | "video" | "worksheet" | "worksheet_answers" | "lesson" | "downloadable_file" | "supplementary_resource" | "media_clip" | "videocaption";
141
+ entityStatus: "ingest_complete" | "api_neutral" | "api_queued" | "api_in_progress" | "api_failed" | "ingest_in_progress" | "ingest_failed";
142
142
  lastErrorLocation: string | null;
143
143
  lastErrorMessage: string | null;
144
144
  lastErrorTimestamp: string | null;
@@ -2688,12 +2688,12 @@ declare const reviewLessonsFixtureCamel: ({ overrides, }?: {
2688
2688
  }) => ReviewLessonsCamel;
2689
2689
 
2690
2690
  declare const assetTypeSchema: z.ZodEnum<{
2691
+ lesson_guide: "lesson_guide";
2692
+ slidedeck: "slidedeck";
2693
+ worksheet: "worksheet";
2691
2694
  worksheet_answers: "worksheet_answers";
2692
2695
  downloadable_file: "downloadable_file";
2693
2696
  supplementary_resource: "supplementary_resource";
2694
- worksheet: "worksheet";
2695
- slidedeck: "slidedeck";
2696
- lesson_guide: "lesson_guide";
2697
2697
  }>;
2698
2698
  type AssetTypeType = z.infer<typeof assetTypeSchema>;
2699
2699
  declare const googleSchema: z.ZodObject<{
@@ -2737,12 +2737,12 @@ declare const assetSchema: z.ZodObject<{
2737
2737
  title: z.ZodString;
2738
2738
  description: z.ZodString;
2739
2739
  asset_type: z.ZodEnum<{
2740
+ lesson_guide: "lesson_guide";
2741
+ slidedeck: "slidedeck";
2742
+ worksheet: "worksheet";
2740
2743
  worksheet_answers: "worksheet_answers";
2741
2744
  downloadable_file: "downloadable_file";
2742
2745
  supplementary_resource: "supplementary_resource";
2743
- worksheet: "worksheet";
2744
- slidedeck: "slidedeck";
2745
- lesson_guide: "lesson_guide";
2746
2746
  }>;
2747
2747
  url: z.ZodURL;
2748
2748
  asset_object: z.ZodObject<{
@@ -2776,12 +2776,12 @@ declare const assetNewSchema: z.ZodObject<{
2776
2776
  asset_id: z.ZodNumber;
2777
2777
  asset_uid: z.ZodString;
2778
2778
  asset_type: z.ZodEnum<{
2779
+ lesson_guide: "lesson_guide";
2780
+ slidedeck: "slidedeck";
2781
+ worksheet: "worksheet";
2779
2782
  worksheet_answers: "worksheet_answers";
2780
2783
  downloadable_file: "downloadable_file";
2781
2784
  supplementary_resource: "supplementary_resource";
2782
- worksheet: "worksheet";
2783
- slidedeck: "slidedeck";
2784
- lesson_guide: "lesson_guide";
2785
2785
  }>;
2786
2786
  asset_object: z.ZodObject<{
2787
2787
  pdf: z.ZodOptional<z.ZodObject<{
@@ -2820,12 +2820,12 @@ declare const assetPublishedSchema: z.ZodObject<{
2820
2820
  title: z.ZodString;
2821
2821
  description: z.ZodString;
2822
2822
  asset_type: z.ZodEnum<{
2823
+ lesson_guide: "lesson_guide";
2824
+ slidedeck: "slidedeck";
2825
+ worksheet: "worksheet";
2823
2826
  worksheet_answers: "worksheet_answers";
2824
2827
  downloadable_file: "downloadable_file";
2825
2828
  supplementary_resource: "supplementary_resource";
2826
- worksheet: "worksheet";
2827
- slidedeck: "slidedeck";
2828
- lesson_guide: "lesson_guide";
2829
2829
  }>;
2830
2830
  url: z.ZodURL;
2831
2831
  asset_object: z.ZodObject<{
@@ -2916,7 +2916,7 @@ declare const assetSchemaCamel: Omit<z.ZodType<{
2916
2916
  _state: "published" | "new" | "migration";
2917
2917
  title: string;
2918
2918
  description: string;
2919
- assetType: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
2919
+ assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
2920
2920
  url: string;
2921
2921
  assetObject: {
2922
2922
  pdf?: {
@@ -2949,7 +2949,7 @@ declare const assetSchemaCamel: Omit<z.ZodType<{
2949
2949
  _state: "published" | "new" | "migration";
2950
2950
  title: string;
2951
2951
  description: string;
2952
- assetType: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
2952
+ assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
2953
2953
  url: string;
2954
2954
  assetObject: {
2955
2955
  pdf?: {
@@ -2983,7 +2983,7 @@ declare const assetSchemaCamel: Omit<z.ZodType<{
2983
2983
  _state: "published" | "new" | "migration";
2984
2984
  title: string;
2985
2985
  description: string;
2986
- asset_type: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
2986
+ asset_type: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
2987
2987
  url: string;
2988
2988
  asset_object: {
2989
2989
  pdf?: {
@@ -3016,7 +3016,7 @@ declare const assetSchemaCamel: Omit<z.ZodType<{
3016
3016
  _state: "published" | "new" | "migration";
3017
3017
  title: string;
3018
3018
  description: string;
3019
- assetType: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
3019
+ assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
3020
3020
  url: string;
3021
3021
  assetObject: {
3022
3022
  pdf?: {
@@ -3050,7 +3050,7 @@ declare const assetSchemaCamel: Omit<z.ZodType<{
3050
3050
  _state: "published" | "new" | "migration";
3051
3051
  title: string;
3052
3052
  description: string;
3053
- asset_type: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
3053
+ asset_type: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
3054
3054
  url: string;
3055
3055
  asset_object: {
3056
3056
  pdf?: {
@@ -3085,7 +3085,7 @@ declare const assetSchemaCamel: Omit<z.ZodType<{
3085
3085
  _state: "published" | "new" | "migration";
3086
3086
  title: string;
3087
3087
  description: string;
3088
- assetType: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
3088
+ assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
3089
3089
  url: string;
3090
3090
  assetObject: {
3091
3091
  pdf?: {
@@ -3120,7 +3120,7 @@ declare const assetNewSchemaCamel: Omit<z.ZodType<{
3120
3120
  updatedAt: string;
3121
3121
  assetId: number;
3122
3122
  assetUid: string;
3123
- assetType: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
3123
+ assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
3124
3124
  assetObject: {
3125
3125
  pdf?: {
3126
3126
  bucketName: string | null;
@@ -3153,7 +3153,7 @@ declare const assetNewSchemaCamel: Omit<z.ZodType<{
3153
3153
  updatedAt: string;
3154
3154
  assetId: number;
3155
3155
  assetUid: string;
3156
- assetType: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
3156
+ assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
3157
3157
  assetObject: {
3158
3158
  pdf?: {
3159
3159
  bucketName: string | null;
@@ -3187,7 +3187,7 @@ declare const assetNewSchemaCamel: Omit<z.ZodType<{
3187
3187
  updated_at: string;
3188
3188
  asset_id: number;
3189
3189
  asset_uid: string;
3190
- asset_type: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
3190
+ asset_type: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
3191
3191
  asset_object: {
3192
3192
  pdf?: {
3193
3193
  bucket_name: string | null;
@@ -3220,7 +3220,7 @@ declare const assetNewSchemaCamel: Omit<z.ZodType<{
3220
3220
  updatedAt: string;
3221
3221
  assetId: number;
3222
3222
  assetUid: string;
3223
- assetType: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
3223
+ assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
3224
3224
  assetObject: {
3225
3225
  pdf?: {
3226
3226
  bucketName: string | null;
@@ -3254,7 +3254,7 @@ declare const assetNewSchemaCamel: Omit<z.ZodType<{
3254
3254
  updated_at: string;
3255
3255
  asset_id: number;
3256
3256
  asset_uid: string;
3257
- asset_type: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
3257
+ asset_type: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
3258
3258
  asset_object: {
3259
3259
  pdf?: {
3260
3260
  bucket_name: string | null;
@@ -3289,7 +3289,7 @@ declare const assetNewSchemaCamel: Omit<z.ZodType<{
3289
3289
  updatedAt: string;
3290
3290
  assetId: number;
3291
3291
  assetUid: string;
3292
- assetType: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
3292
+ assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
3293
3293
  assetObject: {
3294
3294
  pdf?: {
3295
3295
  bucketName: string | null;
@@ -3329,7 +3329,7 @@ declare const assetPublishedSchemaCamel: Omit<z.ZodType<{
3329
3329
  assetUid: string;
3330
3330
  title: string;
3331
3331
  description: string;
3332
- assetType: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
3332
+ assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
3333
3333
  url: string;
3334
3334
  assetObject: {
3335
3335
  pdf?: {
@@ -3362,7 +3362,7 @@ declare const assetPublishedSchemaCamel: Omit<z.ZodType<{
3362
3362
  assetUid: string;
3363
3363
  title: string;
3364
3364
  description: string;
3365
- assetType: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
3365
+ assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
3366
3366
  url: string;
3367
3367
  assetObject: {
3368
3368
  pdf?: {
@@ -3396,7 +3396,7 @@ declare const assetPublishedSchemaCamel: Omit<z.ZodType<{
3396
3396
  asset_uid: string;
3397
3397
  title: string;
3398
3398
  description: string;
3399
- asset_type: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
3399
+ asset_type: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
3400
3400
  url: string;
3401
3401
  asset_object: {
3402
3402
  pdf?: {
@@ -3429,7 +3429,7 @@ declare const assetPublishedSchemaCamel: Omit<z.ZodType<{
3429
3429
  assetUid: string;
3430
3430
  title: string;
3431
3431
  description: string;
3432
- assetType: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
3432
+ assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
3433
3433
  url: string;
3434
3434
  assetObject: {
3435
3435
  pdf?: {
@@ -3463,7 +3463,7 @@ declare const assetPublishedSchemaCamel: Omit<z.ZodType<{
3463
3463
  asset_uid: string;
3464
3464
  title: string;
3465
3465
  description: string;
3466
- asset_type: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
3466
+ asset_type: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
3467
3467
  url: string;
3468
3468
  asset_object: {
3469
3469
  pdf?: {
@@ -3498,7 +3498,7 @@ declare const assetPublishedSchemaCamel: Omit<z.ZodType<{
3498
3498
  assetUid: string;
3499
3499
  title: string;
3500
3500
  description: string;
3501
- assetType: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
3501
+ assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
3502
3502
  url: string;
3503
3503
  assetObject: {
3504
3504
  pdf?: {
@@ -3670,12 +3670,12 @@ declare const assetsSchema: z.ZodObject<{
3670
3670
  title: z.ZodString;
3671
3671
  description: z.ZodString;
3672
3672
  asset_type: z.ZodEnum<{
3673
+ lesson_guide: "lesson_guide";
3674
+ slidedeck: "slidedeck";
3675
+ worksheet: "worksheet";
3673
3676
  worksheet_answers: "worksheet_answers";
3674
3677
  downloadable_file: "downloadable_file";
3675
3678
  supplementary_resource: "supplementary_resource";
3676
- worksheet: "worksheet";
3677
- slidedeck: "slidedeck";
3678
- lesson_guide: "lesson_guide";
3679
3679
  }>;
3680
3680
  url: z.ZodURL;
3681
3681
  asset_object: z.ZodObject<{
@@ -11992,13 +11992,13 @@ declare const unitSchema: z.ZodObject<{
11992
11992
  }, z.core.$strip>;
11993
11993
  type Unit = z.infer<typeof unitSchema>;
11994
11994
  declare const unitNewSchema: z.ZodObject<{
11995
- description: z.ZodNullable<z.ZodString>;
11996
11995
  _cohort: z.ZodEnum<{
11997
11996
  0: "0";
11998
11997
  "2020-2023": "2020-2023";
11999
11998
  "2023-2024": "2023-2024";
12000
11999
  "2024-2025": "2024-2025";
12001
12000
  }>;
12001
+ description: z.ZodNullable<z.ZodString>;
12002
12002
  expiration_date: z.ZodNullable<z.ZodString>;
12003
12003
  deprecated_fields: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
12004
12004
  tags: z.ZodNullable<z.ZodArray<z.ZodNumber>>;
@@ -12125,8 +12125,8 @@ declare const unitSchemaCamel: Omit<z.ZodType<{
12125
12125
  };
12126
12126
  type UnitCamel = z.infer<typeof unitSchemaCamel>;
12127
12127
  declare const unitNewSchemaCamel: Omit<z.ZodType<{
12128
- description: string | null;
12129
12128
  _cohort: "0" | "2020-2023" | "2023-2024" | "2024-2025";
12129
+ description: string | null;
12130
12130
  expirationDate: string | null;
12131
12131
  tags: number[] | null;
12132
12132
  unitId: number;
@@ -12138,8 +12138,8 @@ declare const unitNewSchemaCamel: Omit<z.ZodType<{
12138
12138
  } | null | undefined;
12139
12139
  priorKnowledgeRequirements?: string[] | null | undefined;
12140
12140
  }, unknown, z.core.$ZodTypeInternals<{
12141
- description: string | null;
12142
12141
  _cohort: "0" | "2020-2023" | "2023-2024" | "2024-2025";
12142
+ description: string | null;
12143
12143
  expirationDate: string | null;
12144
12144
  tags: number[] | null;
12145
12145
  unitId: number;
@@ -12152,8 +12152,8 @@ declare const unitNewSchemaCamel: Omit<z.ZodType<{
12152
12152
  priorKnowledgeRequirements?: string[] | null | undefined;
12153
12153
  }, unknown>>, "parse" | "safeParse"> & {
12154
12154
  parse: (input: {
12155
- description: string | null;
12156
12155
  _cohort: "0" | "2020-2023" | "2023-2024" | "2024-2025";
12156
+ description: string | null;
12157
12157
  expiration_date: string | null;
12158
12158
  tags: number[] | null;
12159
12159
  unit_id: number;
@@ -12163,8 +12163,8 @@ declare const unitNewSchemaCamel: Omit<z.ZodType<{
12163
12163
  deprecated_fields?: Record<string, unknown> | null | undefined;
12164
12164
  prior_knowledge_requirements?: string[] | null | undefined;
12165
12165
  }) => {
12166
- description: string | null;
12167
12166
  _cohort: "0" | "2020-2023" | "2023-2024" | "2024-2025";
12167
+ description: string | null;
12168
12168
  expirationDate: string | null;
12169
12169
  tags: number[] | null;
12170
12170
  unitId: number;
@@ -12177,8 +12177,8 @@ declare const unitNewSchemaCamel: Omit<z.ZodType<{
12177
12177
  priorKnowledgeRequirements?: string[] | null | undefined;
12178
12178
  };
12179
12179
  safeParse: (input: {
12180
- description: string | null;
12181
12180
  _cohort: "0" | "2020-2023" | "2023-2024" | "2024-2025";
12181
+ description: string | null;
12182
12182
  expiration_date: string | null;
12183
12183
  tags: number[] | null;
12184
12184
  unit_id: number;
@@ -12190,8 +12190,8 @@ declare const unitNewSchemaCamel: Omit<z.ZodType<{
12190
12190
  }) => {
12191
12191
  success: boolean;
12192
12192
  data?: {
12193
- description: string | null;
12194
12193
  _cohort: "0" | "2020-2023" | "2023-2024" | "2024-2025";
12194
+ description: string | null;
12195
12195
  expirationDate: string | null;
12196
12196
  tags: number[] | null;
12197
12197
  unitId: number;
@@ -22419,12 +22419,12 @@ declare const publishedAssetsSchema: z.ZodObject<{
22419
22419
  asset_id: z.ZodNumber;
22420
22420
  asset_uid: z.ZodString;
22421
22421
  asset_type: z.ZodEnum<{
22422
+ lesson_guide: "lesson_guide";
22423
+ slidedeck: "slidedeck";
22424
+ worksheet: "worksheet";
22422
22425
  worksheet_answers: "worksheet_answers";
22423
22426
  downloadable_file: "downloadable_file";
22424
22427
  supplementary_resource: "supplementary_resource";
22425
- worksheet: "worksheet";
22426
- slidedeck: "slidedeck";
22427
- lesson_guide: "lesson_guide";
22428
22428
  }>;
22429
22429
  asset_object: z.ZodObject<{
22430
22430
  pdf: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -22463,7 +22463,7 @@ declare const publishedAssetsSchemaCamel: Omit<z.ZodType<{
22463
22463
  updatedAt: string;
22464
22464
  assetId: number;
22465
22465
  assetUid: string;
22466
- assetType: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
22466
+ assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
22467
22467
  assetObject: {
22468
22468
  pdf?: {
22469
22469
  bucketName?: string | null | undefined;
@@ -22499,7 +22499,7 @@ declare const publishedAssetsSchemaCamel: Omit<z.ZodType<{
22499
22499
  updatedAt: string;
22500
22500
  assetId: number;
22501
22501
  assetUid: string;
22502
- assetType: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
22502
+ assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
22503
22503
  assetObject: {
22504
22504
  pdf?: {
22505
22505
  bucketName?: string | null | undefined;
@@ -22536,7 +22536,7 @@ declare const publishedAssetsSchemaCamel: Omit<z.ZodType<{
22536
22536
  updated_at: string;
22537
22537
  asset_id: number;
22538
22538
  asset_uid: string;
22539
- asset_type: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
22539
+ asset_type: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
22540
22540
  asset_object: {
22541
22541
  pdf?: {
22542
22542
  bucket_name?: string | null | undefined;
@@ -22572,7 +22572,7 @@ declare const publishedAssetsSchemaCamel: Omit<z.ZodType<{
22572
22572
  updatedAt: string;
22573
22573
  assetId: number;
22574
22574
  assetUid: string;
22575
- assetType: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
22575
+ assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
22576
22576
  assetObject: {
22577
22577
  pdf?: {
22578
22578
  bucketName?: string | null | undefined;
@@ -22609,7 +22609,7 @@ declare const publishedAssetsSchemaCamel: Omit<z.ZodType<{
22609
22609
  updated_at: string;
22610
22610
  asset_id: number;
22611
22611
  asset_uid: string;
22612
- asset_type: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
22612
+ asset_type: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
22613
22613
  asset_object: {
22614
22614
  pdf?: {
22615
22615
  bucket_name?: string | null | undefined;
@@ -22647,7 +22647,7 @@ declare const publishedAssetsSchemaCamel: Omit<z.ZodType<{
22647
22647
  updatedAt: string;
22648
22648
  assetId: number;
22649
22649
  assetUid: string;
22650
- assetType: "worksheet_answers" | "downloadable_file" | "supplementary_resource" | "worksheet" | "slidedeck" | "lesson_guide";
22650
+ assetType: "lesson_guide" | "slidedeck" | "worksheet" | "worksheet_answers" | "downloadable_file" | "supplementary_resource";
22651
22651
  assetObject: {
22652
22652
  pdf?: {
22653
22653
  bucketName?: string | null | undefined;