@examplary/sdk 2.11.0 → 2.13.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/dist/index.d.mts +19 -4
- package/dist/index.d.ts +19 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1788,8 +1788,8 @@ interface paths {
|
|
|
1788
1788
|
cookie?: never;
|
|
1789
1789
|
};
|
|
1790
1790
|
/**
|
|
1791
|
-
* List source materials
|
|
1792
|
-
* @description Returns a list of source materials
|
|
1791
|
+
* List source materials
|
|
1792
|
+
* @description Returns a list of source materials the current user has access to.
|
|
1793
1793
|
*/
|
|
1794
1794
|
get: operations["sourceMaterials.list"];
|
|
1795
1795
|
put?: never;
|
|
@@ -2597,6 +2597,21 @@ interface operations {
|
|
|
2597
2597
|
metadata?: {
|
|
2598
2598
|
[key: string]: string | number | boolean | null;
|
|
2599
2599
|
};
|
|
2600
|
+
/**
|
|
2601
|
+
* Format: uri
|
|
2602
|
+
* @description URL to the README documentation for this question type
|
|
2603
|
+
*/
|
|
2604
|
+
readme?: string;
|
|
2605
|
+
/**
|
|
2606
|
+
* Format: uri
|
|
2607
|
+
* @description URL to a preview image for this question type
|
|
2608
|
+
*/
|
|
2609
|
+
previewImage?: string;
|
|
2610
|
+
/**
|
|
2611
|
+
* Format: uri
|
|
2612
|
+
* @description URL to example question data (JSON) used to preview this question type
|
|
2613
|
+
*/
|
|
2614
|
+
previewData?: string;
|
|
2600
2615
|
/** Format: uri */
|
|
2601
2616
|
stylesheet?: string;
|
|
2602
2617
|
index?: number;
|
|
@@ -7919,9 +7934,9 @@ declare class SourceMaterials {
|
|
|
7919
7934
|
private readonly ctx;
|
|
7920
7935
|
constructor(ctx: ClientContext);
|
|
7921
7936
|
/**
|
|
7922
|
-
* List source materials
|
|
7937
|
+
* List source materials
|
|
7923
7938
|
*
|
|
7924
|
-
* Returns a list of source materials
|
|
7939
|
+
* Returns a list of source materials the current user has access to.
|
|
7925
7940
|
*
|
|
7926
7941
|
* API endpoint: `GET /source-materials`
|
|
7927
7942
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -1788,8 +1788,8 @@ interface paths {
|
|
|
1788
1788
|
cookie?: never;
|
|
1789
1789
|
};
|
|
1790
1790
|
/**
|
|
1791
|
-
* List source materials
|
|
1792
|
-
* @description Returns a list of source materials
|
|
1791
|
+
* List source materials
|
|
1792
|
+
* @description Returns a list of source materials the current user has access to.
|
|
1793
1793
|
*/
|
|
1794
1794
|
get: operations["sourceMaterials.list"];
|
|
1795
1795
|
put?: never;
|
|
@@ -2597,6 +2597,21 @@ interface operations {
|
|
|
2597
2597
|
metadata?: {
|
|
2598
2598
|
[key: string]: string | number | boolean | null;
|
|
2599
2599
|
};
|
|
2600
|
+
/**
|
|
2601
|
+
* Format: uri
|
|
2602
|
+
* @description URL to the README documentation for this question type
|
|
2603
|
+
*/
|
|
2604
|
+
readme?: string;
|
|
2605
|
+
/**
|
|
2606
|
+
* Format: uri
|
|
2607
|
+
* @description URL to a preview image for this question type
|
|
2608
|
+
*/
|
|
2609
|
+
previewImage?: string;
|
|
2610
|
+
/**
|
|
2611
|
+
* Format: uri
|
|
2612
|
+
* @description URL to example question data (JSON) used to preview this question type
|
|
2613
|
+
*/
|
|
2614
|
+
previewData?: string;
|
|
2600
2615
|
/** Format: uri */
|
|
2601
2616
|
stylesheet?: string;
|
|
2602
2617
|
index?: number;
|
|
@@ -7919,9 +7934,9 @@ declare class SourceMaterials {
|
|
|
7919
7934
|
private readonly ctx;
|
|
7920
7935
|
constructor(ctx: ClientContext);
|
|
7921
7936
|
/**
|
|
7922
|
-
* List source materials
|
|
7937
|
+
* List source materials
|
|
7923
7938
|
*
|
|
7924
|
-
* Returns a list of source materials
|
|
7939
|
+
* Returns a list of source materials the current user has access to.
|
|
7925
7940
|
*
|
|
7926
7941
|
* API endpoint: `GET /source-materials`
|
|
7927
7942
|
*/
|