@thanh01.pmt/curriculum-kit 1.4.35 → 1.4.37

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 (35) hide show
  1. package/dist/ai/index.cjs +57 -1
  2. package/dist/ai/index.cjs.map +1 -1
  3. package/dist/ai/index.d.cts +2 -2
  4. package/dist/ai/index.d.ts +2 -2
  5. package/dist/ai/index.mjs +57 -1
  6. package/dist/ai/index.mjs.map +1 -1
  7. package/dist/{gateSettings-DabOqP6_.d.cts → gateSettings-oo5tCUS_.d.cts} +18 -0
  8. package/dist/{gateSettings-DabOqP6_.d.ts → gateSettings-oo5tCUS_.d.ts} +18 -0
  9. package/dist/index.cjs +793 -51
  10. package/dist/index.cjs.map +1 -1
  11. package/dist/index.d.cts +251 -74
  12. package/dist/index.d.ts +251 -74
  13. package/dist/index.mjs +775 -52
  14. package/dist/index.mjs.map +1 -1
  15. package/dist/pipeline/index.cjs +57 -1
  16. package/dist/pipeline/index.cjs.map +1 -1
  17. package/dist/pipeline/index.mjs +57 -1
  18. package/dist/pipeline/index.mjs.map +1 -1
  19. package/dist/schemas/index.cjs +63 -1
  20. package/dist/schemas/index.cjs.map +1 -1
  21. package/dist/schemas/index.d.cts +436 -33
  22. package/dist/schemas/index.d.ts +436 -33
  23. package/dist/schemas/index.mjs +58 -2
  24. package/dist/schemas/index.mjs.map +1 -1
  25. package/dist/standards/index.d.cts +2 -2
  26. package/dist/standards/index.d.ts +2 -2
  27. package/dist/workflow/index.cjs +84 -2
  28. package/dist/workflow/index.cjs.map +1 -1
  29. package/dist/workflow/index.d.cts +3 -3
  30. package/dist/workflow/index.d.ts +3 -3
  31. package/dist/workflow/index.mjs +84 -2
  32. package/dist/workflow/index.mjs.map +1 -1
  33. package/package.json +1 -1
  34. package/dist/{standardsCoverageGate-DR5YTtlt.d.cts → standardsCoverageGate-49pJq5t8.d.cts} +6 -6
  35. package/dist/{standardsCoverageGate-DR5YTtlt.d.ts → standardsCoverageGate-49pJq5t8.d.ts} +6 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thanh01.pmt/curriculum-kit",
3
- "version": "1.4.35",
3
+ "version": "1.4.37",
4
4
  "description": "A high-fidelity AI curriculum & content generation engine powered by Vercel AI SDK, Zod, and Bloom-aligned pedagogical standards.",
5
5
  "author": "Thanh Pham <https://github.com/thanh01pmt>",
6
6
  "license": "MIT",
@@ -285,6 +285,7 @@ declare const FrameworkMappingSchema: z.ZodObject<{
285
285
  reviewedAt?: string | undefined;
286
286
  }>;
287
287
  }, "strip", z.ZodTypeAny, {
288
+ confidence: number;
288
289
  kind: "covers" | "partial" | "extends";
289
290
  provenance: {
290
291
  method: "human" | "source_official" | "ai_draft" | "minted_from_content" | "crosswalk" | "imported";
@@ -294,8 +295,8 @@ declare const FrameworkMappingSchema: z.ZodObject<{
294
295
  };
295
296
  statementId: string;
296
297
  targetRef: string;
297
- confidence: number;
298
298
  }, {
299
+ confidence: number;
299
300
  kind: "covers" | "partial" | "extends";
300
301
  provenance: {
301
302
  method: "human" | "source_official" | "ai_draft" | "minted_from_content" | "crosswalk" | "imported";
@@ -305,7 +306,6 @@ declare const FrameworkMappingSchema: z.ZodObject<{
305
306
  };
306
307
  statementId: string;
307
308
  targetRef: string;
308
- confidence: number;
309
309
  }>;
310
310
  declare const FrameworkPackSchema: z.ZodObject<{
311
311
  manifest: z.ZodObject<{
@@ -529,6 +529,7 @@ declare const FrameworkPackSchema: z.ZodObject<{
529
529
  reviewedAt?: string | undefined;
530
530
  }>;
531
531
  }, "strip", z.ZodTypeAny, {
532
+ confidence: number;
532
533
  kind: "covers" | "partial" | "extends";
533
534
  provenance: {
534
535
  method: "human" | "source_official" | "ai_draft" | "minted_from_content" | "crosswalk" | "imported";
@@ -538,8 +539,8 @@ declare const FrameworkPackSchema: z.ZodObject<{
538
539
  };
539
540
  statementId: string;
540
541
  targetRef: string;
541
- confidence: number;
542
542
  }, {
543
+ confidence: number;
543
544
  kind: "covers" | "partial" | "extends";
544
545
  provenance: {
545
546
  method: "human" | "source_official" | "ai_draft" | "minted_from_content" | "crosswalk" | "imported";
@@ -549,7 +550,6 @@ declare const FrameworkPackSchema: z.ZodObject<{
549
550
  };
550
551
  statementId: string;
551
552
  targetRef: string;
552
- confidence: number;
553
553
  }>, "many">>>;
554
554
  }, "strip", z.ZodTypeAny, {
555
555
  manifest: {
@@ -600,6 +600,7 @@ declare const FrameworkPackSchema: z.ZodObject<{
600
600
  } | undefined;
601
601
  }[];
602
602
  mappings: {
603
+ confidence: number;
603
604
  kind: "covers" | "partial" | "extends";
604
605
  provenance: {
605
606
  method: "human" | "source_official" | "ai_draft" | "minted_from_content" | "crosswalk" | "imported";
@@ -609,7 +610,6 @@ declare const FrameworkPackSchema: z.ZodObject<{
609
610
  };
610
611
  statementId: string;
611
612
  targetRef: string;
612
- confidence: number;
613
613
  }[];
614
614
  }, {
615
615
  manifest: {
@@ -660,6 +660,7 @@ declare const FrameworkPackSchema: z.ZodObject<{
660
660
  } | undefined;
661
661
  }[];
662
662
  mappings?: {
663
+ confidence: number;
663
664
  kind: "covers" | "partial" | "extends";
664
665
  provenance: {
665
666
  method: "human" | "source_official" | "ai_draft" | "minted_from_content" | "crosswalk" | "imported";
@@ -669,7 +670,6 @@ declare const FrameworkPackSchema: z.ZodObject<{
669
670
  };
670
671
  statementId: string;
671
672
  targetRef: string;
672
- confidence: number;
673
673
  }[] | undefined;
674
674
  }>;
675
675
  type FrameworkPack = z.infer<typeof FrameworkPackSchema>;
@@ -285,6 +285,7 @@ declare const FrameworkMappingSchema: z.ZodObject<{
285
285
  reviewedAt?: string | undefined;
286
286
  }>;
287
287
  }, "strip", z.ZodTypeAny, {
288
+ confidence: number;
288
289
  kind: "covers" | "partial" | "extends";
289
290
  provenance: {
290
291
  method: "human" | "source_official" | "ai_draft" | "minted_from_content" | "crosswalk" | "imported";
@@ -294,8 +295,8 @@ declare const FrameworkMappingSchema: z.ZodObject<{
294
295
  };
295
296
  statementId: string;
296
297
  targetRef: string;
297
- confidence: number;
298
298
  }, {
299
+ confidence: number;
299
300
  kind: "covers" | "partial" | "extends";
300
301
  provenance: {
301
302
  method: "human" | "source_official" | "ai_draft" | "minted_from_content" | "crosswalk" | "imported";
@@ -305,7 +306,6 @@ declare const FrameworkMappingSchema: z.ZodObject<{
305
306
  };
306
307
  statementId: string;
307
308
  targetRef: string;
308
- confidence: number;
309
309
  }>;
310
310
  declare const FrameworkPackSchema: z.ZodObject<{
311
311
  manifest: z.ZodObject<{
@@ -529,6 +529,7 @@ declare const FrameworkPackSchema: z.ZodObject<{
529
529
  reviewedAt?: string | undefined;
530
530
  }>;
531
531
  }, "strip", z.ZodTypeAny, {
532
+ confidence: number;
532
533
  kind: "covers" | "partial" | "extends";
533
534
  provenance: {
534
535
  method: "human" | "source_official" | "ai_draft" | "minted_from_content" | "crosswalk" | "imported";
@@ -538,8 +539,8 @@ declare const FrameworkPackSchema: z.ZodObject<{
538
539
  };
539
540
  statementId: string;
540
541
  targetRef: string;
541
- confidence: number;
542
542
  }, {
543
+ confidence: number;
543
544
  kind: "covers" | "partial" | "extends";
544
545
  provenance: {
545
546
  method: "human" | "source_official" | "ai_draft" | "minted_from_content" | "crosswalk" | "imported";
@@ -549,7 +550,6 @@ declare const FrameworkPackSchema: z.ZodObject<{
549
550
  };
550
551
  statementId: string;
551
552
  targetRef: string;
552
- confidence: number;
553
553
  }>, "many">>>;
554
554
  }, "strip", z.ZodTypeAny, {
555
555
  manifest: {
@@ -600,6 +600,7 @@ declare const FrameworkPackSchema: z.ZodObject<{
600
600
  } | undefined;
601
601
  }[];
602
602
  mappings: {
603
+ confidence: number;
603
604
  kind: "covers" | "partial" | "extends";
604
605
  provenance: {
605
606
  method: "human" | "source_official" | "ai_draft" | "minted_from_content" | "crosswalk" | "imported";
@@ -609,7 +610,6 @@ declare const FrameworkPackSchema: z.ZodObject<{
609
610
  };
610
611
  statementId: string;
611
612
  targetRef: string;
612
- confidence: number;
613
613
  }[];
614
614
  }, {
615
615
  manifest: {
@@ -660,6 +660,7 @@ declare const FrameworkPackSchema: z.ZodObject<{
660
660
  } | undefined;
661
661
  }[];
662
662
  mappings?: {
663
+ confidence: number;
663
664
  kind: "covers" | "partial" | "extends";
664
665
  provenance: {
665
666
  method: "human" | "source_official" | "ai_draft" | "minted_from_content" | "crosswalk" | "imported";
@@ -669,7 +670,6 @@ declare const FrameworkPackSchema: z.ZodObject<{
669
670
  };
670
671
  statementId: string;
671
672
  targetRef: string;
672
- confidence: number;
673
673
  }[] | undefined;
674
674
  }>;
675
675
  type FrameworkPack = z.infer<typeof FrameworkPackSchema>;