@examplary/schemas 1.6.0 → 1.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/.serverless/meta.json +3 -3
- package/.serverless/serverless-state.json +1 -1
- package/.turbo/turbo-deploy.log +5 -5
- package/dist/question-type-qti3.d.ts +58 -0
- package/dist/question-type-qti3.js +47 -0
- package/dist/question-type.d.ts +30 -0
- package/dist/question-type.js +11 -0
- package/dist/schemas/question-type.json +89 -0
- package/package.json +1 -1
- package/src/question-type-qti3.ts +53 -0
- package/src/question-type.ts +15 -0
- package/.turbo/turbo-release.log +0 -114
package/.serverless/meta.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"/home/runner/work/examplary/examplary/schemas/serverless.yml": {
|
|
3
|
-
"versionFramework": "4.
|
|
4
|
-
"servicePath": "/home/runner/work/examplary/examplary/schemas/serverless.yml",
|
|
2
|
+
"/home/runner/work/examplary/examplary/packages/schemas/serverless.yml": {
|
|
3
|
+
"versionFramework": "4.30.0",
|
|
4
|
+
"servicePath": "/home/runner/work/examplary/examplary/packages/schemas/serverless.yml",
|
|
5
5
|
"serviceConfigFileName": "serverless.yml",
|
|
6
6
|
"service": {
|
|
7
7
|
"service": "schemas",
|
|
@@ -396,7 +396,7 @@
|
|
|
396
396
|
"layers": {}
|
|
397
397
|
},
|
|
398
398
|
"package": {
|
|
399
|
-
"artifactDirectoryName": "serverless/schemas/production/
|
|
399
|
+
"artifactDirectoryName": "serverless/schemas/production/1768067559141-2026-01-10T17:52:39.141Z",
|
|
400
400
|
"artifact": ""
|
|
401
401
|
}
|
|
402
402
|
}
|
package/.turbo/turbo-deploy.log
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
3
2
|
|
|
4
|
-
✔ Installed Serverless Framework v4.19.1
|
|
5
|
-
|
|
6
3
|
Initializing
|
|
7
4
|
Initializing
|
|
5
|
+
Resolving variables
|
|
8
6
|
Authenticating
|
|
9
7
|
Resolving variables
|
|
8
|
+
Checking AWS credentials
|
|
10
9
|
Resolving variables
|
|
10
|
+
Loading service details
|
|
11
11
|
Deploying "schemas" to stage "production" (eu-central-1)
|
|
12
12
|
[WARNING] aws-cdk-lib.aws_cloudfront_origins.S3Origin is deprecated.
|
|
13
13
|
Use `S3BucketOrigin` or `S3StaticWebsiteOrigin` instead.
|
|
@@ -22,13 +22,13 @@ Uploading (0/0)
|
|
|
22
22
|
Uploading CloudFormation file to S3
|
|
23
23
|
Uploading State file to S3
|
|
24
24
|
Updating AWS CloudFormation stack
|
|
25
|
-
Fetching
|
|
25
|
+
Fetching service information
|
|
26
26
|
Updating
|
|
27
27
|
Uploading directory 'dist/schemas' to bucket 'schemas-production-schemasbucketbe9e7d9f-q1aisqmk2pik'
|
|
28
28
|
Uploading directory 'dist/schemas' to bucket 'schemas-production-schemasbucketbe9e7d9f-q1aisqmk2pik'
|
|
29
29
|
Skipped uploading 1 unchanged files
|
|
30
30
|
Removing old service artifacts from S3
|
|
31
|
-
✔ Service deployed to stack schemas-production (
|
|
31
|
+
✔ Service deployed to stack schemas-production (12s)
|
|
32
32
|
Stack Outputs:
|
|
33
33
|
schemasBucketName814EA6EC: schemas-production-schemasbucketbe9e7d9f-q1aisqmk2pik
|
|
34
34
|
schemasCloudFrontCName05CBFC31: djykovp21c0ec.cloudfront.net
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
/**
|
|
3
|
+
* Supported QTI 3.0 interaction types
|
|
4
|
+
*/
|
|
5
|
+
export declare const QtiInteractionType: z.ZodEnum<{
|
|
6
|
+
AssociateInteraction: "AssociateInteraction";
|
|
7
|
+
ChoiceInteraction: "ChoiceInteraction";
|
|
8
|
+
DrawingInteraction: "DrawingInteraction";
|
|
9
|
+
EndAttemptInteraction: "EndAttemptInteraction";
|
|
10
|
+
ExtendedTextInteraction: "ExtendedTextInteraction";
|
|
11
|
+
GapMatchInteraction: "GapMatchInteraction";
|
|
12
|
+
GraphicAssociateInteraction: "GraphicAssociateInteraction";
|
|
13
|
+
GraphicGapMatchInteraction: "GraphicGapMatchInteraction";
|
|
14
|
+
GraphicOrderInteraction: "GraphicOrderInteraction";
|
|
15
|
+
HotspotInteraction: "HotspotInteraction";
|
|
16
|
+
HottextInteraction: "HottextInteraction";
|
|
17
|
+
InlineChoiceInteraction: "InlineChoiceInteraction";
|
|
18
|
+
MatchInteraction: "MatchInteraction";
|
|
19
|
+
MediaInteraction: "MediaInteraction";
|
|
20
|
+
OrderInteraction: "OrderInteraction";
|
|
21
|
+
PositionObjectInteraction: "PositionObjectInteraction";
|
|
22
|
+
SelectPointInteraction: "SelectPointInteraction";
|
|
23
|
+
SliderInteraction: "SliderInteraction";
|
|
24
|
+
TextEntryInteraction: "TextEntryInteraction";
|
|
25
|
+
UploadInteraction: "UploadInteraction";
|
|
26
|
+
}>;
|
|
27
|
+
export type QtiInteractionType = z.infer<typeof QtiInteractionType>;
|
|
28
|
+
/**
|
|
29
|
+
* Complete QTI mapping configuration for a question type
|
|
30
|
+
*/
|
|
31
|
+
export declare const Qti3Mapping: z.ZodObject<{
|
|
32
|
+
interaction: z.ZodObject<{
|
|
33
|
+
type: z.ZodEnum<{
|
|
34
|
+
AssociateInteraction: "AssociateInteraction";
|
|
35
|
+
ChoiceInteraction: "ChoiceInteraction";
|
|
36
|
+
DrawingInteraction: "DrawingInteraction";
|
|
37
|
+
EndAttemptInteraction: "EndAttemptInteraction";
|
|
38
|
+
ExtendedTextInteraction: "ExtendedTextInteraction";
|
|
39
|
+
GapMatchInteraction: "GapMatchInteraction";
|
|
40
|
+
GraphicAssociateInteraction: "GraphicAssociateInteraction";
|
|
41
|
+
GraphicGapMatchInteraction: "GraphicGapMatchInteraction";
|
|
42
|
+
GraphicOrderInteraction: "GraphicOrderInteraction";
|
|
43
|
+
HotspotInteraction: "HotspotInteraction";
|
|
44
|
+
HottextInteraction: "HottextInteraction";
|
|
45
|
+
InlineChoiceInteraction: "InlineChoiceInteraction";
|
|
46
|
+
MatchInteraction: "MatchInteraction";
|
|
47
|
+
MediaInteraction: "MediaInteraction";
|
|
48
|
+
OrderInteraction: "OrderInteraction";
|
|
49
|
+
PositionObjectInteraction: "PositionObjectInteraction";
|
|
50
|
+
SelectPointInteraction: "SelectPointInteraction";
|
|
51
|
+
SliderInteraction: "SliderInteraction";
|
|
52
|
+
TextEntryInteraction: "TextEntryInteraction";
|
|
53
|
+
UploadInteraction: "UploadInteraction";
|
|
54
|
+
}>;
|
|
55
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodAny>, z.ZodObject<{}, z.core.$strip>]>>>;
|
|
56
|
+
}, z.core.$strip>;
|
|
57
|
+
}, z.core.$strip>;
|
|
58
|
+
export type Qti3Mapping = z.infer<typeof Qti3Mapping>;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Qti3Mapping = exports.QtiInteractionType = void 0;
|
|
4
|
+
var zod_1 = require("zod");
|
|
5
|
+
/**
|
|
6
|
+
* A value that can either be a literal or a JSONata expression string.
|
|
7
|
+
* JSONata expressions are evaluated at transform time against the question context.
|
|
8
|
+
*/
|
|
9
|
+
var JsonataExpr = zod_1.z
|
|
10
|
+
.union([zod_1.z.string(), zod_1.z.number(), zod_1.z.boolean(), zod_1.z.array(zod_1.z.any()), zod_1.z.object({})])
|
|
11
|
+
.describe("Literal or JSONata expression string starting with '='");
|
|
12
|
+
/**
|
|
13
|
+
* Supported QTI 3.0 interaction types
|
|
14
|
+
*/
|
|
15
|
+
exports.QtiInteractionType = zod_1.z.enum([
|
|
16
|
+
"AssociateInteraction",
|
|
17
|
+
"ChoiceInteraction",
|
|
18
|
+
"DrawingInteraction",
|
|
19
|
+
"EndAttemptInteraction",
|
|
20
|
+
"ExtendedTextInteraction",
|
|
21
|
+
"GapMatchInteraction",
|
|
22
|
+
"GraphicAssociateInteraction",
|
|
23
|
+
"GraphicGapMatchInteraction",
|
|
24
|
+
"GraphicOrderInteraction",
|
|
25
|
+
"HotspotInteraction",
|
|
26
|
+
"HottextInteraction",
|
|
27
|
+
"InlineChoiceInteraction",
|
|
28
|
+
"MatchInteraction",
|
|
29
|
+
"MediaInteraction",
|
|
30
|
+
"OrderInteraction",
|
|
31
|
+
"PositionObjectInteraction",
|
|
32
|
+
"SelectPointInteraction",
|
|
33
|
+
"SliderInteraction",
|
|
34
|
+
"TextEntryInteraction",
|
|
35
|
+
"UploadInteraction",
|
|
36
|
+
]);
|
|
37
|
+
/**
|
|
38
|
+
* Complete QTI mapping configuration for a question type
|
|
39
|
+
*/
|
|
40
|
+
exports.Qti3Mapping = zod_1.z
|
|
41
|
+
.object({
|
|
42
|
+
interaction: zod_1.z.object({
|
|
43
|
+
type: exports.QtiInteractionType.describe("The QTI interaction type to generate"),
|
|
44
|
+
options: zod_1.z.record(zod_1.z.string(), JsonataExpr).optional(),
|
|
45
|
+
}),
|
|
46
|
+
})
|
|
47
|
+
.describe("QTI 3.0 mapping configuration for transforming questions to QTI format");
|
package/dist/question-type.d.ts
CHANGED
|
@@ -65,7 +65,37 @@ export declare const QuestionTypeSchema: z.ZodObject<{
|
|
|
65
65
|
}, z.core.$strict>>>;
|
|
66
66
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
67
67
|
translations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
|
|
68
|
+
export: z.ZodOptional<z.ZodObject<{
|
|
69
|
+
qti3: z.ZodOptional<z.ZodObject<{
|
|
70
|
+
interaction: z.ZodObject<{
|
|
71
|
+
type: z.ZodEnum<{
|
|
72
|
+
AssociateInteraction: "AssociateInteraction";
|
|
73
|
+
ChoiceInteraction: "ChoiceInteraction";
|
|
74
|
+
DrawingInteraction: "DrawingInteraction";
|
|
75
|
+
EndAttemptInteraction: "EndAttemptInteraction";
|
|
76
|
+
ExtendedTextInteraction: "ExtendedTextInteraction";
|
|
77
|
+
GapMatchInteraction: "GapMatchInteraction";
|
|
78
|
+
GraphicAssociateInteraction: "GraphicAssociateInteraction";
|
|
79
|
+
GraphicGapMatchInteraction: "GraphicGapMatchInteraction";
|
|
80
|
+
GraphicOrderInteraction: "GraphicOrderInteraction";
|
|
81
|
+
HotspotInteraction: "HotspotInteraction";
|
|
82
|
+
HottextInteraction: "HottextInteraction";
|
|
83
|
+
InlineChoiceInteraction: "InlineChoiceInteraction";
|
|
84
|
+
MatchInteraction: "MatchInteraction";
|
|
85
|
+
MediaInteraction: "MediaInteraction";
|
|
86
|
+
OrderInteraction: "OrderInteraction";
|
|
87
|
+
PositionObjectInteraction: "PositionObjectInteraction";
|
|
88
|
+
SelectPointInteraction: "SelectPointInteraction";
|
|
89
|
+
SliderInteraction: "SliderInteraction";
|
|
90
|
+
TextEntryInteraction: "TextEntryInteraction";
|
|
91
|
+
UploadInteraction: "UploadInteraction";
|
|
92
|
+
}>;
|
|
93
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodAny>, z.ZodObject<{}, z.core.$strip>]>>>;
|
|
94
|
+
}, z.core.$strip>;
|
|
95
|
+
}, z.core.$strip>>;
|
|
96
|
+
}, z.core.$strip>>;
|
|
68
97
|
stylesheet: z.ZodOptional<z.ZodURL>;
|
|
69
98
|
index: z.ZodOptional<z.ZodNumber>;
|
|
99
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
70
100
|
}, z.core.$strict>;
|
|
71
101
|
export type QuestionType = z.infer<typeof QuestionTypeSchema>;
|
package/dist/question-type.js
CHANGED
|
@@ -5,6 +5,7 @@ var zod_1 = require("zod");
|
|
|
5
5
|
var question_type_components_1 = require("./question-type-components");
|
|
6
6
|
var question_type_generation_options_1 = require("./question-type-generation-options");
|
|
7
7
|
var question_type_grading_options_1 = require("./question-type-grading-options");
|
|
8
|
+
var question_type_qti3_1 = require("./question-type-qti3");
|
|
8
9
|
var question_type_setting_1 = require("./question-type-setting");
|
|
9
10
|
var translatable_1 = require("./translatable");
|
|
10
11
|
exports.QuestionTypeSchema = zod_1.z
|
|
@@ -70,8 +71,18 @@ exports.QuestionTypeSchema = zod_1.z
|
|
|
70
71
|
.record(zod_1.z.string(), translatable_1.Translatable)
|
|
71
72
|
.optional()
|
|
72
73
|
.describe("Custom translations for this question type"),
|
|
74
|
+
export: zod_1.z
|
|
75
|
+
.object({
|
|
76
|
+
qti3: question_type_qti3_1.Qti3Mapping.optional().describe("QTI 3.0 mapping configuration for transforming questions to QTI format"),
|
|
77
|
+
})
|
|
78
|
+
.optional()
|
|
79
|
+
.describe("Export configuration for various formats"),
|
|
73
80
|
stylesheet: zod_1.z.url().optional(),
|
|
74
81
|
index: zod_1.z.number().optional(),
|
|
82
|
+
metadata: zod_1.z
|
|
83
|
+
.record(zod_1.z.string(), zod_1.z.any())
|
|
84
|
+
.optional()
|
|
85
|
+
.describe("Optional metadata for the question type, only used by external applications"),
|
|
75
86
|
})
|
|
76
87
|
.strict()
|
|
77
88
|
.describe("Schema for defining question types in the Examplary system");
|
|
@@ -431,12 +431,101 @@
|
|
|
431
431
|
]
|
|
432
432
|
}
|
|
433
433
|
},
|
|
434
|
+
"export": {
|
|
435
|
+
"description": "Export configuration for various formats",
|
|
436
|
+
"type": "object",
|
|
437
|
+
"properties": {
|
|
438
|
+
"qti3": {
|
|
439
|
+
"description": "QTI 3.0 mapping configuration for transforming questions to QTI format",
|
|
440
|
+
"type": "object",
|
|
441
|
+
"properties": {
|
|
442
|
+
"interaction": {
|
|
443
|
+
"type": "object",
|
|
444
|
+
"properties": {
|
|
445
|
+
"type": {
|
|
446
|
+
"description": "The QTI interaction type to generate",
|
|
447
|
+
"type": "string",
|
|
448
|
+
"enum": [
|
|
449
|
+
"AssociateInteraction",
|
|
450
|
+
"ChoiceInteraction",
|
|
451
|
+
"DrawingInteraction",
|
|
452
|
+
"EndAttemptInteraction",
|
|
453
|
+
"ExtendedTextInteraction",
|
|
454
|
+
"GapMatchInteraction",
|
|
455
|
+
"GraphicAssociateInteraction",
|
|
456
|
+
"GraphicGapMatchInteraction",
|
|
457
|
+
"GraphicOrderInteraction",
|
|
458
|
+
"HotspotInteraction",
|
|
459
|
+
"HottextInteraction",
|
|
460
|
+
"InlineChoiceInteraction",
|
|
461
|
+
"MatchInteraction",
|
|
462
|
+
"MediaInteraction",
|
|
463
|
+
"OrderInteraction",
|
|
464
|
+
"PositionObjectInteraction",
|
|
465
|
+
"SelectPointInteraction",
|
|
466
|
+
"SliderInteraction",
|
|
467
|
+
"TextEntryInteraction",
|
|
468
|
+
"UploadInteraction"
|
|
469
|
+
]
|
|
470
|
+
},
|
|
471
|
+
"options": {
|
|
472
|
+
"type": "object",
|
|
473
|
+
"propertyNames": {
|
|
474
|
+
"type": "string"
|
|
475
|
+
},
|
|
476
|
+
"additionalProperties": {
|
|
477
|
+
"description": "Literal or JSONata expression string starting with '='",
|
|
478
|
+
"anyOf": [
|
|
479
|
+
{
|
|
480
|
+
"type": "string"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"type": "number"
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"type": "boolean"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"type": "array",
|
|
490
|
+
"items": {}
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"type": "object",
|
|
494
|
+
"properties": {},
|
|
495
|
+
"additionalProperties": false
|
|
496
|
+
}
|
|
497
|
+
]
|
|
498
|
+
}
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
"required": [
|
|
502
|
+
"type"
|
|
503
|
+
],
|
|
504
|
+
"additionalProperties": false
|
|
505
|
+
}
|
|
506
|
+
},
|
|
507
|
+
"required": [
|
|
508
|
+
"interaction"
|
|
509
|
+
],
|
|
510
|
+
"additionalProperties": false
|
|
511
|
+
}
|
|
512
|
+
},
|
|
513
|
+
"additionalProperties": false
|
|
514
|
+
},
|
|
434
515
|
"stylesheet": {
|
|
435
516
|
"type": "string",
|
|
436
517
|
"format": "uri"
|
|
437
518
|
},
|
|
438
519
|
"index": {
|
|
439
520
|
"type": "number"
|
|
521
|
+
},
|
|
522
|
+
"metadata": {
|
|
523
|
+
"description": "Optional metadata for the question type, only used by external applications",
|
|
524
|
+
"type": "object",
|
|
525
|
+
"propertyNames": {
|
|
526
|
+
"type": "string"
|
|
527
|
+
},
|
|
528
|
+
"additionalProperties": {}
|
|
440
529
|
}
|
|
441
530
|
},
|
|
442
531
|
"required": [
|
package/package.json
CHANGED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* A value that can either be a literal or a JSONata expression string.
|
|
5
|
+
* JSONata expressions are evaluated at transform time against the question context.
|
|
6
|
+
*/
|
|
7
|
+
const JsonataExpr = z
|
|
8
|
+
.union([z.string(), z.number(), z.boolean(), z.array(z.any()), z.object({})])
|
|
9
|
+
.describe("Literal or JSONata expression string starting with '='");
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Supported QTI 3.0 interaction types
|
|
13
|
+
*/
|
|
14
|
+
export const QtiInteractionType = z.enum([
|
|
15
|
+
"AssociateInteraction",
|
|
16
|
+
"ChoiceInteraction",
|
|
17
|
+
"DrawingInteraction",
|
|
18
|
+
"EndAttemptInteraction",
|
|
19
|
+
"ExtendedTextInteraction",
|
|
20
|
+
"GapMatchInteraction",
|
|
21
|
+
"GraphicAssociateInteraction",
|
|
22
|
+
"GraphicGapMatchInteraction",
|
|
23
|
+
"GraphicOrderInteraction",
|
|
24
|
+
"HotspotInteraction",
|
|
25
|
+
"HottextInteraction",
|
|
26
|
+
"InlineChoiceInteraction",
|
|
27
|
+
"MatchInteraction",
|
|
28
|
+
"MediaInteraction",
|
|
29
|
+
"OrderInteraction",
|
|
30
|
+
"PositionObjectInteraction",
|
|
31
|
+
"SelectPointInteraction",
|
|
32
|
+
"SliderInteraction",
|
|
33
|
+
"TextEntryInteraction",
|
|
34
|
+
"UploadInteraction",
|
|
35
|
+
]);
|
|
36
|
+
|
|
37
|
+
export type QtiInteractionType = z.infer<typeof QtiInteractionType>;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Complete QTI mapping configuration for a question type
|
|
41
|
+
*/
|
|
42
|
+
export const Qti3Mapping = z
|
|
43
|
+
.object({
|
|
44
|
+
interaction: z.object({
|
|
45
|
+
type: QtiInteractionType.describe("The QTI interaction type to generate"),
|
|
46
|
+
options: z.record(z.string(), JsonataExpr).optional(),
|
|
47
|
+
}),
|
|
48
|
+
})
|
|
49
|
+
.describe(
|
|
50
|
+
"QTI 3.0 mapping configuration for transforming questions to QTI format",
|
|
51
|
+
);
|
|
52
|
+
|
|
53
|
+
export type Qti3Mapping = z.infer<typeof Qti3Mapping>;
|
package/src/question-type.ts
CHANGED
|
@@ -6,6 +6,7 @@ import {
|
|
|
6
6
|
} from "./question-type-components";
|
|
7
7
|
import { QuestionTypeGenerationOptions } from "./question-type-generation-options";
|
|
8
8
|
import { QuestionTypeGradingOptions } from "./question-type-grading-options";
|
|
9
|
+
import { Qti3Mapping } from "./question-type-qti3";
|
|
9
10
|
import { QuestionTypeSetting } from "./question-type-setting";
|
|
10
11
|
import { Translatable } from "./translatable";
|
|
11
12
|
|
|
@@ -95,8 +96,22 @@ export const QuestionTypeSchema = z
|
|
|
95
96
|
.record(z.string(), Translatable)
|
|
96
97
|
.optional()
|
|
97
98
|
.describe("Custom translations for this question type"),
|
|
99
|
+
export: z
|
|
100
|
+
.object({
|
|
101
|
+
qti3: Qti3Mapping.optional().describe(
|
|
102
|
+
"QTI 3.0 mapping configuration for transforming questions to QTI format",
|
|
103
|
+
),
|
|
104
|
+
})
|
|
105
|
+
.optional()
|
|
106
|
+
.describe("Export configuration for various formats"),
|
|
98
107
|
stylesheet: z.url().optional(),
|
|
99
108
|
index: z.number().optional(),
|
|
109
|
+
metadata: z
|
|
110
|
+
.record(z.string(), z.any())
|
|
111
|
+
.optional()
|
|
112
|
+
.describe(
|
|
113
|
+
"Optional metadata for the question type, only used by external applications",
|
|
114
|
+
),
|
|
100
115
|
})
|
|
101
116
|
.strict()
|
|
102
117
|
.describe("Schema for defining question types in the Examplary system");
|
package/.turbo/turbo-release.log
DELETED
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
[2:48:29 PM] [semantic-release] › ℹ Running semantic-release version 24.2.9
|
|
2
|
-
[2:48:30 PM] [semantic-release] › ✔ Loaded plugin "verifyConditions" from "@semantic-release/npm"
|
|
3
|
-
[2:48:30 PM] [semantic-release] › ✔ Loaded plugin "verifyConditions" from "@semantic-release/github"
|
|
4
|
-
[2:48:30 PM] [semantic-release] › ✔ Loaded plugin "prepare" from "@semantic-release/npm"
|
|
5
|
-
[2:48:30 PM] [semantic-release] › ✔ Loaded plugin "publish" from "@semantic-release/npm"
|
|
6
|
-
[2:48:30 PM] [semantic-release] › ✔ Loaded plugin "publish" from "@semantic-release/github"
|
|
7
|
-
[2:48:30 PM] [semantic-release] › ✔ Loaded plugin "addChannel" from "@semantic-release/npm"
|
|
8
|
-
[2:48:30 PM] [semantic-release] › ✔ Loaded plugin "addChannel" from "@semantic-release/github"
|
|
9
|
-
[2:48:41 PM] [semantic-release] › ✔ Run automated release from branch main on repository https://github.com/examplary-ai/examplary
|
|
10
|
-
[2:48:42 PM] [semantic-release] › ✔ Allowed to push to the Git repository
|
|
11
|
-
[2:48:42 PM] [semantic-release] › ℹ Start step "verifyConditions" of plugin "@semantic-release/npm"
|
|
12
|
-
[2:48:42 PM] [semantic-release] [@semantic-release/npm] › ℹ Verify authentication for registry https://registry.npmjs.org/
|
|
13
|
-
[2:48:42 PM] [semantic-release] [@semantic-release/npm] › ℹ Reading npm config from /home/runner/work/examplary/examplary/.npmrc
|
|
14
|
-
[2:48:42 PM] [semantic-release] [@semantic-release/npm] › ℹ Wrote NPM_TOKEN to /tmp/78df127ca37f312a93b35fa0637e1515/.npmrc
|
|
15
|
-
tschoffelen
|
|
16
|
-
[2:48:43 PM] [semantic-release] › ✔ Completed step "verifyConditions" of plugin "@semantic-release/npm"
|
|
17
|
-
[2:48:43 PM] [semantic-release] › ℹ Start step "verifyConditions" of plugin "@semantic-release/github"
|
|
18
|
-
[2:48:43 PM] [semantic-release] [@semantic-release/github] › ℹ Verify GitHub authentication (https://api.github.com)
|
|
19
|
-
[2:48:43 PM] [semantic-release] › ✔ Completed step "verifyConditions" of plugin "@semantic-release/github"
|
|
20
|
-
[2:48:43 PM] [semantic-release] › ℹ Found git tag @examplary/schemas-v1.5.0 associated with version 1.5.0 on branch main
|
|
21
|
-
[2:48:43 PM] [semantic-release] › ℹ Found 109 commits since last release
|
|
22
|
-
[2:48:43 PM] [semantic-release] › ℹ Start step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
23
|
-
[2:48:43 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ Start step "analyzeCommits" of plugin "@semantic-release/commit-analyzer"
|
|
24
|
-
[2:48:44 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ Found 3 commits for package @examplary/schemas since last release
|
|
25
|
-
[2:48:44 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ Analyzing commit: feat(dashboard): question setting help text
|
|
26
|
-
[2:48:44 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ The release type for the commit is minor
|
|
27
|
-
[2:48:44 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ Analyzing commit: chore(deps-dev): bump tsx from 4.20.5 to 4.20.6
|
|
28
|
-
|
|
29
|
-
Bumps [tsx](https://github.com/privatenumber/tsx) from 4.20.5 to 4.20.6.
|
|
30
|
-
- [Release notes](https://github.com/privatenumber/tsx/releases)
|
|
31
|
-
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
|
|
32
|
-
- [Commits](https://github.com/privatenumber/tsx/compare/v4.20.5...v4.20.6)
|
|
33
|
-
|
|
34
|
-
---
|
|
35
|
-
updated-dependencies:
|
|
36
|
-
- dependency-name: tsx
|
|
37
|
-
dependency-version: 4.20.6
|
|
38
|
-
dependency-type: direct:development
|
|
39
|
-
update-type: version-update:semver-patch
|
|
40
|
-
...
|
|
41
|
-
|
|
42
|
-
Signed-off-by: dependabot[bot] <support@github.com>
|
|
43
|
-
[2:48:44 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ The commit should not trigger a release
|
|
44
|
-
[2:48:44 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ Analyzing commit: chore(schemas): remove deprecated keys
|
|
45
|
-
[2:48:44 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ The commit should not trigger a release
|
|
46
|
-
[2:48:44 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ Analysis of 3 commits complete: minor release
|
|
47
|
-
[2:48:44 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ Completed step "analyzeCommits" of plugin "@semantic-release/commit-analyzer"
|
|
48
|
-
[2:48:44 PM] [semantic-release] › ✔ Completed step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
49
|
-
[2:48:44 PM] [semantic-release] › ℹ Start step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
50
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ Plugin "@semantic-release/release-notes-generator" does not provide step "analyzeCommits"
|
|
51
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
52
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
53
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ Plugin "@semantic-release/npm" does not provide step "analyzeCommits"
|
|
54
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
55
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
56
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ Plugin "@semantic-release/github" does not provide step "analyzeCommits"
|
|
57
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
58
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
59
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ No more plugins
|
|
60
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
61
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
62
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ No more plugins
|
|
63
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
64
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
65
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ No more plugins
|
|
66
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
67
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
68
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ No more plugins
|
|
69
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
70
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
71
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ No more plugins
|
|
72
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
73
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
74
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ No more plugins
|
|
75
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "analyzeCommits" of plugin "[Function: semantic-release-monorepo]"
|
|
76
|
-
[2:48:45 PM] [semantic-release] › ℹ The next release version is 1.6.0
|
|
77
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
78
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ Plugin "@semantic-release/commit-analyzer" does not provide step "generateNotes"
|
|
79
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
80
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
81
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ Start step "generateNotes" of plugin "@semantic-release/release-notes-generator"
|
|
82
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ Found 3 commits for package @examplary/schemas since last release
|
|
83
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ Completed step "generateNotes" of plugin "@semantic-release/release-notes-generator"
|
|
84
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
85
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
86
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ Plugin "@semantic-release/npm" does not provide step "generateNotes"
|
|
87
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
88
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
89
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ Plugin "@semantic-release/github" does not provide step "generateNotes"
|
|
90
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
91
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
92
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ No more plugins
|
|
93
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
94
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
95
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ No more plugins
|
|
96
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
97
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
98
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ No more plugins
|
|
99
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
100
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
101
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ No more plugins
|
|
102
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
103
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
104
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ No more plugins
|
|
105
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
106
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
107
|
-
[2:48:45 PM] [semantic-release] [[Function: semantic-release-monorepo]] › ℹ No more plugins
|
|
108
|
-
[2:48:45 PM] [semantic-release] › ✔ Completed step "generateNotes" of plugin "[Function: semantic-release-monorepo]"
|
|
109
|
-
[2:48:45 PM] [semantic-release] › ℹ Start step "prepare" of plugin "@semantic-release/npm"
|
|
110
|
-
[2:48:45 PM] [semantic-release] [@semantic-release/npm] › ℹ Write version 1.6.0 to package.json in /home/runner/work/examplary/examplary/schemas
|
|
111
|
-
@examplary/schemas
|
|
112
|
-
v1.6.0
|
|
113
|
-
[2:48:46 PM] [semantic-release] › ✔ Completed step "prepare" of plugin "@semantic-release/npm"
|
|
114
|
-
[2:48:47 PM] [semantic-release] › ✔ Created tag @examplary/schemas-v1.6.0
|