@wix/blog 1.0.117 → 1.0.119
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/src/blog-v3-category.types.d.ts +60 -32
- package/build/cjs/src/blog-v3-category.types.js.map +1 -1
- package/build/cjs/src/blog-v3-category.universal.d.ts +51 -34
- package/build/cjs/src/blog-v3-category.universal.js.map +1 -1
- package/build/cjs/src/blog-v3-post.public.d.ts +1 -1
- package/build/cjs/src/blog-v3-post.types.d.ts +107 -29
- package/build/cjs/src/blog-v3-post.types.js.map +1 -1
- package/build/cjs/src/blog-v3-post.universal.d.ts +69 -10
- package/build/cjs/src/blog-v3-post.universal.js.map +1 -1
- package/build/cjs/src/blog-v3-tag.http.d.ts +1 -1
- package/build/cjs/src/blog-v3-tag.http.js +1 -1
- package/build/cjs/src/blog-v3-tag.http.js.map +1 -1
- package/build/cjs/src/blog-v3-tag.types.d.ts +57 -25
- package/build/cjs/src/blog-v3-tag.types.js.map +1 -1
- package/build/cjs/src/blog-v3-tag.universal.d.ts +70 -30
- package/build/cjs/src/blog-v3-tag.universal.js +1 -1
- package/build/cjs/src/blog-v3-tag.universal.js.map +1 -1
- package/build/es/src/blog-v3-category.types.d.ts +60 -32
- package/build/es/src/blog-v3-category.types.js.map +1 -1
- package/build/es/src/blog-v3-category.universal.d.ts +51 -34
- package/build/es/src/blog-v3-category.universal.js.map +1 -1
- package/build/es/src/blog-v3-post.public.d.ts +1 -1
- package/build/es/src/blog-v3-post.types.d.ts +107 -29
- package/build/es/src/blog-v3-post.types.js.map +1 -1
- package/build/es/src/blog-v3-post.universal.d.ts +69 -10
- package/build/es/src/blog-v3-post.universal.js.map +1 -1
- package/build/es/src/blog-v3-tag.http.d.ts +1 -1
- package/build/es/src/blog-v3-tag.http.js +1 -1
- package/build/es/src/blog-v3-tag.http.js.map +1 -1
- package/build/es/src/blog-v3-tag.types.d.ts +57 -25
- package/build/es/src/blog-v3-tag.types.js.map +1 -1
- package/build/es/src/blog-v3-tag.universal.d.ts +70 -30
- package/build/es/src/blog-v3-tag.universal.js +1 -1
- package/build/es/src/blog-v3-tag.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -122,9 +122,9 @@ export interface CreateCategoryRequest {
|
|
|
122
122
|
/** Category info. */
|
|
123
123
|
category: Category;
|
|
124
124
|
/**
|
|
125
|
-
* List of category fields to be included if entities are present
|
|
126
|
-
* Base fieldset
|
|
127
|
-
*
|
|
125
|
+
* List of category fields to be included in the response if the entities are present.
|
|
126
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
127
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
128
128
|
*/
|
|
129
129
|
fieldsets?: Field[];
|
|
130
130
|
}
|
|
@@ -150,9 +150,9 @@ export interface BulkCreateCategoriesRequest {
|
|
|
150
150
|
/** Whether to return the full created category entities in the response. */
|
|
151
151
|
returnFullEntity?: boolean;
|
|
152
152
|
/**
|
|
153
|
-
* List of category fields to be included if entities are present
|
|
154
|
-
* Base fieldset
|
|
155
|
-
*
|
|
153
|
+
* List of category fields to be included in the response if the entities are present.
|
|
154
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
155
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
156
156
|
*/
|
|
157
157
|
fieldsets?: Field[];
|
|
158
158
|
}
|
|
@@ -197,9 +197,9 @@ export interface UpdateCategoryRequest {
|
|
|
197
197
|
/** Field mask of fields to update. */
|
|
198
198
|
fieldMask?: string[];
|
|
199
199
|
/**
|
|
200
|
-
* List of category fields to be included if entities are present
|
|
201
|
-
* Base fieldset
|
|
202
|
-
*
|
|
200
|
+
* List of category fields to be included in the response if the entities are present.
|
|
201
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
202
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
203
203
|
*/
|
|
204
204
|
fieldsets?: Field[];
|
|
205
205
|
}
|
|
@@ -211,9 +211,9 @@ export interface GetCategoryRequest {
|
|
|
211
211
|
/** Category ID. */
|
|
212
212
|
categoryId: string;
|
|
213
213
|
/**
|
|
214
|
-
* List of category fields to be included if entities are present
|
|
215
|
-
* Base fieldset
|
|
216
|
-
*
|
|
214
|
+
* List of category fields to be included in the response if the entities are present.
|
|
215
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
216
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
217
217
|
*/
|
|
218
218
|
fieldsets?: Field[];
|
|
219
219
|
}
|
|
@@ -225,9 +225,9 @@ export interface GetCategoryBySlugRequest {
|
|
|
225
225
|
/** Slug of the category to retrieve. */
|
|
226
226
|
slug: string;
|
|
227
227
|
/**
|
|
228
|
-
* List of category fields to be included if entities are present
|
|
229
|
-
* Base fieldset
|
|
230
|
-
*
|
|
228
|
+
* List of category fields to be included in the response if the entities are present.
|
|
229
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
230
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
231
231
|
*/
|
|
232
232
|
fieldsets?: Field[];
|
|
233
233
|
}
|
|
@@ -239,9 +239,9 @@ export interface ListCategoriesRequest {
|
|
|
239
239
|
/** Pagination options. */
|
|
240
240
|
paging?: BlogPaging;
|
|
241
241
|
/**
|
|
242
|
-
* List of category fields to be included if entities are present
|
|
243
|
-
* Base fieldset
|
|
244
|
-
*
|
|
242
|
+
* List of category fields to be included in the response if the entities are present.
|
|
243
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
244
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
245
245
|
*/
|
|
246
246
|
fieldsets?: Field[];
|
|
247
247
|
}
|
|
@@ -276,23 +276,35 @@ export interface MetaData {
|
|
|
276
276
|
cursor?: string | null;
|
|
277
277
|
}
|
|
278
278
|
export interface QueryCategoriesRequest {
|
|
279
|
-
/** Pagination options. */
|
|
280
|
-
paging?: BlogPaging;
|
|
281
279
|
/**
|
|
282
|
-
*
|
|
283
|
-
*
|
|
280
|
+
* __Deprecated.__ Use `query` instead.
|
|
281
|
+
* This parameter will be removed on June 30, 2023.
|
|
282
|
+
*
|
|
283
|
+
* Pagination options.
|
|
284
284
|
*/
|
|
285
|
+
paging?: BlogPaging;
|
|
286
|
+
/** For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/wix-blog/blog/filter-and-sort). */
|
|
285
287
|
filter?: Record<string, any> | null;
|
|
286
|
-
/**
|
|
288
|
+
/**
|
|
289
|
+
* __Deprecated.__ Use `query` instead.
|
|
290
|
+
* This parameter will be removed on June 3, 2023.
|
|
291
|
+
*
|
|
292
|
+
* Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/wix-blog/blog/filter-and-sort).
|
|
293
|
+
*/
|
|
287
294
|
sort?: Sorting[];
|
|
288
|
-
/**
|
|
295
|
+
/**
|
|
296
|
+
* __Deprecated.__ Use `fieldsets` instead.
|
|
297
|
+
* This parameter will be removed on June 30, 2023.
|
|
298
|
+
*
|
|
299
|
+
* List of category fields to be included in the response.
|
|
300
|
+
*/
|
|
289
301
|
fieldsToInclude?: Field[];
|
|
290
302
|
/** Query options. */
|
|
291
303
|
query?: PlatformQuery;
|
|
292
304
|
/**
|
|
293
|
-
* List of category fields to be included if entities are present
|
|
294
|
-
* Base fieldset
|
|
295
|
-
*
|
|
305
|
+
* List of category fields to be included in the response if the entities are present.
|
|
306
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
307
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
296
308
|
*/
|
|
297
309
|
fieldsets?: Field[];
|
|
298
310
|
}
|
|
@@ -354,7 +366,12 @@ export interface CursorPaging {
|
|
|
354
366
|
export interface QueryCategoriesResponse {
|
|
355
367
|
/** List of categories. */
|
|
356
368
|
categories?: Category[];
|
|
357
|
-
/**
|
|
369
|
+
/**
|
|
370
|
+
* __Deprecated.__ Use `pagingMetadata` instead.
|
|
371
|
+
* This property will be removed on June 30, 2023.
|
|
372
|
+
*
|
|
373
|
+
* Details on the paged set of results returned.
|
|
374
|
+
*/
|
|
358
375
|
metaData?: MetaData;
|
|
359
376
|
/** Details on the paged set of results returned. */
|
|
360
377
|
pagingMetadata?: PagingMetadataV2;
|
|
@@ -393,9 +410,9 @@ export interface DeleteCategoryResponse {
|
|
|
393
410
|
export declare function createCategory(category: Category, options?: CreateCategoryOptions): Promise<CreateCategoryResponse>;
|
|
394
411
|
export interface CreateCategoryOptions {
|
|
395
412
|
/**
|
|
396
|
-
* List of category fields to be included if entities are present
|
|
397
|
-
* Base fieldset
|
|
398
|
-
*
|
|
413
|
+
* List of category fields to be included in the response if the entities are present.
|
|
414
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
415
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
399
416
|
*/
|
|
400
417
|
fieldsets?: Field[];
|
|
401
418
|
}
|
|
@@ -474,9 +491,9 @@ export interface UpdateCategoryOptions {
|
|
|
474
491
|
/** Field mask of fields to update. */
|
|
475
492
|
fieldMask?: string[];
|
|
476
493
|
/**
|
|
477
|
-
* List of category fields to be included if entities are present
|
|
478
|
-
* Base fieldset
|
|
479
|
-
*
|
|
494
|
+
* List of category fields to be included in the response if the entities are present.
|
|
495
|
+
* Base default fieldset returns all core category properties (all properties that are not a supported fieldset value).
|
|
496
|
+
* For example, when `URL` fieldset is selected, returned category will include the set of base properties and the category's preview url.
|
|
480
497
|
*/
|
|
481
498
|
fieldsets?: Field[];
|
|
482
499
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"blog-v3-category.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-category.universal.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EACL,UAAU,EACV,cAAc,EACd,qCAAqC,GACtC,MAAM,yBAAyB,CAAC;AAEjC,OAAO,KAAK,2BAA2B,MAAM,yBAAyB,CAAC;AACvE,aAAa;AACb,OAAO,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAE7E,IAAI,SAAS,GAAG,KAAK,CAAC;AAEtB,SAAS,KAAK,CAAC,GAAG,IAAW;IAC3B,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;AACpC,CAAC;AAED,SAAS,SAAS,CAAC,GAAQ;IACzB,OAAO,GAAG,CAAC;AACb,CAAC;AAED,MAAM,CAAC,MAAM,OAAO,GAAG;IACrB,cAAc,EAAE;QACd,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,SAAS,GAAG,KAAK,CAAC;KAC/B;CACF,CAAC;AACF,MAAM,aAAa,GAAG,GAAG,CAAC;AAC1B,MAAM,eAAe,GAAG,GAAG,CAAC;AAqI5B,MAAM,CAAN,IAAY,KAWX;AAXD,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,6BAA6B;IAC7B,oBAAW,CAAA;IACX;;;OAGG;IACH,oCAA2B,CAAA;IAC3B,yBAAyB;IACzB,oBAAW,CAAA;AACb,CAAC,EAXW,KAAK,KAAL,KAAK,QAWhB;
|
|
1
|
+
{"version":3,"file":"blog-v3-category.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-category.universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -8,4 +8,4 @@ export declare function getPostMetrics(httpClient: HttpClient): (postId: string)
|
|
|
8
8
|
export declare function queryPostCountStats(httpClient: HttpClient): (options?: QueryPostCountStatsOptions | undefined) => Promise<import("./blog-v3-post.universal").QueryPostCountStatsResponse>;
|
|
9
9
|
export declare function getTotalPosts(httpClient: HttpClient): (options?: GetTotalPostsOptions | undefined) => Promise<import("./blog-v3-post.universal").GetTotalPostsResponse>;
|
|
10
10
|
export { NodeType, WidthType, PluginContainerDataAlignment, Type, Target, TextAlignment, LineStyle, Width, Alignment, ViewMode, LayoutType, Orientation, Crop, ThumbnailsAlignment, Source, MapType, ViewRole, VoteRole, PollLayoutType, PollLayoutDirection, BackgroundType, DecorationType, FontType, AppType, InitialExpandedItems, Direction, VerticalAlignment, NullValue, ModerationStatusStatus, GetPostTemplatesSort, Origin, Status, Field, PostFieldField, GetPostsSort, SortOrder, QueryPublicationsCountStatsRequestOrder, Order, } from './blog-v3-post.universal';
|
|
11
|
-
export { Post, CoverMedia, CoverMediaMediaOneOf, PostCountInfo, Metrics, SeoSchema, Tag, Settings, RichContent, Node, NodeDataOneOf, NodeStyle, ButtonData, Border, Colors, PluginContainerData, PluginContainerDataWidth, PluginContainerDataWidthDataOneOf, Spoiler, Height, Styles, Link, LinkDataOneOf, Rel, CodeBlockData, TextStyle, DividerData, FileData, FileSource, FileSourceDataOneOf, PDFSettings, GalleryData, V1Media, Image, Video, Item, ItemDataOneOf, GalleryOptions, Layout, ItemStyle, Thumbnails, GIFData, GIF, HeadingData, HTMLData, HTMLDataDataOneOf, ImageData, LinkPreviewData, MapData, MapSettings, ParagraphData, PollData, Permissions, Option, PollSettings, PollLayout, OptionLayout, Gradient, Background, BackgroundBackgroundOneOf, PollDesign, OptionDesign, Poll, PollDataLayout, Design, TextData, Decoration, DecorationDataOneOf, AnchorData, ColorData, LinkData, MentionData, FontSizeData, AppEmbedData, AppEmbedDataAppDataOneOf, BookingData, EventData, VideoData, EmbedData, Oembed, CollapsibleListData, TableData, Dimensions, TableCellData, CellStyle, BorderColors, ListValue, AudioData, OrderedListData, BulletedListData, BlockquoteData, Metadata, DocumentStyle, TextNodeStyle, ModerationDetails, Media, MediaMediaOneOf, WixMedia, VideoResolution, EmbedMedia, EmbedThumbnail, EmbedVideo, ListTemplatesRequest, BlogPaging, ListTemplatesResponse, MetaData, Category, GetTemplateRequest, GetTemplateResponse, CreateDraftPostFromTemplateRequest, CreateDraftPostFromTemplateResponse, DraftPost, DraftPostTranslation, GetTotalLikesPerMemberRequest, GetTotalLikesPerMemberResponse, PostLiked, PostLikedInitiatorOneOf, PostUnliked, PostUnlikedInitiatorOneOf, PostCountersUpdated, PostCountersUpdatedInitiatorOneOf, PostOwnerChanged, GetPostRequest, GetPostResponse, GetPostBySlugRequest, GetPostBySlugResponse, ListPostsRequest, ListPostsResponse, QueryPostsRequest, Sorting, PlatformQuery, PlatformQueryPagingMethodOneOf, Paging, CursorPaging, QueryPostsResponse, PagingMetadataV2, Cursors, GetPostMetricsRequest, GetPostMetricsResponse, BulkGetPostMetricsRequest, BulkGetPostMetricsResponse, BulkGetPostReactionsRequest, BulkGetPostReactionsResponse, Reactions, OldBlogMigratedEvent, ListMigratedPostsRequest, BlogCursorPaging, ListMigratedPostsResponse, PostMigrationMetaData, CursorMetaData, QueryPublicationsCountStatsRequest, QueryPublicationsCountStatsResponse, PeriodPublicationsCount, QueryPostCountStatsRequest, QueryPostCountStatsResponse, PeriodPostCount, GetTotalPublicationsRequest, GetTotalPublicationsResponse, GetTotalPostsRequest, GetTotalPostsResponse, SendActionEventRequest, SendActionEventRequestActionOneOf, SendActionEventResponse, GetPostOptions, GetPostBySlugOptions, ListPostsOptions, PostsQueryResult, PostsQueryBuilder, QueryPostCountStatsOptions, GetTotalPostsOptions, } from './blog-v3-post.universal';
|
|
11
|
+
export { Post, CoverMedia, CoverMediaMediaOneOf, PostCountInfo, Metrics, SeoSchema, Tag, Settings, RichContent, Node, NodeDataOneOf, NodeStyle, ButtonData, Border, Colors, PluginContainerData, PluginContainerDataWidth, PluginContainerDataWidthDataOneOf, Spoiler, Height, Styles, Link, LinkDataOneOf, Rel, CodeBlockData, TextStyle, DividerData, FileData, FileSource, FileSourceDataOneOf, PDFSettings, GalleryData, V1Media, Image, Video, Item, ItemDataOneOf, GalleryOptions, Layout, ItemStyle, Thumbnails, GIFData, GIF, HeadingData, HTMLData, HTMLDataDataOneOf, ImageData, LinkPreviewData, MapData, MapSettings, ParagraphData, PollData, Permissions, Option, PollSettings, PollLayout, OptionLayout, Gradient, Background, BackgroundBackgroundOneOf, PollDesign, OptionDesign, Poll, PollDataLayout, Design, TextData, Decoration, DecorationDataOneOf, AnchorData, ColorData, LinkData, MentionData, FontSizeData, AppEmbedData, AppEmbedDataAppDataOneOf, BookingData, EventData, VideoData, PlaybackOptions, EmbedData, Oembed, CollapsibleListData, TableData, Dimensions, TableCellData, CellStyle, BorderColors, ListValue, AudioData, OrderedListData, BulletedListData, BlockquoteData, Metadata, DocumentStyle, TextNodeStyle, ModerationDetails, Media, MediaMediaOneOf, WixMedia, VideoResolution, EmbedMedia, EmbedThumbnail, EmbedVideo, ListTemplatesRequest, BlogPaging, ListTemplatesResponse, MetaData, Category, GetTemplateRequest, GetTemplateResponse, CreateDraftPostFromTemplateRequest, CreateDraftPostFromTemplateResponse, DraftPost, DraftPostTranslation, GetTotalLikesPerMemberRequest, GetTotalLikesPerMemberResponse, PostLiked, PostLikedInitiatorOneOf, PostUnliked, PostUnlikedInitiatorOneOf, PostCountersUpdated, PostCountersUpdatedInitiatorOneOf, PostOwnerChanged, GetPostRequest, GetPostResponse, GetPostBySlugRequest, GetPostBySlugResponse, ListPostsRequest, ListPostsResponse, QueryPostsRequest, Sorting, PlatformQuery, PlatformQueryPagingMethodOneOf, Paging, CursorPaging, QueryPostsResponse, PagingMetadataV2, Cursors, GetPostMetricsRequest, GetPostMetricsResponse, BulkGetPostMetricsRequest, BulkGetPostMetricsResponse, BulkGetPostReactionsRequest, BulkGetPostReactionsResponse, Reactions, OldBlogMigratedEvent, ListMigratedPostsRequest, BlogCursorPaging, ListMigratedPostsResponse, PostMigrationMetaData, CursorMetaData, QueryPublicationsCountStatsRequest, QueryPublicationsCountStatsResponse, PeriodPublicationsCount, QueryPostCountStatsRequest, QueryPostCountStatsResponse, PeriodPostCount, GetTotalPublicationsRequest, GetTotalPublicationsResponse, GetTotalPostsRequest, GetTotalPostsResponse, SendActionEventRequest, SendActionEventRequestActionOneOf, SendActionEventResponse, GetPostOptions, GetPostBySlugOptions, ListPostsOptions, PostsQueryResult, PostsQueryBuilder, QueryPostCountStatsOptions, GetTotalPostsOptions, } from './blog-v3-post.universal';
|
|
@@ -35,7 +35,12 @@ export interface Post {
|
|
|
35
35
|
pinned?: boolean;
|
|
36
36
|
/** [Category IDs](https://www.wix.com/velo/reference/wix-blog-backend/category) of the post. */
|
|
37
37
|
categoryIds?: string[];
|
|
38
|
-
/**
|
|
38
|
+
/**
|
|
39
|
+
* __Deprecated.__ Use `media` instead.
|
|
40
|
+
* This property will be removed on June 30, 2023.
|
|
41
|
+
*
|
|
42
|
+
* Post cover media.
|
|
43
|
+
*/
|
|
39
44
|
coverMedia?: CoverMedia;
|
|
40
45
|
/** Post owner's [member ID](https://www.wix.com/velo/reference/wix-members-backend). */
|
|
41
46
|
memberId?: string;
|
|
@@ -67,9 +72,13 @@ export interface Post {
|
|
|
67
72
|
* @readonly
|
|
68
73
|
*/
|
|
69
74
|
pricingPlanIds?: string[];
|
|
70
|
-
/** ID of the translations of this post. */
|
|
75
|
+
/** ID of the translations of this post. All translations of a single post will share the same `translationId`. */
|
|
71
76
|
translationId?: string | null;
|
|
72
|
-
/**
|
|
77
|
+
/**
|
|
78
|
+
* Language the post is written in.
|
|
79
|
+
*
|
|
80
|
+
* 2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
|
|
81
|
+
*/
|
|
73
82
|
language?: string | null;
|
|
74
83
|
/** SEO data. */
|
|
75
84
|
seoData?: SeoSchema;
|
|
@@ -1229,6 +1238,16 @@ export interface VideoData {
|
|
|
1229
1238
|
disableDownload?: boolean | null;
|
|
1230
1239
|
/** Video title. */
|
|
1231
1240
|
title?: string | null;
|
|
1241
|
+
/** Video options. */
|
|
1242
|
+
options?: PlaybackOptions;
|
|
1243
|
+
}
|
|
1244
|
+
export interface PlaybackOptions {
|
|
1245
|
+
/** Sets whether the media will automatically start playing. */
|
|
1246
|
+
autoPlay?: boolean | null;
|
|
1247
|
+
/** Sets whether media's will be looped. */
|
|
1248
|
+
playInLoop?: boolean | null;
|
|
1249
|
+
/** Sets whether media's controls will be shown. */
|
|
1250
|
+
showControls?: boolean | null;
|
|
1232
1251
|
}
|
|
1233
1252
|
export interface EmbedData {
|
|
1234
1253
|
/** Styling for the oEmbed node's container. */
|
|
@@ -1591,7 +1610,12 @@ export interface Category {
|
|
|
1591
1610
|
description?: string | null;
|
|
1592
1611
|
/** Category title. */
|
|
1593
1612
|
title?: string;
|
|
1594
|
-
/**
|
|
1613
|
+
/**
|
|
1614
|
+
* __Deprecated.__ Use `coverImage` instead.
|
|
1615
|
+
* This property will be removed on June 30, 2023.
|
|
1616
|
+
*
|
|
1617
|
+
* Category cover image or video.
|
|
1618
|
+
*/
|
|
1595
1619
|
coverMedia?: CoverMedia;
|
|
1596
1620
|
/**
|
|
1597
1621
|
* Reserved for internal use.
|
|
@@ -1599,19 +1623,25 @@ export interface Category {
|
|
|
1599
1623
|
*/
|
|
1600
1624
|
oldRank?: number;
|
|
1601
1625
|
/**
|
|
1626
|
+
* __Deprecated.__ Use `displayPosition` instead.
|
|
1627
|
+
* This property will be removed on June 30, 2023.
|
|
1628
|
+
*
|
|
1602
1629
|
* Category position in sequence.
|
|
1603
|
-
* Reserved for internal use.
|
|
1604
1630
|
*/
|
|
1605
1631
|
rank?: number | null;
|
|
1606
1632
|
/**
|
|
1607
|
-
* Category position in sequence. Categories with lower display position are displayed first. A position of `-1`
|
|
1633
|
+
* Category position in sequence. Categories with a lower display position are displayed first. A position of `-1` appears at the end of the sequence.
|
|
1608
1634
|
*
|
|
1609
1635
|
* Default: `-1`
|
|
1610
1636
|
*/
|
|
1611
1637
|
displayPosition?: number | null;
|
|
1612
1638
|
/** ID of the category's translations. All translations of a single category will share the same `translationId`. */
|
|
1613
1639
|
translationId?: string | null;
|
|
1614
|
-
/**
|
|
1640
|
+
/**
|
|
1641
|
+
* Category language.
|
|
1642
|
+
*
|
|
1643
|
+
* Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
|
|
1644
|
+
*/
|
|
1615
1645
|
language?: string;
|
|
1616
1646
|
/** Category slug. For example, 'category-slug'. */
|
|
1617
1647
|
slug?: string;
|
|
@@ -1964,11 +1994,6 @@ export interface PostOwnerChanged {
|
|
|
1964
1994
|
export interface GetPostRequest {
|
|
1965
1995
|
/** Post ID. */
|
|
1966
1996
|
postId: string;
|
|
1967
|
-
/**
|
|
1968
|
-
* List of post fields to be included if entities are present in the response.
|
|
1969
|
-
* Base fieldset, which is default, will return all core post properties.
|
|
1970
|
-
* Example: When URL fieldset is selected, returned post will have a set of base properties and post url.
|
|
1971
|
-
*/
|
|
1972
1997
|
fieldsets?: PostFieldField[];
|
|
1973
1998
|
}
|
|
1974
1999
|
export declare enum PostFieldField {
|
|
@@ -2006,9 +2031,9 @@ export interface GetPostBySlugRequest {
|
|
|
2006
2031
|
/** Slug of the post to retrieve. */
|
|
2007
2032
|
slug: string;
|
|
2008
2033
|
/**
|
|
2009
|
-
* List of post fields to be included if entities are present
|
|
2010
|
-
* Base fieldset
|
|
2011
|
-
*
|
|
2034
|
+
* List of post fields to be included in the response if the entities are present.
|
|
2035
|
+
* Base default fieldset returns all core post properties (all properties that are not a supported fieldset value).
|
|
2036
|
+
* For example, when `URL` fieldset is selected, returned post will include the set of base properties and the post's preview url.
|
|
2012
2037
|
*/
|
|
2013
2038
|
fieldsets?: PostFieldField[];
|
|
2014
2039
|
}
|
|
@@ -2021,34 +2046,55 @@ export interface ListPostsRequest {
|
|
|
2021
2046
|
featured?: boolean;
|
|
2022
2047
|
/**
|
|
2023
2048
|
* Hashtag filter.
|
|
2049
|
+
*
|
|
2024
2050
|
* Pass an array of hashtags to return posts with any of the provided hashtags (anywhere in the post content).
|
|
2051
|
+
* If omitted, all posts with or without hashtags are returned.
|
|
2025
2052
|
*/
|
|
2026
2053
|
hashtags?: string[];
|
|
2027
2054
|
/**
|
|
2028
2055
|
* Category filter.
|
|
2056
|
+
*
|
|
2029
2057
|
* Pass an array of category IDs to return posts with any of the provided categories.
|
|
2058
|
+
* If omitted, all posts with or without category IDs are returned.
|
|
2030
2059
|
*/
|
|
2031
2060
|
categoryIds?: string[];
|
|
2032
2061
|
/**
|
|
2033
2062
|
* Tag filter.
|
|
2063
|
+
*
|
|
2034
2064
|
* Pass an array of tag IDs to return posts with any of the provided tags.
|
|
2065
|
+
* If omitted, all posts with or without tag IDs are returned.
|
|
2035
2066
|
*/
|
|
2036
2067
|
tagIds?: string[];
|
|
2037
|
-
/**
|
|
2068
|
+
/**
|
|
2069
|
+
* Sort.
|
|
2070
|
+
*
|
|
2071
|
+
* - `FEED`: `firstPublishedDate` in descending order with pinned posts first.
|
|
2072
|
+
* - `VIEW_COUNT`: total amount of views in descending order.
|
|
2073
|
+
* - `LIKE_COUNT`: total amount of likes in descending order.
|
|
2074
|
+
* - `PUBLISHED_DATE_ASC`: `firstPublishedDate` in ascending order.
|
|
2075
|
+
* - `PUBLISHED_DATE_DESC`: `firstPublishedDate` in descending order.
|
|
2076
|
+
* - `TITLE_ASC`: `title` in ascening order.
|
|
2077
|
+
* - `TITLE_DESC`: `title` in descending order.
|
|
2078
|
+
* `RATING` is reserved for internal use.
|
|
2079
|
+
*
|
|
2080
|
+
* Default: `FEED`
|
|
2081
|
+
*/
|
|
2038
2082
|
sort?: GetPostsSort;
|
|
2039
2083
|
/** Pagination options. */
|
|
2040
2084
|
paging?: BlogPaging;
|
|
2041
2085
|
/**
|
|
2042
2086
|
* Language filter.
|
|
2043
|
-
* Pass language to only receive posts that are in that language.
|
|
2087
|
+
* Pass language to only receive posts that are in that specified language.
|
|
2088
|
+
*
|
|
2089
|
+
* 2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
|
|
2044
2090
|
*/
|
|
2045
2091
|
language?: string | null;
|
|
2046
2092
|
/** Post owner's member ID. */
|
|
2047
2093
|
memberId?: string | null;
|
|
2048
2094
|
/**
|
|
2049
|
-
* List of post fields to be included if entities are present
|
|
2050
|
-
* Base fieldset
|
|
2051
|
-
*
|
|
2095
|
+
* List of post fields to be included in the response if the entities are present.
|
|
2096
|
+
* Base default fieldset returns all core post properties (all properties that are not a supported fieldset value).
|
|
2097
|
+
* For example, when `URL` fieldset is selected, returned post will include the set of base properties and the post's preview url.
|
|
2052
2098
|
*/
|
|
2053
2099
|
fieldsets?: PostFieldField[];
|
|
2054
2100
|
}
|
|
@@ -2077,23 +2123,41 @@ export interface ListPostsResponse {
|
|
|
2077
2123
|
metaData?: MetaData;
|
|
2078
2124
|
}
|
|
2079
2125
|
export interface QueryPostsRequest {
|
|
2080
|
-
/**
|
|
2126
|
+
/**
|
|
2127
|
+
* __Deprecated.__ Use `query` instead.
|
|
2128
|
+
* This parameter will be removed on June 30, 2023.
|
|
2129
|
+
*
|
|
2130
|
+
* Pagination options.
|
|
2131
|
+
*/
|
|
2081
2132
|
paging?: BlogPaging;
|
|
2082
2133
|
/**
|
|
2134
|
+
* __Deprecated.__ Use `query` instead.
|
|
2135
|
+
* This parameter will be removed on June 30, 2023.
|
|
2136
|
+
*
|
|
2083
2137
|
* Filter object.
|
|
2084
2138
|
* For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/wix-blog/blog/filter-and-sort).
|
|
2085
2139
|
*/
|
|
2086
2140
|
filter?: Record<string, any> | null;
|
|
2087
|
-
/**
|
|
2141
|
+
/**
|
|
2142
|
+
* __Deprecated.__ Use `query` instead.
|
|
2143
|
+
* This parameter will be removed on June 30, 2023.
|
|
2144
|
+
*
|
|
2145
|
+
* Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/wix-blog/blog/filter-and-sort).
|
|
2146
|
+
*/
|
|
2088
2147
|
sort?: Sorting[];
|
|
2089
|
-
/**
|
|
2148
|
+
/**
|
|
2149
|
+
* __Deprecated.__ Use `fieldsets` instead.
|
|
2150
|
+
* This parameter will be removed on June 30, 2023.
|
|
2151
|
+
*
|
|
2152
|
+
* List of post fields to be included in the response.
|
|
2153
|
+
*/
|
|
2090
2154
|
fieldsToInclude?: PostFieldField[];
|
|
2091
2155
|
/** Query options. */
|
|
2092
2156
|
query?: PlatformQuery;
|
|
2093
2157
|
/**
|
|
2094
|
-
* List of post fields to be included if entities are present
|
|
2095
|
-
* Base fieldset
|
|
2096
|
-
*
|
|
2158
|
+
* List of post fields to be included in the response if the entities are present.
|
|
2159
|
+
* Base default fieldset returns all core post properties (all properties that are not a supported fieldset value).
|
|
2160
|
+
* For example, when `URL` fieldset is selected, returned post will include the set of base properties and the post's preview url.
|
|
2097
2161
|
*/
|
|
2098
2162
|
fieldsets?: PostFieldField[];
|
|
2099
2163
|
}
|
|
@@ -2155,7 +2219,12 @@ export interface CursorPaging {
|
|
|
2155
2219
|
export interface QueryPostsResponse {
|
|
2156
2220
|
/** List of posts. */
|
|
2157
2221
|
posts?: Post[];
|
|
2158
|
-
/**
|
|
2222
|
+
/**
|
|
2223
|
+
* __Deprecated.__ Use `pagingMetadata` instead.
|
|
2224
|
+
* This property will be removed on June 30, 2023.
|
|
2225
|
+
*
|
|
2226
|
+
* Details on the paged set of results returned.
|
|
2227
|
+
*/
|
|
2159
2228
|
metaData?: MetaData;
|
|
2160
2229
|
/** Details on the paged set of results returned. */
|
|
2161
2230
|
pagingMetadata?: PagingMetadataV2;
|
|
@@ -2285,13 +2354,22 @@ export interface PeriodPublicationsCount {
|
|
|
2285
2354
|
export interface QueryPostCountStatsRequest {
|
|
2286
2355
|
/** Start of time range to return, in ISO 8601 date and time format. */
|
|
2287
2356
|
rangeStart?: Date;
|
|
2288
|
-
/**
|
|
2357
|
+
/**
|
|
2358
|
+
* __Deprecated.__ Use `months` instead.
|
|
2359
|
+
* This property will be removed on June 30, YEAR.
|
|
2360
|
+
*
|
|
2361
|
+
* Non-inclusive end of time range to return, in ISO 8601 date and time format.
|
|
2362
|
+
*/
|
|
2289
2363
|
rangeEnd?: Date;
|
|
2290
2364
|
/** Order of returned results. */
|
|
2291
2365
|
order?: Order;
|
|
2292
2366
|
/** Number of months to include in response. */
|
|
2293
2367
|
months?: number;
|
|
2294
|
-
/**
|
|
2368
|
+
/**
|
|
2369
|
+
* Language filter.
|
|
2370
|
+
*
|
|
2371
|
+
* 2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
|
|
2372
|
+
*/
|
|
2295
2373
|
language?: string | null;
|
|
2296
2374
|
/** Time zone of the client. */
|
|
2297
2375
|
timeZone?: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"blog-v3-post.types.js","sourceRoot":"","sources":["../../../src/blog-v3-post.types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"blog-v3-post.types.js","sourceRoot":"","sources":["../../../src/blog-v3-post.types.ts"],"names":[],"mappings":"AAkZA,MAAM,CAAN,IAAY,QA+BX;AA/BD,WAAY,QAAQ;IAClB,mCAAuB,CAAA;IACvB,yBAAa,CAAA;IACb,+BAAmB,CAAA;IACnB,2CAA+B,CAAA;IAC/B,yCAA6B,CAAA;IAC7B,mCAAuB,CAAA;IACvB,qCAAyB,CAAA;IACzB,qCAAyB,CAAA;IACzB,2BAAe,CAAA;IACf,+BAAmB,CAAA;IACnB,yBAAa,CAAA;IACb,+BAAmB,CAAA;IACnB,uBAAW,CAAA;IACX,yBAAa,CAAA;IACb,2BAAe,CAAA;IACf,yCAA6B,CAAA;IAC7B,uBAAW,CAAA;IACX,yBAAa,CAAA;IACb,mCAAuB,CAAA;IACvB,6BAAiB,CAAA;IACjB,iDAAqC,CAAA;IACrC,2BAAe,CAAA;IACf,2BAAe,CAAA;IACf,iDAAqC,CAAA;IACrC,6DAAiD,CAAA;IACjD,2DAA+C,CAAA;IAC/C,qCAAyB,CAAA;IACzB,mCAAuB,CAAA;IACvB,iCAAqB,CAAA;IACrB,2BAAe,CAAA;AACjB,CAAC,EA/BW,QAAQ,KAAR,QAAQ,QA+BnB;AAqDD,MAAM,CAAN,IAAY,SASX;AATD,WAAY,SAAS;IACnB,sCAAsC;IACtC,gCAAmB,CAAA;IACnB,kBAAkB;IAClB,4BAAe,CAAA;IACf,gDAAgD;IAChD,kCAAqB,CAAA;IACrB,6BAA6B;IAC7B,sCAAyB,CAAA;AAC3B,CAAC,EATW,SAAS,KAAT,SAAS,QASpB;AA8BD,MAAM,CAAN,IAAY,4BAOX;AAPD,WAAY,4BAA4B;IACtC,uBAAuB;IACvB,iDAAiB,CAAA;IACjB,qBAAqB;IACrB,6CAAa,CAAA;IACb,sBAAsB;IACtB,+CAAe,CAAA;AACjB,CAAC,EAPW,4BAA4B,KAA5B,4BAA4B,QAOvC;AAgBD,MAAM,CAAN,IAAY,IAKX;AALD,WAAY,IAAI;IACd,0BAA0B;IAC1B,qBAAa,CAAA;IACb,qFAAqF;IACrF,yBAAiB,CAAA;AACnB,CAAC,EALW,IAAI,KAAJ,IAAI,QAKf;AAoCD,MAAM,CAAN,IAAY,MASX;AATD,WAAY,MAAM;IAChB,sFAAsF;IACtF,uBAAa,CAAA;IACb,uDAAuD;IACvD,yBAAe,CAAA;IACf,oDAAoD;IACpD,2BAAiB,CAAA;IACjB,+DAA+D;IAC/D,qBAAW,CAAA;AACb,CAAC,EATW,MAAM,KAAN,MAAM,QASjB;AAyBD,MAAM,CAAN,IAAY,aAWX;AAXD,WAAY,aAAa;IACvB,8CAA8C;IAC9C,8BAAa,CAAA;IACb,iBAAiB;IACjB,8BAAa,CAAA;IACb,kBAAkB;IAClB,gCAAe,CAAA;IACf,mBAAmB;IACnB,kCAAiB,CAAA;IACjB,+HAA+H;IAC/H,oCAAmB,CAAA;AACrB,CAAC,EAXW,aAAa,KAAb,aAAa,QAWxB;AAaD,MAAM,CAAN,IAAY,SASX;AATD,WAAY,SAAS;IACnB,kBAAkB;IAClB,8BAAiB,CAAA;IACjB,kBAAkB;IAClB,8BAAiB,CAAA;IACjB,kBAAkB;IAClB,8BAAiB,CAAA;IACjB,kBAAkB;IAClB,8BAAiB,CAAA;AACnB,CAAC,EATW,SAAS,KAAT,SAAS,QASpB;AAED,MAAM,CAAN,IAAY,KAOX;AAPD,WAAY,KAAK;IACf,iBAAiB;IACjB,wBAAe,CAAA;IACf,kBAAkB;IAClB,0BAAiB,CAAA;IACjB,iBAAiB;IACjB,wBAAe,CAAA;AACjB,CAAC,EAPW,KAAK,KAAL,KAAK,QAOhB;AAED,MAAM,CAAN,IAAY,SAOX;AAPD,WAAY,SAAS;IACnB,uBAAuB;IACvB,8BAAiB,CAAA;IACjB,qBAAqB;IACrB,0BAAa,CAAA;IACb,sBAAsB;IACtB,4BAAe,CAAA;AACjB,CAAC,EAPW,SAAS,KAAT,SAAS,QAOpB;AAqBD,MAAM,CAAN,IAAY,QAOX;AAPD,WAAY,QAAQ;IAClB,kBAAkB;IAClB,yBAAa,CAAA;IACb,oBAAoB;IACpB,yBAAa,CAAA;IACb,oBAAoB;IACpB,yBAAa,CAAA;AACf,CAAC,EAPW,QAAQ,KAAR,QAAQ,QAOnB;AAuGD,MAAM,CAAN,IAAY,UAqBX;AArBD,WAAY,UAAU;IACpB,mBAAmB;IACnB,iCAAmB,CAAA;IACnB,mBAAmB;IACnB,iCAAmB,CAAA;IACnB,gBAAgB;IAChB,2BAAa,CAAA;IACb,qBAAqB;IACrB,qCAAuB,CAAA;IACvB,kBAAkB;IAClB,+BAAiB,CAAA;IACjB,qBAAqB;IACrB,qCAAuB,CAAA;IACvB,oBAAoB;IACpB,mCAAqB,CAAA;IACrB,kBAAkB;IAClB,+BAAiB,CAAA;IACjB,iBAAiB;IACjB,6BAAe,CAAA;IACf,2BAA2B;IAC3B,mCAAqB,CAAA;AACvB,CAAC,EArBW,UAAU,KAAV,UAAU,QAqBrB;AAED,MAAM,CAAN,IAAY,WAKX;AALD,WAAY,WAAW;IACrB,uBAAuB;IACvB,4BAAa,CAAA;IACb,0BAA0B;IAC1B,kCAAmB,CAAA;AACrB,CAAC,EALW,WAAW,KAAX,WAAW,QAKtB;AAED,MAAM,CAAN,IAAY,IAKX;AALD,WAAY,IAAI;IACd,mBAAmB;IACnB,qBAAa,CAAA;IACb,kBAAkB;IAClB,mBAAW,CAAA;AACb,CAAC,EALW,IAAI,KAAJ,IAAI,QAKf;AAED,MAAM,CAAN,IAAY,mBAWX;AAXD,WAAY,mBAAmB;IAC7B,oBAAoB;IACpB,kCAAW,CAAA;IACX,sBAAsB;IACtB,sCAAe,CAAA;IACf,uBAAuB;IACvB,wCAAiB,CAAA;IACjB,qBAAqB;IACrB,oCAAa,CAAA;IACb,mBAAmB;IACnB,oCAAa,CAAA;AACf,CAAC,EAXW,mBAAmB,KAAnB,mBAAmB,QAW9B;AAuFD,MAAM,CAAN,IAAY,MAGX;AAHD,WAAY,MAAM;IAChB,uBAAa,CAAA;IACb,6BAAmB,CAAA;AACrB,CAAC,EAHW,MAAM,KAAN,MAAM,QAGjB;AAkED,MAAM,CAAN,IAAY,OASX;AATD,WAAY,OAAO;IACjB,uBAAuB;IACvB,8BAAmB,CAAA;IACnB,yBAAyB;IACzB,gCAAqB,CAAA;IACrB,sBAAsB;IACtB,4BAAiB,CAAA;IACjB,uBAAuB;IACvB,8BAAmB,CAAA;AACrB,CAAC,EATW,OAAO,KAAP,OAAO,QASlB;AAoBD,MAAM,CAAN,IAAY,QAOX;AAPD,WAAY,QAAQ;IAClB,6CAA6C;IAC7C,+BAAmB,CAAA;IACnB,2CAA2C;IAC3C,6BAAiB,CAAA;IACjB,0DAA0D;IAC1D,iCAAqB,CAAA;AACvB,CAAC,EAPW,QAAQ,KAAR,QAAQ,QAOnB;AAED,MAAM,CAAN,IAAY,QAKX;AALD,WAAY,QAAQ;IAClB,uBAAuB;IACvB,yCAA6B,CAAA;IAC7B,aAAa;IACb,uBAAW,CAAA;AACb,CAAC,EALW,QAAQ,KAAR,QAAQ,QAKnB;AA6BD,MAAM,CAAN,IAAY,cAKX;AALD,WAAY,cAAc;IACxB,WAAW;IACX,+BAAa,CAAA;IACb,WAAW;IACX,+BAAa,CAAA;AACf,CAAC,EALW,cAAc,KAAd,cAAc,QAKzB;AAED,MAAM,CAAN,IAAY,mBAKX;AALD,WAAY,mBAAmB;IAC7B,oBAAoB;IACpB,kCAAW,CAAA;IACX,oBAAoB;IACpB,kCAAW,CAAA;AACb,CAAC,EALW,mBAAmB,KAAnB,mBAAmB,QAK9B;AAgBD,MAAM,CAAN,IAAY,cAOX;AAPD,WAAY,cAAc;IACxB,4BAA4B;IAC5B,iCAAe,CAAA;IACf,4BAA4B;IAC5B,iCAAe,CAAA;IACf,+BAA+B;IAC/B,uCAAqB,CAAA;AACvB,CAAC,EAPW,cAAc,KAAd,cAAc,QAOzB;AA0HD,MAAM,CAAN,IAAY,cAWX;AAXD,WAAY,cAAc;IACxB,+BAAa,CAAA;IACb,mCAAiB,CAAA;IACjB,yCAAuB,CAAA;IACvB,qCAAmB,CAAA;IACnB,mCAAiB,CAAA;IACjB,qCAAmB,CAAA;IACnB,+BAAa,CAAA;IACb,iCAAe,CAAA;IACf,yCAAuB,CAAA;IACvB,uCAAqB,CAAA;AACvB,CAAC,EAXW,cAAc,KAAd,cAAc,QAWzB;AAmCD,MAAM,CAAN,IAAY,QAGX;AAHD,WAAY,QAAQ;IAClB,qBAAS,CAAA;IACT,qBAAS,CAAA;AACX,CAAC,EAHW,QAAQ,KAAR,QAAQ,QAGnB;AA6BD,MAAM,CAAN,IAAY,OAIX;AAJD,WAAY,OAAO;IACjB,8BAAmB,CAAA;IACnB,0BAAe,CAAA;IACf,8BAAmB,CAAA;AACrB,CAAC,EAJW,OAAO,KAAP,OAAO,QAIlB;AA6FD,MAAM,CAAN,IAAY,oBAOX;AAPD,WAAY,oBAAoB;IAC9B,2CAA2C;IAC3C,uCAAe,CAAA;IACf,uCAAuC;IACvC,mCAAW,CAAA;IACX,mCAAmC;IACnC,qCAAa,CAAA;AACf,CAAC,EAPW,oBAAoB,KAApB,oBAAoB,QAO/B;AAED,MAAM,CAAN,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,oBAAoB;IACpB,wBAAW,CAAA;IACX,oBAAoB;IACpB,wBAAW,CAAA;AACb,CAAC,EALW,SAAS,KAAT,SAAS,QAKpB;AA+BD,MAAM,CAAN,IAAY,iBAOX;AAPD,WAAY,iBAAiB;IAC3B,oBAAoB;IACpB,gCAAW,CAAA;IACX,uBAAuB;IACvB,sCAAiB,CAAA;IACjB,uBAAuB;IACvB,sCAAiB,CAAA;AACnB,CAAC,EAPW,iBAAiB,KAAjB,iBAAiB,QAO5B;AAoBD;;;;;GAKG;AACH,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,kBAAkB;IAClB,sCAAyB,CAAA;AAC3B,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AAqGD,MAAM,CAAN,IAAY,sBAIX;AAJD,WAAY,sBAAsB;IAChC,6CAAmB,CAAA;IACnB,+CAAqB,CAAA;IACrB,+CAAqB,CAAA;AACvB,CAAC,EAJW,sBAAsB,KAAtB,sBAAsB,QAIjC;AA4FD,MAAM,CAAN,IAAY,oBAKX;AALD,WAAY,oBAAoB;IAC9B,2CAA2C;IAC3C,iEAAyC,CAAA;IACzC,4CAA4C;IAC5C,mEAA2C,CAAA;AAC7C,CAAC,EALW,oBAAoB,KAApB,oBAAoB,QAK/B;AAiRD,MAAM,CAAN,IAAY,MAkEX;AAlED,WAAY,MAAM;IAChB,6BAAmB,CAAA;IACnB,uBAAuB;IACvB,yBAAe,CAAA;IACf,8BAA8B;IAC9B,2CAAiC,CAAA;IACjC,0BAA0B;IAC1B,iCAAuB,CAAA;IACvB,2BAA2B;IAC3B,yCAA+B,CAAA;IAC/B,eAAe;IACf,2BAAiB,CAAA;IACjB,uBAAuB;IACvB,qCAA2B,CAAA;IAC3B,gCAAgC;IAChC,qCAA2B,CAAA;IAC3B,mBAAmB;IACnB,uCAA6B,CAAA;IAC7B,uBAAuB;IACvB,6CAAmC,CAAA;IACnC,qBAAqB;IACrB,qCAA2B,CAAA;IAC3B,4BAA4B;IAC5B,iCAAuB,CAAA;IACvB,6BAA6B;IAC7B,mCAAyB,CAAA;IACzB,qBAAqB;IACrB,yCAA+B,CAAA;IAC/B,iCAAiC;IACjC,uDAA6C,CAAA;IAC7C,sBAAsB;IACtB,iCAAuB,CAAA;IACvB,oBAAoB;IACpB,6BAAmB,CAAA;IACnB,2BAA2B;IAC3B,2CAAiC,CAAA;IACjC,oBAAoB;IACpB,2BAAiB,CAAA;IACjB,mBAAmB;IACnB,6BAAmB,CAAA;IACnB,wBAAwB;IACxB,6CAAmC,CAAA;IACnC,qBAAqB;IACrB,qCAA2B,CAAA;IAC3B,sBAAsB;IACtB,iCAAuB,CAAA;IACvB,sBAAsB;IACtB,mCAAyB,CAAA;IACzB,mEAAmE;IACnE,+CAAqC,CAAA;IACrC,6BAA6B;IAC7B,qEAA2D,CAAA;IAC3D,+BAA+B;IAC/B,yEAA+D,CAAA;IAC/D,6BAA6B;IAC7B,mEAAyD,CAAA;IACzD,oBAAoB;IACpB,+BAAqB,CAAA;IACrB,kCAAkC;IAClC,2DAAiD,CAAA;IACjD,mCAAmC;IACnC,2DAAiD,CAAA;IACjD,iCAAiC;IACjC,yDAA+C,CAAA;IAC/C,sBAAsB;IACtB,mCAAyB,CAAA;AAC3B,CAAC,EAlEW,MAAM,KAAN,MAAM,QAkEjB;AAED,MAAM,CAAN,IAAY,MAkBX;AAlBD,WAAY,MAAM;IAChB,6BAAmB,CAAA;IACnB,qDAAqD;IACrD,iCAAuB,CAAA;IACvB,uDAAuD;IACvD,qCAA2B,CAAA;IAC3B,qEAAqE;IACrE,iCAAuB,CAAA;IACvB,mDAAmD;IACnD,6BAAmB,CAAA;IACnB;;;;OAIG;IACH,yCAA+B,CAAA;IAC/B,qDAAqD;IACrD,iCAAuB,CAAA;AACzB,CAAC,EAlBW,MAAM,KAAN,MAAM,QAkBjB;AAkFD,MAAM,CAAN,IAAY,KAUX;AAVD,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,4BAA4B;IAC5B,0CAAiC,CAAA;IACjC,wBAAwB;IACxB,kCAAyB,CAAA;IACzB,wBAAwB;IACxB,kCAAyB,CAAA;IACzB,yBAAyB;IACzB,sCAA6B,CAAA;AAC/B,CAAC,EAVW,KAAK,KAAL,KAAK,QAUhB;AAaD,MAAM,CAAN,IAAY,cA0BX;AA1BD,WAAY,cAAc;IACxB,qCAAmB,CAAA;IACnB,uCAAuC;IACvC,uCAAqB,CAAA;IACrB,qCAAqC;IACrC,6BAAW,CAAA;IACX,qDAAqD;IACrD,+CAA6B,CAAA;IAC7B,yCAAyC;IACzC,qCAAmB,CAAA;IACnB,wBAAwB;IACxB,6BAAW,CAAA;IACX;;;OAGG;IACH,qCAAmB,CAAA;IACnB;;;OAGG;IACH,6CAA2B,CAAA;IAC3B,sCAAsC;IACtC,2CAAyB,CAAA;IACzB,iCAAiC;IACjC,+CAA6B,CAAA;AAC/B,CAAC,EA1BW,cAAc,KAAd,cAAc,QA0BzB;AAiFD,MAAM,CAAN,IAAY,YAiBX;AAjBD,WAAY,YAAY;IACtB,uFAAuF;IACvF,6BAAa,CAAA;IACb,2CAA2C;IAC3C,yDAAyC,CAAA;IACzC,4CAA4C;IAC5C,2DAA2C,CAAA;IAC3C,uCAAuC;IACvC,yCAAyB,CAAA;IACzB,uCAAuC;IACvC,yCAAyB,CAAA;IACzB,iCAAiC;IACjC,uCAAuB,CAAA;IACvB,kCAAkC;IAClC,yCAAyB,CAAA;IACzB,yCAAyC;IACzC,iCAAiB,CAAA;AACnB,CAAC,EAjBW,YAAY,KAAZ,YAAY,QAiBvB;AAwDD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AAyLD,MAAM,CAAN,IAAY,uCAIX;AAJD,WAAY,uCAAuC;IACjD,8DAAmB,CAAA;IACnB,4DAAiB,CAAA;IACjB,4DAAiB,CAAA;AACnB,CAAC,EAJW,uCAAuC,KAAvC,uCAAuC,QAIlD;AAyCD,MAAM,CAAN,IAAY,KAIX;AAJD,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,0BAAiB,CAAA;IACjB,0BAAiB,CAAA;AACnB,CAAC,EAJW,KAAK,KAAL,KAAK,QAIhB"}
|