@superapp_men/submit-assessment-results 1.0.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 +196 -0
- package/dist/index.d.ts +202 -0
- package/dist/index.esm.js +516 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +524 -0
- package/dist/index.js.map +1 -0
- package/dist/superapp.d.ts +114 -0
- package/dist/superapp.esm.js +22 -0
- package/dist/superapp.esm.js.map +1 -0
- package/dist/superapp.js +22 -0
- package/dist/superapp.js.map +1 -0
- package/package.json +47 -0
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Types for @superapp_men/submit-assessment-results
|
|
3
|
+
* Aligned with SubmitAssessmentResults API (academicYearId and periodWeekSubjectId
|
|
4
|
+
* are omitted in partner payload; SuperApp adds them when calling the endpoint).
|
|
5
|
+
*/
|
|
6
|
+
/** Question role in the assessment (matches backend enum). */
|
|
7
|
+
declare enum QuestionRole {
|
|
8
|
+
POSITIONING = 1,
|
|
9
|
+
VALIDATION = 2,
|
|
10
|
+
REMEDIATION = 3,
|
|
11
|
+
BONUS = 4
|
|
12
|
+
}
|
|
13
|
+
/** Response time: milliseconds (number) or "hh:mm:ss" string. */
|
|
14
|
+
type ResponseTimeInput = number | string;
|
|
15
|
+
/** Single question result (partner payload). */
|
|
16
|
+
interface SubmittedQuestionResultPayload {
|
|
17
|
+
questionCode: string;
|
|
18
|
+
isCorrect: boolean;
|
|
19
|
+
questionOrder: number;
|
|
20
|
+
questionRole: QuestionRole;
|
|
21
|
+
responseTime?: ResponseTimeInput;
|
|
22
|
+
attemptsCount?: number;
|
|
23
|
+
questionTextFr?: string;
|
|
24
|
+
questionTextAr?: string;
|
|
25
|
+
}
|
|
26
|
+
/** Single skill result; must have either subSkills or questions. */
|
|
27
|
+
interface SubmittedSkillResultPayload {
|
|
28
|
+
skillCode: string;
|
|
29
|
+
skillOrder: number;
|
|
30
|
+
passed: boolean;
|
|
31
|
+
titleFr?: string;
|
|
32
|
+
titleAr?: string;
|
|
33
|
+
descriptionFr?: string;
|
|
34
|
+
descriptionAr?: string;
|
|
35
|
+
subSkills?: SubmittedSkillResultPayload[];
|
|
36
|
+
questions?: SubmittedQuestionResultPayload[];
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Partner payload for submit assessment results.
|
|
40
|
+
* academicYearId and periodWeekSubjectId are NOT included; the SuperApp
|
|
41
|
+
* adds them when calling the backend.
|
|
42
|
+
*/
|
|
43
|
+
interface SubmitAssessmentResultsPartnerPayload {
|
|
44
|
+
studentId: string;
|
|
45
|
+
partnerCode: string;
|
|
46
|
+
attemptId: string;
|
|
47
|
+
isAser?: boolean;
|
|
48
|
+
totalSkillsInWeek: number;
|
|
49
|
+
skills: SubmittedSkillResultPayload[];
|
|
50
|
+
}
|
|
51
|
+
/** Success response from SubmitAssessmentResults endpoint. */
|
|
52
|
+
interface SubmitAssessmentResultsResponse {
|
|
53
|
+
attemptId: string;
|
|
54
|
+
isDuplicate: boolean;
|
|
55
|
+
status: string;
|
|
56
|
+
message: string | null;
|
|
57
|
+
serverTimeUtc: string;
|
|
58
|
+
}
|
|
59
|
+
/** ValidationProblemDetails (400). */
|
|
60
|
+
interface ValidationProblemDetails {
|
|
61
|
+
type?: string;
|
|
62
|
+
title?: string;
|
|
63
|
+
status: number;
|
|
64
|
+
detail?: string;
|
|
65
|
+
instance?: string;
|
|
66
|
+
errors?: Record<string, string[]>;
|
|
67
|
+
}
|
|
68
|
+
/** ProblemDetails (404, 409, 422, 429, 500). */
|
|
69
|
+
interface ProblemDetails {
|
|
70
|
+
type?: string;
|
|
71
|
+
title?: string;
|
|
72
|
+
status?: number;
|
|
73
|
+
detail?: string;
|
|
74
|
+
instance?: string;
|
|
75
|
+
[key: string]: unknown;
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* Result of calling submit: either the success response or an error response
|
|
79
|
+
* with statusCode and body as returned by the backend.
|
|
80
|
+
*/
|
|
81
|
+
type SubmitAssessmentResultsApiResult = {
|
|
82
|
+
ok: true;
|
|
83
|
+
statusCode: number;
|
|
84
|
+
body: SubmitAssessmentResultsResponse;
|
|
85
|
+
} | {
|
|
86
|
+
ok: false;
|
|
87
|
+
statusCode: number;
|
|
88
|
+
body: ValidationProblemDetails | ProblemDetails;
|
|
89
|
+
};
|
|
90
|
+
/** Message types for iframe/Capacitor communication. */
|
|
91
|
+
declare enum AssessmentMessageType {
|
|
92
|
+
REQUEST = "assessment:submit-request",
|
|
93
|
+
RESPONSE = "assessment:submit-response"
|
|
94
|
+
}
|
|
95
|
+
/** Message sent from partner to SuperApp. */
|
|
96
|
+
interface AssessmentSubmitRequestMessage {
|
|
97
|
+
type: AssessmentMessageType.REQUEST;
|
|
98
|
+
requestId: string;
|
|
99
|
+
payload: SubmitAssessmentResultsPartnerPayload;
|
|
100
|
+
timestamp: number;
|
|
101
|
+
}
|
|
102
|
+
/** Message sent from SuperApp to partner (wraps backend result). */
|
|
103
|
+
interface AssessmentSubmitResponseMessage {
|
|
104
|
+
type: AssessmentMessageType.RESPONSE;
|
|
105
|
+
requestId: string;
|
|
106
|
+
/** HTTP status code from the backend call. */
|
|
107
|
+
statusCode: number;
|
|
108
|
+
/** Exact response body from the backend (success or error). */
|
|
109
|
+
body: SubmitAssessmentResultsResponse | ValidationProblemDetails | ProblemDetails;
|
|
110
|
+
timestamp: number;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export { AssessmentMessageType, QuestionRole };
|
|
114
|
+
export type { AssessmentSubmitRequestMessage, AssessmentSubmitResponseMessage, ProblemDetails, SubmitAssessmentResultsApiResult, SubmitAssessmentResultsPartnerPayload, SubmitAssessmentResultsResponse, SubmittedQuestionResultPayload, SubmittedSkillResultPayload, ValidationProblemDetails };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Types for @superapp_men/submit-assessment-results
|
|
3
|
+
* Aligned with SubmitAssessmentResults API (academicYearId and periodWeekSubjectId
|
|
4
|
+
* are omitted in partner payload; SuperApp adds them when calling the endpoint).
|
|
5
|
+
*/
|
|
6
|
+
/** Question role in the assessment (matches backend enum). */
|
|
7
|
+
var QuestionRole;
|
|
8
|
+
(function (QuestionRole) {
|
|
9
|
+
QuestionRole[QuestionRole["POSITIONING"] = 1] = "POSITIONING";
|
|
10
|
+
QuestionRole[QuestionRole["VALIDATION"] = 2] = "VALIDATION";
|
|
11
|
+
QuestionRole[QuestionRole["REMEDIATION"] = 3] = "REMEDIATION";
|
|
12
|
+
QuestionRole[QuestionRole["BONUS"] = 4] = "BONUS";
|
|
13
|
+
})(QuestionRole || (QuestionRole = {}));
|
|
14
|
+
/** Message types for iframe/Capacitor communication. */
|
|
15
|
+
var AssessmentMessageType;
|
|
16
|
+
(function (AssessmentMessageType) {
|
|
17
|
+
AssessmentMessageType["REQUEST"] = "assessment:submit-request";
|
|
18
|
+
AssessmentMessageType["RESPONSE"] = "assessment:submit-response";
|
|
19
|
+
})(AssessmentMessageType || (AssessmentMessageType = {}));
|
|
20
|
+
|
|
21
|
+
export { AssessmentMessageType, QuestionRole };
|
|
22
|
+
//# sourceMappingURL=superapp.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"superapp.esm.js","sources":["../src/types.ts"],"sourcesContent":["/**\r\n * Types for @superapp_men/submit-assessment-results\r\n * Aligned with SubmitAssessmentResults API (academicYearId and periodWeekSubjectId\r\n * are omitted in partner payload; SuperApp adds them when calling the endpoint).\r\n */\r\n\r\n/** Question role in the assessment (matches backend enum). */\r\nexport enum QuestionRole {\r\n POSITIONING = 1,\r\n VALIDATION = 2,\r\n REMEDIATION = 3,\r\n BONUS = 4,\r\n}\r\n\r\n/** Response time: milliseconds (number) or \"hh:mm:ss\" string. */\r\nexport type ResponseTimeInput = number | string;\r\n\r\n/** Single question result (partner payload). */\r\nexport interface SubmittedQuestionResultPayload {\r\n questionCode: string;\r\n isCorrect: boolean;\r\n questionOrder: number;\r\n questionRole: QuestionRole;\r\n responseTime?: ResponseTimeInput;\r\n attemptsCount?: number;\r\n questionTextFr?: string;\r\n questionTextAr?: string;\r\n}\r\n\r\n/** Single skill result; must have either subSkills or questions. */\r\nexport interface SubmittedSkillResultPayload {\r\n skillCode: string;\r\n skillOrder: number;\r\n passed: boolean;\r\n titleFr?: string;\r\n titleAr?: string;\r\n descriptionFr?: string;\r\n descriptionAr?: string;\r\n subSkills?: SubmittedSkillResultPayload[];\r\n questions?: SubmittedQuestionResultPayload[];\r\n}\r\n\r\n/**\r\n * Partner payload for submit assessment results.\r\n * academicYearId and periodWeekSubjectId are NOT included; the SuperApp\r\n * adds them when calling the backend.\r\n */\r\nexport interface SubmitAssessmentResultsPartnerPayload {\r\n studentId: string;\r\n partnerCode: string;\r\n attemptId: string;\r\n isAser?: boolean;\r\n totalSkillsInWeek: number;\r\n skills: SubmittedSkillResultPayload[];\r\n}\r\n\r\n/** Success response from SubmitAssessmentResults endpoint. */\r\nexport interface SubmitAssessmentResultsResponse {\r\n attemptId: string;\r\n isDuplicate: boolean;\r\n status: string;\r\n message: string | null;\r\n serverTimeUtc: string;\r\n}\r\n\r\n/** ValidationProblemDetails (400). */\r\nexport interface ValidationProblemDetails {\r\n type?: string;\r\n title?: string;\r\n status: number;\r\n detail?: string;\r\n instance?: string;\r\n errors?: Record<string, string[]>;\r\n}\r\n\r\n/** ProblemDetails (404, 409, 422, 429, 500). */\r\nexport interface ProblemDetails {\r\n type?: string;\r\n title?: string;\r\n status?: number;\r\n detail?: string;\r\n instance?: string;\r\n [key: string]: unknown;\r\n}\r\n\r\n/**\r\n * Result of calling submit: either the success response or an error response\r\n * with statusCode and body as returned by the backend.\r\n */\r\nexport type SubmitAssessmentResultsApiResult =\r\n | { ok: true; statusCode: number; body: SubmitAssessmentResultsResponse }\r\n | {\r\n ok: false;\r\n statusCode: number;\r\n body: ValidationProblemDetails | ProblemDetails;\r\n };\r\n\r\n/** Message types for iframe/Capacitor communication. */\r\nexport enum AssessmentMessageType {\r\n REQUEST = \"assessment:submit-request\",\r\n RESPONSE = \"assessment:submit-response\",\r\n}\r\n\r\n/** Message sent from partner to SuperApp. */\r\nexport interface AssessmentSubmitRequestMessage {\r\n type: AssessmentMessageType.REQUEST;\r\n requestId: string;\r\n payload: SubmitAssessmentResultsPartnerPayload;\r\n timestamp: number;\r\n}\r\n\r\n/** Message sent from SuperApp to partner (wraps backend result). */\r\nexport interface AssessmentSubmitResponseMessage {\r\n type: AssessmentMessageType.RESPONSE;\r\n requestId: string;\r\n /** HTTP status code from the backend call. */\r\n statusCode: number;\r\n /** Exact response body from the backend (success or error). */\r\n body: SubmitAssessmentResultsResponse | ValidationProblemDetails | ProblemDetails;\r\n timestamp: number;\r\n}\r\n"],"names":[],"mappings":"AAAA;;;;AAIG;AAEH;IACY;AAAZ,CAAA,UAAY,YAAY,EAAA;AACtB,IAAA,YAAA,CAAA,YAAA,CAAA,aAAA,CAAA,GAAA,CAAA,CAAA,GAAA,aAAe;AACf,IAAA,YAAA,CAAA,YAAA,CAAA,YAAA,CAAA,GAAA,CAAA,CAAA,GAAA,YAAc;AACd,IAAA,YAAA,CAAA,YAAA,CAAA,aAAA,CAAA,GAAA,CAAA,CAAA,GAAA,aAAe;AACf,IAAA,YAAA,CAAA,YAAA,CAAA,OAAA,CAAA,GAAA,CAAA,CAAA,GAAA,OAAS;AACX,CAAC,EALW,YAAY,KAAZ,YAAY,GAAA,EAAA,CAAA,CAAA;AA0FxB;IACY;AAAZ,CAAA,UAAY,qBAAqB,EAAA;AAC/B,IAAA,qBAAA,CAAA,SAAA,CAAA,GAAA,2BAAqC;AACrC,IAAA,qBAAA,CAAA,UAAA,CAAA,GAAA,4BAAuC;AACzC,CAAC,EAHW,qBAAqB,KAArB,qBAAqB,GAAA,EAAA,CAAA,CAAA;;;;"}
|
package/dist/superapp.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Types for @superapp_men/submit-assessment-results
|
|
5
|
+
* Aligned with SubmitAssessmentResults API (academicYearId and periodWeekSubjectId
|
|
6
|
+
* are omitted in partner payload; SuperApp adds them when calling the endpoint).
|
|
7
|
+
*/
|
|
8
|
+
/** Question role in the assessment (matches backend enum). */
|
|
9
|
+
exports.QuestionRole = void 0;
|
|
10
|
+
(function (QuestionRole) {
|
|
11
|
+
QuestionRole[QuestionRole["POSITIONING"] = 1] = "POSITIONING";
|
|
12
|
+
QuestionRole[QuestionRole["VALIDATION"] = 2] = "VALIDATION";
|
|
13
|
+
QuestionRole[QuestionRole["REMEDIATION"] = 3] = "REMEDIATION";
|
|
14
|
+
QuestionRole[QuestionRole["BONUS"] = 4] = "BONUS";
|
|
15
|
+
})(exports.QuestionRole || (exports.QuestionRole = {}));
|
|
16
|
+
/** Message types for iframe/Capacitor communication. */
|
|
17
|
+
exports.AssessmentMessageType = void 0;
|
|
18
|
+
(function (AssessmentMessageType) {
|
|
19
|
+
AssessmentMessageType["REQUEST"] = "assessment:submit-request";
|
|
20
|
+
AssessmentMessageType["RESPONSE"] = "assessment:submit-response";
|
|
21
|
+
})(exports.AssessmentMessageType || (exports.AssessmentMessageType = {}));
|
|
22
|
+
//# sourceMappingURL=superapp.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"superapp.js","sources":["../src/types.ts"],"sourcesContent":["/**\r\n * Types for @superapp_men/submit-assessment-results\r\n * Aligned with SubmitAssessmentResults API (academicYearId and periodWeekSubjectId\r\n * are omitted in partner payload; SuperApp adds them when calling the endpoint).\r\n */\r\n\r\n/** Question role in the assessment (matches backend enum). */\r\nexport enum QuestionRole {\r\n POSITIONING = 1,\r\n VALIDATION = 2,\r\n REMEDIATION = 3,\r\n BONUS = 4,\r\n}\r\n\r\n/** Response time: milliseconds (number) or \"hh:mm:ss\" string. */\r\nexport type ResponseTimeInput = number | string;\r\n\r\n/** Single question result (partner payload). */\r\nexport interface SubmittedQuestionResultPayload {\r\n questionCode: string;\r\n isCorrect: boolean;\r\n questionOrder: number;\r\n questionRole: QuestionRole;\r\n responseTime?: ResponseTimeInput;\r\n attemptsCount?: number;\r\n questionTextFr?: string;\r\n questionTextAr?: string;\r\n}\r\n\r\n/** Single skill result; must have either subSkills or questions. */\r\nexport interface SubmittedSkillResultPayload {\r\n skillCode: string;\r\n skillOrder: number;\r\n passed: boolean;\r\n titleFr?: string;\r\n titleAr?: string;\r\n descriptionFr?: string;\r\n descriptionAr?: string;\r\n subSkills?: SubmittedSkillResultPayload[];\r\n questions?: SubmittedQuestionResultPayload[];\r\n}\r\n\r\n/**\r\n * Partner payload for submit assessment results.\r\n * academicYearId and periodWeekSubjectId are NOT included; the SuperApp\r\n * adds them when calling the backend.\r\n */\r\nexport interface SubmitAssessmentResultsPartnerPayload {\r\n studentId: string;\r\n partnerCode: string;\r\n attemptId: string;\r\n isAser?: boolean;\r\n totalSkillsInWeek: number;\r\n skills: SubmittedSkillResultPayload[];\r\n}\r\n\r\n/** Success response from SubmitAssessmentResults endpoint. */\r\nexport interface SubmitAssessmentResultsResponse {\r\n attemptId: string;\r\n isDuplicate: boolean;\r\n status: string;\r\n message: string | null;\r\n serverTimeUtc: string;\r\n}\r\n\r\n/** ValidationProblemDetails (400). */\r\nexport interface ValidationProblemDetails {\r\n type?: string;\r\n title?: string;\r\n status: number;\r\n detail?: string;\r\n instance?: string;\r\n errors?: Record<string, string[]>;\r\n}\r\n\r\n/** ProblemDetails (404, 409, 422, 429, 500). */\r\nexport interface ProblemDetails {\r\n type?: string;\r\n title?: string;\r\n status?: number;\r\n detail?: string;\r\n instance?: string;\r\n [key: string]: unknown;\r\n}\r\n\r\n/**\r\n * Result of calling submit: either the success response or an error response\r\n * with statusCode and body as returned by the backend.\r\n */\r\nexport type SubmitAssessmentResultsApiResult =\r\n | { ok: true; statusCode: number; body: SubmitAssessmentResultsResponse }\r\n | {\r\n ok: false;\r\n statusCode: number;\r\n body: ValidationProblemDetails | ProblemDetails;\r\n };\r\n\r\n/** Message types for iframe/Capacitor communication. */\r\nexport enum AssessmentMessageType {\r\n REQUEST = \"assessment:submit-request\",\r\n RESPONSE = \"assessment:submit-response\",\r\n}\r\n\r\n/** Message sent from partner to SuperApp. */\r\nexport interface AssessmentSubmitRequestMessage {\r\n type: AssessmentMessageType.REQUEST;\r\n requestId: string;\r\n payload: SubmitAssessmentResultsPartnerPayload;\r\n timestamp: number;\r\n}\r\n\r\n/** Message sent from SuperApp to partner (wraps backend result). */\r\nexport interface AssessmentSubmitResponseMessage {\r\n type: AssessmentMessageType.RESPONSE;\r\n requestId: string;\r\n /** HTTP status code from the backend call. */\r\n statusCode: number;\r\n /** Exact response body from the backend (success or error). */\r\n body: SubmitAssessmentResultsResponse | ValidationProblemDetails | ProblemDetails;\r\n timestamp: number;\r\n}\r\n"],"names":["QuestionRole","AssessmentMessageType"],"mappings":";;AAAA;;;;AAIG;AAEH;AACYA;AAAZ,CAAA,UAAY,YAAY,EAAA;AACtB,IAAA,YAAA,CAAA,YAAA,CAAA,aAAA,CAAA,GAAA,CAAA,CAAA,GAAA,aAAe;AACf,IAAA,YAAA,CAAA,YAAA,CAAA,YAAA,CAAA,GAAA,CAAA,CAAA,GAAA,YAAc;AACd,IAAA,YAAA,CAAA,YAAA,CAAA,aAAA,CAAA,GAAA,CAAA,CAAA,GAAA,aAAe;AACf,IAAA,YAAA,CAAA,YAAA,CAAA,OAAA,CAAA,GAAA,CAAA,CAAA,GAAA,OAAS;AACX,CAAC,EALWA,oBAAY,KAAZA,oBAAY,GAAA,EAAA,CAAA,CAAA;AA0FxB;AACYC;AAAZ,CAAA,UAAY,qBAAqB,EAAA;AAC/B,IAAA,qBAAA,CAAA,SAAA,CAAA,GAAA,2BAAqC;AACrC,IAAA,qBAAA,CAAA,UAAA,CAAA,GAAA,4BAAuC;AACzC,CAAC,EAHWA,6BAAqB,KAArBA,6BAAqB,GAAA,EAAA,CAAA,CAAA;;"}
|
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@superapp_men/submit-assessment-results",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Submit assessment results from SuperApp partner applications via iframe/Capacitor",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.esm.js",
|
|
11
|
+
"require": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
},
|
|
14
|
+
"./superapp": {
|
|
15
|
+
"import": "./dist/superapp.esm.js",
|
|
16
|
+
"require": "./dist/superapp.js",
|
|
17
|
+
"types": "./dist/superapp.d.ts"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"files": ["dist", "README.md"],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "rollup -c rollup.config.mjs",
|
|
23
|
+
"dev": "rollup -c rollup.config.mjs -w",
|
|
24
|
+
"prepublishOnly": "npm run build",
|
|
25
|
+
"publish:package": "npm run build && npm publish --access public"
|
|
26
|
+
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
},
|
|
30
|
+
"keywords": ["superapp", "assessment", "partner-apps", "iframe", "capacitor"],
|
|
31
|
+
"author": "SuperApp Team",
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"publishConfig": {
|
|
34
|
+
"access": "public"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@rollup/plugin-commonjs": "^25.0.0",
|
|
38
|
+
"@rollup/plugin-node-resolve": "^15.0.0",
|
|
39
|
+
"@rollup/plugin-typescript": "^11.0.0",
|
|
40
|
+
"rollup": "^4.0.0",
|
|
41
|
+
"rollup-plugin-dts": "^6.0.0",
|
|
42
|
+
"tslib": "^2.6.0",
|
|
43
|
+
"typescript": "^5.0.0"
|
|
44
|
+
},
|
|
45
|
+
"peerDependencies": {},
|
|
46
|
+
"dependencies": {}
|
|
47
|
+
}
|