@wix/auto_sdk_online-programs_sections 1.0.25 → 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
@@ -58,233 +58,9 @@ interface Section {
58
58
  /** Custom field data for the section. */
59
59
  extendedFields?: ExtendedFields;
60
60
  }
61
- interface Description extends DescriptionMediaOneOf {
62
- /**
63
- * @internal
64
- * @deprecated
65
- * @targetRemovalDate 2025-05-10
66
- */
67
- image?: Image;
68
- /**
69
- * @internal
70
- * @deprecated
71
- * @targetRemovalDate 2025-05-10
72
- */
73
- video?: VideoV2;
61
+ interface Description {
74
62
  /** @maxLength 500 */
75
63
  title?: string;
76
- /**
77
- * @internal
78
- * @maxLength 10000000
79
- * @deprecated
80
- * @targetRemovalDate 2026-06-25
81
- */
82
- details?: string | null;
83
- }
84
- /** @oneof */
85
- interface DescriptionMediaOneOf {
86
- /**
87
- * @internal
88
- * @deprecated
89
- * @targetRemovalDate 2025-05-10
90
- */
91
- image?: Image;
92
- /**
93
- * @internal
94
- * @deprecated
95
- * @targetRemovalDate 2025-05-10
96
- */
97
- video?: VideoV2;
98
- }
99
- interface Image {
100
- /** WixMedia image ID. */
101
- id?: string;
102
- /** Image URL. */
103
- url?: string;
104
- /**
105
- * Original image height.
106
- * @readonly
107
- */
108
- height?: number;
109
- /**
110
- * Original image width.
111
- * @readonly
112
- */
113
- width?: number;
114
- /** Image alt text. */
115
- altText?: string | null;
116
- /**
117
- * Image URL expiration date (when relevant).
118
- * @internal
119
- * @readonly
120
- */
121
- urlExpirationDate?: Date | null;
122
- /**
123
- * Image filename.
124
- * @readonly
125
- */
126
- filename?: string | null;
127
- /**
128
- * Image size in bytes.
129
- * @internal
130
- * @readonly
131
- * @format DECIMAL_VALUE
132
- */
133
- sizeInBytes?: string | null;
134
- /**
135
- * Focal point of the image.
136
- * @internal
137
- */
138
- focalPoint?: FocalPoint;
139
- }
140
- interface FocalPoint {
141
- /** X-coordinate of the focal point. */
142
- x?: number;
143
- /** Y-coordinate of the focal point. */
144
- y?: number;
145
- /** crop by height */
146
- height?: number | null;
147
- /** crop by width */
148
- width?: number | null;
149
- }
150
- interface VideoV2 {
151
- /** WixMedia ID. */
152
- id?: string;
153
- /**
154
- * Original video URL.
155
- * @internal
156
- */
157
- url?: string;
158
- /**
159
- * Available resolutions for the video, starting with the optimal resolution.
160
- * @readonly
161
- * @maxSize 100
162
- */
163
- resolutions?: VideoResolution[];
164
- /**
165
- * Video filename.
166
- * @readonly
167
- */
168
- filename?: string | null;
169
- /**
170
- * Video posters.
171
- * @internal
172
- * @readonly
173
- */
174
- posters?: Image[];
175
- /**
176
- * Original video size in bytes.
177
- * @internal
178
- * @readonly
179
- * @format DECIMAL_VALUE
180
- */
181
- sizeInBytes?: string | null;
182
- /**
183
- * Video URL expiration date (when relevant).
184
- * @internal
185
- * @readonly
186
- */
187
- urlExpirationDate?: Date | null;
188
- /**
189
- * Original video duration in milliseconds.
190
- * @internal
191
- * @readonly
192
- */
193
- durationInMilliseconds?: number | null;
194
- /**
195
- * A short title for the video. will be used for SEO purposes.
196
- * @internal
197
- * @maxLength 300
198
- */
199
- title?: string | null;
200
- /**
201
- * A long description for the video. will be used for SEO purposes.
202
- * @internal
203
- * @maxLength 2000
204
- */
205
- description?: string | null;
206
- /**
207
- * Original video height.
208
- * @internal
209
- * @readonly
210
- */
211
- height?: number | null;
212
- /**
213
- * Original video width.
214
- * @internal
215
- * @readonly
216
- */
217
- width?: number | null;
218
- }
219
- interface VideoResolution {
220
- /** Video URL. */
221
- url?: string;
222
- /** Video height. */
223
- height?: number;
224
- /** Video width. */
225
- width?: number;
226
- /**
227
- * Deprecated. Use the `posters` property in the parent entity instead.
228
- * @internal
229
- * @deprecated
230
- */
231
- poster?: Image;
232
- /** Video format for example, mp4, hls. */
233
- format?: string;
234
- /**
235
- * Deprecated. Use the `urlExpirationDate` property in the parent entity instead.
236
- * @internal
237
- * @deprecated
238
- */
239
- urlExpirationDate?: Date | null;
240
- /**
241
- * Deprecated. Use the `sizeInBytes` property in the parent entity instead. Size cannot be provided per resolution.
242
- * @internal
243
- * @format DECIMAL_VALUE
244
- * @deprecated
245
- */
246
- sizeInBytes?: string | null;
247
- /**
248
- * Video quality. For example: 480p, 720p.
249
- * @internal
250
- */
251
- quality?: string | null;
252
- /**
253
- * Video filename.
254
- * @internal
255
- */
256
- filename?: string | null;
257
- /**
258
- * Video duration in seconds.
259
- * @internal
260
- * @readonly
261
- * @deprecated Video duration in seconds.
262
- * @replacedBy duration_in_milliseconds
263
- * @targetRemovalDate 2024-08-01
264
- */
265
- durationInSeconds?: number | null;
266
- /**
267
- * Video duration in milliseconds.
268
- * @internal
269
- * @readonly
270
- */
271
- durationInMilliseconds?: number | null;
272
- /**
273
- * When true, this is a protected asset, and calling the URL will return a 403 error.
274
- * In order to access private assets, make a request to:
275
- * `GenerateFileDownloadUrl` with the WixMedia id and specify the asset_key in the request
276
- * @internal
277
- * @readonly
278
- */
279
- private?: boolean | null;
280
- /**
281
- * Key to identify the video resolution's relationship to the original media in WixMedia.
282
- * Can be used to request a download for the specific video resolution.
283
- * For example: 480p.mp4, 720p.mp4, 1080p.mp4, trailer-720p.mp4, clip-720p.mp4
284
- * @internal
285
- * @readonly
286
- */
287
- assetKey?: string | null;
288
64
  }
289
65
  declare enum State {
290
66
  /** Retained for backward compatibility. Doesn't affect whether the section is served. */
@@ -1149,4 +925,4 @@ declare function cloneSection(): __PublicMethodMetaInfo<'POST', {
1149
925
  }, CloneSectionRequest$1, CloneSectionRequest, CloneSectionResponse$1, CloneSectionResponse>;
1150
926
  declare function moveSection(): __PublicMethodMetaInfo<'PATCH', {}, MoveSectionRequest$1, MoveSectionRequest, MoveSectionResponse$1, MoveSectionResponse>;
1151
927
 
1152
- 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/auto_sdk_online-programs_sections",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -50,5 +50,5 @@
50
50
  "fqdn": "wix.online_programs.v3.section"
51
51
  }
52
52
  },
53
- "falconPackageHash": "66db95a29140cfc1ca24df89067a5f200af16c37a72ee98b830c4187"
53
+ "falconPackageHash": "4de8e4248cebf479cf7f243a9a3bdd5754255d7881e9e3f507bf7b1b"
54
54
  }