@project-sunbird/collection-editor-react 0.1.18 → 0.1.19
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/api/question.d.ts +12 -0
- package/dist/collection-editor.umd.js +93 -93
- package/dist/hooks/useQumlContent.d.ts +16 -0
- package/dist/index.cjs +93 -93
- package/dist/index.js +4452 -4307
- package/dist/services/quml/QumlPlayerService.d.ts +38 -0
- package/package.json +2 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Reads the full QuestionSet hierarchy — the tree of units/questions with
|
|
3
|
+
* child stubs.
|
|
4
|
+
* Response shape: { result: { questionset: {...} } }
|
|
5
|
+
*/
|
|
6
|
+
export declare function readQuestionSetHierarchy(questionSetId: string): Promise<Record<string, unknown>>;
|
|
7
|
+
/**
|
|
8
|
+
* Fetches full question data (body, responseDeclaration, interactions, etc.)
|
|
9
|
+
* for the given identifiers.
|
|
10
|
+
* Response shape: { result: { questions: [...] } }
|
|
11
|
+
*/
|
|
12
|
+
export declare function getQuestionList(identifiers: string[]): Promise<Array<Record<string, unknown>>>;
|