timeback 0.1.12 → 0.1.13
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/cli.js +111711 -40879
- package/package.json +4 -3
- package/schema.json +21 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "timeback",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"timeback": "./dist/cli.js"
|
|
@@ -26,18 +26,19 @@
|
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@timeback/caliper": "0.1.6",
|
|
29
|
-
"@timeback/core": "0.1.
|
|
29
|
+
"@timeback/core": "0.1.6",
|
|
30
30
|
"@timeback/edubridge": "0.1.5",
|
|
31
31
|
"@timeback/internal-cli-infra": "0.0.0",
|
|
32
32
|
"@timeback/internal-client-infra": "0.0.0",
|
|
33
33
|
"@timeback/internal-utils": "0.0.0",
|
|
34
|
+
"@timeback/masterytrack": "0.1.1",
|
|
34
35
|
"@timeback/oneroster": "0.1.7",
|
|
35
36
|
"@timeback/powerpath": "0.1.5",
|
|
36
37
|
"@timeback/qti": "0.1.5",
|
|
37
38
|
"@timeback/types": "0.0.0",
|
|
38
39
|
"@types/bun": "latest",
|
|
39
40
|
"bun-plugin-dts": "^0.3.0",
|
|
40
|
-
"timeback-studio": "0.1.
|
|
41
|
+
"timeback-studio": "0.1.10"
|
|
41
42
|
},
|
|
42
43
|
"peerDependencies": {
|
|
43
44
|
"typescript": "^5"
|
package/schema.json
CHANGED
|
@@ -19,6 +19,9 @@
|
|
|
19
19
|
},
|
|
20
20
|
"launchUrl": {
|
|
21
21
|
"$ref": "#/definitions/__schema53"
|
|
22
|
+
},
|
|
23
|
+
"studio": {
|
|
24
|
+
"$ref": "#/definitions/__schema54"
|
|
22
25
|
}
|
|
23
26
|
},
|
|
24
27
|
"required": [
|
|
@@ -577,6 +580,21 @@
|
|
|
577
580
|
"format": "uri",
|
|
578
581
|
"description": "Default LTI launch URL for all courses"
|
|
579
582
|
},
|
|
583
|
+
"__schema54": {
|
|
584
|
+
"type": "object",
|
|
585
|
+
"properties": {
|
|
586
|
+
"telemetry": {
|
|
587
|
+
"$ref": "#/definitions/__schema55"
|
|
588
|
+
}
|
|
589
|
+
},
|
|
590
|
+
"additionalProperties": false,
|
|
591
|
+
"description": "Studio-specific configuration"
|
|
592
|
+
},
|
|
593
|
+
"__schema55": {
|
|
594
|
+
"default": true,
|
|
595
|
+
"type": "boolean",
|
|
596
|
+
"description": "Enable anonymous usage telemetry for Studio (default: true)"
|
|
597
|
+
},
|
|
580
598
|
"TimebackConfig": {
|
|
581
599
|
"type": "object",
|
|
582
600
|
"properties": {
|
|
@@ -597,6 +615,9 @@
|
|
|
597
615
|
},
|
|
598
616
|
"launchUrl": {
|
|
599
617
|
"$ref": "#/definitions/__schema53"
|
|
618
|
+
},
|
|
619
|
+
"studio": {
|
|
620
|
+
"$ref": "#/definitions/__schema54"
|
|
600
621
|
}
|
|
601
622
|
},
|
|
602
623
|
"required": [
|