@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.
@@ -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.mjs';
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 of the quiz
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
- * Represents the current state of the quiz. Each time the it is modified, its `revision` changes. For an update operation to succeed, you MUST pass the latest revision
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
- * The time this quiz was created
28
+ * Date and time the quiz was created.
20
29
  * @readonly
21
30
  */
22
31
  createdDate?: Date | null;
23
32
  /**
24
- * The time this quiz was last updated
33
+ * Date and time the quiz was last updated.
25
34
  * @readonly
26
35
  */
27
36
  updatedDate?: Date | null;
28
37
  /**
29
- * Quiz fields
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
- * Minimal grade to pass the quiz
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
- * Maximal number of submission attempts
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
- /** Type for numeric input */
65
+ /** Numeric input. */
54
66
  numeric?: NumericField;
55
- /** Type for text input */
67
+ /** Short-text input. */
56
68
  shortText?: ShortTextField;
57
- /** Type for long text input */
69
+ /** Long-text input. Set this to an empty object (`{}`) to select it. */
58
70
  longText?: LongTextField;
59
- /** Type for input with predefined options where only one can be selected */
71
+ /** Input with predefined options where only one option can be selected. */
60
72
  singleChoice?: SingleChoiceField;
61
- /** Type for input with predefined options where multiple can be selected */
73
+ /** Input with predefined options where multiple options can be selected. */
62
74
  multiChoice?: MultiChoiceField;
63
- /** Type for file input */
75
+ /** File-upload input. */
64
76
  fileUpload?: FileUploadField;
65
77
  /**
66
- * Field ID
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
- * Key used in submission
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 of the question when answered right */
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
- * Message shown for right answer
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
- * Message shown for wrong answer
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
- /** Type for numeric input */
110
+ /** Numeric input. */
99
111
  numeric?: NumericField;
100
- /** Type for text input */
112
+ /** Short-text input. */
101
113
  shortText?: ShortTextField;
102
- /** Type for long text input */
114
+ /** Long-text input. Set this to an empty object (`{}`) to select it. */
103
115
  longText?: LongTextField;
104
- /** Type for input with predefined options where only one can be selected */
116
+ /** Input with predefined options where only one option can be selected. */
105
117
  singleChoice?: SingleChoiceField;
106
- /** Type for input with predefined options where multiple can be selected */
118
+ /** Input with predefined options where multiple options can be selected. */
107
119
  multiChoice?: MultiChoiceField;
108
- /** Type for file input */
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 files. */
125
+ /** Image-file category. */
113
126
  IMAGE = "IMAGE",
114
- /** Video files. */
127
+ /** Video-file category. */
115
128
  VIDEO = "VIDEO",
116
- /** Audio files. */
129
+ /** Audio-file category. */
117
130
  AUDIO = "AUDIO",
118
- /** Document files. */
131
+ /** Document-file category. */
119
132
  DOCUMENT = "DOCUMENT",
120
- /** Archive files. */
133
+ /** Archive-file category. */
121
134
  ARCHIVE = "ARCHIVE",
122
- /** 3D model files. */
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
- /** Right answer */
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
- * Right answer
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
- * Right answer
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
- * Answer options
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
- * Returned only with achievements:quizzes:v1:quiz:read_sensitive_fields permission.
160
- * Repeated fields cannot use conditional annotations; the service redacts this field.
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
- * Answer options
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 for upload button
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
- * Limit of upload items
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
- * Formats of files that can be uploaded.
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 created */
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 be cloned
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 of the quiz
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
- /** Deleted quiz */
341
+ /** Permanently deleted quiz definition. */
318
342
  quiz?: Quiz;
319
343
  }
320
344
  interface BulkDeleteQuizzesRequest {
321
345
  /**
322
- * IDs of the quizzes to delete.
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 {
@@ -537,6 +561,52 @@ interface AccountInfo {
537
561
  */
538
562
  siteId?: string | null;
539
563
  }
564
+ /** @docsIgnore */
565
+ type CreateQuizApplicationErrors = {
566
+ code?: 'INVALID_QUIZ';
567
+ description?: string;
568
+ data?: Record<string, any>;
569
+ } | {
570
+ code?: 'QUIZ_CONFLICT';
571
+ description?: string;
572
+ data?: Record<string, any>;
573
+ };
574
+ /** @docsIgnore */
575
+ type CloneQuizApplicationErrors = {
576
+ code?: 'INVALID_QUIZ';
577
+ description?: string;
578
+ data?: Record<string, any>;
579
+ } | {
580
+ code?: 'QUIZ_NOT_FOUND';
581
+ description?: string;
582
+ data?: Record<string, any>;
583
+ } | {
584
+ code?: 'QUIZ_CONFLICT';
585
+ description?: string;
586
+ data?: Record<string, any>;
587
+ };
588
+ /** @docsIgnore */
589
+ type BulkCreateQuizzesApplicationErrors = {
590
+ code?: 'INVALID_QUIZ';
591
+ description?: string;
592
+ data?: Record<string, any>;
593
+ };
594
+ /** @docsIgnore */
595
+ type GetQuizApplicationErrors = {
596
+ code?: 'QUIZ_NOT_FOUND';
597
+ description?: string;
598
+ data?: Record<string, any>;
599
+ };
600
+ /** @docsIgnore */
601
+ type DeleteQuizApplicationErrors = {
602
+ code?: 'QUIZ_NOT_FOUND';
603
+ description?: string;
604
+ data?: Record<string, any>;
605
+ } | {
606
+ code?: 'QUIZ_CONFLICT';
607
+ description?: string;
608
+ data?: Record<string, any>;
609
+ };
540
610
 
541
611
  type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
542
612
  getUrl: (context: any) => string;
@@ -561,4 +631,4 @@ declare function deleteQuiz(): __PublicMethodMetaInfo<'DELETE', {
561
631
  }, DeleteQuizRequest$1, DeleteQuizRequest, DeleteQuizResponse$1, DeleteQuizResponse>;
562
632
  declare function bulkDeleteQuizzes(): __PublicMethodMetaInfo<'POST', {}, BulkDeleteQuizzesRequest$1, BulkDeleteQuizzesRequest, BulkDeleteQuizzesResponse$1, BulkDeleteQuizzesResponse>;
563
633
 
564
- 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 };
634
+ 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/auto_sdk_online-programs_quizzes",
3
- "version": "1.0.26",
3
+ "version": "1.0.28",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -50,5 +50,5 @@
50
50
  "fqdn": "wix.achievements.quizzes.v1.quiz"
51
51
  }
52
52
  },
53
- "falconPackageHash": "1ccf747fee09bea3a341ed697d40d4093e02e23298f9af57c1125521"
53
+ "falconPackageHash": "c296504c5661d6c1f7de3ba10865540325d0e9582bef7e5900770fb8"
54
54
  }