@thanh01.pmt/curriculum-kit 1.4.1 → 1.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ai/index.cjs +3 -1
- package/dist/ai/index.cjs.map +1 -1
- package/dist/ai/index.d.cts +4 -0
- package/dist/ai/index.d.ts +4 -0
- package/dist/ai/index.mjs +3 -1
- package/dist/ai/index.mjs.map +1 -1
- package/dist/index.cjs +12688 -137
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.mjs +12686 -138
- package/dist/index.mjs.map +1 -1
- package/dist/pipeline/index.cjs +3 -1
- package/dist/pipeline/index.cjs.map +1 -1
- package/dist/pipeline/index.mjs +3 -1
- package/dist/pipeline/index.mjs.map +1 -1
- package/dist/schemas/index.cjs +3 -1
- package/dist/schemas/index.cjs.map +1 -1
- package/dist/schemas/index.d.cts +20 -0
- package/dist/schemas/index.d.ts +20 -0
- package/dist/schemas/index.mjs +3 -1
- package/dist/schemas/index.mjs.map +1 -1
- package/dist/standards/index.cjs +12412 -2
- package/dist/standards/index.cjs.map +1 -1
- package/dist/standards/index.d.cts +22 -3
- package/dist/standards/index.d.ts +22 -3
- package/dist/standards/index.mjs +12410 -3
- package/dist/standards/index.mjs.map +1 -1
- package/dist/{standardsCoverageGate-CsUNzv6C.d.cts → standardsCoverageGate-DR5YTtlt.d.cts} +2 -0
- package/dist/{standardsCoverageGate-CsUNzv6C.d.ts → standardsCoverageGate-DR5YTtlt.d.ts} +2 -0
- package/dist/workflow/index.cjs +12426 -18
- package/dist/workflow/index.cjs.map +1 -1
- package/dist/workflow/index.d.cts +1 -1
- package/dist/workflow/index.d.ts +1 -1
- package/dist/workflow/index.mjs +12426 -18
- package/dist/workflow/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/ai/index.d.cts
CHANGED
|
@@ -233,6 +233,8 @@ declare function streamLessonMasterFlow(input: StreamLessonMasterInput): Promise
|
|
|
233
233
|
description?: string | undefined;
|
|
234
234
|
name?: string | undefined;
|
|
235
235
|
bloomLevel?: string | undefined;
|
|
236
|
+
standardRefs?: (string | undefined)[] | undefined;
|
|
237
|
+
conceptRefs?: (string | undefined)[] | undefined;
|
|
236
238
|
} | undefined)[] | undefined;
|
|
237
239
|
teacherNotes?: {
|
|
238
240
|
commonPitfalls?: (string | undefined)[] | undefined;
|
|
@@ -302,6 +304,8 @@ declare function streamLessonMasterFlow(input: StreamLessonMasterInput): Promise
|
|
|
302
304
|
description: string;
|
|
303
305
|
name: string;
|
|
304
306
|
bloomLevel: string;
|
|
307
|
+
standardRefs?: string[] | undefined;
|
|
308
|
+
conceptRefs?: string[] | undefined;
|
|
305
309
|
}[];
|
|
306
310
|
teacherNotes: {
|
|
307
311
|
commonPitfalls: string[];
|
package/dist/ai/index.d.ts
CHANGED
|
@@ -233,6 +233,8 @@ declare function streamLessonMasterFlow(input: StreamLessonMasterInput): Promise
|
|
|
233
233
|
description?: string | undefined;
|
|
234
234
|
name?: string | undefined;
|
|
235
235
|
bloomLevel?: string | undefined;
|
|
236
|
+
standardRefs?: (string | undefined)[] | undefined;
|
|
237
|
+
conceptRefs?: (string | undefined)[] | undefined;
|
|
236
238
|
} | undefined)[] | undefined;
|
|
237
239
|
teacherNotes?: {
|
|
238
240
|
commonPitfalls?: (string | undefined)[] | undefined;
|
|
@@ -302,6 +304,8 @@ declare function streamLessonMasterFlow(input: StreamLessonMasterInput): Promise
|
|
|
302
304
|
description: string;
|
|
303
305
|
name: string;
|
|
304
306
|
bloomLevel: string;
|
|
307
|
+
standardRefs?: string[] | undefined;
|
|
308
|
+
conceptRefs?: string[] | undefined;
|
|
305
309
|
}[];
|
|
306
310
|
teacherNotes: {
|
|
307
311
|
commonPitfalls: string[];
|
package/dist/ai/index.mjs
CHANGED
|
@@ -2530,7 +2530,9 @@ var LessonPlanSchema = z.object({
|
|
|
2530
2530
|
name: z.string().optional().default(""),
|
|
2531
2531
|
description: z.string(),
|
|
2532
2532
|
bloomLevel: z.string().default("understand"),
|
|
2533
|
-
successCriteria: z.string().optional().default("")
|
|
2533
|
+
successCriteria: z.string().optional().default(""),
|
|
2534
|
+
standardRefs: z.array(z.string()).optional(),
|
|
2535
|
+
conceptRefs: z.array(z.string()).optional()
|
|
2534
2536
|
})).default([]),
|
|
2535
2537
|
prerequisites: z.string().optional().default(""),
|
|
2536
2538
|
materialsSummary: z.string().optional().default(""),
|