@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.
Files changed (37) hide show
  1. package/dist/ai/index.cjs +3 -1
  2. package/dist/ai/index.cjs.map +1 -1
  3. package/dist/ai/index.d.cts +4 -0
  4. package/dist/ai/index.d.ts +4 -0
  5. package/dist/ai/index.mjs +3 -1
  6. package/dist/ai/index.mjs.map +1 -1
  7. package/dist/index.cjs +12688 -137
  8. package/dist/index.cjs.map +1 -1
  9. package/dist/index.d.cts +5 -4
  10. package/dist/index.d.ts +5 -4
  11. package/dist/index.mjs +12686 -138
  12. package/dist/index.mjs.map +1 -1
  13. package/dist/pipeline/index.cjs +3 -1
  14. package/dist/pipeline/index.cjs.map +1 -1
  15. package/dist/pipeline/index.mjs +3 -1
  16. package/dist/pipeline/index.mjs.map +1 -1
  17. package/dist/schemas/index.cjs +3 -1
  18. package/dist/schemas/index.cjs.map +1 -1
  19. package/dist/schemas/index.d.cts +20 -0
  20. package/dist/schemas/index.d.ts +20 -0
  21. package/dist/schemas/index.mjs +3 -1
  22. package/dist/schemas/index.mjs.map +1 -1
  23. package/dist/standards/index.cjs +12412 -2
  24. package/dist/standards/index.cjs.map +1 -1
  25. package/dist/standards/index.d.cts +22 -3
  26. package/dist/standards/index.d.ts +22 -3
  27. package/dist/standards/index.mjs +12410 -3
  28. package/dist/standards/index.mjs.map +1 -1
  29. package/dist/{standardsCoverageGate-CsUNzv6C.d.cts → standardsCoverageGate-DR5YTtlt.d.cts} +2 -0
  30. package/dist/{standardsCoverageGate-CsUNzv6C.d.ts → standardsCoverageGate-DR5YTtlt.d.ts} +2 -0
  31. package/dist/workflow/index.cjs +12426 -18
  32. package/dist/workflow/index.cjs.map +1 -1
  33. package/dist/workflow/index.d.cts +1 -1
  34. package/dist/workflow/index.d.ts +1 -1
  35. package/dist/workflow/index.mjs +12426 -18
  36. package/dist/workflow/index.mjs.map +1 -1
  37. package/package.json +1 -1
@@ -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[];
@@ -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(""),