@lessonkit/core 0.5.0 → 0.7.0

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # `@lessonkit/core`
2
2
 
3
- [![CI](https://github.com/eddiethedean/lessonkit/actions/workflows/checks.yml/badge.svg)](https://github.com/eddiethedean/lessonkit/actions/workflows/checks.yml)
3
+ [![CI](https://github.com/eddiethedean/lessonkit/actions/workflows/ci.yml/badge.svg)](https://github.com/eddiethedean/lessonkit/actions/workflows/ci.yml)
4
4
  [![npm](https://img.shields.io/npm/v/@lessonkit/core.svg)](https://www.npmjs.com/package/@lessonkit/core)
5
5
  [![License](https://img.shields.io/github/license/eddiethedean/lessonkit)](../../LICENSE)
6
6
 
@@ -12,7 +12,7 @@ Core types and runtime primitives shared across LessonKit packages.
12
12
  npm install @lessonkit/core
13
13
  ```
14
14
 
15
- ## Whats inside (0.5.0)
15
+ ## What's inside (0.6.0)
16
16
 
17
17
  - Identity helpers: `validateId`, `slugifyId`, `deriveId`, `buildLessonkitUrn`
18
18
  - Typed telemetry events (`TelemetryEvent`) and `telemetry-catalog.v1.json`
package/dist/index.d.cts CHANGED
@@ -68,6 +68,7 @@ type QuizCompletedData = {
68
68
  checkId: CheckId;
69
69
  score?: number;
70
70
  maxScore?: number;
71
+ passingScore?: number;
71
72
  };
72
73
  type InteractionData = {
73
74
  kind?: string;
package/dist/index.d.ts CHANGED
@@ -68,6 +68,7 @@ type QuizCompletedData = {
68
68
  checkId: CheckId;
69
69
  score?: number;
70
70
  maxScore?: number;
71
+ passingScore?: number;
71
72
  };
72
73
  type InteractionData = {
73
74
  kind?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lessonkit/core",
3
- "version": "0.5.0",
3
+ "version": "0.7.0",
4
4
  "private": false,
5
5
  "description": "Shared types and telemetry primitives for LessonKit.",
6
6
  "license": "Apache-2.0",