@lessonkit/xapi 0.6.0 → 0.8.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.
Files changed (2) hide show
  1. package/README.md +5 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,11 +1,14 @@
1
1
  # `@lessonkit/xapi`
2
2
 
3
3
  [![CI](https://github.com/eddiethedean/lessonkit/actions/workflows/ci.yml/badge.svg)](https://github.com/eddiethedean/lessonkit/actions/workflows/ci.yml)
4
+ [![Documentation](https://readthedocs.org/projects/lessonkit/badge/?version=latest)](https://lessonkit.readthedocs.io/en/latest/)
4
5
  [![npm](https://img.shields.io/npm/v/@lessonkit/xapi.svg)](https://www.npmjs.com/package/@lessonkit/xapi)
5
- [![License](https://img.shields.io/github/license/eddiethedean/lessonkit)](../../LICENSE)
6
+ [![License](https://img.shields.io/github/license/eddiethedean/lessonkit)](https://github.com/eddiethedean/lessonkit/blob/main/LICENSE)
6
7
 
7
8
  xAPI statement generation primitives.
8
9
 
10
+ **Docs:** [Telemetry reference](https://lessonkit.readthedocs.io/en/latest/reference/telemetry.html) · [Telemetry & xAPI guide](https://lessonkit.readthedocs.io/en/latest/guides/react-developers/telemetry-and-xapi.html)
11
+
9
12
  ## Install
10
13
 
11
14
  ```bash
@@ -35,5 +38,4 @@ Prefer mapping from telemetry: `telemetryEventToXAPIStatement(event)` (canonical
35
38
  - If the transport throws/rejects, statements are queued in-memory.
36
39
  - Call `await xapi.flush()` to retry queued statements.
37
40
 
38
- See [`docs/TELEMETRY.md`](../../docs/TELEMETRY.md).
39
-
41
+ See the [telemetry reference](https://lessonkit.readthedocs.io/en/latest/reference/telemetry.html) and [identity reference](https://lessonkit.readthedocs.io/en/latest/reference/identity.html) for URNs and event mapping.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lessonkit/xapi",
3
- "version": "0.6.0",
3
+ "version": "0.8.0",
4
4
  "private": false,
5
5
  "description": "xAPI statement generation primitives for LessonKit.",
6
6
  "license": "Apache-2.0",
@@ -45,7 +45,7 @@
45
45
  "lint": "echo \"(no lint configured yet)\""
46
46
  },
47
47
  "dependencies": {
48
- "@lessonkit/core": "0.6.0"
48
+ "@lessonkit/core": "0.8.0"
49
49
  },
50
50
  "devDependencies": {
51
51
  "tsup": "^8.5.0",