@wix/auto_sdk_online-programs_quizzes 1.0.26 → 1.0.28
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/build/cjs/index.d.ts +54 -20
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +178 -74
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +126 -56
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +54 -20
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +178 -74
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +126 -56
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +54 -20
- package/build/internal/cjs/index.typings.d.ts +178 -74
- package/build/internal/cjs/meta.d.ts +126 -56
- package/build/internal/es/index.d.mts +54 -20
- package/build/internal/es/index.typings.d.mts +178 -74
- package/build/internal/es/meta.d.mts +126 -56
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -1,32 +1,43 @@
|
|
|
1
1
|
import { CreateQuizRequest as CreateQuizRequest$1, CreateQuizResponse as CreateQuizResponse$1, CloneQuizRequest as CloneQuizRequest$1, CloneQuizResponse as CloneQuizResponse$1, BulkCreateQuizzesRequest as BulkCreateQuizzesRequest$1, BulkCreateQuizzesResponse as BulkCreateQuizzesResponse$1, GetQuizRequest as GetQuizRequest$1, GetQuizResponse as GetQuizResponse$1, DeleteQuizRequest as DeleteQuizRequest$1, DeleteQuizResponse as DeleteQuizResponse$1, BulkDeleteQuizzesRequest as BulkDeleteQuizzesRequest$1, BulkDeleteQuizzesResponse as BulkDeleteQuizzesResponse$1 } from './index.typings.js';
|
|
2
2
|
import '@wix/sdk-types';
|
|
3
3
|
|
|
4
|
+
/**
|
|
5
|
+
* A quiz definition used by an Online Programs quiz step.
|
|
6
|
+
*
|
|
7
|
+
* Create or clone a quiz, then assign the returned quiz ID to `step.quizOptions.id` when creating an Online Programs step. Quiz IDs are intentionally discovered through quiz-type steps rather than through a Quiz list or query method.
|
|
8
|
+
*
|
|
9
|
+
* New submissions are evaluated against the quiz definition that exists when the submission is created. Previously stored submissions retain their recorded grades and answer evaluations if the definition changes later.
|
|
10
|
+
*
|
|
11
|
+
* NOT-PRECEDENT: The production v1 entity retains its legacy `wix.achievements.quizzes.v1.quiz` identity for compatibility. The Online Programs placement and workflow described here provide its public product context.
|
|
12
|
+
*/
|
|
4
13
|
interface Quiz {
|
|
5
14
|
/**
|
|
6
|
-
* ID
|
|
15
|
+
* Quiz ID.
|
|
7
16
|
* @format GUID
|
|
8
17
|
* @readonly
|
|
9
18
|
*/
|
|
10
19
|
id?: string | null;
|
|
11
|
-
/** Quiz settings */
|
|
20
|
+
/** Quiz title, passing grade, and attempt limit. New submissions use the current settings; stored submissions retain their recorded grade data. */
|
|
12
21
|
settings?: QuizSettings;
|
|
13
22
|
/**
|
|
14
|
-
*
|
|
23
|
+
* Current revision of the stored quiz definition. The revision changes when the definition changes. The public Quiz API doesn't currently provide an update method.
|
|
15
24
|
* @readonly
|
|
16
25
|
*/
|
|
17
26
|
revision?: string | null;
|
|
18
27
|
/**
|
|
19
|
-
*
|
|
28
|
+
* Date and time the quiz was created.
|
|
20
29
|
* @readonly
|
|
21
30
|
*/
|
|
22
31
|
createdDate?: Date | null;
|
|
23
32
|
/**
|
|
24
|
-
*
|
|
33
|
+
* Date and time the quiz was last updated.
|
|
25
34
|
* @readonly
|
|
26
35
|
*/
|
|
27
36
|
updatedDate?: Date | null;
|
|
28
37
|
/**
|
|
29
|
-
*
|
|
38
|
+
* Active questions in the quiz. Each `QuizField` defines one question and its answer input. Creating a quiz requires at least one question. An existing definition can have no active questions after its questions are deleted through another supported workflow; retrieving that definition doesn't fail solely because this list is empty.
|
|
39
|
+
*
|
|
40
|
+
* New submissions use the current questions; stored submissions retain their recorded answer evaluations. Reading an empty definition doesn't imply that it can be used to create a new quiz or accept submissions.
|
|
30
41
|
* @minSize 1
|
|
31
42
|
* @maxSize 200
|
|
32
43
|
*/
|
|
@@ -34,119 +45,130 @@ interface Quiz {
|
|
|
34
45
|
}
|
|
35
46
|
interface QuizSettings {
|
|
36
47
|
/**
|
|
37
|
-
*
|
|
48
|
+
* Minimum unweighted integer percentage required to pass, from `0` through `100`. The earned grade is calculated as `floor((correct answer count / submitted answer count) * 100)`; question `score` values don't weight it. Non-evaluable answers count as correct. If omitted, the submission has no earned or passing grade and its status is COMPLETED, even if an individual evaluated answer is incorrect.
|
|
38
49
|
* @max 100
|
|
39
50
|
*/
|
|
40
51
|
passingGrade?: number | null;
|
|
41
52
|
/**
|
|
42
|
-
* Quiz title
|
|
53
|
+
* Quiz title.
|
|
43
54
|
* @maxLength 200
|
|
44
55
|
*/
|
|
45
56
|
title?: string | null;
|
|
46
57
|
/**
|
|
47
|
-
*
|
|
58
|
+
* Maximum number of submissions allowed per submitter. If omitted, no attempt-limit check is applied. With `groupId`, the count uses group ID and submitter ID without filtering by quiz ID; otherwise, it uses quiz ID and submitter ID. Reusing a group ID across quizzes shares their attempt count.
|
|
48
59
|
* @min 1
|
|
49
60
|
*/
|
|
50
61
|
attempts?: number | null;
|
|
51
62
|
}
|
|
63
|
+
/** Defines one quiz question and its answer input. */
|
|
52
64
|
interface QuizField extends QuizFieldFieldTypeOneOf {
|
|
53
|
-
/**
|
|
65
|
+
/** Numeric input. */
|
|
54
66
|
numeric?: NumericField;
|
|
55
|
-
/**
|
|
67
|
+
/** Short-text input. */
|
|
56
68
|
shortText?: ShortTextField;
|
|
57
|
-
/**
|
|
69
|
+
/** Long-text input. Set this to an empty object (`{}`) to select it. */
|
|
58
70
|
longText?: LongTextField;
|
|
59
|
-
/**
|
|
71
|
+
/** Input with predefined options where only one option can be selected. */
|
|
60
72
|
singleChoice?: SingleChoiceField;
|
|
61
|
-
/**
|
|
73
|
+
/** Input with predefined options where multiple options can be selected. */
|
|
62
74
|
multiChoice?: MultiChoiceField;
|
|
63
|
-
/**
|
|
75
|
+
/** File-upload input. */
|
|
64
76
|
fileUpload?: FileUploadField;
|
|
65
77
|
/**
|
|
66
|
-
*
|
|
78
|
+
* Caller-generated GUID that identifies this question. Use a stable value that is unique within the quiz. Submission answer evaluations use this ID to identify the question.
|
|
67
79
|
* @format GUID
|
|
68
80
|
* @immutable
|
|
69
81
|
*/
|
|
70
82
|
id?: string;
|
|
71
83
|
/**
|
|
72
|
-
*
|
|
84
|
+
* Stable key used to match a submitted answer to this question. Use a value that is unique within the quiz and don't change or reuse it for another question.
|
|
73
85
|
* @maxLength 200
|
|
74
86
|
* @immutable
|
|
75
87
|
*/
|
|
76
88
|
target?: string | null;
|
|
77
89
|
/**
|
|
78
|
-
* Question
|
|
90
|
+
* Question text.
|
|
79
91
|
* @minLength 1
|
|
80
92
|
* @maxLength 350
|
|
81
93
|
*/
|
|
82
94
|
question?: string | null;
|
|
83
|
-
/** Score
|
|
95
|
+
/** Score returned for evaluable answers, whether correct or incorrect. Omitted from non-evaluable answer evaluations. This value doesn't weight the submission's unweighted `earnedGrade` percentage. */
|
|
84
96
|
score?: number | null;
|
|
85
97
|
/**
|
|
86
|
-
*
|
|
98
|
+
* Feedback returned when an evaluable submitted answer is correct. Omitted for non-evaluable answers.
|
|
87
99
|
* @maxLength 350
|
|
88
100
|
*/
|
|
89
101
|
rightMessage?: string | null;
|
|
90
102
|
/**
|
|
91
|
-
*
|
|
103
|
+
* Feedback returned when an evaluable submitted answer is incorrect. Omitted for non-evaluable answers.
|
|
92
104
|
* @maxLength 350
|
|
93
105
|
*/
|
|
94
106
|
wrongMessage?: string | null;
|
|
95
107
|
}
|
|
96
108
|
/** @oneof */
|
|
97
109
|
interface QuizFieldFieldTypeOneOf {
|
|
98
|
-
/**
|
|
110
|
+
/** Numeric input. */
|
|
99
111
|
numeric?: NumericField;
|
|
100
|
-
/**
|
|
112
|
+
/** Short-text input. */
|
|
101
113
|
shortText?: ShortTextField;
|
|
102
|
-
/**
|
|
114
|
+
/** Long-text input. Set this to an empty object (`{}`) to select it. */
|
|
103
115
|
longText?: LongTextField;
|
|
104
|
-
/**
|
|
116
|
+
/** Input with predefined options where only one option can be selected. */
|
|
105
117
|
singleChoice?: SingleChoiceField;
|
|
106
|
-
/**
|
|
118
|
+
/** Input with predefined options where multiple options can be selected. */
|
|
107
119
|
multiChoice?: MultiChoiceField;
|
|
108
|
-
/**
|
|
120
|
+
/** File-upload input. */
|
|
109
121
|
fileUpload?: FileUploadField;
|
|
110
122
|
}
|
|
123
|
+
/** File categories used by Wix Forms. Categories don't define a custom extension or MIME-type allowlist; accepted file types are controlled by Wix Forms. See [About form fields](https://dev.wix.com/docs/api-reference/crm/forms/form-schemas/about-form-fields). */
|
|
111
124
|
declare enum FileUploadFormat {
|
|
112
|
-
/** Image
|
|
125
|
+
/** Image-file category. */
|
|
113
126
|
IMAGE = "IMAGE",
|
|
114
|
-
/** Video
|
|
127
|
+
/** Video-file category. */
|
|
115
128
|
VIDEO = "VIDEO",
|
|
116
|
-
/** Audio
|
|
129
|
+
/** Audio-file category. */
|
|
117
130
|
AUDIO = "AUDIO",
|
|
118
|
-
/** Document
|
|
131
|
+
/** Document-file category. */
|
|
119
132
|
DOCUMENT = "DOCUMENT",
|
|
120
|
-
/** Archive
|
|
133
|
+
/** Archive-file category. */
|
|
121
134
|
ARCHIVE = "ARCHIVE",
|
|
122
|
-
/** 3D
|
|
135
|
+
/** 3D-model-file category. */
|
|
123
136
|
MODEL_3D = "MODEL_3D"
|
|
124
137
|
}
|
|
125
138
|
/** @enumType */
|
|
126
139
|
type FileUploadFormatWithLiterals = FileUploadFormat | 'IMAGE' | 'VIDEO' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE' | 'MODEL_3D';
|
|
127
140
|
interface NumericField {
|
|
128
|
-
/**
|
|
141
|
+
/**
|
|
142
|
+
* Correct numeric value. Matching is exact. If no correct value is stored for this question, its submitted answer is non-evaluable and counts as correct when calculating the earned grade.
|
|
143
|
+
*
|
|
144
|
+
* Omitted from responses when the caller lacks achievements:quizzes:v1:quiz:read_sensitive_fields permission. Response filtering doesn't remove the stored key or change grading; an absent response value doesn't mean no correct value is stored.
|
|
145
|
+
*/
|
|
129
146
|
rightAnswer?: number | null;
|
|
130
147
|
}
|
|
131
148
|
interface ShortTextField {
|
|
132
149
|
/**
|
|
133
|
-
*
|
|
150
|
+
* Correct text. Matching trims leading and trailing whitespace and is case-insensitive. If no correct text is stored for this question, its submitted answer is non-evaluable and counts as correct when calculating the earned grade.
|
|
151
|
+
*
|
|
152
|
+
* Omitted from responses when the caller lacks achievements:quizzes:v1:quiz:read_sensitive_fields permission. Response filtering doesn't remove the stored key or change grading; an absent response value doesn't mean no correct text is stored.
|
|
134
153
|
* @minLength 1
|
|
135
154
|
* @maxLength 200
|
|
136
155
|
*/
|
|
137
156
|
rightAnswer?: string | null;
|
|
138
157
|
}
|
|
158
|
+
/** Long-text input settings. Set `longText` to an empty object (`{}`) to select this input. Long-text answers aren't evaluated and count as correct when calculating the earned grade. */
|
|
139
159
|
interface LongTextField {
|
|
140
160
|
}
|
|
141
161
|
interface SingleChoiceField {
|
|
142
162
|
/**
|
|
143
|
-
*
|
|
163
|
+
* Correct option. When supplied, it must exactly match an entry in `options`; otherwise, creation fails with INVALID_QUIZ. Matching submitted answers is exact. If no correct option is stored for this question, its submitted answer is non-evaluable and counts as correct when calculating the earned grade.
|
|
164
|
+
*
|
|
165
|
+
* Omitted from responses when the caller lacks achievements:quizzes:v1:quiz:read_sensitive_fields permission. Response filtering doesn't remove the stored key or change grading; an absent response value doesn't mean no correct option is stored.
|
|
144
166
|
* @minLength 1
|
|
145
167
|
* @maxLength 350
|
|
146
168
|
*/
|
|
147
169
|
rightAnswer?: string | null;
|
|
148
170
|
/**
|
|
149
|
-
*
|
|
171
|
+
* Options available to the participant. Labels must be unique; comparison is case-sensitive. Duplicate labels are rejected with INVALID_QUIZ before creation.
|
|
150
172
|
* @minSize 1
|
|
151
173
|
* @maxSize 90
|
|
152
174
|
* @minLength 1
|
|
@@ -154,17 +176,19 @@ interface SingleChoiceField {
|
|
|
154
176
|
*/
|
|
155
177
|
options?: string[] | null;
|
|
156
178
|
}
|
|
179
|
+
/** Multiple-choice input settings. Existing Wix Forms image-choice questions are also returned in this shape, even when their original settings allow only one selection. Image-choice-specific settings aren't exposed by the Quiz API. */
|
|
157
180
|
interface MultiChoiceField {
|
|
158
181
|
/**
|
|
159
|
-
*
|
|
160
|
-
*
|
|
182
|
+
* Correct options. Every supplied value must exactly match an entry in `options`; otherwise, creation fails with INVALID_QUIZ. Matching submitted answers ignores option order but doesn't ignore duplicate values. If no correct options are stored for this question, its submitted answer is non-evaluable and counts as correct when calculating the earned grade.
|
|
183
|
+
*
|
|
184
|
+
* Empty in responses when the caller lacks achievements:quizzes:v1:quiz:read_sensitive_fields permission. Response filtering doesn't remove stored keys or change grading; an empty response list doesn't mean no correct options are stored.
|
|
161
185
|
* @maxSize 90
|
|
162
186
|
* @minLength 1
|
|
163
187
|
* @maxLength 350
|
|
164
188
|
*/
|
|
165
189
|
rightAnswer?: string[] | null;
|
|
166
190
|
/**
|
|
167
|
-
*
|
|
191
|
+
* Options available to the participant.
|
|
168
192
|
* @minSize 1
|
|
169
193
|
* @maxSize 90
|
|
170
194
|
* @minLength 1
|
|
@@ -174,42 +198,42 @@ interface MultiChoiceField {
|
|
|
174
198
|
}
|
|
175
199
|
interface FileUploadField {
|
|
176
200
|
/**
|
|
177
|
-
* Text
|
|
201
|
+
* Text displayed on the upload button. Default: `Upload`.
|
|
178
202
|
* @minLength 1
|
|
179
203
|
* @maxLength 100
|
|
180
204
|
*/
|
|
181
205
|
buttonText?: string | null;
|
|
182
206
|
/**
|
|
183
|
-
*
|
|
207
|
+
* Maximum number of files a participant can upload for this question, from `1` through `10`. Default: `10`.
|
|
184
208
|
* @min 1
|
|
185
209
|
* @max 10
|
|
186
210
|
*/
|
|
187
211
|
itemsLimit?: number | null;
|
|
188
212
|
/**
|
|
189
|
-
*
|
|
213
|
+
* Wix Forms file categories that participants can upload.
|
|
190
214
|
*
|
|
191
|
-
* Specify at least one format. `UNKNOWN_FILE_UPLOAD_FORMAT` isn't supported as a format selection.
|
|
215
|
+
* Specify at least one format. `UNKNOWN_FILE_UPLOAD_FORMAT` isn't supported as a format selection. File-upload answers aren't evaluated and count as correct when calculating the earned grade.
|
|
192
216
|
* @maxSize 6
|
|
193
217
|
*/
|
|
194
218
|
fileUploadFormats?: FileUploadFormatWithLiterals[];
|
|
195
219
|
}
|
|
196
220
|
interface CreateQuizRequest {
|
|
197
|
-
/** Quiz to
|
|
221
|
+
/** Quiz definition to create. Generate a stable unique GUID for every `quiz.fields.id` value. */
|
|
198
222
|
quiz: Quiz;
|
|
199
223
|
}
|
|
200
224
|
interface CreateQuizResponse {
|
|
201
|
-
/** Created quiz */
|
|
225
|
+
/** Created quiz definition. Assign its `id` to `step.quizOptions.id` to create an Online Programs quiz step. */
|
|
202
226
|
quiz?: Quiz;
|
|
203
227
|
}
|
|
204
228
|
interface CloneQuizRequest {
|
|
205
229
|
/**
|
|
206
|
-
* ID of the quiz to
|
|
230
|
+
* ID of the quiz definition to clone.
|
|
207
231
|
* @format GUID
|
|
208
232
|
*/
|
|
209
233
|
quizId: string;
|
|
210
234
|
}
|
|
211
235
|
interface CloneQuizResponse {
|
|
212
|
-
/** Cloned quiz */
|
|
236
|
+
/** Cloned quiz definition with a new ID. Step associations and submissions aren't cloned. */
|
|
213
237
|
quiz?: Quiz;
|
|
214
238
|
}
|
|
215
239
|
interface BulkCreateQuizzesRequest {
|
|
@@ -255,7 +279,7 @@ interface ApplicationError {
|
|
|
255
279
|
data?: Record<string, any> | null;
|
|
256
280
|
}
|
|
257
281
|
interface BulkCreateQuizzesResponseBulkQuizResult {
|
|
258
|
-
/** Metadata for the individual create operation. */
|
|
282
|
+
/** Metadata for the individual create operation. When the operation fails, `error` contains the original Wix Forms application error. */
|
|
259
283
|
itemMetadata?: ItemMetadata;
|
|
260
284
|
/** Created quiz. Empty when `return_entity` is `false`. */
|
|
261
285
|
item?: Quiz;
|
|
@@ -297,29 +321,29 @@ interface BulkQuizResult {
|
|
|
297
321
|
}
|
|
298
322
|
interface GetQuizRequest {
|
|
299
323
|
/**
|
|
300
|
-
* ID
|
|
324
|
+
* Quiz ID, available from `step.quizOptions.id` on a quiz-type Online Programs step.
|
|
301
325
|
* @format GUID
|
|
302
326
|
*/
|
|
303
327
|
quizId: string;
|
|
304
328
|
}
|
|
305
329
|
interface GetQuizResponse {
|
|
306
|
-
/** Requested quiz */
|
|
330
|
+
/** Requested quiz definition. */
|
|
307
331
|
quiz?: Quiz;
|
|
308
332
|
}
|
|
309
333
|
interface DeleteQuizRequest {
|
|
310
334
|
/**
|
|
311
|
-
* ID of quiz
|
|
335
|
+
* ID of the quiz definition to permanently delete.
|
|
312
336
|
* @format GUID
|
|
313
337
|
*/
|
|
314
338
|
quizId: string;
|
|
315
339
|
}
|
|
316
340
|
interface DeleteQuizResponse {
|
|
317
|
-
/**
|
|
341
|
+
/** Permanently deleted quiz definition. */
|
|
318
342
|
quiz?: Quiz;
|
|
319
343
|
}
|
|
320
344
|
interface BulkDeleteQuizzesRequest {
|
|
321
345
|
/**
|
|
322
|
-
* IDs of the
|
|
346
|
+
* IDs of the quiz definitions to permanently delete. Coordinate deletion with the Steps API and remove known step references first.
|
|
323
347
|
* @minSize 1
|
|
324
348
|
* @maxSize 100
|
|
325
349
|
* @format GUID
|
|
@@ -337,7 +361,7 @@ interface BulkDeleteQuizzesResponse {
|
|
|
337
361
|
bulkActionMetadata?: BulkActionMetadata;
|
|
338
362
|
}
|
|
339
363
|
interface BulkDeleteQuizzesResponseBulkQuizResult {
|
|
340
|
-
/** Metadata for the individual delete operation. */
|
|
364
|
+
/** Metadata for the individual delete operation. When the operation fails, `error` contains the original Wix Forms application error. */
|
|
341
365
|
itemMetadata?: ItemMetadata;
|
|
342
366
|
}
|
|
343
367
|
interface DomainEvent extends DomainEventBodyOneOf {
|
|
@@ -495,6 +519,52 @@ interface AccountInfo {
|
|
|
495
519
|
*/
|
|
496
520
|
siteId?: string | null;
|
|
497
521
|
}
|
|
522
|
+
/** @docsIgnore */
|
|
523
|
+
type CreateQuizApplicationErrors = {
|
|
524
|
+
code?: 'INVALID_QUIZ';
|
|
525
|
+
description?: string;
|
|
526
|
+
data?: Record<string, any>;
|
|
527
|
+
} | {
|
|
528
|
+
code?: 'QUIZ_CONFLICT';
|
|
529
|
+
description?: string;
|
|
530
|
+
data?: Record<string, any>;
|
|
531
|
+
};
|
|
532
|
+
/** @docsIgnore */
|
|
533
|
+
type CloneQuizApplicationErrors = {
|
|
534
|
+
code?: 'INVALID_QUIZ';
|
|
535
|
+
description?: string;
|
|
536
|
+
data?: Record<string, any>;
|
|
537
|
+
} | {
|
|
538
|
+
code?: 'QUIZ_NOT_FOUND';
|
|
539
|
+
description?: string;
|
|
540
|
+
data?: Record<string, any>;
|
|
541
|
+
} | {
|
|
542
|
+
code?: 'QUIZ_CONFLICT';
|
|
543
|
+
description?: string;
|
|
544
|
+
data?: Record<string, any>;
|
|
545
|
+
};
|
|
546
|
+
/** @docsIgnore */
|
|
547
|
+
type BulkCreateQuizzesApplicationErrors = {
|
|
548
|
+
code?: 'INVALID_QUIZ';
|
|
549
|
+
description?: string;
|
|
550
|
+
data?: Record<string, any>;
|
|
551
|
+
};
|
|
552
|
+
/** @docsIgnore */
|
|
553
|
+
type GetQuizApplicationErrors = {
|
|
554
|
+
code?: 'QUIZ_NOT_FOUND';
|
|
555
|
+
description?: string;
|
|
556
|
+
data?: Record<string, any>;
|
|
557
|
+
};
|
|
558
|
+
/** @docsIgnore */
|
|
559
|
+
type DeleteQuizApplicationErrors = {
|
|
560
|
+
code?: 'QUIZ_NOT_FOUND';
|
|
561
|
+
description?: string;
|
|
562
|
+
data?: Record<string, any>;
|
|
563
|
+
} | {
|
|
564
|
+
code?: 'QUIZ_CONFLICT';
|
|
565
|
+
description?: string;
|
|
566
|
+
data?: Record<string, any>;
|
|
567
|
+
};
|
|
498
568
|
|
|
499
569
|
type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
500
570
|
getUrl: (context: any) => string;
|
|
@@ -519,4 +589,4 @@ declare function deleteQuiz(): __PublicMethodMetaInfo<'DELETE', {
|
|
|
519
589
|
}, DeleteQuizRequest$1, DeleteQuizRequest, DeleteQuizResponse$1, DeleteQuizResponse>;
|
|
520
590
|
declare function bulkDeleteQuizzes(): __PublicMethodMetaInfo<'POST', {}, BulkDeleteQuizzesRequest$1, BulkDeleteQuizzesRequest, BulkDeleteQuizzesResponse$1, BulkDeleteQuizzesResponse>;
|
|
521
591
|
|
|
522
|
-
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type ApplicationError as ApplicationErrorOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkCloneQuizzesRequest as BulkCloneQuizzesRequestOriginal, type BulkCloneQuizzesResponse as BulkCloneQuizzesResponseOriginal, type BulkCreateQuizzesRequest as BulkCreateQuizzesRequestOriginal, type BulkCreateQuizzesResponseBulkQuizResult as BulkCreateQuizzesResponseBulkQuizResultOriginal, type BulkCreateQuizzesResponse as BulkCreateQuizzesResponseOriginal, type BulkDeleteQuizzesRequest as BulkDeleteQuizzesRequestOriginal, type BulkDeleteQuizzesResponseBulkQuizResult as BulkDeleteQuizzesResponseBulkQuizResultOriginal, type BulkDeleteQuizzesResponse as BulkDeleteQuizzesResponseOriginal, type BulkQuizResult as BulkQuizResultOriginal, type CloneQuizRequest as CloneQuizRequestOriginal, type CloneQuizResponse as CloneQuizResponseOriginal, type CreateQuizRequest as CreateQuizRequestOriginal, type CreateQuizResponse as CreateQuizResponseOriginal, type DeleteQuizRequest as DeleteQuizRequestOriginal, type DeleteQuizResponse as DeleteQuizResponseOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type FileUploadField as FileUploadFieldOriginal, FileUploadFormat as FileUploadFormatOriginal, type FileUploadFormatWithLiterals as FileUploadFormatWithLiteralsOriginal, type GetQuizRequest as GetQuizRequestOriginal, type GetQuizResponse as GetQuizResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ItemMetadata as ItemMetadataOriginal, type LongTextField as LongTextFieldOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MultiChoiceField as MultiChoiceFieldOriginal, type NumericField as NumericFieldOriginal, type QuizFieldFieldTypeOneOf as QuizFieldFieldTypeOneOfOriginal, type QuizField as QuizFieldOriginal, type Quiz as QuizOriginal, type QuizSettings as QuizSettingsOriginal, type RestoreInfo as RestoreInfoOriginal, type ShortTextField as ShortTextFieldOriginal, type SingleChoiceField as SingleChoiceFieldOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkCreateQuizzes, bulkDeleteQuizzes, cloneQuiz, createQuiz, deleteQuiz, getQuiz };
|
|
592
|
+
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type ApplicationError as ApplicationErrorOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkCloneQuizzesRequest as BulkCloneQuizzesRequestOriginal, type BulkCloneQuizzesResponse as BulkCloneQuizzesResponseOriginal, type BulkCreateQuizzesApplicationErrors as BulkCreateQuizzesApplicationErrorsOriginal, type BulkCreateQuizzesRequest as BulkCreateQuizzesRequestOriginal, type BulkCreateQuizzesResponseBulkQuizResult as BulkCreateQuizzesResponseBulkQuizResultOriginal, type BulkCreateQuizzesResponse as BulkCreateQuizzesResponseOriginal, type BulkDeleteQuizzesRequest as BulkDeleteQuizzesRequestOriginal, type BulkDeleteQuizzesResponseBulkQuizResult as BulkDeleteQuizzesResponseBulkQuizResultOriginal, type BulkDeleteQuizzesResponse as BulkDeleteQuizzesResponseOriginal, type BulkQuizResult as BulkQuizResultOriginal, type CloneQuizApplicationErrors as CloneQuizApplicationErrorsOriginal, type CloneQuizRequest as CloneQuizRequestOriginal, type CloneQuizResponse as CloneQuizResponseOriginal, type CreateQuizApplicationErrors as CreateQuizApplicationErrorsOriginal, type CreateQuizRequest as CreateQuizRequestOriginal, type CreateQuizResponse as CreateQuizResponseOriginal, type DeleteQuizApplicationErrors as DeleteQuizApplicationErrorsOriginal, type DeleteQuizRequest as DeleteQuizRequestOriginal, type DeleteQuizResponse as DeleteQuizResponseOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type FileUploadField as FileUploadFieldOriginal, FileUploadFormat as FileUploadFormatOriginal, type FileUploadFormatWithLiterals as FileUploadFormatWithLiteralsOriginal, type GetQuizApplicationErrors as GetQuizApplicationErrorsOriginal, type GetQuizRequest as GetQuizRequestOriginal, type GetQuizResponse as GetQuizResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ItemMetadata as ItemMetadataOriginal, type LongTextField as LongTextFieldOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MultiChoiceField as MultiChoiceFieldOriginal, type NumericField as NumericFieldOriginal, type QuizFieldFieldTypeOneOf as QuizFieldFieldTypeOneOfOriginal, type QuizField as QuizFieldOriginal, type Quiz as QuizOriginal, type QuizSettings as QuizSettingsOriginal, type RestoreInfo as RestoreInfoOriginal, type ShortTextField as ShortTextFieldOriginal, type SingleChoiceField as SingleChoiceFieldOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkCreateQuizzes, bulkDeleteQuizzes, cloneQuiz, createQuiz, deleteQuiz, getQuiz };
|