@wix/auto_sdk_online-programs_sections 1.0.24 → 1.0.26

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.
@@ -35,7 +35,7 @@ interface Section {
35
35
  * @immutable
36
36
  */
37
37
  programId?: string;
38
- /** Section title and deprecated backward-compatibility content fields. */
38
+ /** Section title. */
39
39
  description?: Description;
40
40
  /**
41
41
  * @internal
@@ -43,11 +43,6 @@ interface Section {
43
43
  * @targetRemovalDate 2026-09-22
44
44
  */
45
45
  state?: StateWithLiterals;
46
- /**
47
- * Legacy total number of steps in the section.
48
- * @readonly
49
- */
50
- oldTotalSteps?: number;
51
46
  /**
52
47
  * Total number of steps in the section.
53
48
  * @readonly
@@ -63,123 +58,9 @@ interface Section {
63
58
  /** Custom field data for the section. */
64
59
  extendedFields?: ExtendedFields;
65
60
  }
66
- interface Description extends DescriptionMediaOneOf {
67
- /**
68
- * @internal
69
- * @deprecated
70
- * @targetRemovalDate 2025-05-10
71
- */
72
- image?: string;
73
- /**
74
- * @internal
75
- * @deprecated
76
- * @targetRemovalDate 2025-05-10
77
- */
78
- video?: string;
61
+ interface Description {
79
62
  /** @maxLength 500 */
80
63
  title?: string;
81
- /**
82
- * @internal
83
- * @maxLength 10000000
84
- * @deprecated
85
- * @targetRemovalDate 2026-06-25
86
- */
87
- details?: string | null;
88
- }
89
- /** @oneof */
90
- interface DescriptionMediaOneOf {
91
- /**
92
- * @internal
93
- * @deprecated
94
- * @targetRemovalDate 2025-05-10
95
- */
96
- image?: string;
97
- /**
98
- * @internal
99
- * @deprecated
100
- * @targetRemovalDate 2025-05-10
101
- */
102
- video?: string;
103
- }
104
- interface FocalPoint {
105
- /** X-coordinate of the focal point. */
106
- x?: number;
107
- /** Y-coordinate of the focal point. */
108
- y?: number;
109
- /** crop by height */
110
- height?: number | null;
111
- /** crop by width */
112
- width?: number | null;
113
- }
114
- interface VideoResolution {
115
- /** Video URL. */
116
- url?: string;
117
- /** Video height. */
118
- height?: number;
119
- /** Video width. */
120
- width?: number;
121
- /**
122
- * Deprecated. Use the `posters` property in the parent entity instead.
123
- * @internal
124
- * @deprecated
125
- */
126
- poster?: string;
127
- /** Video format for example, mp4, hls. */
128
- format?: string;
129
- /**
130
- * Deprecated. Use the `urlExpirationDate` property in the parent entity instead.
131
- * @internal
132
- * @deprecated
133
- */
134
- urlExpirationDate?: Date | null;
135
- /**
136
- * Deprecated. Use the `sizeInBytes` property in the parent entity instead. Size cannot be provided per resolution.
137
- * @internal
138
- * @format DECIMAL_VALUE
139
- * @deprecated
140
- */
141
- sizeInBytes?: string | null;
142
- /**
143
- * Video quality. For example: 480p, 720p.
144
- * @internal
145
- */
146
- quality?: string | null;
147
- /**
148
- * Video filename.
149
- * @internal
150
- */
151
- filename?: string | null;
152
- /**
153
- * Video duration in seconds.
154
- * @internal
155
- * @readonly
156
- * @deprecated Video duration in seconds.
157
- * @replacedBy duration_in_milliseconds
158
- * @targetRemovalDate 2024-08-01
159
- */
160
- durationInSeconds?: number | null;
161
- /**
162
- * Video duration in milliseconds.
163
- * @internal
164
- * @readonly
165
- */
166
- durationInMilliseconds?: number | null;
167
- /**
168
- * When true, this is a protected asset, and calling the URL will return a 403 error.
169
- * In order to access private assets, make a request to:
170
- * `GenerateFileDownloadUrl` with the WixMedia id and specify the asset_key in the request
171
- * @internal
172
- * @readonly
173
- */
174
- private?: boolean | null;
175
- /**
176
- * Key to identify the video resolution's relationship to the original media in WixMedia.
177
- * Can be used to request a download for the specific video resolution.
178
- * For example: 480p.mp4, 720p.mp4, 1080p.mp4, trailer-720p.mp4, clip-720p.mp4
179
- * @internal
180
- * @readonly
181
- */
182
- assetKey?: string | null;
183
64
  }
184
65
  declare enum State {
185
66
  /** Retained for backward compatibility. Doesn't affect whether the section is served. */
@@ -974,7 +855,7 @@ interface AccountInfo {
974
855
  /**
975
856
  * Creates a section.
976
857
  *
977
- * The section is added to the program identified by `section.program_id`. Provide that program ID in the request. Set `section.description.title` for the section title. `section.description.details`, `section.description.image`, and `section.description.video` are deprecated backward-compatibility fields. The stored ordering value is assigned automatically.
858
+ * The section is added to the program identified by `section.program_id`. Provide that program ID in the request. Set `section.description.title` for the section title. The stored ordering value is assigned automatically.
978
859
  *
979
860
  * To create multiple sections in a single API call, call [Bulk Create Sections](https://dev.wix.com/docs/api-reference/business-management/online-programs/sections/bulk-create-sections).
980
861
  * @param section - Section to create. Must include `section.program_id`.
@@ -987,7 +868,7 @@ interface AccountInfo {
987
868
  * @returns Created section.
988
869
  * @fqn wix.onlineprograms.sections.v3.SectionsService.CreateSection
989
870
  */
990
- declare function createSection(section: NonNullablePaths<Section, `programId`, 0>, options?: CreateSectionOptions): Promise<NonNullablePaths<Section, `programId` | `description.title` | `oldTotalSteps` | `ordering` | `delayInDays`, 1>>;
871
+ declare function createSection(section: NonNullablePaths<Section, `programId`, 0>, options?: CreateSectionOptions): Promise<NonNullablePaths<Section, `programId` | `description.title` | `ordering` | `delayInDays`, 1>>;
991
872
  interface CreateSectionOptions {
992
873
  /**
993
874
  * Predefined sets of fields to return.
@@ -998,7 +879,7 @@ interface CreateSectionOptions {
998
879
  /**
999
880
  * Creates up to 100 sections in a single API call.
1000
881
  *
1001
- * All sections in the request must include `program_id` and belong to the same program. Set `description.title` for each section title. `description.details`, `description.image`, and `description.video` are deprecated backward-compatibility fields. The stored ordering values are assigned automatically.
882
+ * All sections in the request must include `program_id` and belong to the same program. Set `description.title` for each section title. The stored ordering values are assigned automatically.
1002
883
  *
1003
884
  * To create a single section, call [Create Section](https://dev.wix.com/docs/api-reference/business-management/online-programs/sections/create-section).
1004
885
  * @param sections - List of sections to create. Each section must include `program_id`, and all sections must belong to the same program.
@@ -1031,7 +912,7 @@ interface BulkCreateSectionsOptions {
1031
912
  * @returns Retrieved section.
1032
913
  * @fqn wix.onlineprograms.sections.v3.SectionsService.GetSection
1033
914
  */
1034
- declare function getSection(sectionId: string, options?: GetSectionOptions): Promise<NonNullablePaths<Section, `programId` | `description.title` | `oldTotalSteps` | `ordering` | `delayInDays`, 1>>;
915
+ declare function getSection(sectionId: string, options?: GetSectionOptions): Promise<NonNullablePaths<Section, `programId` | `description.title` | `ordering` | `delayInDays`, 1>>;
1035
916
  interface GetSectionOptions {
1036
917
  /** Compatibility option for existing integrations. Current section responses return the section title. */
1037
918
  descriptionFieldSet?: DescriptionFieldSetWithLiterals;
@@ -1057,7 +938,7 @@ interface GetSectionOptions {
1057
938
  * @returns Updated section.
1058
939
  * @fqn wix.onlineprograms.sections.v3.SectionsService.UpdateSection
1059
940
  */
1060
- declare function updateSection(_id: string, options?: NonNullablePaths<UpdateSectionOptions, `section.revision`, 1>): Promise<NonNullablePaths<Section, `programId` | `description.title` | `oldTotalSteps` | `ordering` | `delayInDays`, 1>>;
941
+ declare function updateSection(_id: string, options?: NonNullablePaths<UpdateSectionOptions, `section.revision`, 1>): Promise<NonNullablePaths<Section, `programId` | `description.title` | `ordering` | `delayInDays`, 1>>;
1061
942
  interface UpdateSectionOptions {
1062
943
  section?: {
1063
944
  /**
@@ -1088,7 +969,7 @@ interface UpdateSectionOptions {
1088
969
  * @immutable
1089
970
  */
1090
971
  programId?: string;
1091
- /** Section title and deprecated backward-compatibility content fields. */
972
+ /** Section title. */
1092
973
  description?: Description;
1093
974
  /**
1094
975
  * @internal
@@ -1096,11 +977,6 @@ interface UpdateSectionOptions {
1096
977
  * @targetRemovalDate 2026-09-22
1097
978
  */
1098
979
  state?: StateWithLiterals;
1099
- /**
1100
- * Legacy total number of steps in the section.
1101
- * @readonly
1102
- */
1103
- oldTotalSteps?: number;
1104
980
  /**
1105
981
  * Total number of steps in the section.
1106
982
  * @readonly
@@ -1249,7 +1125,7 @@ interface SectionsQueryBuilder {
1249
1125
  * @fqn wix.onlineprograms.sections.v3.SectionsService.QuerySections
1250
1126
  * @requiredField query
1251
1127
  */
1252
- declare function typedQuerySections(query: SectionQuery, options?: QuerySectionsOptions): Promise<NonNullablePaths<QuerySectionsResponse, `sections` | `sections.${number}.programId` | `sections.${number}.description.title` | `sections.${number}.oldTotalSteps` | `sections.${number}.ordering` | `sections.${number}.delayInDays`, 3>>;
1128
+ declare function typedQuerySections(query: SectionQuery, options?: QuerySectionsOptions): Promise<NonNullablePaths<QuerySectionsResponse, `sections` | `sections.${number}.programId` | `sections.${number}.description.title` | `sections.${number}.ordering` | `sections.${number}.delayInDays`, 3>>;
1253
1129
  interface SectionQuerySpec extends QuerySpec {
1254
1130
  paging: 'cursor';
1255
1131
  wql: [
@@ -1352,7 +1228,7 @@ declare const utils: {
1352
1228
  * @applicableIdentity APP
1353
1229
  * @fqn wix.onlineprograms.sections.v3.SectionsService.ListSections
1354
1230
  */
1355
- declare function listSections(programId: string, options?: ListSectionsOptions): Promise<NonNullablePaths<ListSectionsResponse, `sections` | `sections.${number}.programId` | `sections.${number}.description.title` | `sections.${number}.oldTotalSteps` | `sections.${number}.ordering` | `sections.${number}.delayInDays`, 3>>;
1231
+ declare function listSections(programId: string, options?: ListSectionsOptions): Promise<NonNullablePaths<ListSectionsResponse, `sections` | `sections.${number}.programId` | `sections.${number}.description.title` | `sections.${number}.ordering` | `sections.${number}.delayInDays`, 3>>;
1356
1232
  interface ListSectionsOptions {
1357
1233
  /** Compatibility option for existing integrations. Current section responses return the section title. */
1358
1234
  descriptionFieldSet?: DescriptionFieldSetWithLiterals;
@@ -1374,7 +1250,7 @@ interface ListSectionsOptions {
1374
1250
  * @applicableIdentity APP
1375
1251
  * @fqn wix.onlineprograms.sections.v3.SectionsService.CloneSection
1376
1252
  */
1377
- declare function cloneSection(sectionId: string, options?: CloneSectionOptions): Promise<NonNullablePaths<CloneSectionResponse, `section.programId` | `section.description.title` | `section.oldTotalSteps` | `section.ordering` | `section.delayInDays`, 2>>;
1253
+ declare function cloneSection(sectionId: string, options?: CloneSectionOptions): Promise<NonNullablePaths<CloneSectionResponse, `section.programId` | `section.description.title` | `section.ordering` | `section.delayInDays`, 2>>;
1378
1254
  interface CloneSectionOptions {
1379
1255
  /**
1380
1256
  * Predefined sets of fields to return.
@@ -1394,7 +1270,7 @@ interface CloneSectionOptions {
1394
1270
  * @applicableIdentity APP
1395
1271
  * @fqn wix.onlineprograms.sections.v3.SectionsService.MoveSection
1396
1272
  */
1397
- declare function moveSection(options?: MoveSectionOptions): Promise<NonNullablePaths<MoveSectionResponse, `section.programId` | `section.description.title` | `section.oldTotalSteps` | `section.ordering` | `section.delayInDays`, 2>>;
1273
+ declare function moveSection(options?: MoveSectionOptions): Promise<NonNullablePaths<MoveSectionResponse, `section.programId` | `section.description.title` | `section.ordering` | `section.delayInDays`, 2>>;
1398
1274
  interface MoveSectionOptions {
1399
1275
  /**
1400
1276
  * ID of the section to move.
@@ -1415,4 +1291,4 @@ interface MoveSectionOptions {
1415
1291
  fields?: RequestedFieldsWithLiterals[];
1416
1292
  }
1417
1293
 
1418
- export { type AccountInfo, type ActionEvent, type AddressLocation, type ApplicationError, type BulkActionMetadata, BulkActionType, type BulkActionTypeWithLiterals, type BulkCloneSectionRequest, type BulkCloneSectionResponse, type BulkCreateSectionMigrationRequest, type BulkCreateSectionMigrationResponse, type BulkCreateSectionRequest, type BulkCreateSectionResponse, type BulkCreateSectionsOptions, type BulkCreateSectionsRequest, type BulkCreateSectionsResponse, type BulkSectionResult, type CloneSectionOptions, type CloneSectionRequest, type CloneSectionResponse, type CommonQueryWithEntityContext, type CreateSectionOptions, type CreateSectionRequest, type CreateSectionResponse, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type DeleteAllProgramSectionsRequest, type DeleteAllProgramSectionsResponse, type DeleteByFilterOperation, type DeleteByIdsOperation, type DeleteSectionRequest, type DeleteSectionResponse, type Description, DescriptionFieldSet, type DescriptionFieldSetWithLiterals, type DescriptionMediaOneOf, type DocumentImage, type DocumentPayload, type DocumentUpdateOperation, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, Enum, type EnumWithLiterals, type ExtendedFields, type FocalPoint, type GetSectionOptions, type GetSectionRequest, type GetSectionResponse, type IdentificationData, type IdentificationDataIdOneOf, type IndexDocument, type ItemMetadata, type ListSectionsOptions, type ListSectionsRequest, type ListSectionsResponse, type MessageEnvelope, type MoveSectionOptions, type MoveSectionRequest, type MoveSectionResponse, type PublishSectionRequest, type PublishSectionResponse, type QuerySectionsOptions, type QuerySectionsRequest, type QuerySectionsResponse, RequestedFields, type RequestedFieldsWithLiterals, type RestoreInfo, type RestoreSectionFromTrashRequest, type RestoreSectionFromTrashResponse, type SearchIndexingNotification, SearchIndexingNotificationState, type SearchIndexingNotificationStateWithLiterals, type Section, type SectionCloned, type SectionDeleted, type SectionMoved, type SectionPublished, type SectionQuery, type SectionQuerySpec, type SectionUpdated, type SectionsQueryBuilder, type SectionsQueryResult, SortOrder, type SortOrderWithLiterals, type Sorting, State, type StateWithLiterals, type UpdateByFilterOperation, type UpdateDocumentsEvent, type UpdateDocumentsEventOperationOneOf, type UpdateExistingOperation, type UpdateSectionOptions, type UpdateSectionRequest, type UpdateSectionResponse, type VideoResolution, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, bulkCreateSections, cloneSection, createSection, deleteSection, getSection, listSections, moveSection, querySections, typedQuerySections, updateSection, utils };
1294
+ export { type AccountInfo, type ActionEvent, type AddressLocation, type ApplicationError, type BulkActionMetadata, BulkActionType, type BulkActionTypeWithLiterals, type BulkCloneSectionRequest, type BulkCloneSectionResponse, type BulkCreateSectionMigrationRequest, type BulkCreateSectionMigrationResponse, type BulkCreateSectionRequest, type BulkCreateSectionResponse, type BulkCreateSectionsOptions, type BulkCreateSectionsRequest, type BulkCreateSectionsResponse, type BulkSectionResult, type CloneSectionOptions, type CloneSectionRequest, type CloneSectionResponse, type CommonQueryWithEntityContext, type CreateSectionOptions, type CreateSectionRequest, type CreateSectionResponse, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type DeleteAllProgramSectionsRequest, type DeleteAllProgramSectionsResponse, type DeleteByFilterOperation, type DeleteByIdsOperation, type DeleteSectionRequest, type DeleteSectionResponse, type Description, DescriptionFieldSet, type DescriptionFieldSetWithLiterals, type DocumentImage, type DocumentPayload, type DocumentUpdateOperation, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, Enum, type EnumWithLiterals, type ExtendedFields, type GetSectionOptions, type GetSectionRequest, type GetSectionResponse, type IdentificationData, type IdentificationDataIdOneOf, type IndexDocument, type ItemMetadata, type ListSectionsOptions, type ListSectionsRequest, type ListSectionsResponse, type MessageEnvelope, type MoveSectionOptions, type MoveSectionRequest, type MoveSectionResponse, type PublishSectionRequest, type PublishSectionResponse, type QuerySectionsOptions, type QuerySectionsRequest, type QuerySectionsResponse, RequestedFields, type RequestedFieldsWithLiterals, type RestoreInfo, type RestoreSectionFromTrashRequest, type RestoreSectionFromTrashResponse, type SearchIndexingNotification, SearchIndexingNotificationState, type SearchIndexingNotificationStateWithLiterals, type Section, type SectionCloned, type SectionDeleted, type SectionMoved, type SectionPublished, type SectionQuery, type SectionQuerySpec, type SectionUpdated, type SectionsQueryBuilder, type SectionsQueryResult, SortOrder, type SortOrderWithLiterals, type Sorting, State, type StateWithLiterals, type UpdateByFilterOperation, type UpdateDocumentsEvent, type UpdateDocumentsEventOperationOneOf, type UpdateExistingOperation, type UpdateSectionOptions, type UpdateSectionRequest, type UpdateSectionResponse, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, bulkCreateSections, cloneSection, createSection, deleteSection, getSection, listSections, moveSection, querySections, typedQuerySections, updateSection, utils };
@@ -35,7 +35,7 @@ interface Section {
35
35
  * @immutable
36
36
  */
37
37
  programId?: string;
38
- /** Section title and deprecated backward-compatibility content fields. */
38
+ /** Section title. */
39
39
  description?: Description;
40
40
  /**
41
41
  * @internal
@@ -43,11 +43,6 @@ interface Section {
43
43
  * @targetRemovalDate 2026-09-22
44
44
  */
45
45
  state?: StateWithLiterals;
46
- /**
47
- * Legacy total number of steps in the section.
48
- * @readonly
49
- */
50
- oldTotalSteps?: number;
51
46
  /**
52
47
  * Total number of steps in the section.
53
48
  * @readonly
@@ -63,233 +58,9 @@ interface Section {
63
58
  /** Custom field data for the section. */
64
59
  extendedFields?: ExtendedFields;
65
60
  }
66
- interface Description extends DescriptionMediaOneOf {
67
- /**
68
- * @internal
69
- * @deprecated
70
- * @targetRemovalDate 2025-05-10
71
- */
72
- image?: Image;
73
- /**
74
- * @internal
75
- * @deprecated
76
- * @targetRemovalDate 2025-05-10
77
- */
78
- video?: VideoV2;
61
+ interface Description {
79
62
  /** @maxLength 500 */
80
63
  title?: string;
81
- /**
82
- * @internal
83
- * @maxLength 10000000
84
- * @deprecated
85
- * @targetRemovalDate 2026-06-25
86
- */
87
- details?: string | null;
88
- }
89
- /** @oneof */
90
- interface DescriptionMediaOneOf {
91
- /**
92
- * @internal
93
- * @deprecated
94
- * @targetRemovalDate 2025-05-10
95
- */
96
- image?: Image;
97
- /**
98
- * @internal
99
- * @deprecated
100
- * @targetRemovalDate 2025-05-10
101
- */
102
- video?: VideoV2;
103
- }
104
- interface Image {
105
- /** WixMedia image ID. */
106
- id?: string;
107
- /** Image URL. */
108
- url?: string;
109
- /**
110
- * Original image height.
111
- * @readonly
112
- */
113
- height?: number;
114
- /**
115
- * Original image width.
116
- * @readonly
117
- */
118
- width?: number;
119
- /** Image alt text. */
120
- altText?: string | null;
121
- /**
122
- * Image URL expiration date (when relevant).
123
- * @internal
124
- * @readonly
125
- */
126
- urlExpirationDate?: Date | null;
127
- /**
128
- * Image filename.
129
- * @readonly
130
- */
131
- filename?: string | null;
132
- /**
133
- * Image size in bytes.
134
- * @internal
135
- * @readonly
136
- * @format DECIMAL_VALUE
137
- */
138
- sizeInBytes?: string | null;
139
- /**
140
- * Focal point of the image.
141
- * @internal
142
- */
143
- focalPoint?: FocalPoint;
144
- }
145
- interface FocalPoint {
146
- /** X-coordinate of the focal point. */
147
- x?: number;
148
- /** Y-coordinate of the focal point. */
149
- y?: number;
150
- /** crop by height */
151
- height?: number | null;
152
- /** crop by width */
153
- width?: number | null;
154
- }
155
- interface VideoV2 {
156
- /** WixMedia ID. */
157
- id?: string;
158
- /**
159
- * Original video URL.
160
- * @internal
161
- */
162
- url?: string;
163
- /**
164
- * Available resolutions for the video, starting with the optimal resolution.
165
- * @readonly
166
- * @maxSize 100
167
- */
168
- resolutions?: VideoResolution[];
169
- /**
170
- * Video filename.
171
- * @readonly
172
- */
173
- filename?: string | null;
174
- /**
175
- * Video posters.
176
- * @internal
177
- * @readonly
178
- */
179
- posters?: Image[];
180
- /**
181
- * Original video size in bytes.
182
- * @internal
183
- * @readonly
184
- * @format DECIMAL_VALUE
185
- */
186
- sizeInBytes?: string | null;
187
- /**
188
- * Video URL expiration date (when relevant).
189
- * @internal
190
- * @readonly
191
- */
192
- urlExpirationDate?: Date | null;
193
- /**
194
- * Original video duration in milliseconds.
195
- * @internal
196
- * @readonly
197
- */
198
- durationInMilliseconds?: number | null;
199
- /**
200
- * A short title for the video. will be used for SEO purposes.
201
- * @internal
202
- * @maxLength 300
203
- */
204
- title?: string | null;
205
- /**
206
- * A long description for the video. will be used for SEO purposes.
207
- * @internal
208
- * @maxLength 2000
209
- */
210
- description?: string | null;
211
- /**
212
- * Original video height.
213
- * @internal
214
- * @readonly
215
- */
216
- height?: number | null;
217
- /**
218
- * Original video width.
219
- * @internal
220
- * @readonly
221
- */
222
- width?: number | null;
223
- }
224
- interface VideoResolution {
225
- /** Video URL. */
226
- url?: string;
227
- /** Video height. */
228
- height?: number;
229
- /** Video width. */
230
- width?: number;
231
- /**
232
- * Deprecated. Use the `posters` property in the parent entity instead.
233
- * @internal
234
- * @deprecated
235
- */
236
- poster?: Image;
237
- /** Video format for example, mp4, hls. */
238
- format?: string;
239
- /**
240
- * Deprecated. Use the `urlExpirationDate` property in the parent entity instead.
241
- * @internal
242
- * @deprecated
243
- */
244
- urlExpirationDate?: Date | null;
245
- /**
246
- * Deprecated. Use the `sizeInBytes` property in the parent entity instead. Size cannot be provided per resolution.
247
- * @internal
248
- * @format DECIMAL_VALUE
249
- * @deprecated
250
- */
251
- sizeInBytes?: string | null;
252
- /**
253
- * Video quality. For example: 480p, 720p.
254
- * @internal
255
- */
256
- quality?: string | null;
257
- /**
258
- * Video filename.
259
- * @internal
260
- */
261
- filename?: string | null;
262
- /**
263
- * Video duration in seconds.
264
- * @internal
265
- * @readonly
266
- * @deprecated Video duration in seconds.
267
- * @replacedBy duration_in_milliseconds
268
- * @targetRemovalDate 2024-08-01
269
- */
270
- durationInSeconds?: number | null;
271
- /**
272
- * Video duration in milliseconds.
273
- * @internal
274
- * @readonly
275
- */
276
- durationInMilliseconds?: number | null;
277
- /**
278
- * When true, this is a protected asset, and calling the URL will return a 403 error.
279
- * In order to access private assets, make a request to:
280
- * `GenerateFileDownloadUrl` with the WixMedia id and specify the asset_key in the request
281
- * @internal
282
- * @readonly
283
- */
284
- private?: boolean | null;
285
- /**
286
- * Key to identify the video resolution's relationship to the original media in WixMedia.
287
- * Can be used to request a download for the specific video resolution.
288
- * For example: 480p.mp4, 720p.mp4, 1080p.mp4, trailer-720p.mp4, clip-720p.mp4
289
- * @internal
290
- * @readonly
291
- */
292
- assetKey?: string | null;
293
64
  }
294
65
  declare enum State {
295
66
  /** Retained for backward compatibility. Doesn't affect whether the section is served. */
@@ -1154,4 +925,4 @@ declare function cloneSection(): __PublicMethodMetaInfo<'POST', {
1154
925
  }, CloneSectionRequest$1, CloneSectionRequest, CloneSectionResponse$1, CloneSectionResponse>;
1155
926
  declare function moveSection(): __PublicMethodMetaInfo<'PATCH', {}, MoveSectionRequest$1, MoveSectionRequest, MoveSectionResponse$1, MoveSectionResponse>;
1156
927
 
1157
- export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type AddressLocation as AddressLocationOriginal, type ApplicationError as ApplicationErrorOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, BulkActionType as BulkActionTypeOriginal, type BulkActionTypeWithLiterals as BulkActionTypeWithLiteralsOriginal, type BulkCloneSectionRequest as BulkCloneSectionRequestOriginal, type BulkCloneSectionResponse as BulkCloneSectionResponseOriginal, type BulkCreateSectionMigrationRequest as BulkCreateSectionMigrationRequestOriginal, type BulkCreateSectionMigrationResponse as BulkCreateSectionMigrationResponseOriginal, type BulkCreateSectionRequest as BulkCreateSectionRequestOriginal, type BulkCreateSectionResponse as BulkCreateSectionResponseOriginal, type BulkCreateSectionsRequest as BulkCreateSectionsRequestOriginal, type BulkCreateSectionsResponse as BulkCreateSectionsResponseOriginal, type BulkSectionResult as BulkSectionResultOriginal, type CloneSectionRequest as CloneSectionRequestOriginal, type CloneSectionResponse as CloneSectionResponseOriginal, type CreateSectionRequest as CreateSectionRequestOriginal, type CreateSectionResponse as CreateSectionResponseOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DeleteAllProgramSectionsRequest as DeleteAllProgramSectionsRequestOriginal, type DeleteAllProgramSectionsResponse as DeleteAllProgramSectionsResponseOriginal, type DeleteByFilterOperation as DeleteByFilterOperationOriginal, type DeleteByIdsOperation as DeleteByIdsOperationOriginal, type DeleteSectionRequest as DeleteSectionRequestOriginal, type DeleteSectionResponse as DeleteSectionResponseOriginal, DescriptionFieldSet as DescriptionFieldSetOriginal, type DescriptionFieldSetWithLiterals as DescriptionFieldSetWithLiteralsOriginal, type DescriptionMediaOneOf as DescriptionMediaOneOfOriginal, type Description as DescriptionOriginal, type DocumentImage as DocumentImageOriginal, type DocumentPayload as DocumentPayloadOriginal, type DocumentUpdateOperation as DocumentUpdateOperationOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, Enum as EnumOriginal, type EnumWithLiterals as EnumWithLiteralsOriginal, type ExtendedFields as ExtendedFieldsOriginal, type FocalPoint as FocalPointOriginal, type GetSectionRequest as GetSectionRequestOriginal, type GetSectionResponse as GetSectionResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type Image as ImageOriginal, type IndexDocument as IndexDocumentOriginal, type ItemMetadata as ItemMetadataOriginal, type ListSectionsRequest as ListSectionsRequestOriginal, type ListSectionsResponse as ListSectionsResponseOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MoveSectionRequest as MoveSectionRequestOriginal, type MoveSectionResponse as MoveSectionResponseOriginal, type PublishSectionRequest as PublishSectionRequestOriginal, type PublishSectionResponse as PublishSectionResponseOriginal, type QuerySectionsRequest as QuerySectionsRequestOriginal, type QuerySectionsResponse as QuerySectionsResponseOriginal, RequestedFields as RequestedFieldsOriginal, type RequestedFieldsWithLiterals as RequestedFieldsWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RestoreSectionFromTrashRequest as RestoreSectionFromTrashRequestOriginal, type RestoreSectionFromTrashResponse as RestoreSectionFromTrashResponseOriginal, type SearchIndexingNotification as SearchIndexingNotificationOriginal, SearchIndexingNotificationState as SearchIndexingNotificationStateOriginal, type SearchIndexingNotificationStateWithLiterals as SearchIndexingNotificationStateWithLiteralsOriginal, type SectionCloned as SectionClonedOriginal, type SectionDeleted as SectionDeletedOriginal, type SectionMoved as SectionMovedOriginal, type Section as SectionOriginal, type SectionPublished as SectionPublishedOriginal, type SectionUpdated as SectionUpdatedOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, State as StateOriginal, type StateWithLiterals as StateWithLiteralsOriginal, type UpdateByFilterOperation as UpdateByFilterOperationOriginal, type UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOfOriginal, type UpdateDocumentsEvent as UpdateDocumentsEventOriginal, type UpdateExistingOperation as UpdateExistingOperationOriginal, type UpdateSectionRequest as UpdateSectionRequestOriginal, type UpdateSectionResponse as UpdateSectionResponseOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkCreateSections, cloneSection, createSection, deleteSection, getSection, listSections, moveSection, querySections, updateSection };
928
+ export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type AddressLocation as AddressLocationOriginal, type ApplicationError as ApplicationErrorOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, BulkActionType as BulkActionTypeOriginal, type BulkActionTypeWithLiterals as BulkActionTypeWithLiteralsOriginal, type BulkCloneSectionRequest as BulkCloneSectionRequestOriginal, type BulkCloneSectionResponse as BulkCloneSectionResponseOriginal, type BulkCreateSectionMigrationRequest as BulkCreateSectionMigrationRequestOriginal, type BulkCreateSectionMigrationResponse as BulkCreateSectionMigrationResponseOriginal, type BulkCreateSectionRequest as BulkCreateSectionRequestOriginal, type BulkCreateSectionResponse as BulkCreateSectionResponseOriginal, type BulkCreateSectionsRequest as BulkCreateSectionsRequestOriginal, type BulkCreateSectionsResponse as BulkCreateSectionsResponseOriginal, type BulkSectionResult as BulkSectionResultOriginal, type CloneSectionRequest as CloneSectionRequestOriginal, type CloneSectionResponse as CloneSectionResponseOriginal, type CreateSectionRequest as CreateSectionRequestOriginal, type CreateSectionResponse as CreateSectionResponseOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DeleteAllProgramSectionsRequest as DeleteAllProgramSectionsRequestOriginal, type DeleteAllProgramSectionsResponse as DeleteAllProgramSectionsResponseOriginal, type DeleteByFilterOperation as DeleteByFilterOperationOriginal, type DeleteByIdsOperation as DeleteByIdsOperationOriginal, type DeleteSectionRequest as DeleteSectionRequestOriginal, type DeleteSectionResponse as DeleteSectionResponseOriginal, DescriptionFieldSet as DescriptionFieldSetOriginal, type DescriptionFieldSetWithLiterals as DescriptionFieldSetWithLiteralsOriginal, type Description as DescriptionOriginal, type DocumentImage as DocumentImageOriginal, type DocumentPayload as DocumentPayloadOriginal, type DocumentUpdateOperation as DocumentUpdateOperationOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, Enum as EnumOriginal, type EnumWithLiterals as EnumWithLiteralsOriginal, type ExtendedFields as ExtendedFieldsOriginal, type GetSectionRequest as GetSectionRequestOriginal, type GetSectionResponse as GetSectionResponseOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type IndexDocument as IndexDocumentOriginal, type ItemMetadata as ItemMetadataOriginal, type ListSectionsRequest as ListSectionsRequestOriginal, type ListSectionsResponse as ListSectionsResponseOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type MoveSectionRequest as MoveSectionRequestOriginal, type MoveSectionResponse as MoveSectionResponseOriginal, type PublishSectionRequest as PublishSectionRequestOriginal, type PublishSectionResponse as PublishSectionResponseOriginal, type QuerySectionsRequest as QuerySectionsRequestOriginal, type QuerySectionsResponse as QuerySectionsResponseOriginal, RequestedFields as RequestedFieldsOriginal, type RequestedFieldsWithLiterals as RequestedFieldsWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RestoreSectionFromTrashRequest as RestoreSectionFromTrashRequestOriginal, type RestoreSectionFromTrashResponse as RestoreSectionFromTrashResponseOriginal, type SearchIndexingNotification as SearchIndexingNotificationOriginal, SearchIndexingNotificationState as SearchIndexingNotificationStateOriginal, type SearchIndexingNotificationStateWithLiterals as SearchIndexingNotificationStateWithLiteralsOriginal, type SectionCloned as SectionClonedOriginal, type SectionDeleted as SectionDeletedOriginal, type SectionMoved as SectionMovedOriginal, type Section as SectionOriginal, type SectionPublished as SectionPublishedOriginal, type SectionUpdated as SectionUpdatedOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, State as StateOriginal, type StateWithLiterals as StateWithLiteralsOriginal, type UpdateByFilterOperation as UpdateByFilterOperationOriginal, type UpdateDocumentsEventOperationOneOf as UpdateDocumentsEventOperationOneOfOriginal, type UpdateDocumentsEvent as UpdateDocumentsEventOriginal, type UpdateExistingOperation as UpdateExistingOperationOriginal, type UpdateSectionRequest as UpdateSectionRequestOriginal, type UpdateSectionResponse as UpdateSectionResponseOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type __PublicMethodMetaInfo, bulkCreateSections, cloneSection, createSection, deleteSection, getSection, listSections, moveSection, querySections, updateSection };
@@ -1,26 +1,26 @@
1
1
  import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types';
2
2
  import { Section, CreateSectionOptions, BulkCreateSectionsOptions, BulkCreateSectionsResponse, GetSectionOptions, UpdateSectionOptions, ListSectionsOptions, ListSectionsResponse, CloneSectionOptions, CloneSectionResponse, MoveSectionOptions, MoveSectionResponse, SectionQuery, QuerySectionsOptions, typedQuerySections, SectionsQueryBuilder } from './index.typings.mjs';
3
- export { AccountInfo, ActionEvent, AddressLocation, ApplicationError, BulkActionMetadata, BulkActionType, BulkActionTypeWithLiterals, BulkCloneSectionRequest, BulkCloneSectionResponse, BulkCreateSectionMigrationRequest, BulkCreateSectionMigrationResponse, BulkCreateSectionRequest, BulkCreateSectionResponse, BulkCreateSectionsRequest, BulkSectionResult, CloneSectionRequest, CommonQueryWithEntityContext, CreateSectionRequest, CreateSectionResponse, CursorPaging, CursorPagingMetadata, CursorQuery, CursorQueryPagingMethodOneOf, Cursors, DeleteAllProgramSectionsRequest, DeleteAllProgramSectionsResponse, DeleteByFilterOperation, DeleteByIdsOperation, DeleteSectionRequest, DeleteSectionResponse, Description, DescriptionFieldSet, DescriptionFieldSetWithLiterals, DescriptionMediaOneOf, DocumentImage, DocumentPayload, DocumentUpdateOperation, DomainEvent, DomainEventBodyOneOf, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, Enum, EnumWithLiterals, ExtendedFields, FocalPoint, GetSectionRequest, GetSectionResponse, IdentificationData, IdentificationDataIdOneOf, IndexDocument, ItemMetadata, ListSectionsRequest, MessageEnvelope, MoveSectionRequest, PublishSectionRequest, PublishSectionResponse, QuerySectionsRequest, QuerySectionsResponse, RequestedFields, RequestedFieldsWithLiterals, RestoreInfo, RestoreSectionFromTrashRequest, RestoreSectionFromTrashResponse, SearchIndexingNotification, SearchIndexingNotificationState, SearchIndexingNotificationStateWithLiterals, SectionCloned, SectionDeleted, SectionMoved, SectionPublished, SectionQuerySpec, SectionUpdated, SectionsQueryResult, SortOrder, SortOrderWithLiterals, Sorting, State, StateWithLiterals, UpdateByFilterOperation, UpdateDocumentsEvent, UpdateDocumentsEventOperationOneOf, UpdateExistingOperation, UpdateSectionRequest, UpdateSectionResponse, VideoResolution, WebhookIdentityType, WebhookIdentityTypeWithLiterals, utils } from './index.typings.mjs';
3
+ export { AccountInfo, ActionEvent, AddressLocation, ApplicationError, BulkActionMetadata, BulkActionType, BulkActionTypeWithLiterals, BulkCloneSectionRequest, BulkCloneSectionResponse, BulkCreateSectionMigrationRequest, BulkCreateSectionMigrationResponse, BulkCreateSectionRequest, BulkCreateSectionResponse, BulkCreateSectionsRequest, BulkSectionResult, CloneSectionRequest, CommonQueryWithEntityContext, CreateSectionRequest, CreateSectionResponse, CursorPaging, CursorPagingMetadata, CursorQuery, CursorQueryPagingMethodOneOf, Cursors, DeleteAllProgramSectionsRequest, DeleteAllProgramSectionsResponse, DeleteByFilterOperation, DeleteByIdsOperation, DeleteSectionRequest, DeleteSectionResponse, Description, DescriptionFieldSet, DescriptionFieldSetWithLiterals, DocumentImage, DocumentPayload, DocumentUpdateOperation, DomainEvent, DomainEventBodyOneOf, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, Enum, EnumWithLiterals, ExtendedFields, GetSectionRequest, GetSectionResponse, IdentificationData, IdentificationDataIdOneOf, IndexDocument, ItemMetadata, ListSectionsRequest, MessageEnvelope, MoveSectionRequest, PublishSectionRequest, PublishSectionResponse, QuerySectionsRequest, QuerySectionsResponse, RequestedFields, RequestedFieldsWithLiterals, RestoreInfo, RestoreSectionFromTrashRequest, RestoreSectionFromTrashResponse, SearchIndexingNotification, SearchIndexingNotificationState, SearchIndexingNotificationStateWithLiterals, SectionCloned, SectionDeleted, SectionMoved, SectionPublished, SectionQuerySpec, SectionUpdated, SectionsQueryResult, SortOrder, SortOrderWithLiterals, Sorting, State, StateWithLiterals, UpdateByFilterOperation, UpdateDocumentsEvent, UpdateDocumentsEventOperationOneOf, UpdateExistingOperation, UpdateSectionRequest, UpdateSectionResponse, WebhookIdentityType, WebhookIdentityTypeWithLiterals, utils } from './index.typings.mjs';
4
4
 
5
5
  declare function createSection$1(httpClient: HttpClient): CreateSectionSignature;
6
6
  interface CreateSectionSignature {
7
7
  /**
8
8
  * Creates a section.
9
9
  *
10
- * The section is added to the program identified by `section.program_id`. Provide that program ID in the request. Set `section.description.title` for the section title. `section.description.details`, `section.description.image`, and `section.description.video` are deprecated backward-compatibility fields. The stored ordering value is assigned automatically.
10
+ * The section is added to the program identified by `section.program_id`. Provide that program ID in the request. Set `section.description.title` for the section title. The stored ordering value is assigned automatically.
11
11
  *
12
12
  * To create multiple sections in a single API call, call [Bulk Create Sections](https://dev.wix.com/docs/api-reference/business-management/online-programs/sections/bulk-create-sections).
13
13
  * @param - Section to create. Must include `section.program_id`.
14
14
  * @returns Created section.
15
15
  */
16
- (section: NonNullablePaths<Section, `programId`, 0>, options?: CreateSectionOptions): Promise<NonNullablePaths<Section, `programId` | `description.title` | `oldTotalSteps` | `ordering` | `delayInDays`, 1>>;
16
+ (section: NonNullablePaths<Section, `programId`, 0>, options?: CreateSectionOptions): Promise<NonNullablePaths<Section, `programId` | `description.title` | `ordering` | `delayInDays`, 1>>;
17
17
  }
18
18
  declare function bulkCreateSections$1(httpClient: HttpClient): BulkCreateSectionsSignature;
19
19
  interface BulkCreateSectionsSignature {
20
20
  /**
21
21
  * Creates up to 100 sections in a single API call.
22
22
  *
23
- * All sections in the request must include `program_id` and belong to the same program. Set `description.title` for each section title. `description.details`, `description.image`, and `description.video` are deprecated backward-compatibility fields. The stored ordering values are assigned automatically.
23
+ * All sections in the request must include `program_id` and belong to the same program. Set `description.title` for each section title. The stored ordering values are assigned automatically.
24
24
  *
25
25
  * To create a single section, call [Create Section](https://dev.wix.com/docs/api-reference/business-management/online-programs/sections/create-section).
26
26
  * @param - List of sections to create. Each section must include `program_id`, and all sections must belong to the same program.
@@ -36,7 +36,7 @@ interface GetSectionSignature {
36
36
  * @param - ID of the Section to retrieve.
37
37
  * @returns Retrieved section.
38
38
  */
39
- (sectionId: string, options?: GetSectionOptions): Promise<NonNullablePaths<Section, `programId` | `description.title` | `oldTotalSteps` | `ordering` | `delayInDays`, 1>>;
39
+ (sectionId: string, options?: GetSectionOptions): Promise<NonNullablePaths<Section, `programId` | `description.title` | `ordering` | `delayInDays`, 1>>;
40
40
  }
41
41
  declare function updateSection$1(httpClient: HttpClient): UpdateSectionSignature;
42
42
  interface UpdateSectionSignature {
@@ -49,7 +49,7 @@ interface UpdateSectionSignature {
49
49
  * @param - Section ID.
50
50
  * @returns Updated section.
51
51
  */
52
- (_id: string, options?: NonNullablePaths<UpdateSectionOptions, `section.revision`, 1>): Promise<NonNullablePaths<Section, `programId` | `description.title` | `oldTotalSteps` | `ordering` | `delayInDays`, 1>>;
52
+ (_id: string, options?: NonNullablePaths<UpdateSectionOptions, `section.revision`, 1>): Promise<NonNullablePaths<Section, `programId` | `description.title` | `ordering` | `delayInDays`, 1>>;
53
53
  }
54
54
  declare function deleteSection$1(httpClient: HttpClient): DeleteSectionSignature;
55
55
  interface DeleteSectionSignature {
@@ -71,7 +71,7 @@ interface ListSectionsSignature {
71
71
  * To filter or sort sections, call [Query Sections](https://dev.wix.com/docs/api-reference/business-management/online-programs/sections/query-sections).
72
72
  * @param - Program ID to list sections for.
73
73
  */
74
- (programId: string, options?: ListSectionsOptions): Promise<NonNullablePaths<ListSectionsResponse, `sections` | `sections.${number}.programId` | `sections.${number}.description.title` | `sections.${number}.oldTotalSteps` | `sections.${number}.ordering` | `sections.${number}.delayInDays`, 3>>;
74
+ (programId: string, options?: ListSectionsOptions): Promise<NonNullablePaths<ListSectionsResponse, `sections` | `sections.${number}.programId` | `sections.${number}.description.title` | `sections.${number}.ordering` | `sections.${number}.delayInDays`, 3>>;
75
75
  }
76
76
  declare function cloneSection$1(httpClient: HttpClient): CloneSectionSignature;
77
77
  interface CloneSectionSignature {
@@ -81,7 +81,7 @@ interface CloneSectionSignature {
81
81
  * The cloned section is added to the same program after the current last section. Translation content is copied to the cloned section.
82
82
  * @param - ID of the section to clone.
83
83
  */
84
- (sectionId: string, options?: CloneSectionOptions): Promise<NonNullablePaths<CloneSectionResponse, `section.programId` | `section.description.title` | `section.oldTotalSteps` | `section.ordering` | `section.delayInDays`, 2>>;
84
+ (sectionId: string, options?: CloneSectionOptions): Promise<NonNullablePaths<CloneSectionResponse, `section.programId` | `section.description.title` | `section.ordering` | `section.delayInDays`, 2>>;
85
85
  }
86
86
  declare function moveSection$1(httpClient: HttpClient): MoveSectionSignature;
87
87
  interface MoveSectionSignature {
@@ -92,7 +92,7 @@ interface MoveSectionSignature {
92
92
  *
93
93
  * If `afterSectionId` isn't specified, the section is moved to the beginning of the program. The stored ordering value is recalculated automatically.
94
94
  */
95
- (options?: MoveSectionOptions): Promise<NonNullablePaths<MoveSectionResponse, `section.programId` | `section.description.title` | `section.oldTotalSteps` | `section.ordering` | `section.delayInDays`, 2>>;
95
+ (options?: MoveSectionOptions): Promise<NonNullablePaths<MoveSectionResponse, `section.programId` | `section.description.title` | `section.ordering` | `section.delayInDays`, 2>>;
96
96
  }
97
97
 
98
98
  declare function customQuerySections(httpClient: HttpClient): {