@wix/auto_sdk_online-programs_sections 1.0.25 → 1.0.27
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.d.ts +3 -3
- package/build/cjs/index.js +43 -399
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +6 -43
- package/build/cjs/index.typings.js +43 -399
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +3 -71
- package/build/cjs/meta.js +22 -241
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +3 -3
- package/build/es/index.mjs +43 -399
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +6 -43
- package/build/es/index.typings.mjs +43 -399
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +3 -71
- package/build/es/meta.mjs +22 -241
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +3 -3
- package/build/internal/cjs/index.typings.d.ts +6 -134
- package/build/internal/cjs/meta.d.ts +3 -234
- package/build/internal/es/index.d.mts +3 -3
- package/build/internal/es/index.typings.d.mts +6 -134
- package/build/internal/es/meta.d.mts +3 -234
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -35,7 +35,7 @@ interface Section {
|
|
|
35
35
|
* @immutable
|
|
36
36
|
*/
|
|
37
37
|
programId?: string;
|
|
38
|
-
/** Section title
|
|
38
|
+
/** Section title. */
|
|
39
39
|
description?: Description;
|
|
40
40
|
/**
|
|
41
41
|
* Total number of steps in the section.
|
|
@@ -52,71 +52,10 @@ interface Section {
|
|
|
52
52
|
/** Custom field data for the section. */
|
|
53
53
|
extendedFields?: ExtendedFields;
|
|
54
54
|
}
|
|
55
|
-
interface Description
|
|
55
|
+
interface Description {
|
|
56
56
|
/** @maxLength 500 */
|
|
57
57
|
title?: string;
|
|
58
58
|
}
|
|
59
|
-
/** @oneof */
|
|
60
|
-
interface DescriptionMediaOneOf {
|
|
61
|
-
}
|
|
62
|
-
interface Image {
|
|
63
|
-
/** WixMedia image ID. */
|
|
64
|
-
id?: string;
|
|
65
|
-
/** Image URL. */
|
|
66
|
-
url?: string;
|
|
67
|
-
/**
|
|
68
|
-
* Original image height.
|
|
69
|
-
* @readonly
|
|
70
|
-
*/
|
|
71
|
-
height?: number;
|
|
72
|
-
/**
|
|
73
|
-
* Original image width.
|
|
74
|
-
* @readonly
|
|
75
|
-
*/
|
|
76
|
-
width?: number;
|
|
77
|
-
/** Image alt text. */
|
|
78
|
-
altText?: string | null;
|
|
79
|
-
/**
|
|
80
|
-
* Image filename.
|
|
81
|
-
* @readonly
|
|
82
|
-
*/
|
|
83
|
-
filename?: string | null;
|
|
84
|
-
}
|
|
85
|
-
interface FocalPoint {
|
|
86
|
-
/** X-coordinate of the focal point. */
|
|
87
|
-
x?: number;
|
|
88
|
-
/** Y-coordinate of the focal point. */
|
|
89
|
-
y?: number;
|
|
90
|
-
/** crop by height */
|
|
91
|
-
height?: number | null;
|
|
92
|
-
/** crop by width */
|
|
93
|
-
width?: number | null;
|
|
94
|
-
}
|
|
95
|
-
interface VideoV2 {
|
|
96
|
-
/** WixMedia ID. */
|
|
97
|
-
id?: string;
|
|
98
|
-
/**
|
|
99
|
-
* Available resolutions for the video, starting with the optimal resolution.
|
|
100
|
-
* @readonly
|
|
101
|
-
* @maxSize 100
|
|
102
|
-
*/
|
|
103
|
-
resolutions?: VideoResolution[];
|
|
104
|
-
/**
|
|
105
|
-
* Video filename.
|
|
106
|
-
* @readonly
|
|
107
|
-
*/
|
|
108
|
-
filename?: string | null;
|
|
109
|
-
}
|
|
110
|
-
interface VideoResolution {
|
|
111
|
-
/** Video URL. */
|
|
112
|
-
url?: string;
|
|
113
|
-
/** Video height. */
|
|
114
|
-
height?: number;
|
|
115
|
-
/** Video width. */
|
|
116
|
-
width?: number;
|
|
117
|
-
/** Video format for example, mp4, hls. */
|
|
118
|
-
format?: string;
|
|
119
|
-
}
|
|
120
59
|
declare enum State {
|
|
121
60
|
/** Retained for backward compatibility. Doesn't affect whether the section is served. */
|
|
122
61
|
DRAFT = "DRAFT",
|
|
@@ -461,13 +400,6 @@ interface QuerySectionsRequest {
|
|
|
461
400
|
query?: CursorQuery;
|
|
462
401
|
/** Compatibility option for existing integrations. Current section responses return the section title. */
|
|
463
402
|
descriptionFieldSet?: DescriptionFieldSetWithLiterals;
|
|
464
|
-
/**
|
|
465
|
-
* Deprecated. Program ID used to scope the query. Use `query.filter` instead.
|
|
466
|
-
* @deprecated
|
|
467
|
-
* @replacedBy wix.common.CursorQuery
|
|
468
|
-
* @targetRemovalDate 2026-06-30
|
|
469
|
-
*/
|
|
470
|
-
programId?: string;
|
|
471
403
|
/**
|
|
472
404
|
* Predefined sets of fields to return.
|
|
473
405
|
* @maxSize 1
|
|
@@ -905,4 +837,4 @@ declare function cloneSection(): __PublicMethodMetaInfo<'POST', {
|
|
|
905
837
|
}, CloneSectionRequest$1, CloneSectionRequest, CloneSectionResponse$1, CloneSectionResponse>;
|
|
906
838
|
declare function moveSection(): __PublicMethodMetaInfo<'PATCH', {}, MoveSectionRequest$1, MoveSectionRequest, MoveSectionResponse$1, MoveSectionResponse>;
|
|
907
839
|
|
|
908
|
-
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
|
|
840
|
+
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 };
|
package/build/cjs/meta.js
CHANGED
|
@@ -156,27 +156,12 @@ function createSection(payload) {
|
|
|
156
156
|
transformFn: import_timestamp.transformSDKTimestampToRESTTimestamp,
|
|
157
157
|
paths: [
|
|
158
158
|
{ path: "section.createdDate" },
|
|
159
|
-
{ path: "section.updatedDate" }
|
|
160
|
-
{ path: "section.description.image.urlExpirationDate" },
|
|
161
|
-
{ path: "section.description.video.urlExpirationDate" },
|
|
162
|
-
{ path: "section.description.video.resolutions.urlExpirationDate" },
|
|
163
|
-
{
|
|
164
|
-
path: "section.description.video.resolutions.poster.urlExpirationDate"
|
|
165
|
-
},
|
|
166
|
-
{ path: "section.description.video.posters.urlExpirationDate" }
|
|
159
|
+
{ path: "section.updatedDate" }
|
|
167
160
|
]
|
|
168
161
|
},
|
|
169
162
|
{
|
|
170
163
|
transformFn: import_float.transformSDKFloatToRESTFloat,
|
|
171
|
-
paths: [
|
|
172
|
-
{ path: "section.ordering" },
|
|
173
|
-
{ path: "section.description.image.focalPoint.x" },
|
|
174
|
-
{ path: "section.description.image.focalPoint.y" },
|
|
175
|
-
{ path: "section.description.video.resolutions.poster.focalPoint.x" },
|
|
176
|
-
{ path: "section.description.video.resolutions.poster.focalPoint.y" },
|
|
177
|
-
{ path: "section.description.video.posters.focalPoint.x" },
|
|
178
|
-
{ path: "section.description.video.posters.focalPoint.y" }
|
|
179
|
-
]
|
|
164
|
+
paths: [{ path: "section.ordering" }]
|
|
180
165
|
}
|
|
181
166
|
]);
|
|
182
167
|
const metadata = {
|
|
@@ -198,33 +183,12 @@ function createSection(payload) {
|
|
|
198
183
|
transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
|
|
199
184
|
paths: [
|
|
200
185
|
{ path: "section.createdDate" },
|
|
201
|
-
{ path: "section.updatedDate" }
|
|
202
|
-
{ path: "section.description.image.urlExpirationDate" },
|
|
203
|
-
{ path: "section.description.video.urlExpirationDate" },
|
|
204
|
-
{
|
|
205
|
-
path: "section.description.video.resolutions.urlExpirationDate"
|
|
206
|
-
},
|
|
207
|
-
{
|
|
208
|
-
path: "section.description.video.resolutions.poster.urlExpirationDate"
|
|
209
|
-
},
|
|
210
|
-
{ path: "section.description.video.posters.urlExpirationDate" }
|
|
186
|
+
{ path: "section.updatedDate" }
|
|
211
187
|
]
|
|
212
188
|
},
|
|
213
189
|
{
|
|
214
190
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
215
|
-
paths: [
|
|
216
|
-
{ path: "section.ordering" },
|
|
217
|
-
{ path: "section.description.image.focalPoint.x" },
|
|
218
|
-
{ path: "section.description.image.focalPoint.y" },
|
|
219
|
-
{
|
|
220
|
-
path: "section.description.video.resolutions.poster.focalPoint.x"
|
|
221
|
-
},
|
|
222
|
-
{
|
|
223
|
-
path: "section.description.video.resolutions.poster.focalPoint.y"
|
|
224
|
-
},
|
|
225
|
-
{ path: "section.description.video.posters.focalPoint.x" },
|
|
226
|
-
{ path: "section.description.video.posters.focalPoint.y" }
|
|
227
|
-
]
|
|
191
|
+
paths: [{ path: "section.ordering" }]
|
|
228
192
|
}
|
|
229
193
|
])
|
|
230
194
|
};
|
|
@@ -239,31 +203,12 @@ function bulkCreateSections(payload) {
|
|
|
239
203
|
transformFn: import_timestamp.transformSDKTimestampToRESTTimestamp,
|
|
240
204
|
paths: [
|
|
241
205
|
{ path: "sections.createdDate" },
|
|
242
|
-
{ path: "sections.updatedDate" }
|
|
243
|
-
{ path: "sections.description.image.urlExpirationDate" },
|
|
244
|
-
{ path: "sections.description.video.urlExpirationDate" },
|
|
245
|
-
{ path: "sections.description.video.resolutions.urlExpirationDate" },
|
|
246
|
-
{
|
|
247
|
-
path: "sections.description.video.resolutions.poster.urlExpirationDate"
|
|
248
|
-
},
|
|
249
|
-
{ path: "sections.description.video.posters.urlExpirationDate" }
|
|
206
|
+
{ path: "sections.updatedDate" }
|
|
250
207
|
]
|
|
251
208
|
},
|
|
252
209
|
{
|
|
253
210
|
transformFn: import_float.transformSDKFloatToRESTFloat,
|
|
254
|
-
paths: [
|
|
255
|
-
{ path: "sections.ordering" },
|
|
256
|
-
{ path: "sections.description.image.focalPoint.x" },
|
|
257
|
-
{ path: "sections.description.image.focalPoint.y" },
|
|
258
|
-
{
|
|
259
|
-
path: "sections.description.video.resolutions.poster.focalPoint.x"
|
|
260
|
-
},
|
|
261
|
-
{
|
|
262
|
-
path: "sections.description.video.resolutions.poster.focalPoint.y"
|
|
263
|
-
},
|
|
264
|
-
{ path: "sections.description.video.posters.focalPoint.x" },
|
|
265
|
-
{ path: "sections.description.video.posters.focalPoint.y" }
|
|
266
|
-
]
|
|
211
|
+
paths: [{ path: "sections.ordering" }]
|
|
267
212
|
}
|
|
268
213
|
]);
|
|
269
214
|
const metadata = {
|
|
@@ -285,35 +230,12 @@ function bulkCreateSections(payload) {
|
|
|
285
230
|
transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
|
|
286
231
|
paths: [
|
|
287
232
|
{ path: "results.item.createdDate" },
|
|
288
|
-
{ path: "results.item.updatedDate" }
|
|
289
|
-
{ path: "results.item.description.image.urlExpirationDate" },
|
|
290
|
-
{ path: "results.item.description.video.urlExpirationDate" },
|
|
291
|
-
{
|
|
292
|
-
path: "results.item.description.video.resolutions.urlExpirationDate"
|
|
293
|
-
},
|
|
294
|
-
{
|
|
295
|
-
path: "results.item.description.video.resolutions.poster.urlExpirationDate"
|
|
296
|
-
},
|
|
297
|
-
{
|
|
298
|
-
path: "results.item.description.video.posters.urlExpirationDate"
|
|
299
|
-
}
|
|
233
|
+
{ path: "results.item.updatedDate" }
|
|
300
234
|
]
|
|
301
235
|
},
|
|
302
236
|
{
|
|
303
237
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
304
|
-
paths: [
|
|
305
|
-
{ path: "results.item.ordering" },
|
|
306
|
-
{ path: "results.item.description.image.focalPoint.x" },
|
|
307
|
-
{ path: "results.item.description.image.focalPoint.y" },
|
|
308
|
-
{
|
|
309
|
-
path: "results.item.description.video.resolutions.poster.focalPoint.x"
|
|
310
|
-
},
|
|
311
|
-
{
|
|
312
|
-
path: "results.item.description.video.resolutions.poster.focalPoint.y"
|
|
313
|
-
},
|
|
314
|
-
{ path: "results.item.description.video.posters.focalPoint.x" },
|
|
315
|
-
{ path: "results.item.description.video.posters.focalPoint.y" }
|
|
316
|
-
]
|
|
238
|
+
paths: [{ path: "results.item.ordering" }]
|
|
317
239
|
}
|
|
318
240
|
])
|
|
319
241
|
};
|
|
@@ -342,33 +264,12 @@ function getSection(payload) {
|
|
|
342
264
|
transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
|
|
343
265
|
paths: [
|
|
344
266
|
{ path: "section.createdDate" },
|
|
345
|
-
{ path: "section.updatedDate" }
|
|
346
|
-
{ path: "section.description.image.urlExpirationDate" },
|
|
347
|
-
{ path: "section.description.video.urlExpirationDate" },
|
|
348
|
-
{
|
|
349
|
-
path: "section.description.video.resolutions.urlExpirationDate"
|
|
350
|
-
},
|
|
351
|
-
{
|
|
352
|
-
path: "section.description.video.resolutions.poster.urlExpirationDate"
|
|
353
|
-
},
|
|
354
|
-
{ path: "section.description.video.posters.urlExpirationDate" }
|
|
267
|
+
{ path: "section.updatedDate" }
|
|
355
268
|
]
|
|
356
269
|
},
|
|
357
270
|
{
|
|
358
271
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
359
|
-
paths: [
|
|
360
|
-
{ path: "section.ordering" },
|
|
361
|
-
{ path: "section.description.image.focalPoint.x" },
|
|
362
|
-
{ path: "section.description.image.focalPoint.y" },
|
|
363
|
-
{
|
|
364
|
-
path: "section.description.video.resolutions.poster.focalPoint.x"
|
|
365
|
-
},
|
|
366
|
-
{
|
|
367
|
-
path: "section.description.video.resolutions.poster.focalPoint.y"
|
|
368
|
-
},
|
|
369
|
-
{ path: "section.description.video.posters.focalPoint.x" },
|
|
370
|
-
{ path: "section.description.video.posters.focalPoint.y" }
|
|
371
|
-
]
|
|
272
|
+
paths: [{ path: "section.ordering" }]
|
|
372
273
|
}
|
|
373
274
|
])
|
|
374
275
|
};
|
|
@@ -387,27 +288,12 @@ function updateSection(payload) {
|
|
|
387
288
|
transformFn: import_timestamp.transformSDKTimestampToRESTTimestamp,
|
|
388
289
|
paths: [
|
|
389
290
|
{ path: "section.createdDate" },
|
|
390
|
-
{ path: "section.updatedDate" }
|
|
391
|
-
{ path: "section.description.image.urlExpirationDate" },
|
|
392
|
-
{ path: "section.description.video.urlExpirationDate" },
|
|
393
|
-
{ path: "section.description.video.resolutions.urlExpirationDate" },
|
|
394
|
-
{
|
|
395
|
-
path: "section.description.video.resolutions.poster.urlExpirationDate"
|
|
396
|
-
},
|
|
397
|
-
{ path: "section.description.video.posters.urlExpirationDate" }
|
|
291
|
+
{ path: "section.updatedDate" }
|
|
398
292
|
]
|
|
399
293
|
},
|
|
400
294
|
{
|
|
401
295
|
transformFn: import_float.transformSDKFloatToRESTFloat,
|
|
402
|
-
paths: [
|
|
403
|
-
{ path: "section.ordering" },
|
|
404
|
-
{ path: "section.description.image.focalPoint.x" },
|
|
405
|
-
{ path: "section.description.image.focalPoint.y" },
|
|
406
|
-
{ path: "section.description.video.resolutions.poster.focalPoint.x" },
|
|
407
|
-
{ path: "section.description.video.resolutions.poster.focalPoint.y" },
|
|
408
|
-
{ path: "section.description.video.posters.focalPoint.x" },
|
|
409
|
-
{ path: "section.description.video.posters.focalPoint.y" }
|
|
410
|
-
]
|
|
296
|
+
paths: [{ path: "section.ordering" }]
|
|
411
297
|
}
|
|
412
298
|
]);
|
|
413
299
|
const metadata = {
|
|
@@ -429,33 +315,12 @@ function updateSection(payload) {
|
|
|
429
315
|
transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
|
|
430
316
|
paths: [
|
|
431
317
|
{ path: "section.createdDate" },
|
|
432
|
-
{ path: "section.updatedDate" }
|
|
433
|
-
{ path: "section.description.image.urlExpirationDate" },
|
|
434
|
-
{ path: "section.description.video.urlExpirationDate" },
|
|
435
|
-
{
|
|
436
|
-
path: "section.description.video.resolutions.urlExpirationDate"
|
|
437
|
-
},
|
|
438
|
-
{
|
|
439
|
-
path: "section.description.video.resolutions.poster.urlExpirationDate"
|
|
440
|
-
},
|
|
441
|
-
{ path: "section.description.video.posters.urlExpirationDate" }
|
|
318
|
+
{ path: "section.updatedDate" }
|
|
442
319
|
]
|
|
443
320
|
},
|
|
444
321
|
{
|
|
445
322
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
446
|
-
paths: [
|
|
447
|
-
{ path: "section.ordering" },
|
|
448
|
-
{ path: "section.description.image.focalPoint.x" },
|
|
449
|
-
{ path: "section.description.image.focalPoint.y" },
|
|
450
|
-
{
|
|
451
|
-
path: "section.description.video.resolutions.poster.focalPoint.x"
|
|
452
|
-
},
|
|
453
|
-
{
|
|
454
|
-
path: "section.description.video.resolutions.poster.focalPoint.y"
|
|
455
|
-
},
|
|
456
|
-
{ path: "section.description.video.posters.focalPoint.x" },
|
|
457
|
-
{ path: "section.description.video.posters.focalPoint.y" }
|
|
458
|
-
]
|
|
323
|
+
paths: [{ path: "section.ordering" }]
|
|
459
324
|
}
|
|
460
325
|
])
|
|
461
326
|
};
|
|
@@ -514,33 +379,12 @@ function querySections(payload) {
|
|
|
514
379
|
transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
|
|
515
380
|
paths: [
|
|
516
381
|
{ path: "sections.createdDate" },
|
|
517
|
-
{ path: "sections.updatedDate" }
|
|
518
|
-
{ path: "sections.description.image.urlExpirationDate" },
|
|
519
|
-
{ path: "sections.description.video.urlExpirationDate" },
|
|
520
|
-
{
|
|
521
|
-
path: "sections.description.video.resolutions.urlExpirationDate"
|
|
522
|
-
},
|
|
523
|
-
{
|
|
524
|
-
path: "sections.description.video.resolutions.poster.urlExpirationDate"
|
|
525
|
-
},
|
|
526
|
-
{ path: "sections.description.video.posters.urlExpirationDate" }
|
|
382
|
+
{ path: "sections.updatedDate" }
|
|
527
383
|
]
|
|
528
384
|
},
|
|
529
385
|
{
|
|
530
386
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
531
|
-
paths: [
|
|
532
|
-
{ path: "sections.ordering" },
|
|
533
|
-
{ path: "sections.description.image.focalPoint.x" },
|
|
534
|
-
{ path: "sections.description.image.focalPoint.y" },
|
|
535
|
-
{
|
|
536
|
-
path: "sections.description.video.resolutions.poster.focalPoint.x"
|
|
537
|
-
},
|
|
538
|
-
{
|
|
539
|
-
path: "sections.description.video.resolutions.poster.focalPoint.y"
|
|
540
|
-
},
|
|
541
|
-
{ path: "sections.description.video.posters.focalPoint.x" },
|
|
542
|
-
{ path: "sections.description.video.posters.focalPoint.y" }
|
|
543
|
-
]
|
|
387
|
+
paths: [{ path: "sections.ordering" }]
|
|
544
388
|
}
|
|
545
389
|
])
|
|
546
390
|
};
|
|
@@ -569,33 +413,12 @@ function listSections(payload) {
|
|
|
569
413
|
transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
|
|
570
414
|
paths: [
|
|
571
415
|
{ path: "sections.createdDate" },
|
|
572
|
-
{ path: "sections.updatedDate" }
|
|
573
|
-
{ path: "sections.description.image.urlExpirationDate" },
|
|
574
|
-
{ path: "sections.description.video.urlExpirationDate" },
|
|
575
|
-
{
|
|
576
|
-
path: "sections.description.video.resolutions.urlExpirationDate"
|
|
577
|
-
},
|
|
578
|
-
{
|
|
579
|
-
path: "sections.description.video.resolutions.poster.urlExpirationDate"
|
|
580
|
-
},
|
|
581
|
-
{ path: "sections.description.video.posters.urlExpirationDate" }
|
|
416
|
+
{ path: "sections.updatedDate" }
|
|
582
417
|
]
|
|
583
418
|
},
|
|
584
419
|
{
|
|
585
420
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
586
|
-
paths: [
|
|
587
|
-
{ path: "sections.ordering" },
|
|
588
|
-
{ path: "sections.description.image.focalPoint.x" },
|
|
589
|
-
{ path: "sections.description.image.focalPoint.y" },
|
|
590
|
-
{
|
|
591
|
-
path: "sections.description.video.resolutions.poster.focalPoint.x"
|
|
592
|
-
},
|
|
593
|
-
{
|
|
594
|
-
path: "sections.description.video.resolutions.poster.focalPoint.y"
|
|
595
|
-
},
|
|
596
|
-
{ path: "sections.description.video.posters.focalPoint.x" },
|
|
597
|
-
{ path: "sections.description.video.posters.focalPoint.y" }
|
|
598
|
-
]
|
|
421
|
+
paths: [{ path: "sections.ordering" }]
|
|
599
422
|
}
|
|
600
423
|
])
|
|
601
424
|
};
|
|
@@ -624,33 +447,12 @@ function cloneSection(payload) {
|
|
|
624
447
|
transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
|
|
625
448
|
paths: [
|
|
626
449
|
{ path: "section.createdDate" },
|
|
627
|
-
{ path: "section.updatedDate" }
|
|
628
|
-
{ path: "section.description.image.urlExpirationDate" },
|
|
629
|
-
{ path: "section.description.video.urlExpirationDate" },
|
|
630
|
-
{
|
|
631
|
-
path: "section.description.video.resolutions.urlExpirationDate"
|
|
632
|
-
},
|
|
633
|
-
{
|
|
634
|
-
path: "section.description.video.resolutions.poster.urlExpirationDate"
|
|
635
|
-
},
|
|
636
|
-
{ path: "section.description.video.posters.urlExpirationDate" }
|
|
450
|
+
{ path: "section.updatedDate" }
|
|
637
451
|
]
|
|
638
452
|
},
|
|
639
453
|
{
|
|
640
454
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
641
|
-
paths: [
|
|
642
|
-
{ path: "section.ordering" },
|
|
643
|
-
{ path: "section.description.image.focalPoint.x" },
|
|
644
|
-
{ path: "section.description.image.focalPoint.y" },
|
|
645
|
-
{
|
|
646
|
-
path: "section.description.video.resolutions.poster.focalPoint.x"
|
|
647
|
-
},
|
|
648
|
-
{
|
|
649
|
-
path: "section.description.video.resolutions.poster.focalPoint.y"
|
|
650
|
-
},
|
|
651
|
-
{ path: "section.description.video.posters.focalPoint.x" },
|
|
652
|
-
{ path: "section.description.video.posters.focalPoint.y" }
|
|
653
|
-
]
|
|
455
|
+
paths: [{ path: "section.ordering" }]
|
|
654
456
|
}
|
|
655
457
|
])
|
|
656
458
|
};
|
|
@@ -679,33 +481,12 @@ function moveSection(payload) {
|
|
|
679
481
|
transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
|
|
680
482
|
paths: [
|
|
681
483
|
{ path: "section.createdDate" },
|
|
682
|
-
{ path: "section.updatedDate" }
|
|
683
|
-
{ path: "section.description.image.urlExpirationDate" },
|
|
684
|
-
{ path: "section.description.video.urlExpirationDate" },
|
|
685
|
-
{
|
|
686
|
-
path: "section.description.video.resolutions.urlExpirationDate"
|
|
687
|
-
},
|
|
688
|
-
{
|
|
689
|
-
path: "section.description.video.resolutions.poster.urlExpirationDate"
|
|
690
|
-
},
|
|
691
|
-
{ path: "section.description.video.posters.urlExpirationDate" }
|
|
484
|
+
{ path: "section.updatedDate" }
|
|
692
485
|
]
|
|
693
486
|
},
|
|
694
487
|
{
|
|
695
488
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
696
|
-
paths: [
|
|
697
|
-
{ path: "section.ordering" },
|
|
698
|
-
{ path: "section.description.image.focalPoint.x" },
|
|
699
|
-
{ path: "section.description.image.focalPoint.y" },
|
|
700
|
-
{
|
|
701
|
-
path: "section.description.video.resolutions.poster.focalPoint.x"
|
|
702
|
-
},
|
|
703
|
-
{
|
|
704
|
-
path: "section.description.video.resolutions.poster.focalPoint.y"
|
|
705
|
-
},
|
|
706
|
-
{ path: "section.description.video.posters.focalPoint.x" },
|
|
707
|
-
{ path: "section.description.video.posters.focalPoint.y" }
|
|
708
|
-
]
|
|
489
|
+
paths: [{ path: "section.ordering" }]
|
|
709
490
|
}
|
|
710
491
|
])
|
|
711
492
|
};
|