@wix/auto_sdk_blog_categories 1.0.1 → 1.0.2
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-categories.types.d.ts +161 -34
- package/build/cjs/src/blog-v3-category-categories.types.js.map +1 -1
- package/build/cjs/src/blog-v3-category-categories.universal.d.ts +204 -42
- package/build/cjs/src/blog-v3-category-categories.universal.js.map +1 -1
- package/build/es/src/blog-v3-category-categories.types.d.ts +161 -34
- package/build/es/src/blog-v3-category-categories.types.js.map +1 -1
- package/build/es/src/blog-v3-category-categories.universal.d.ts +204 -42
- package/build/es/src/blog-v3-category-categories.universal.js.map +1 -1
- package/build/internal/cjs/src/blog-v3-category-categories.types.d.ts +161 -34
- package/build/internal/cjs/src/blog-v3-category-categories.types.js.map +1 -1
- package/build/internal/cjs/src/blog-v3-category-categories.universal.d.ts +204 -42
- package/build/internal/cjs/src/blog-v3-category-categories.universal.js.map +1 -1
- package/build/internal/es/src/blog-v3-category-categories.types.d.ts +161 -34
- package/build/internal/es/src/blog-v3-category-categories.types.js.map +1 -1
- package/build/internal/es/src/blog-v3-category-categories.universal.d.ts +204 -42
- package/build/internal/es/src/blog-v3-category-categories.universal.js.map +1 -1
- package/package.json +2 -2
@@ -1,7 +1,14 @@
|
|
1
1
|
export interface Category {
|
2
|
-
/**
|
2
|
+
/**
|
3
|
+
* Category ID.
|
4
|
+
* @immutable
|
5
|
+
* @maxLength 38
|
6
|
+
*/
|
3
7
|
_id?: string;
|
4
|
-
/**
|
8
|
+
/**
|
9
|
+
* Category label. Displayed in the Category Menu.
|
10
|
+
* @maxLength 35
|
11
|
+
*/
|
5
12
|
label?: string;
|
6
13
|
/**
|
7
14
|
* Number of posts in the category.
|
@@ -13,10 +20,14 @@ export interface Category {
|
|
13
20
|
* @readonly
|
14
21
|
*/
|
15
22
|
url?: string;
|
16
|
-
/**
|
23
|
+
/**
|
24
|
+
* Category description.
|
25
|
+
* @maxLength 500
|
26
|
+
*/
|
17
27
|
description?: string | null;
|
18
28
|
/**
|
19
29
|
* Category title.
|
30
|
+
* @maxLength 200
|
20
31
|
* @deprecated Category title.
|
21
32
|
* @targetRemovalDate 2025-07-16
|
22
33
|
*/
|
@@ -28,19 +39,27 @@ export interface Category {
|
|
28
39
|
* Default: `-1`
|
29
40
|
*/
|
30
41
|
displayPosition?: number | null;
|
31
|
-
/**
|
42
|
+
/**
|
43
|
+
* ID of the category's translations. All translations of a single category share the same `translationId`.
|
44
|
+
* @format GUID
|
45
|
+
*/
|
32
46
|
translationId?: string | null;
|
33
47
|
/**
|
34
48
|
* Category language.
|
35
49
|
*
|
36
50
|
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
51
|
+
* @immutable
|
37
52
|
*/
|
38
53
|
language?: string | null;
|
39
|
-
/**
|
54
|
+
/**
|
55
|
+
* Part of a category's URL that refers to a specific category. For example, the slug of `https:/example.com/blog/category/famous-cats` is `famous-cats`.
|
56
|
+
* @maxLength 100
|
57
|
+
*/
|
40
58
|
slug?: string;
|
41
59
|
/**
|
42
60
|
* Reserved for internal use.
|
43
61
|
* @readonly
|
62
|
+
* @maxLength 24
|
44
63
|
*/
|
45
64
|
internalId?: string | null;
|
46
65
|
/** SEO data. */
|
@@ -69,7 +88,10 @@ export interface Keyword {
|
|
69
88
|
term?: string;
|
70
89
|
/** Whether the keyword is the main focus keyword. */
|
71
90
|
isMain?: boolean;
|
72
|
-
/**
|
91
|
+
/**
|
92
|
+
* The source that added the keyword terms to the SEO settings.
|
93
|
+
* @maxLength 1000
|
94
|
+
*/
|
73
95
|
origin?: string | null;
|
74
96
|
}
|
75
97
|
export interface Tag {
|
@@ -102,7 +124,10 @@ export interface Settings {
|
|
102
124
|
* Default: `false` (Auto Redirect is enabled.)
|
103
125
|
*/
|
104
126
|
preventAutoRedirect?: boolean;
|
105
|
-
/**
|
127
|
+
/**
|
128
|
+
* User-selected keyword terms for a specific page.
|
129
|
+
* @maxSize 5
|
130
|
+
*/
|
106
131
|
keywords?: Keyword[];
|
107
132
|
}
|
108
133
|
export interface FocalPoint {
|
@@ -116,11 +141,20 @@ export interface FocalPoint {
|
|
116
141
|
width?: number | null;
|
117
142
|
}
|
118
143
|
export interface CategoryTranslation {
|
119
|
-
/**
|
144
|
+
/**
|
145
|
+
* Category ID.
|
146
|
+
* @format GUID
|
147
|
+
*/
|
120
148
|
_id?: string;
|
121
|
-
/**
|
149
|
+
/**
|
150
|
+
* Label displayed in the categories menu on the site.
|
151
|
+
* @maxLength 100
|
152
|
+
*/
|
122
153
|
label?: string | null;
|
123
|
-
/**
|
154
|
+
/**
|
155
|
+
* Language of the category.
|
156
|
+
* @format LANGUAGE_TAG
|
157
|
+
*/
|
124
158
|
language?: string | null;
|
125
159
|
/** URL of this category page. */
|
126
160
|
url?: string;
|
@@ -138,6 +172,7 @@ export interface CreateCategoryRequest {
|
|
138
172
|
*
|
139
173
|
* To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to
|
140
174
|
* retrieve the url field in the response in addition to the category’s base fields.
|
175
|
+
* @maxSize 10
|
141
176
|
*/
|
142
177
|
fieldsets?: Field[];
|
143
178
|
}
|
@@ -158,7 +193,11 @@ export interface CreateCategoryResponse {
|
|
158
193
|
category?: Category;
|
159
194
|
}
|
160
195
|
export interface BulkCreateCategoriesRequest {
|
161
|
-
/**
|
196
|
+
/**
|
197
|
+
* Categories to create.
|
198
|
+
* @minSize 1
|
199
|
+
* @maxSize 50
|
200
|
+
*/
|
162
201
|
categories?: Category[];
|
163
202
|
/** Whether to return the full created category entities in the response. */
|
164
203
|
returnFullEntity?: boolean;
|
@@ -168,6 +207,7 @@ export interface BulkCreateCategoriesRequest {
|
|
168
207
|
*
|
169
208
|
* To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to
|
170
209
|
* retrieve the url field in the response in addition to the category’s base fields.
|
210
|
+
* @maxSize 10
|
171
211
|
*/
|
172
212
|
fieldsets?: Field[];
|
173
213
|
}
|
@@ -210,7 +250,11 @@ export interface BulkActionMetadata {
|
|
210
250
|
undetailedFailures?: number;
|
211
251
|
}
|
212
252
|
export interface BulkUpdateCategoriesRequest {
|
213
|
-
/**
|
253
|
+
/**
|
254
|
+
* Categories to update.
|
255
|
+
* @minSize 1
|
256
|
+
* @maxSize 100
|
257
|
+
*/
|
214
258
|
categories?: MaskedCategory[];
|
215
259
|
/** Whether to return the full created category entities in the response. */
|
216
260
|
returnFullEntity?: boolean;
|
@@ -220,6 +264,7 @@ export interface BulkUpdateCategoriesRequest {
|
|
220
264
|
*
|
221
265
|
* To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to
|
222
266
|
* retrieve the url field in the response in addition to the category’s base fields.
|
267
|
+
* @maxSize 10
|
223
268
|
*/
|
224
269
|
fieldsets?: Field[];
|
225
270
|
}
|
@@ -244,6 +289,7 @@ export interface UpdateCategoryRequest {
|
|
244
289
|
*
|
245
290
|
* To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to
|
246
291
|
* retrieve the url field in the response in addition to the category’s base fields.
|
292
|
+
* @maxSize 10
|
247
293
|
*/
|
248
294
|
fieldsets?: Field[];
|
249
295
|
}
|
@@ -258,13 +304,20 @@ export interface GetCategoriesCountByLanguageResponse {
|
|
258
304
|
categoriesLanguageCount?: CategoryLanguageCount[];
|
259
305
|
}
|
260
306
|
export interface CategoryLanguageCount {
|
261
|
-
/**
|
307
|
+
/**
|
308
|
+
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
309
|
+
* @format LANGUAGE_TAG
|
310
|
+
*/
|
262
311
|
languageCode?: string | null;
|
263
312
|
/** The count of Categories for the language. */
|
264
313
|
categoryCount?: number | null;
|
265
314
|
}
|
266
315
|
export interface GetCategoryRequest {
|
267
|
-
/**
|
316
|
+
/**
|
317
|
+
* Category ID.
|
318
|
+
* @minLength 1
|
319
|
+
* @maxLength 38
|
320
|
+
*/
|
268
321
|
categoryId: string;
|
269
322
|
/**
|
270
323
|
* List of additional category fields to include in the response. By default
|
@@ -272,6 +325,7 @@ export interface GetCategoryRequest {
|
|
272
325
|
*
|
273
326
|
* To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to
|
274
327
|
* retrieve the url field in the response in addition to the category’s base fields.
|
328
|
+
* @maxSize 10
|
275
329
|
*/
|
276
330
|
fieldsets?: Field[];
|
277
331
|
}
|
@@ -280,7 +334,11 @@ export interface GetCategoryResponse {
|
|
280
334
|
category?: Category;
|
281
335
|
}
|
282
336
|
export interface GetCategoryBySlugRequest {
|
283
|
-
/**
|
337
|
+
/**
|
338
|
+
* Slug of the category to retrieve.
|
339
|
+
* @minLength 1
|
340
|
+
* @maxLength 100
|
341
|
+
*/
|
284
342
|
slug: string;
|
285
343
|
/**
|
286
344
|
* List of additional category fields to include in the response. By default
|
@@ -288,11 +346,13 @@ export interface GetCategoryBySlugRequest {
|
|
288
346
|
*
|
289
347
|
* To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to
|
290
348
|
* retrieve the url field in the response in addition to the category’s base fields.
|
349
|
+
* @maxSize 10
|
291
350
|
*/
|
292
351
|
fieldsets?: Field[];
|
293
352
|
/**
|
294
353
|
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
295
354
|
* Language of the category to retrieve.
|
355
|
+
* @format LANGUAGE_TAG
|
296
356
|
*/
|
297
357
|
language?: string | null;
|
298
358
|
}
|
@@ -309,6 +369,7 @@ export interface ListCategoriesRequest {
|
|
309
369
|
*
|
310
370
|
* To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to
|
311
371
|
* retrieve the url field in the response in addition to the category’s base fields.
|
372
|
+
* @maxSize 10
|
312
373
|
*/
|
313
374
|
fieldsets?: Field[];
|
314
375
|
/**
|
@@ -317,6 +378,7 @@ export interface ListCategoriesRequest {
|
|
317
378
|
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
318
379
|
* Pass a language to only receive categories that are in that language.
|
319
380
|
* If omitted, categories in all languages are returned.
|
381
|
+
* @format LANGUAGE_TAG
|
320
382
|
*/
|
321
383
|
language?: string | null;
|
322
384
|
}
|
@@ -334,9 +396,14 @@ export interface BlogPaging {
|
|
334
396
|
* Default: `50`
|
335
397
|
*
|
336
398
|
* Max: `100`
|
399
|
+
* @min 1
|
400
|
+
* @max 100
|
337
401
|
*/
|
338
402
|
limit?: number;
|
339
|
-
/**
|
403
|
+
/**
|
404
|
+
* Pointer to the next or previous page in the list of results.
|
405
|
+
* @maxLength 2000
|
406
|
+
*/
|
340
407
|
cursor?: string | null;
|
341
408
|
}
|
342
409
|
export interface ListCategoriesResponse {
|
@@ -352,7 +419,10 @@ export interface MetaData {
|
|
352
419
|
offset?: number;
|
353
420
|
/** Total number of items that match the query. */
|
354
421
|
total?: number;
|
355
|
-
/**
|
422
|
+
/**
|
423
|
+
* Pointer to the next or previous page in the list of results.
|
424
|
+
* @maxLength 2000
|
425
|
+
*/
|
356
426
|
cursor?: string | null;
|
357
427
|
}
|
358
428
|
export interface QueryCategoriesRequest {
|
@@ -364,6 +434,7 @@ export interface QueryCategoriesRequest {
|
|
364
434
|
*
|
365
435
|
* To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to
|
366
436
|
* retrieve the url field in the response in addition to the category’s base fields.
|
437
|
+
* @maxSize 10
|
367
438
|
*/
|
368
439
|
fieldsets?: Field[];
|
369
440
|
}
|
@@ -384,6 +455,7 @@ export interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
|
|
384
455
|
/**
|
385
456
|
* Sort object in the following format:
|
386
457
|
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
458
|
+
* @maxSize 3
|
387
459
|
*/
|
388
460
|
sort?: Sorting[];
|
389
461
|
}
|
@@ -395,7 +467,10 @@ export interface PlatformQueryPagingMethodOneOf {
|
|
395
467
|
cursorPaging?: CursorPaging;
|
396
468
|
}
|
397
469
|
export interface Sorting {
|
398
|
-
/**
|
470
|
+
/**
|
471
|
+
* Name of the field to sort by.
|
472
|
+
* @maxLength 512
|
473
|
+
*/
|
399
474
|
fieldName?: string;
|
400
475
|
/** Sort order. */
|
401
476
|
order?: SortOrder;
|
@@ -405,13 +480,19 @@ export declare enum SortOrder {
|
|
405
480
|
DESC = "DESC"
|
406
481
|
}
|
407
482
|
export interface Paging {
|
408
|
-
/**
|
483
|
+
/**
|
484
|
+
* Number of items to load.
|
485
|
+
* @max 100
|
486
|
+
*/
|
409
487
|
limit?: number | null;
|
410
488
|
/** Number of items to skip in the current sort order. */
|
411
489
|
offset?: number | null;
|
412
490
|
}
|
413
491
|
export interface CursorPaging {
|
414
|
-
/**
|
492
|
+
/**
|
493
|
+
* Number of items to load.
|
494
|
+
* @max 100
|
495
|
+
*/
|
415
496
|
limit?: number | null;
|
416
497
|
/**
|
417
498
|
* Pointer to the next or previous page in the list of results.
|
@@ -419,6 +500,7 @@ export interface CursorPaging {
|
|
419
500
|
* You can get the relevant cursor token
|
420
501
|
* from the `pagingMetadata` object in the previous call's response.
|
421
502
|
* Not relevant for the first request.
|
503
|
+
* @maxLength 2000
|
422
504
|
*/
|
423
505
|
cursor?: string | null;
|
424
506
|
}
|
@@ -441,13 +523,24 @@ export interface PagingMetadataV2 {
|
|
441
523
|
cursors?: Cursors;
|
442
524
|
}
|
443
525
|
export interface Cursors {
|
444
|
-
/**
|
526
|
+
/**
|
527
|
+
* Cursor pointing to next page in the list of results.
|
528
|
+
* @maxLength 2000
|
529
|
+
*/
|
445
530
|
next?: string | null;
|
446
|
-
/**
|
531
|
+
/**
|
532
|
+
* Cursor pointing to previous page in the list of results.
|
533
|
+
* @maxLength 2000
|
534
|
+
*/
|
447
535
|
prev?: string | null;
|
448
536
|
}
|
449
537
|
export interface BulkDeleteCategoryRequest {
|
450
|
-
/**
|
538
|
+
/**
|
539
|
+
* Category IDs.
|
540
|
+
* @minSize 1
|
541
|
+
* @maxSize 100
|
542
|
+
* @maxLength 38
|
543
|
+
*/
|
451
544
|
categoryIds?: string[];
|
452
545
|
/** Should delete bypassing the trash-bin. */
|
453
546
|
permanent?: boolean;
|
@@ -455,7 +548,11 @@ export interface BulkDeleteCategoryRequest {
|
|
455
548
|
export interface BulkDeleteCategoryResponse {
|
456
549
|
}
|
457
550
|
export interface DeleteCategoryRequest {
|
458
|
-
/**
|
551
|
+
/**
|
552
|
+
* Category ID.
|
553
|
+
* @minLength 1
|
554
|
+
* @maxLength 38
|
555
|
+
*/
|
459
556
|
categoryId: string;
|
460
557
|
}
|
461
558
|
export interface DeleteCategoryResponse {
|
@@ -531,9 +628,15 @@ export interface ActionEvent {
|
|
531
628
|
body?: string;
|
532
629
|
}
|
533
630
|
export interface MessageEnvelope {
|
534
|
-
/**
|
631
|
+
/**
|
632
|
+
* App instance ID.
|
633
|
+
* @format GUID
|
634
|
+
*/
|
535
635
|
instanceId?: string | null;
|
536
|
-
/**
|
636
|
+
/**
|
637
|
+
* Event type.
|
638
|
+
* @maxLength 150
|
639
|
+
*/
|
537
640
|
eventType?: string;
|
538
641
|
/** The identification type and identity data. */
|
539
642
|
identity?: IdentificationData;
|
@@ -541,26 +644,50 @@ export interface MessageEnvelope {
|
|
541
644
|
data?: string;
|
542
645
|
}
|
543
646
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
544
|
-
/**
|
647
|
+
/**
|
648
|
+
* ID of a site visitor that has not logged in to the site.
|
649
|
+
* @format GUID
|
650
|
+
*/
|
545
651
|
anonymousVisitorId?: string;
|
546
|
-
/**
|
652
|
+
/**
|
653
|
+
* ID of a site visitor that has logged in to the site.
|
654
|
+
* @format GUID
|
655
|
+
*/
|
547
656
|
memberId?: string;
|
548
|
-
/**
|
657
|
+
/**
|
658
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
659
|
+
* @format GUID
|
660
|
+
*/
|
549
661
|
wixUserId?: string;
|
550
|
-
/**
|
662
|
+
/**
|
663
|
+
* ID of an app.
|
664
|
+
* @format GUID
|
665
|
+
*/
|
551
666
|
appId?: string;
|
552
667
|
/** @readonly */
|
553
668
|
identityType?: WebhookIdentityType;
|
554
669
|
}
|
555
670
|
/** @oneof */
|
556
671
|
export interface IdentificationDataIdOneOf {
|
557
|
-
/**
|
672
|
+
/**
|
673
|
+
* ID of a site visitor that has not logged in to the site.
|
674
|
+
* @format GUID
|
675
|
+
*/
|
558
676
|
anonymousVisitorId?: string;
|
559
|
-
/**
|
677
|
+
/**
|
678
|
+
* ID of a site visitor that has logged in to the site.
|
679
|
+
* @format GUID
|
680
|
+
*/
|
560
681
|
memberId?: string;
|
561
|
-
/**
|
682
|
+
/**
|
683
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
684
|
+
* @format GUID
|
685
|
+
*/
|
562
686
|
wixUserId?: string;
|
563
|
-
/**
|
687
|
+
/**
|
688
|
+
* ID of an app.
|
689
|
+
* @format GUID
|
690
|
+
*/
|
564
691
|
appId?: string;
|
565
692
|
}
|
566
693
|
export declare enum WebhookIdentityType {
|
@@ -628,9 +755,15 @@ export interface QueryCategoriesResponseNonNullableFields {
|
|
628
755
|
categories: CategoryNonNullableFields[];
|
629
756
|
}
|
630
757
|
export interface BaseEventMetadata {
|
631
|
-
/**
|
758
|
+
/**
|
759
|
+
* App instance ID.
|
760
|
+
* @format GUID
|
761
|
+
*/
|
632
762
|
instanceId?: string | null;
|
633
|
-
/**
|
763
|
+
/**
|
764
|
+
* Event type.
|
765
|
+
* @maxLength 150
|
766
|
+
*/
|
634
767
|
eventType?: string;
|
635
768
|
/** The identification type and identity data. */
|
636
769
|
identity?: IdentificationData;
|
@@ -750,6 +883,7 @@ export interface CreateCategoryOptions {
|
|
750
883
|
*
|
751
884
|
* To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to
|
752
885
|
* retrieve the url field in the response in addition to the category’s base fields.
|
886
|
+
* @maxSize 10
|
753
887
|
*/
|
754
888
|
fieldsets?: Field[];
|
755
889
|
}
|
@@ -768,9 +902,16 @@ export interface CreateCategoryOptions {
|
|
768
902
|
*/
|
769
903
|
export declare function updateCategory(_id: string, category: UpdateCategory, options?: UpdateCategoryOptions): Promise<Category & CategoryNonNullableFields>;
|
770
904
|
export interface UpdateCategory {
|
771
|
-
/**
|
905
|
+
/**
|
906
|
+
* Category ID.
|
907
|
+
* @immutable
|
908
|
+
* @maxLength 38
|
909
|
+
*/
|
772
910
|
_id?: string;
|
773
|
-
/**
|
911
|
+
/**
|
912
|
+
* Category label. Displayed in the Category Menu.
|
913
|
+
* @maxLength 35
|
914
|
+
*/
|
774
915
|
label?: string;
|
775
916
|
/**
|
776
917
|
* Number of posts in the category.
|
@@ -782,10 +923,14 @@ export interface UpdateCategory {
|
|
782
923
|
* @readonly
|
783
924
|
*/
|
784
925
|
url?: string;
|
785
|
-
/**
|
926
|
+
/**
|
927
|
+
* Category description.
|
928
|
+
* @maxLength 500
|
929
|
+
*/
|
786
930
|
description?: string | null;
|
787
931
|
/**
|
788
932
|
* Category title.
|
933
|
+
* @maxLength 200
|
789
934
|
* @deprecated Category title.
|
790
935
|
* @targetRemovalDate 2025-07-16
|
791
936
|
*/
|
@@ -797,19 +942,27 @@ export interface UpdateCategory {
|
|
797
942
|
* Default: `-1`
|
798
943
|
*/
|
799
944
|
displayPosition?: number | null;
|
800
|
-
/**
|
945
|
+
/**
|
946
|
+
* ID of the category's translations. All translations of a single category share the same `translationId`.
|
947
|
+
* @format GUID
|
948
|
+
*/
|
801
949
|
translationId?: string | null;
|
802
950
|
/**
|
803
951
|
* Category language.
|
804
952
|
*
|
805
953
|
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
954
|
+
* @immutable
|
806
955
|
*/
|
807
956
|
language?: string | null;
|
808
|
-
/**
|
957
|
+
/**
|
958
|
+
* Part of a category's URL that refers to a specific category. For example, the slug of `https:/example.com/blog/category/famous-cats` is `famous-cats`.
|
959
|
+
* @maxLength 100
|
960
|
+
*/
|
809
961
|
slug?: string;
|
810
962
|
/**
|
811
963
|
* Reserved for internal use.
|
812
964
|
* @readonly
|
965
|
+
* @maxLength 24
|
813
966
|
*/
|
814
967
|
internalId?: string | null;
|
815
968
|
/** SEO data. */
|
@@ -829,6 +982,7 @@ export interface UpdateCategoryOptions {
|
|
829
982
|
*
|
830
983
|
* To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to
|
831
984
|
* retrieve the url field in the response in addition to the category’s base fields.
|
985
|
+
* @maxSize 10
|
832
986
|
*/
|
833
987
|
fieldsets?: Field[];
|
834
988
|
}
|
@@ -857,6 +1011,7 @@ export interface GetCategoryOptions {
|
|
857
1011
|
*
|
858
1012
|
* To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to
|
859
1013
|
* retrieve the url field in the response in addition to the category’s base fields.
|
1014
|
+
* @maxSize 10
|
860
1015
|
*/
|
861
1016
|
fieldsets?: Field[];
|
862
1017
|
}
|
@@ -891,11 +1046,13 @@ export interface GetCategoryBySlugOptions {
|
|
891
1046
|
*
|
892
1047
|
* To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to
|
893
1048
|
* retrieve the url field in the response in addition to the category’s base fields.
|
1049
|
+
* @maxSize 10
|
894
1050
|
*/
|
895
1051
|
fieldsets?: Field[];
|
896
1052
|
/**
|
897
1053
|
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
898
1054
|
* Language of the category to retrieve.
|
1055
|
+
* @format LANGUAGE_TAG
|
899
1056
|
*/
|
900
1057
|
language?: string | null;
|
901
1058
|
}
|
@@ -935,6 +1092,7 @@ export interface ListCategoriesOptions {
|
|
935
1092
|
*
|
936
1093
|
* To retrieve a field, pass the relevant fieldset in the enum in the `fieldsets` array. For example, add the `URL` fieldset to `fieldsets` to
|
937
1094
|
* retrieve the url field in the response in addition to the category’s base fields.
|
1095
|
+
* @maxSize 10
|
938
1096
|
*/
|
939
1097
|
fieldsets?: Field[];
|
940
1098
|
/**
|
@@ -943,6 +1101,7 @@ export interface ListCategoriesOptions {
|
|
943
1101
|
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
944
1102
|
* Pass a language to only receive categories that are in that language.
|
945
1103
|
* If omitted, categories in all languages are returned.
|
1104
|
+
* @format LANGUAGE_TAG
|
946
1105
|
*/
|
947
1106
|
language?: string | null;
|
948
1107
|
}
|
@@ -976,7 +1135,10 @@ export interface ListCategoriesOptions {
|
|
976
1135
|
*/
|
977
1136
|
export declare function queryCategories(options?: QueryCategoriesOptions): CategoriesQueryBuilder;
|
978
1137
|
export interface QueryCategoriesOptions {
|
979
|
-
/**
|
1138
|
+
/**
|
1139
|
+
|
1140
|
+
* @maxSize 10
|
1141
|
+
*/
|
980
1142
|
fieldsets?: Field[] | undefined;
|
981
1143
|
}
|
982
1144
|
interface QueryOffsetResult {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"blog-v3-category-categories.universal.js","sourceRoot":"","sources":["../../../../src/blog-v3-category-categories.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,kEAA8D;AAC9D,oFAGiD;AAEjD,mGAAqF;AACrF,aAAa;AACb,kEAAsF;AACtF,kEAAsF;AACtF,wEAA6F;AAC7F,wEAA6F;AAC7F,sFAAkF;
|
1
|
+
{"version":3,"file":"blog-v3-category-categories.universal.js","sourceRoot":"","sources":["../../../../src/blog-v3-category-categories.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,kEAA8D;AAC9D,oFAGiD;AAEjD,mGAAqF;AACrF,aAAa;AACb,kEAAsF;AACtF,kEAAsF;AACtF,wEAA6F;AAC7F,wEAA6F;AAC7F,sFAAkF;AA6LlF,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,qBAAL,KAAK,QAWhB;AA2TD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AAsOD,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,mCAAnB,mBAAmB,QAM9B;AAkMD;;;;;;;;;;;;GAYG;AACI,KAAK,UAAU,cAAc,CAClC,QAAkB,EAClB,OAA+B;IAE/B,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,IAAA,gCAAc,EAC5B,IAAA,8DAAqC,EAAC;QACpC,QAAQ,EAAE,QAAQ;QAClB,SAAS,EAAE,OAAO,EAAE,SAAS;KAC9B,CAAC,EACF;QACE;YACE,WAAW,EAAE,2CAAgC;YAC7C,KAAK,EAAE;gBACL,EAAE,IAAI,EAAE,cAAc,EAAE;gBACxB,EAAE,IAAI,EAAE,2BAA2B,EAAE;aACtC;SACF;QACD;YACE,WAAW,EAAE,oCAA4B;YACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,CAAC;SACzC;KACF,CACF,CAAC;IAEF,MAAM,OAAO,GAAG,2BAA2B,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;IAEpE,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,IAAA,gEAAuC,EAC5C,IAAA,gCAAc,EAAC,MAAM,CAAC,IAAI,EAAE;YAC1B;gBACE,WAAW,EAAE,2CAAgC;gBAC7C,KAAK,EAAE;oBACL,EAAE,IAAI,EAAE,cAAc,EAAE;oBACxB,EAAE,IAAI,EAAE,2BAA2B,EAAE;iBACtC;aACF;YACD;gBACE,WAAW,EAAE,oCAA4B;gBACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,CAAC;aACzC;SACF,CAAC,CACH,EAAE,QAAS,CAAC;IACf,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE;gBACxB,QAAQ,EAAE,MAAM;gBAChB,SAAS,EAAE,gBAAgB;aAC5B;YACD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,UAAU,EAAE,SAAS,CAAC,CACxB,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AArED,wCAqEC;AAcD;;;;;;;;;;;;GAYG;AACI,KAAK,UAAU,cAAc,CAClC,GAAW,EACX,QAAwB,EACxB,OAA+B;IAE/B,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,IAAA,gCAAc,EAC5B,IAAA,8DAAqC,EAAC;QACpC,QAAQ,EAAE,EAAE,GAAG,QAAQ,EAAE,EAAE,EAAE,GAAG,EAAE;QAClC,SAAS,EAAE,OAAO,EAAE,SAAS;KAC9B,CAAC,EACF;QACE;YACE,WAAW,EAAE,2CAAgC;YAC7C,KAAK,EAAE;gBACL,EAAE,IAAI,EAAE,cAAc,EAAE;gBACxB,EAAE,IAAI,EAAE,2BAA2B,EAAE;aACtC;SACF;QACD;YACE,WAAW,EAAE,oCAA4B;YACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,CAAC;SACzC;KACF,CACF,CAAC;IAEF,MAAM,OAAO,GAAG,2BAA2B,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;IAEpE,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,IAAA,gEAAuC,EAC5C,IAAA,gCAAc,EAAC,MAAM,CAAC,IAAI,EAAE;YAC1B;gBACE,WAAW,EAAE,2CAAgC;gBAC7C,KAAK,EAAE;oBACL,EAAE,IAAI,EAAE,cAAc,EAAE;oBACxB,EAAE,IAAI,EAAE,2BAA2B,EAAE;iBACtC;aACF;YACD;gBACE,WAAW,EAAE,oCAA4B;gBACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,CAAC;aACzC;SACF,CAAC,CACH,EAAE,QAAS,CAAC;IACf,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE;YAC5C,wBAAwB,EAAE;gBACxB,aAAa,EAAE,MAAM;gBACrB,SAAS,EAAE,gBAAgB;aAC5B;YACD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,KAAK,EAAE,UAAU,EAAE,SAAS,CAAC,CAC/B,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AAtED,wCAsEC;AAyFD;;;;;;;;;;;;;;;;GAgBG;AACI,KAAK,UAAU,WAAW,CAC/B,UAAkB,EAClB,OAA4B;IAE5B,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,IAAA,8DAAqC,EAAC;QACpD,UAAU,EAAE,UAAU;QACtB,SAAS,EAAE,OAAO,EAAE,SAAS;KAC9B,CAAC,CAAC;IAEH,MAAM,OAAO,GAAG,2BAA2B,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;IAEjE,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,IAAA,gEAAuC,EAC5C,IAAA,gCAAc,EAAC,MAAM,CAAC,IAAI,EAAE;YAC1B;gBACE,WAAW,EAAE,2CAAgC;gBAC7C,KAAK,EAAE;oBACL,EAAE,IAAI,EAAE,cAAc,EAAE;oBACxB,EAAE,IAAI,EAAE,2BAA2B,EAAE;iBACtC;aACF;YACD;gBACE,WAAW,EAAE,oCAA4B;gBACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,CAAC;aACzC;SACF,CAAC,CACF,CAAC;IACL,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE;gBACxB,UAAU,EAAE,MAAM;gBAClB,SAAS,EAAE,gBAAgB;aAC5B;YACD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,YAAY,EAAE,SAAS,CAAC,CAC1B,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AAtDD,kCAsDC;AAcD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACI,KAAK,UAAU,iBAAiB,CACrC,IAAY,EACZ,OAAkC;IAIlC,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,IAAA,8DAAqC,EAAC;QACpD,IAAI,EAAE,IAAI;QACV,SAAS,EAAE,OAAO,EAAE,SAAS;QAC7B,QAAQ,EAAE,OAAO,EAAE,QAAQ;KAC5B,CAAC,CAAC;IAEH,MAAM,OAAO,GAAG,2BAA2B,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAC;IAEvE,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,IAAA,gEAAuC,EAC5C,IAAA,gCAAc,EAAC,MAAM,CAAC,IAAI,EAAE;YAC1B;gBACE,WAAW,EAAE,2CAAgC;gBAC7C,KAAK,EAAE;oBACL,EAAE,IAAI,EAAE,cAAc,EAAE;oBACxB,EAAE,IAAI,EAAE,2BAA2B,EAAE;iBACtC;aACF;YACD;gBACE,WAAW,EAAE,oCAA4B;gBACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,qBAAqB,EAAE,CAAC;aACzC;SACF,CAAC,CACF,CAAC;IACL,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE;gBACxB,IAAI,EAAE,MAAM;gBACZ,SAAS,EAAE,gBAAgB;gBAC3B,QAAQ,EAAE,eAAe;aAC1B;YACD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,MAAM,EAAE,SAAS,CAAC,CACpB,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AA1DD,8CA0DC;AAoBD;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACI,KAAK,UAAU,cAAc,CAClC,OAA+B;IAE/B,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,IAAA,8DAAqC,EAAC;QACpD,MAAM,EAAE,OAAO,EAAE,MAAM;QACvB,SAAS,EAAE,OAAO,EAAE,SAAS;QAC7B,QAAQ,EAAE,OAAO,EAAE,QAAQ;KAC5B,CAAC,CAAC;IAEH,MAAM,OAAO,GAAG,2BAA2B,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;IAEpE,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,IAAA,gEAAuC,EAC5C,IAAA,gCAAc,EAAC,MAAM,CAAC,IAAI,EAAE;YAC1B;gBACE,WAAW,EAAE,2CAAgC;gBAC7C,KAAK,EAAE;oBACL,EAAE,IAAI,EAAE,gBAAgB,EAAE;oBAC1B,EAAE,IAAI,EAAE,6BAA6B,EAAE;iBACxC;aACF;YACD;gBACE,WAAW,EAAE,oCAA4B;gBACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,uBAAuB,EAAE,CAAC;aAC3C;SACF,CAAC,CACF,CAAC;IACL,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE;gBACxB,MAAM,EAAE,aAAa;gBACrB,SAAS,EAAE,gBAAgB;gBAC3B,QAAQ,EAAE,eAAe;aAC1B;YACD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,SAAS,CAAC,CACZ,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AAvDD,wCAuDC;AAyBD;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,SAAgB,eAAe,CAC7B,OAAgC;IAEhC,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,OAAO,IAAA,4BAAY,EAKjB;QACA,IAAI,EAAE,KAAK,EAAE,OAA+B,EAAE,EAAE;YAC9C,MAAM,OAAO,GAAG,2BAA2B,CAAC,eAAe,CAAC;gBAC1D,GAAG,OAAO;gBACV,GAAG,CAAC,OAAO,IAAI,EAAE,CAAC;aACnB,CAAC,CAAC;YAEH,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;YAC5B,IAAI,CAAC;gBACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;gBACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;gBACjC,OAAO,MAAM,CAAC;YAChB,CAAC;YAAC,OAAO,GAAG,EAAE,CAAC;gBACb,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;gBAC5B,MAAM,GAAG,CAAC;YACZ,CAAC;QACH,CAAC;QACD,kBAAkB,EAAE,CAAC,KAAsC,EAAE,EAAE;YAC7D,MAAM,IAAI,GAAG,CAAC,KAAK,EAAE,OAAO,CAG3B,CAAC;YACF,OAAO,IAAA,8DAAqC,EAAC;gBAC3C,GAAG,IAAI,EAAE,CAAC,CAAC,CAAC;gBACZ,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;aACjB,CAAC,CAAC;QACL,CAAC;QACD,mBAAmB,EAAE,CAAC,EAAE,IAAI,EAAyC,EAAE,EAAE;YACvE,MAAM,eAAe,GAAG,IAAA,gEAAuC,EAC7D,IAAA,gCAAc,EAAC,IAAI,EAAE;gBACnB;oBACE,WAAW,EAAE,2CAAgC;oBAC7C,KAAK,EAAE;wBACL,EAAE,IAAI,EAAE,gBAAgB,EAAE;wBAC1B,EAAE,IAAI,EAAE,6BAA6B,EAAE;qBACxC;iBACF;gBACD;oBACE,WAAW,EAAE,oCAA4B;oBACzC,KAAK,EAAE,CAAC,EAAE,IAAI,EAAE,uBAAuB,EAAE,CAAC;iBAC3C;aACF,CAAC,CACH,CAAC;YAEF,OAAO;gBACL,KAAK,EAAE,eAAe,EAAE,UAAU;gBAClC,cAAc,EAAE,eAAe,EAAE,cAAc;aAChD,CAAC;QACJ,CAAC;QACD,gBAAgB,EAAE,CAAC,GAAY,EAAE,EAAE;YACjC,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EAAC,GAAG,EAAE;gBAC9C,sBAAsB,EAAE,EAAE;gBAC1B,wBAAwB,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;gBAC3C,uBAAuB,EAAE,KAAK;aAC/B,CAAC,CAAC;YAEH,MAAM,gBAAgB,CAAC;QACzB,CAAC;QACD,YAAY,EAAE,QAAQ;QACtB,mBAAmB,EAAE,EAAE;KACxB,CAAC,CAAC;AACL,CAAC;AA3ED,0CA2EC;AA+ID;;;;;;;;;;GAUG;AACI,KAAK,UAAU,cAAc,CAAC,UAAkB;IACrD,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,IAAA,8DAAqC,EAAC;QACpD,UAAU,EAAE,UAAU;KACvB,CAAC,CAAC;IAEH,MAAM,OAAO,GAAG,2BAA2B,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;IAEpE,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;IACnC,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE,EAAE,UAAU,EAAE,MAAM,EAAE;YAChD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,YAAY,CAAC,CACf,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AA/BD,wCA+BC"}
|