@wix/auto_sdk_online-programs_quizzes 1.0.31 → 1.0.32
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.map +1 -1
- package/build/cjs/index.typings.d.ts +1 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -3
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +1 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -3
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +1 -3
- package/build/internal/cjs/meta.d.ts +1 -3
- package/build/internal/es/index.typings.d.mts +1 -3
- package/build/internal/es/meta.d.mts +1 -3
- package/package.json +2 -2
|
@@ -7,8 +7,6 @@ import '@wix/sdk-types';
|
|
|
7
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
8
|
*
|
|
9
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
10
|
*/
|
|
13
11
|
interface Quiz {
|
|
14
12
|
/**
|
|
@@ -55,7 +53,7 @@ interface QuizSettings {
|
|
|
55
53
|
*/
|
|
56
54
|
title?: string | null;
|
|
57
55
|
/**
|
|
58
|
-
* Maximum number of submissions allowed per submitter. If omitted, no attempt-limit check is applied.
|
|
56
|
+
* Maximum number of submissions allowed per submitter. If omitted, no attempt-limit check is applied. See [Attempt limits](https://dev.wix.com/docs/api-reference/business-management/online-programs/quizzes/quiz-grading#attempt-limits) for how submissions are counted.
|
|
59
57
|
* @min 1
|
|
60
58
|
*/
|
|
61
59
|
attempts?: number | null;
|
|
@@ -6,8 +6,6 @@ import { NonNullablePaths } from '@wix/sdk-types';
|
|
|
6
6
|
* 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.
|
|
7
7
|
*
|
|
8
8
|
* 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.
|
|
9
|
-
*
|
|
10
|
-
* 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.
|
|
11
9
|
*/
|
|
12
10
|
interface Quiz {
|
|
13
11
|
/**
|
|
@@ -54,7 +52,7 @@ interface QuizSettings {
|
|
|
54
52
|
*/
|
|
55
53
|
title?: string | null;
|
|
56
54
|
/**
|
|
57
|
-
* Maximum number of submissions allowed per submitter. If omitted, no attempt-limit check is applied.
|
|
55
|
+
* Maximum number of submissions allowed per submitter. If omitted, no attempt-limit check is applied. See [Attempt limits](https://dev.wix.com/docs/api-reference/business-management/online-programs/quizzes/quiz-grading#attempt-limits) for how submissions are counted.
|
|
58
56
|
* @min 1
|
|
59
57
|
*/
|
|
60
58
|
attempts?: number | null;
|
|
@@ -7,8 +7,6 @@ import '@wix/sdk-types';
|
|
|
7
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
8
|
*
|
|
9
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
10
|
*/
|
|
13
11
|
interface Quiz {
|
|
14
12
|
/**
|
|
@@ -55,7 +53,7 @@ interface QuizSettings {
|
|
|
55
53
|
*/
|
|
56
54
|
title?: string | null;
|
|
57
55
|
/**
|
|
58
|
-
* Maximum number of submissions allowed per submitter. If omitted, no attempt-limit check is applied.
|
|
56
|
+
* Maximum number of submissions allowed per submitter. If omitted, no attempt-limit check is applied. See [Attempt limits](https://dev.wix.com/docs/api-reference/business-management/online-programs/quizzes/quiz-grading#attempt-limits) for how submissions are counted.
|
|
59
57
|
* @min 1
|
|
60
58
|
*/
|
|
61
59
|
attempts?: number | null;
|
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.32",
|
|
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": "c5c3f8deb3ce3e285607d5c41dbae09d0f8477abea6c08dc7811517f"
|
|
54
54
|
}
|