@wix/auto_sdk_online-programs_quizzes 1.0.20 → 1.0.21
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.js +2 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +9 -6
- package/build/cjs/index.typings.js +2 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +9 -6
- package/build/cjs/meta.js +2 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +2 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +9 -6
- package/build/es/index.typings.mjs +2 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +9 -6
- package/build/es/meta.mjs +2 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +9 -6
- package/build/internal/cjs/meta.d.ts +9 -6
- package/build/internal/es/index.typings.d.mts +9 -6
- package/build/internal/es/meta.d.mts +9 -6
- package/package.json +2 -2
|
@@ -112,10 +112,11 @@ declare enum FileFormat {
|
|
|
112
112
|
VIDEO = "VIDEO",
|
|
113
113
|
AUDIO = "AUDIO",
|
|
114
114
|
DOCUMENT = "DOCUMENT",
|
|
115
|
-
ARCHIVE = "ARCHIVE"
|
|
115
|
+
ARCHIVE = "ARCHIVE",
|
|
116
|
+
MODEL_3D = "MODEL_3D"
|
|
116
117
|
}
|
|
117
118
|
/** @enumType */
|
|
118
|
-
type FileFormatWithLiterals = FileFormat | 'IMAGE' | 'VIDEO' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
|
|
119
|
+
type FileFormatWithLiterals = FileFormat | 'IMAGE' | 'VIDEO' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE' | 'MODEL_3D';
|
|
119
120
|
declare enum FileUploadFormat {
|
|
120
121
|
/** Image files. */
|
|
121
122
|
IMAGE = "IMAGE",
|
|
@@ -126,10 +127,12 @@ declare enum FileUploadFormat {
|
|
|
126
127
|
/** Document files. */
|
|
127
128
|
DOCUMENT = "DOCUMENT",
|
|
128
129
|
/** Archive files. */
|
|
129
|
-
ARCHIVE = "ARCHIVE"
|
|
130
|
+
ARCHIVE = "ARCHIVE",
|
|
131
|
+
/** 3D model files. */
|
|
132
|
+
MODEL_3D = "MODEL_3D"
|
|
130
133
|
}
|
|
131
134
|
/** @enumType */
|
|
132
|
-
type FileUploadFormatWithLiterals = FileUploadFormat | 'IMAGE' | 'VIDEO' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
|
|
135
|
+
type FileUploadFormatWithLiterals = FileUploadFormat | 'IMAGE' | 'VIDEO' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE' | 'MODEL_3D';
|
|
133
136
|
interface NumericField {
|
|
134
137
|
/** Right answer */
|
|
135
138
|
rightAnswer?: number | null;
|
|
@@ -192,7 +195,7 @@ interface FileUploadField {
|
|
|
192
195
|
itemsLimit?: number | null;
|
|
193
196
|
/**
|
|
194
197
|
* Deprecated. Use `file_upload_formats` instead.
|
|
195
|
-
* @maxSize
|
|
198
|
+
* @maxSize 6
|
|
196
199
|
* @deprecated Deprecated. Use `file_upload_formats` instead.
|
|
197
200
|
* @replacedBy file_upload_formats
|
|
198
201
|
* @targetRemovalDate 2027-09-03
|
|
@@ -202,7 +205,7 @@ interface FileUploadField {
|
|
|
202
205
|
* Formats of files that can be uploaded.
|
|
203
206
|
*
|
|
204
207
|
* Specify at least one format in either this field or the deprecated `file_formats` field. If both fields are provided, they must contain the same formats. `UNKNOWN_FILE_UPLOAD_FORMAT` isn't supported as a format selection. Responses contain both fields for backward compatibility.
|
|
205
|
-
* @maxSize
|
|
208
|
+
* @maxSize 6
|
|
206
209
|
*/
|
|
207
210
|
fileUploadFormats?: FileUploadFormatWithLiterals[];
|
|
208
211
|
}
|
|
@@ -113,10 +113,11 @@ declare enum FileFormat {
|
|
|
113
113
|
VIDEO = "VIDEO",
|
|
114
114
|
AUDIO = "AUDIO",
|
|
115
115
|
DOCUMENT = "DOCUMENT",
|
|
116
|
-
ARCHIVE = "ARCHIVE"
|
|
116
|
+
ARCHIVE = "ARCHIVE",
|
|
117
|
+
MODEL_3D = "MODEL_3D"
|
|
117
118
|
}
|
|
118
119
|
/** @enumType */
|
|
119
|
-
type FileFormatWithLiterals = FileFormat | 'IMAGE' | 'VIDEO' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
|
|
120
|
+
type FileFormatWithLiterals = FileFormat | 'IMAGE' | 'VIDEO' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE' | 'MODEL_3D';
|
|
120
121
|
declare enum FileUploadFormat {
|
|
121
122
|
/** Image files. */
|
|
122
123
|
IMAGE = "IMAGE",
|
|
@@ -127,10 +128,12 @@ declare enum FileUploadFormat {
|
|
|
127
128
|
/** Document files. */
|
|
128
129
|
DOCUMENT = "DOCUMENT",
|
|
129
130
|
/** Archive files. */
|
|
130
|
-
ARCHIVE = "ARCHIVE"
|
|
131
|
+
ARCHIVE = "ARCHIVE",
|
|
132
|
+
/** 3D model files. */
|
|
133
|
+
MODEL_3D = "MODEL_3D"
|
|
131
134
|
}
|
|
132
135
|
/** @enumType */
|
|
133
|
-
type FileUploadFormatWithLiterals = FileUploadFormat | 'IMAGE' | 'VIDEO' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE';
|
|
136
|
+
type FileUploadFormatWithLiterals = FileUploadFormat | 'IMAGE' | 'VIDEO' | 'AUDIO' | 'DOCUMENT' | 'ARCHIVE' | 'MODEL_3D';
|
|
134
137
|
interface NumericField {
|
|
135
138
|
/** Right answer */
|
|
136
139
|
rightAnswer?: number | null;
|
|
@@ -193,7 +196,7 @@ interface FileUploadField {
|
|
|
193
196
|
itemsLimit?: number | null;
|
|
194
197
|
/**
|
|
195
198
|
* Deprecated. Use `file_upload_formats` instead.
|
|
196
|
-
* @maxSize
|
|
199
|
+
* @maxSize 6
|
|
197
200
|
* @deprecated Deprecated. Use `file_upload_formats` instead.
|
|
198
201
|
* @replacedBy file_upload_formats
|
|
199
202
|
* @targetRemovalDate 2027-09-03
|
|
@@ -203,7 +206,7 @@ interface FileUploadField {
|
|
|
203
206
|
* Formats of files that can be uploaded.
|
|
204
207
|
*
|
|
205
208
|
* Specify at least one format in either this field or the deprecated `file_formats` field. If both fields are provided, they must contain the same formats. `UNKNOWN_FILE_UPLOAD_FORMAT` isn't supported as a format selection. Responses contain both fields for backward compatibility.
|
|
206
|
-
* @maxSize
|
|
209
|
+
* @maxSize 6
|
|
207
210
|
*/
|
|
208
211
|
fileUploadFormats?: FileUploadFormatWithLiterals[];
|
|
209
212
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_online-programs_quizzes",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.21",
|
|
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": "
|
|
53
|
+
"falconPackageHash": "451c1d6a3acab6706731e8df07a6dc0ff3841e9376886ed57ec0badf"
|
|
54
54
|
}
|