@easyedu/js-lsm-api 1.80.0 → 1.81.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.
Files changed (91) hide show
  1. package/.openapi-generator/FILES +14 -0
  2. package/README.md +11 -2
  3. package/dist/apis/RichTextApi.d.ts +67 -0
  4. package/dist/apis/RichTextApi.js +158 -0
  5. package/dist/apis/index.d.ts +1 -0
  6. package/dist/apis/index.js +1 -0
  7. package/dist/esm/apis/RichTextApi.d.ts +67 -0
  8. package/dist/esm/apis/RichTextApi.js +154 -0
  9. package/dist/esm/apis/index.d.ts +1 -0
  10. package/dist/esm/apis/index.js +1 -0
  11. package/dist/esm/models/GetQuestion.d.ts +7 -6
  12. package/dist/esm/models/GetQuestion.js +5 -4
  13. package/dist/esm/models/GetQuestionAnswerChoicesInner.d.ts +3 -2
  14. package/dist/esm/models/GetQuestionAnswerChoicesInner.js +3 -2
  15. package/dist/esm/models/GetRichTextAssetUpload.d.ts +50 -0
  16. package/dist/esm/models/GetRichTextAssetUpload.js +55 -0
  17. package/dist/esm/models/PostQuestion.d.ts +7 -6
  18. package/dist/esm/models/PostQuestion.js +5 -4
  19. package/dist/esm/models/PostQuestionAnswerChoicesInner.d.ts +3 -2
  20. package/dist/esm/models/PostQuestionAnswerChoicesInner.js +3 -2
  21. package/dist/esm/models/PostRichTextAssetComplete.d.ts +44 -0
  22. package/dist/esm/models/PostRichTextAssetComplete.js +47 -0
  23. package/dist/esm/models/PostRichTextAssetUpload.d.ts +69 -0
  24. package/dist/esm/models/PostRichTextAssetUpload.js +65 -0
  25. package/dist/esm/models/PutQuestion.d.ts +7 -6
  26. package/dist/esm/models/PutQuestion.js +5 -4
  27. package/dist/esm/models/PutQuestionAnswerChoicesInner.d.ts +3 -2
  28. package/dist/esm/models/PutQuestionAnswerChoicesInner.js +3 -2
  29. package/dist/esm/models/RichTextAsset.d.ts +62 -0
  30. package/dist/esm/models/RichTextAsset.js +59 -0
  31. package/dist/esm/models/RichTextDocument.d.ts +60 -0
  32. package/dist/esm/models/RichTextDocument.js +62 -0
  33. package/dist/esm/models/RichTextInput.d.ts +47 -0
  34. package/dist/esm/models/RichTextInput.js +53 -0
  35. package/dist/esm/models/index.d.ts +6 -0
  36. package/dist/esm/models/index.js +6 -0
  37. package/dist/models/GetQuestion.d.ts +7 -6
  38. package/dist/models/GetQuestion.js +5 -4
  39. package/dist/models/GetQuestionAnswerChoicesInner.d.ts +3 -2
  40. package/dist/models/GetQuestionAnswerChoicesInner.js +3 -2
  41. package/dist/models/GetRichTextAssetUpload.d.ts +50 -0
  42. package/dist/models/GetRichTextAssetUpload.js +62 -0
  43. package/dist/models/PostQuestion.d.ts +7 -6
  44. package/dist/models/PostQuestion.js +5 -4
  45. package/dist/models/PostQuestionAnswerChoicesInner.d.ts +3 -2
  46. package/dist/models/PostQuestionAnswerChoicesInner.js +3 -2
  47. package/dist/models/PostRichTextAssetComplete.d.ts +44 -0
  48. package/dist/models/PostRichTextAssetComplete.js +54 -0
  49. package/dist/models/PostRichTextAssetUpload.d.ts +69 -0
  50. package/dist/models/PostRichTextAssetUpload.js +73 -0
  51. package/dist/models/PutQuestion.d.ts +7 -6
  52. package/dist/models/PutQuestion.js +5 -4
  53. package/dist/models/PutQuestionAnswerChoicesInner.d.ts +3 -2
  54. package/dist/models/PutQuestionAnswerChoicesInner.js +3 -2
  55. package/dist/models/RichTextAsset.d.ts +62 -0
  56. package/dist/models/RichTextAsset.js +66 -0
  57. package/dist/models/RichTextDocument.d.ts +60 -0
  58. package/dist/models/RichTextDocument.js +70 -0
  59. package/dist/models/RichTextInput.d.ts +47 -0
  60. package/dist/models/RichTextInput.js +61 -0
  61. package/dist/models/index.d.ts +6 -0
  62. package/dist/models/index.js +6 -0
  63. package/docs/GetQuestion.md +2 -2
  64. package/docs/GetQuestionAnswerChoicesInner.md +1 -1
  65. package/docs/GetRichTextAssetUpload.md +40 -0
  66. package/docs/PostQuestion.md +2 -2
  67. package/docs/PostQuestionAnswerChoicesInner.md +1 -1
  68. package/docs/PostRichTextAssetComplete.md +38 -0
  69. package/docs/PostRichTextAssetUpload.md +44 -0
  70. package/docs/PutQuestion.md +2 -2
  71. package/docs/PutQuestionAnswerChoicesInner.md +1 -1
  72. package/docs/RichTextApi.md +212 -0
  73. package/docs/RichTextAsset.md +44 -0
  74. package/docs/RichTextDocument.md +40 -0
  75. package/docs/RichTextInput.md +36 -0
  76. package/package.json +1 -1
  77. package/src/apis/RichTextApi.ts +201 -0
  78. package/src/apis/index.ts +1 -0
  79. package/src/models/GetQuestion.ts +17 -10
  80. package/src/models/GetQuestionAnswerChoicesInner.ts +12 -4
  81. package/src/models/GetRichTextAssetUpload.ts +93 -0
  82. package/src/models/PostQuestion.ts +17 -10
  83. package/src/models/PostQuestionAnswerChoicesInner.ts +12 -4
  84. package/src/models/PostRichTextAssetComplete.ts +82 -0
  85. package/src/models/PostRichTextAssetUpload.ts +119 -0
  86. package/src/models/PutQuestion.ts +17 -10
  87. package/src/models/PutQuestionAnswerChoicesInner.ts +12 -4
  88. package/src/models/RichTextAsset.ts +109 -0
  89. package/src/models/RichTextDocument.ts +111 -0
  90. package/src/models/RichTextInput.ts +85 -0
  91. package/src/models/index.ts +6 -0
@@ -0,0 +1,82 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * LMS API
5
+ * LMS API
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface PostRichTextAssetComplete
20
+ */
21
+ export interface PostRichTextAssetComplete {
22
+ /**
23
+ * Uploaded size confirmed by the client
24
+ * @type {number}
25
+ * @memberof PostRichTextAssetComplete
26
+ */
27
+ byteSize: number;
28
+ /**
29
+ * Image width in pixels
30
+ * @type {number}
31
+ * @memberof PostRichTextAssetComplete
32
+ */
33
+ width?: number;
34
+ /**
35
+ * Image height in pixels
36
+ * @type {number}
37
+ * @memberof PostRichTextAssetComplete
38
+ */
39
+ height?: number;
40
+ }
41
+
42
+ /**
43
+ * Check if a given object implements the PostRichTextAssetComplete interface.
44
+ */
45
+ export function instanceOfPostRichTextAssetComplete(value: object): value is PostRichTextAssetComplete {
46
+ if (!('byteSize' in value) || value['byteSize'] === undefined) return false;
47
+ return true;
48
+ }
49
+
50
+ export function PostRichTextAssetCompleteFromJSON(json: any): PostRichTextAssetComplete {
51
+ return PostRichTextAssetCompleteFromJSONTyped(json, false);
52
+ }
53
+
54
+ export function PostRichTextAssetCompleteFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostRichTextAssetComplete {
55
+ if (json == null) {
56
+ return json;
57
+ }
58
+ return {
59
+
60
+ 'byteSize': json['byte_size'],
61
+ 'width': json['width'] == null ? undefined : json['width'],
62
+ 'height': json['height'] == null ? undefined : json['height'],
63
+ };
64
+ }
65
+
66
+ export function PostRichTextAssetCompleteToJSON(json: any): PostRichTextAssetComplete {
67
+ return PostRichTextAssetCompleteToJSONTyped(json, false);
68
+ }
69
+
70
+ export function PostRichTextAssetCompleteToJSONTyped(value?: PostRichTextAssetComplete | null, ignoreDiscriminator: boolean = false): any {
71
+ if (value == null) {
72
+ return value;
73
+ }
74
+
75
+ return {
76
+
77
+ 'byte_size': value['byteSize'],
78
+ 'width': value['width'],
79
+ 'height': value['height'],
80
+ };
81
+ }
82
+
@@ -0,0 +1,119 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * LMS API
5
+ * LMS API
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface PostRichTextAssetUpload
20
+ */
21
+ export interface PostRichTextAssetUpload {
22
+ /**
23
+ * Original file name
24
+ * @type {string}
25
+ * @memberof PostRichTextAssetUpload
26
+ */
27
+ filename: string;
28
+ /**
29
+ * Expected MIME type
30
+ * @type {string}
31
+ * @memberof PostRichTextAssetUpload
32
+ */
33
+ mimeType: string;
34
+ /**
35
+ * Expected upload size in bytes
36
+ * @type {number}
37
+ * @memberof PostRichTextAssetUpload
38
+ */
39
+ byteSize: number;
40
+ /**
41
+ * Image width in pixels
42
+ * @type {number}
43
+ * @memberof PostRichTextAssetUpload
44
+ */
45
+ width?: number;
46
+ /**
47
+ * Image height in pixels
48
+ * @type {number}
49
+ * @memberof PostRichTextAssetUpload
50
+ */
51
+ height?: number;
52
+ /**
53
+ * Asset access policy context
54
+ * @type {PostRichTextAssetUploadUsageContextEnum}
55
+ * @memberof PostRichTextAssetUpload
56
+ */
57
+ usageContext: PostRichTextAssetUploadUsageContextEnum;
58
+ }
59
+
60
+
61
+ /**
62
+ * @export
63
+ */
64
+ export const PostRichTextAssetUploadUsageContextEnum = {
65
+ LearningContent: 'learning_content'
66
+ } as const;
67
+ export type PostRichTextAssetUploadUsageContextEnum = typeof PostRichTextAssetUploadUsageContextEnum[keyof typeof PostRichTextAssetUploadUsageContextEnum];
68
+
69
+
70
+ /**
71
+ * Check if a given object implements the PostRichTextAssetUpload interface.
72
+ */
73
+ export function instanceOfPostRichTextAssetUpload(value: object): value is PostRichTextAssetUpload {
74
+ if (!('filename' in value) || value['filename'] === undefined) return false;
75
+ if (!('mimeType' in value) || value['mimeType'] === undefined) return false;
76
+ if (!('byteSize' in value) || value['byteSize'] === undefined) return false;
77
+ if (!('usageContext' in value) || value['usageContext'] === undefined) return false;
78
+ return true;
79
+ }
80
+
81
+ export function PostRichTextAssetUploadFromJSON(json: any): PostRichTextAssetUpload {
82
+ return PostRichTextAssetUploadFromJSONTyped(json, false);
83
+ }
84
+
85
+ export function PostRichTextAssetUploadFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostRichTextAssetUpload {
86
+ if (json == null) {
87
+ return json;
88
+ }
89
+ return {
90
+
91
+ 'filename': json['filename'],
92
+ 'mimeType': json['mime_type'],
93
+ 'byteSize': json['byte_size'],
94
+ 'width': json['width'] == null ? undefined : json['width'],
95
+ 'height': json['height'] == null ? undefined : json['height'],
96
+ 'usageContext': json['usage_context'],
97
+ };
98
+ }
99
+
100
+ export function PostRichTextAssetUploadToJSON(json: any): PostRichTextAssetUpload {
101
+ return PostRichTextAssetUploadToJSONTyped(json, false);
102
+ }
103
+
104
+ export function PostRichTextAssetUploadToJSONTyped(value?: PostRichTextAssetUpload | null, ignoreDiscriminator: boolean = false): any {
105
+ if (value == null) {
106
+ return value;
107
+ }
108
+
109
+ return {
110
+
111
+ 'filename': value['filename'],
112
+ 'mime_type': value['mimeType'],
113
+ 'byte_size': value['byteSize'],
114
+ 'width': value['width'],
115
+ 'height': value['height'],
116
+ 'usage_context': value['usageContext'],
117
+ };
118
+ }
119
+
@@ -20,6 +20,13 @@ import {
20
20
  PutQuestionAnswerChoicesInnerToJSON,
21
21
  PutQuestionAnswerChoicesInnerToJSONTyped,
22
22
  } from './PutQuestionAnswerChoicesInner';
23
+ import type { RichTextInput } from './RichTextInput';
24
+ import {
25
+ RichTextInputFromJSON,
26
+ RichTextInputFromJSONTyped,
27
+ RichTextInputToJSON,
28
+ RichTextInputToJSONTyped,
29
+ } from './RichTextInput';
23
30
 
24
31
  /**
25
32
  *
@@ -28,11 +35,11 @@ import {
28
35
  */
29
36
  export interface PutQuestion {
30
37
  /**
31
- * The main question text or prompt
32
- * @type {string}
38
+ *
39
+ * @type {RichTextInput}
33
40
  * @memberof PutQuestion
34
41
  */
35
- questionText?: string;
42
+ questionText?: RichTextInput;
36
43
  /**
37
44
  * Type of question
38
45
  * @type {PutQuestionQuestionTypeEnum}
@@ -52,11 +59,11 @@ export interface PutQuestion {
52
59
  */
53
60
  correctAnswer?: string;
54
61
  /**
55
- * Explanation of the correct answer
56
- * @type {string}
62
+ *
63
+ * @type {RichTextInput}
57
64
  * @memberof PutQuestion
58
65
  */
59
- explanation?: string;
66
+ explanation?: RichTextInput;
60
67
  /**
61
68
  * Topic category (Fire Alarm, Fire Pump, Fire Sprinkler, etc.)
62
69
  * @type {string}
@@ -125,11 +132,11 @@ export function PutQuestionFromJSONTyped(json: any, ignoreDiscriminator: boolean
125
132
  }
126
133
  return {
127
134
 
128
- 'questionText': json['question_text'] == null ? undefined : json['question_text'],
135
+ 'questionText': json['question_text'] == null ? undefined : RichTextInputFromJSON(json['question_text']),
129
136
  'questionType': json['question_type'] == null ? undefined : json['question_type'],
130
137
  'answerChoices': json['answer_choices'] == null ? undefined : ((json['answer_choices'] as Array<any>).map(PutQuestionAnswerChoicesInnerFromJSON)),
131
138
  'correctAnswer': json['correct_answer'] == null ? undefined : json['correct_answer'],
132
- 'explanation': json['explanation'] == null ? undefined : json['explanation'],
139
+ 'explanation': json['explanation'] == null ? undefined : RichTextInputFromJSON(json['explanation']),
133
140
  'topic': json['topic'] == null ? undefined : json['topic'],
134
141
  'difficultyLevel': json['difficulty_level'] == null ? undefined : json['difficulty_level'],
135
142
  'tags': json['tags'] == null ? undefined : json['tags'],
@@ -148,11 +155,11 @@ export function PutQuestionToJSONTyped(value?: PutQuestion | null, ignoreDiscrim
148
155
 
149
156
  return {
150
157
 
151
- 'question_text': value['questionText'],
158
+ 'question_text': RichTextInputToJSON(value['questionText']),
152
159
  'question_type': value['questionType'],
153
160
  'answer_choices': value['answerChoices'] == null ? undefined : ((value['answerChoices'] as Array<any>).map(PutQuestionAnswerChoicesInnerToJSON)),
154
161
  'correct_answer': value['correctAnswer'],
155
- 'explanation': value['explanation'],
162
+ 'explanation': RichTextInputToJSON(value['explanation']),
156
163
  'topic': value['topic'],
157
164
  'difficulty_level': value['difficultyLevel'],
158
165
  'tags': value['tags'],
@@ -13,6 +13,14 @@
13
13
  */
14
14
 
15
15
  import { mapValues } from '../runtime';
16
+ import type { RichTextInput } from './RichTextInput';
17
+ import {
18
+ RichTextInputFromJSON,
19
+ RichTextInputFromJSONTyped,
20
+ RichTextInputToJSON,
21
+ RichTextInputToJSONTyped,
22
+ } from './RichTextInput';
23
+
16
24
  /**
17
25
  *
18
26
  * @export
@@ -27,10 +35,10 @@ export interface PutQuestionAnswerChoicesInner {
27
35
  id?: string;
28
36
  /**
29
37
  *
30
- * @type {string}
38
+ * @type {RichTextInput}
31
39
  * @memberof PutQuestionAnswerChoicesInner
32
40
  */
33
- text: string;
41
+ text: RichTextInput;
34
42
  /**
35
43
  *
36
44
  * @type {boolean}
@@ -59,7 +67,7 @@ export function PutQuestionAnswerChoicesInnerFromJSONTyped(json: any, ignoreDisc
59
67
  return {
60
68
 
61
69
  'id': json['id'] == null ? undefined : json['id'],
62
- 'text': json['text'],
70
+ 'text': RichTextInputFromJSON(json['text']),
63
71
  'isCorrect': json['is_correct'],
64
72
  };
65
73
  }
@@ -76,7 +84,7 @@ export function PutQuestionAnswerChoicesInnerToJSONTyped(value?: PutQuestionAnsw
76
84
  return {
77
85
 
78
86
  'id': value['id'],
79
- 'text': value['text'],
87
+ 'text': RichTextInputToJSON(value['text']),
80
88
  'is_correct': value['isCorrect'],
81
89
  };
82
90
  }
@@ -0,0 +1,109 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * LMS API
5
+ * LMS API
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface RichTextAsset
20
+ */
21
+ export interface RichTextAsset {
22
+ /**
23
+ * Rich text asset external identifier
24
+ * @type {string}
25
+ * @memberof RichTextAsset
26
+ */
27
+ id: string;
28
+ /**
29
+ * Asset MIME type
30
+ * @type {string}
31
+ * @memberof RichTextAsset
32
+ */
33
+ mimeType: string;
34
+ /**
35
+ * Uploaded asset size in bytes
36
+ * @type {number}
37
+ * @memberof RichTextAsset
38
+ */
39
+ byteSize: number;
40
+ /**
41
+ * Image width in pixels
42
+ * @type {number}
43
+ * @memberof RichTextAsset
44
+ */
45
+ width?: number;
46
+ /**
47
+ * Image height in pixels
48
+ * @type {number}
49
+ * @memberof RichTextAsset
50
+ */
51
+ height?: number;
52
+ /**
53
+ * Authenticated API URL that redirects to a signed asset URL
54
+ * @type {string}
55
+ * @memberof RichTextAsset
56
+ */
57
+ renderUrl: string;
58
+ }
59
+
60
+ /**
61
+ * Check if a given object implements the RichTextAsset interface.
62
+ */
63
+ export function instanceOfRichTextAsset(value: object): value is RichTextAsset {
64
+ if (!('id' in value) || value['id'] === undefined) return false;
65
+ if (!('mimeType' in value) || value['mimeType'] === undefined) return false;
66
+ if (!('byteSize' in value) || value['byteSize'] === undefined) return false;
67
+ if (!('renderUrl' in value) || value['renderUrl'] === undefined) return false;
68
+ return true;
69
+ }
70
+
71
+ export function RichTextAssetFromJSON(json: any): RichTextAsset {
72
+ return RichTextAssetFromJSONTyped(json, false);
73
+ }
74
+
75
+ export function RichTextAssetFromJSONTyped(json: any, ignoreDiscriminator: boolean): RichTextAsset {
76
+ if (json == null) {
77
+ return json;
78
+ }
79
+ return {
80
+
81
+ 'id': json['id'],
82
+ 'mimeType': json['mime_type'],
83
+ 'byteSize': json['byte_size'],
84
+ 'width': json['width'] == null ? undefined : json['width'],
85
+ 'height': json['height'] == null ? undefined : json['height'],
86
+ 'renderUrl': json['render_url'],
87
+ };
88
+ }
89
+
90
+ export function RichTextAssetToJSON(json: any): RichTextAsset {
91
+ return RichTextAssetToJSONTyped(json, false);
92
+ }
93
+
94
+ export function RichTextAssetToJSONTyped(value?: RichTextAsset | null, ignoreDiscriminator: boolean = false): any {
95
+ if (value == null) {
96
+ return value;
97
+ }
98
+
99
+ return {
100
+
101
+ 'id': value['id'],
102
+ 'mime_type': value['mimeType'],
103
+ 'byte_size': value['byteSize'],
104
+ 'width': value['width'],
105
+ 'height': value['height'],
106
+ 'render_url': value['renderUrl'],
107
+ };
108
+ }
109
+
@@ -0,0 +1,111 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * LMS API
5
+ * LMS API
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ import type { RichTextAsset } from './RichTextAsset';
17
+ import {
18
+ RichTextAssetFromJSON,
19
+ RichTextAssetFromJSONTyped,
20
+ RichTextAssetToJSON,
21
+ RichTextAssetToJSONTyped,
22
+ } from './RichTextAsset';
23
+
24
+ /**
25
+ *
26
+ * @export
27
+ * @interface RichTextDocument
28
+ */
29
+ export interface RichTextDocument {
30
+ /**
31
+ * Rich text document format
32
+ * @type {RichTextDocumentFormatEnum}
33
+ * @memberof RichTextDocument
34
+ */
35
+ format: RichTextDocumentFormatEnum;
36
+ /**
37
+ * TipTap/ProseMirror JSON document
38
+ * @type {{ [key: string]: any; }}
39
+ * @memberof RichTextDocument
40
+ */
41
+ document: { [key: string]: any; };
42
+ /**
43
+ * Server-derived plain text for search and previews
44
+ * @type {string}
45
+ * @memberof RichTextDocument
46
+ */
47
+ plainText: string;
48
+ /**
49
+ * Assets referenced by the document
50
+ * @type {Array<RichTextAsset>}
51
+ * @memberof RichTextDocument
52
+ */
53
+ assets: Array<RichTextAsset>;
54
+ }
55
+
56
+
57
+ /**
58
+ * @export
59
+ */
60
+ export const RichTextDocumentFormatEnum = {
61
+ TiptapV2: 'tiptap-v2'
62
+ } as const;
63
+ export type RichTextDocumentFormatEnum = typeof RichTextDocumentFormatEnum[keyof typeof RichTextDocumentFormatEnum];
64
+
65
+
66
+ /**
67
+ * Check if a given object implements the RichTextDocument interface.
68
+ */
69
+ export function instanceOfRichTextDocument(value: object): value is RichTextDocument {
70
+ if (!('format' in value) || value['format'] === undefined) return false;
71
+ if (!('document' in value) || value['document'] === undefined) return false;
72
+ if (!('plainText' in value) || value['plainText'] === undefined) return false;
73
+ if (!('assets' in value) || value['assets'] === undefined) return false;
74
+ return true;
75
+ }
76
+
77
+ export function RichTextDocumentFromJSON(json: any): RichTextDocument {
78
+ return RichTextDocumentFromJSONTyped(json, false);
79
+ }
80
+
81
+ export function RichTextDocumentFromJSONTyped(json: any, ignoreDiscriminator: boolean): RichTextDocument {
82
+ if (json == null) {
83
+ return json;
84
+ }
85
+ return {
86
+
87
+ 'format': json['format'],
88
+ 'document': json['document'],
89
+ 'plainText': json['plain_text'],
90
+ 'assets': ((json['assets'] as Array<any>).map(RichTextAssetFromJSON)),
91
+ };
92
+ }
93
+
94
+ export function RichTextDocumentToJSON(json: any): RichTextDocument {
95
+ return RichTextDocumentToJSONTyped(json, false);
96
+ }
97
+
98
+ export function RichTextDocumentToJSONTyped(value?: RichTextDocument | null, ignoreDiscriminator: boolean = false): any {
99
+ if (value == null) {
100
+ return value;
101
+ }
102
+
103
+ return {
104
+
105
+ 'format': value['format'],
106
+ 'document': value['document'],
107
+ 'plain_text': value['plainText'],
108
+ 'assets': ((value['assets'] as Array<any>).map(RichTextAssetToJSON)),
109
+ };
110
+ }
111
+
@@ -0,0 +1,85 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * LMS API
5
+ * LMS API
6
+ *
7
+ * The version of the OpenAPI document: 1.0.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+ import { mapValues } from '../runtime';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface RichTextInput
20
+ */
21
+ export interface RichTextInput {
22
+ /**
23
+ * Rich text document format
24
+ * @type {RichTextInputFormatEnum}
25
+ * @memberof RichTextInput
26
+ */
27
+ format: RichTextInputFormatEnum;
28
+ /**
29
+ * TipTap/ProseMirror JSON document
30
+ * @type {{ [key: string]: any; }}
31
+ * @memberof RichTextInput
32
+ */
33
+ document: { [key: string]: any; };
34
+ }
35
+
36
+
37
+ /**
38
+ * @export
39
+ */
40
+ export const RichTextInputFormatEnum = {
41
+ TiptapV2: 'tiptap-v2'
42
+ } as const;
43
+ export type RichTextInputFormatEnum = typeof RichTextInputFormatEnum[keyof typeof RichTextInputFormatEnum];
44
+
45
+
46
+ /**
47
+ * Check if a given object implements the RichTextInput interface.
48
+ */
49
+ export function instanceOfRichTextInput(value: object): value is RichTextInput {
50
+ if (!('format' in value) || value['format'] === undefined) return false;
51
+ if (!('document' in value) || value['document'] === undefined) return false;
52
+ return true;
53
+ }
54
+
55
+ export function RichTextInputFromJSON(json: any): RichTextInput {
56
+ return RichTextInputFromJSONTyped(json, false);
57
+ }
58
+
59
+ export function RichTextInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): RichTextInput {
60
+ if (json == null) {
61
+ return json;
62
+ }
63
+ return {
64
+
65
+ 'format': json['format'],
66
+ 'document': json['document'],
67
+ };
68
+ }
69
+
70
+ export function RichTextInputToJSON(json: any): RichTextInput {
71
+ return RichTextInputToJSONTyped(json, false);
72
+ }
73
+
74
+ export function RichTextInputToJSONTyped(value?: RichTextInput | null, ignoreDiscriminator: boolean = false): any {
75
+ if (value == null) {
76
+ return value;
77
+ }
78
+
79
+ return {
80
+
81
+ 'format': value['format'],
82
+ 'document': value['document'],
83
+ };
84
+ }
85
+
@@ -139,6 +139,7 @@ export * from './GetQuizResultsQuestionsInnerStudentAnswer';
139
139
  export * from './GetQuizResultsScore';
140
140
  export * from './GetQuizResultsTiming';
141
141
  export * from './GetQuizStatistics';
142
+ export * from './GetRichTextAssetUpload';
142
143
  export * from './GetRole';
143
144
  export * from './GetScormApiLogItem';
144
145
  export * from './GetScormApiLogs';
@@ -236,6 +237,8 @@ export * from './PostQuizQuestionsQuestionsInner';
236
237
  export * from './PostQuizSettings';
237
238
  export * from './PostResetPassword';
238
239
  export * from './PostRevokeCertificate';
240
+ export * from './PostRichTextAssetComplete';
241
+ export * from './PostRichTextAssetUpload';
239
242
  export * from './PostRole';
240
243
  export * from './PostSendResetPassword';
241
244
  export * from './PostSignupRequest';
@@ -272,6 +275,9 @@ export * from './PutUser';
272
275
  export * from './QuizContent';
273
276
  export * from './QuizContentAssignment';
274
277
  export * from './QuizContentSettings';
278
+ export * from './RichTextAsset';
279
+ export * from './RichTextDocument';
280
+ export * from './RichTextInput';
275
281
  export * from './SCORMContent';
276
282
  export * from './ScormGetValueResponse';
277
283
  export * from './ScormSessionData';