@wix/auto_sdk_online-programs_sections 1.0.17 → 1.0.19
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 +2 -28
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -27
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -28
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -27
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +7 -2
- package/build/internal/cjs/meta.d.ts +6 -1
- package/build/internal/es/index.typings.d.mts +7 -2
- package/build/internal/es/meta.d.mts +6 -1
- package/package.json +4 -11
- package/build/cjs/schemas.d.ts +0 -509
- package/build/cjs/schemas.js +0 -810
- package/build/cjs/schemas.js.map +0 -1
- package/build/es/schemas.d.mts +0 -509
- package/build/es/schemas.mjs +0 -754
- package/build/es/schemas.mjs.map +0 -1
- package/build/internal/cjs/index.js +0 -1444
- package/build/internal/cjs/index.js.map +0 -1
- package/build/internal/cjs/index.typings.js +0 -1335
- package/build/internal/cjs/index.typings.js.map +0 -1
- package/build/internal/cjs/meta.js +0 -1026
- package/build/internal/cjs/meta.js.map +0 -1
- package/build/internal/cjs/schemas.d.ts +0 -509
- package/build/internal/cjs/schemas.js +0 -810
- package/build/internal/cjs/schemas.js.map +0 -1
- package/build/internal/es/index.mjs +0 -1402
- package/build/internal/es/index.mjs.map +0 -1
- package/build/internal/es/index.typings.mjs +0 -1292
- package/build/internal/es/index.typings.mjs.map +0 -1
- package/build/internal/es/meta.mjs +0 -982
- package/build/internal/es/meta.mjs.map +0 -1
- package/build/internal/es/schemas.d.mts +0 -509
- package/build/internal/es/schemas.mjs +0 -754
- package/build/internal/es/schemas.mjs.map +0 -1
- package/schemas/package.json +0 -3
|
@@ -49,7 +49,7 @@ interface Section {
|
|
|
49
49
|
* @readonly
|
|
50
50
|
*/
|
|
51
51
|
totalSteps?: number | null;
|
|
52
|
-
/** Whether participants can access the section as trial content before purchasing the parent program. */
|
|
52
|
+
/** Whether participants can access the section as trial content before purchasing the parent program. Default: `false`. */
|
|
53
53
|
trialSection?: boolean;
|
|
54
54
|
/** Position rank used to order sections within a program. To reorder sections, call Move Section. */
|
|
55
55
|
ordering?: number;
|
|
@@ -62,37 +62,11 @@ interface Section {
|
|
|
62
62
|
extendedFields?: ExtendedFields;
|
|
63
63
|
}
|
|
64
64
|
interface Description extends DescriptionMediaOneOf {
|
|
65
|
-
/**
|
|
66
|
-
* @deprecated
|
|
67
|
-
* @targetRemovalDate 2025-05-10
|
|
68
|
-
*/
|
|
69
|
-
image?: string;
|
|
70
|
-
/**
|
|
71
|
-
* @deprecated
|
|
72
|
-
* @targetRemovalDate 2025-05-10
|
|
73
|
-
*/
|
|
74
|
-
video?: string;
|
|
75
65
|
/** @maxLength 500 */
|
|
76
66
|
title?: string;
|
|
77
|
-
/**
|
|
78
|
-
* @maxLength 10000000
|
|
79
|
-
* @deprecated
|
|
80
|
-
* @targetRemovalDate 2026-06-25
|
|
81
|
-
*/
|
|
82
|
-
details?: string | null;
|
|
83
67
|
}
|
|
84
68
|
/** @oneof */
|
|
85
69
|
interface DescriptionMediaOneOf {
|
|
86
|
-
/**
|
|
87
|
-
* @deprecated
|
|
88
|
-
* @targetRemovalDate 2025-05-10
|
|
89
|
-
*/
|
|
90
|
-
image?: string;
|
|
91
|
-
/**
|
|
92
|
-
* @deprecated
|
|
93
|
-
* @targetRemovalDate 2025-05-10
|
|
94
|
-
*/
|
|
95
|
-
video?: string;
|
|
96
70
|
}
|
|
97
71
|
interface FocalPoint {
|
|
98
72
|
/** X-coordinate of the focal point. */
|
|
@@ -1000,7 +974,7 @@ interface UpdateSectionOptions {
|
|
|
1000
974
|
* @readonly
|
|
1001
975
|
*/
|
|
1002
976
|
totalSteps?: number | null;
|
|
1003
|
-
/** Whether participants can access the section as trial content before purchasing the parent program. */
|
|
977
|
+
/** Whether participants can access the section as trial content before purchasing the parent program. Default: `false`. */
|
|
1004
978
|
trialSection?: boolean;
|
|
1005
979
|
/** Position rank used to order sections within a program. To reorder sections, call Move Section. */
|
|
1006
980
|
ordering?: number;
|