@wix/auto_sdk_blog_categories 1.0.1 → 1.0.3
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 +159 -43
- package/build/cjs/src/blog-v3-category-categories.types.js +0 -5
- package/build/cjs/src/blog-v3-category-categories.types.js.map +1 -1
- package/build/cjs/src/blog-v3-category-categories.universal.d.ts +203 -58
- package/build/cjs/src/blog-v3-category-categories.universal.js +0 -5
- package/build/cjs/src/blog-v3-category-categories.universal.js.map +1 -1
- package/build/es/src/blog-v3-category-categories.types.d.ts +159 -43
- package/build/es/src/blog-v3-category-categories.types.js +0 -5
- package/build/es/src/blog-v3-category-categories.types.js.map +1 -1
- package/build/es/src/blog-v3-category-categories.universal.d.ts +203 -58
- package/build/es/src/blog-v3-category-categories.universal.js +0 -5
- 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 +159 -43
- package/build/internal/cjs/src/blog-v3-category-categories.types.js +0 -5
- 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 +203 -58
- package/build/internal/cjs/src/blog-v3-category-categories.universal.js +0 -5
- 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 +159 -43
- package/build/internal/es/src/blog-v3-category-categories.types.js +0 -5
- 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 +203 -58
- package/build/internal/es/src/blog-v3-category-categories.universal.js +0 -5
- 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,21 +39,23 @@ 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
|
-
/** 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`. */
|
40
|
-
slug?: string;
|
41
54
|
/**
|
42
|
-
*
|
43
|
-
* @
|
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
|
44
57
|
*/
|
45
|
-
|
58
|
+
slug?: string;
|
46
59
|
/** SEO data. */
|
47
60
|
seoData?: SeoSchema;
|
48
61
|
/** Category cover image. */
|
@@ -69,7 +82,10 @@ export interface Keyword {
|
|
69
82
|
term?: string;
|
70
83
|
/** Whether the keyword is the main focus keyword. */
|
71
84
|
isMain?: boolean;
|
72
|
-
/**
|
85
|
+
/**
|
86
|
+
* The source that added the keyword terms to the SEO settings.
|
87
|
+
* @maxLength 1000
|
88
|
+
*/
|
73
89
|
origin?: string | null;
|
74
90
|
}
|
75
91
|
export interface Tag {
|
@@ -102,7 +118,10 @@ export interface Settings {
|
|
102
118
|
* Default: `false` (Auto Redirect is enabled.)
|
103
119
|
*/
|
104
120
|
preventAutoRedirect?: boolean;
|
105
|
-
/**
|
121
|
+
/**
|
122
|
+
* User-selected keyword terms for a specific page.
|
123
|
+
* @maxSize 5
|
124
|
+
*/
|
106
125
|
keywords?: Keyword[];
|
107
126
|
}
|
108
127
|
export interface FocalPoint {
|
@@ -116,11 +135,20 @@ export interface FocalPoint {
|
|
116
135
|
width?: number | null;
|
117
136
|
}
|
118
137
|
export interface CategoryTranslation {
|
119
|
-
/**
|
138
|
+
/**
|
139
|
+
* Category ID.
|
140
|
+
* @format GUID
|
141
|
+
*/
|
120
142
|
_id?: string;
|
121
|
-
/**
|
143
|
+
/**
|
144
|
+
* Label displayed in the categories menu on the site.
|
145
|
+
* @maxLength 100
|
146
|
+
*/
|
122
147
|
label?: string | null;
|
123
|
-
/**
|
148
|
+
/**
|
149
|
+
* Language of the category.
|
150
|
+
* @format LANGUAGE_TAG
|
151
|
+
*/
|
124
152
|
language?: string | null;
|
125
153
|
/** URL of this category page. */
|
126
154
|
url?: string;
|
@@ -138,6 +166,7 @@ export interface CreateCategoryRequest {
|
|
138
166
|
*
|
139
167
|
* 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
168
|
* retrieve the url field in the response in addition to the category’s base fields.
|
169
|
+
* @maxSize 10
|
141
170
|
*/
|
142
171
|
fieldsets?: Field[];
|
143
172
|
}
|
@@ -145,11 +174,6 @@ export declare enum Field {
|
|
145
174
|
UNKNOWN = "UNKNOWN",
|
146
175
|
/** Includes Category url. */
|
147
176
|
URL = "URL",
|
148
|
-
/**
|
149
|
-
* Includes internal id field.
|
150
|
-
* Reserved for internal use
|
151
|
-
*/
|
152
|
-
INTERNAL_ID = "INTERNAL_ID",
|
153
177
|
/** Includes SEO data. */
|
154
178
|
SEO = "SEO"
|
155
179
|
}
|
@@ -158,7 +182,11 @@ export interface CreateCategoryResponse {
|
|
158
182
|
category?: Category;
|
159
183
|
}
|
160
184
|
export interface BulkCreateCategoriesRequest {
|
161
|
-
/**
|
185
|
+
/**
|
186
|
+
* Categories to create.
|
187
|
+
* @minSize 1
|
188
|
+
* @maxSize 50
|
189
|
+
*/
|
162
190
|
categories?: Category[];
|
163
191
|
/** Whether to return the full created category entities in the response. */
|
164
192
|
returnFullEntity?: boolean;
|
@@ -168,6 +196,7 @@ export interface BulkCreateCategoriesRequest {
|
|
168
196
|
*
|
169
197
|
* 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
198
|
* retrieve the url field in the response in addition to the category’s base fields.
|
199
|
+
* @maxSize 10
|
171
200
|
*/
|
172
201
|
fieldsets?: Field[];
|
173
202
|
}
|
@@ -210,7 +239,11 @@ export interface BulkActionMetadata {
|
|
210
239
|
undetailedFailures?: number;
|
211
240
|
}
|
212
241
|
export interface BulkUpdateCategoriesRequest {
|
213
|
-
/**
|
242
|
+
/**
|
243
|
+
* Categories to update.
|
244
|
+
* @minSize 1
|
245
|
+
* @maxSize 100
|
246
|
+
*/
|
214
247
|
categories?: MaskedCategory[];
|
215
248
|
/** Whether to return the full created category entities in the response. */
|
216
249
|
returnFullEntity?: boolean;
|
@@ -220,6 +253,7 @@ export interface BulkUpdateCategoriesRequest {
|
|
220
253
|
*
|
221
254
|
* 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
255
|
* retrieve the url field in the response in addition to the category’s base fields.
|
256
|
+
* @maxSize 10
|
223
257
|
*/
|
224
258
|
fieldsets?: Field[];
|
225
259
|
}
|
@@ -244,6 +278,7 @@ export interface UpdateCategoryRequest {
|
|
244
278
|
*
|
245
279
|
* 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
280
|
* retrieve the url field in the response in addition to the category’s base fields.
|
281
|
+
* @maxSize 10
|
247
282
|
*/
|
248
283
|
fieldsets?: Field[];
|
249
284
|
}
|
@@ -258,13 +293,20 @@ export interface GetCategoriesCountByLanguageResponse {
|
|
258
293
|
categoriesLanguageCount?: CategoryLanguageCount[];
|
259
294
|
}
|
260
295
|
export interface CategoryLanguageCount {
|
261
|
-
/**
|
296
|
+
/**
|
297
|
+
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
298
|
+
* @format LANGUAGE_TAG
|
299
|
+
*/
|
262
300
|
languageCode?: string | null;
|
263
301
|
/** The count of Categories for the language. */
|
264
302
|
categoryCount?: number | null;
|
265
303
|
}
|
266
304
|
export interface GetCategoryRequest {
|
267
|
-
/**
|
305
|
+
/**
|
306
|
+
* Category ID.
|
307
|
+
* @minLength 1
|
308
|
+
* @maxLength 38
|
309
|
+
*/
|
268
310
|
categoryId: string;
|
269
311
|
/**
|
270
312
|
* List of additional category fields to include in the response. By default
|
@@ -272,6 +314,7 @@ export interface GetCategoryRequest {
|
|
272
314
|
*
|
273
315
|
* 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
316
|
* retrieve the url field in the response in addition to the category’s base fields.
|
317
|
+
* @maxSize 10
|
275
318
|
*/
|
276
319
|
fieldsets?: Field[];
|
277
320
|
}
|
@@ -280,7 +323,11 @@ export interface GetCategoryResponse {
|
|
280
323
|
category?: Category;
|
281
324
|
}
|
282
325
|
export interface GetCategoryBySlugRequest {
|
283
|
-
/**
|
326
|
+
/**
|
327
|
+
* Slug of the category to retrieve.
|
328
|
+
* @minLength 1
|
329
|
+
* @maxLength 100
|
330
|
+
*/
|
284
331
|
slug: string;
|
285
332
|
/**
|
286
333
|
* List of additional category fields to include in the response. By default
|
@@ -288,11 +335,13 @@ export interface GetCategoryBySlugRequest {
|
|
288
335
|
*
|
289
336
|
* 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
337
|
* retrieve the url field in the response in addition to the category’s base fields.
|
338
|
+
* @maxSize 10
|
291
339
|
*/
|
292
340
|
fieldsets?: Field[];
|
293
341
|
/**
|
294
342
|
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
295
343
|
* Language of the category to retrieve.
|
344
|
+
* @format LANGUAGE_TAG
|
296
345
|
*/
|
297
346
|
language?: string | null;
|
298
347
|
}
|
@@ -309,6 +358,7 @@ export interface ListCategoriesRequest {
|
|
309
358
|
*
|
310
359
|
* 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
360
|
* retrieve the url field in the response in addition to the category’s base fields.
|
361
|
+
* @maxSize 10
|
312
362
|
*/
|
313
363
|
fieldsets?: Field[];
|
314
364
|
/**
|
@@ -317,6 +367,7 @@ export interface ListCategoriesRequest {
|
|
317
367
|
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
318
368
|
* Pass a language to only receive categories that are in that language.
|
319
369
|
* If omitted, categories in all languages are returned.
|
370
|
+
* @format LANGUAGE_TAG
|
320
371
|
*/
|
321
372
|
language?: string | null;
|
322
373
|
}
|
@@ -334,9 +385,14 @@ export interface BlogPaging {
|
|
334
385
|
* Default: `50`
|
335
386
|
*
|
336
387
|
* Max: `100`
|
388
|
+
* @min 1
|
389
|
+
* @max 100
|
337
390
|
*/
|
338
391
|
limit?: number;
|
339
|
-
/**
|
392
|
+
/**
|
393
|
+
* Pointer to the next or previous page in the list of results.
|
394
|
+
* @maxLength 2000
|
395
|
+
*/
|
340
396
|
cursor?: string | null;
|
341
397
|
}
|
342
398
|
export interface ListCategoriesResponse {
|
@@ -352,7 +408,10 @@ export interface MetaData {
|
|
352
408
|
offset?: number;
|
353
409
|
/** Total number of items that match the query. */
|
354
410
|
total?: number;
|
355
|
-
/**
|
411
|
+
/**
|
412
|
+
* Pointer to the next or previous page in the list of results.
|
413
|
+
* @maxLength 2000
|
414
|
+
*/
|
356
415
|
cursor?: string | null;
|
357
416
|
}
|
358
417
|
export interface QueryCategoriesRequest {
|
@@ -364,6 +423,7 @@ export interface QueryCategoriesRequest {
|
|
364
423
|
*
|
365
424
|
* 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
425
|
* retrieve the url field in the response in addition to the category’s base fields.
|
426
|
+
* @maxSize 10
|
367
427
|
*/
|
368
428
|
fieldsets?: Field[];
|
369
429
|
}
|
@@ -384,6 +444,7 @@ export interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
|
|
384
444
|
/**
|
385
445
|
* Sort object in the following format:
|
386
446
|
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
447
|
+
* @maxSize 3
|
387
448
|
*/
|
388
449
|
sort?: Sorting[];
|
389
450
|
}
|
@@ -395,7 +456,10 @@ export interface PlatformQueryPagingMethodOneOf {
|
|
395
456
|
cursorPaging?: CursorPaging;
|
396
457
|
}
|
397
458
|
export interface Sorting {
|
398
|
-
/**
|
459
|
+
/**
|
460
|
+
* Name of the field to sort by.
|
461
|
+
* @maxLength 512
|
462
|
+
*/
|
399
463
|
fieldName?: string;
|
400
464
|
/** Sort order. */
|
401
465
|
order?: SortOrder;
|
@@ -405,13 +469,19 @@ export declare enum SortOrder {
|
|
405
469
|
DESC = "DESC"
|
406
470
|
}
|
407
471
|
export interface Paging {
|
408
|
-
/**
|
472
|
+
/**
|
473
|
+
* Number of items to load.
|
474
|
+
* @max 100
|
475
|
+
*/
|
409
476
|
limit?: number | null;
|
410
477
|
/** Number of items to skip in the current sort order. */
|
411
478
|
offset?: number | null;
|
412
479
|
}
|
413
480
|
export interface CursorPaging {
|
414
|
-
/**
|
481
|
+
/**
|
482
|
+
* Number of items to load.
|
483
|
+
* @max 100
|
484
|
+
*/
|
415
485
|
limit?: number | null;
|
416
486
|
/**
|
417
487
|
* Pointer to the next or previous page in the list of results.
|
@@ -419,6 +489,7 @@ export interface CursorPaging {
|
|
419
489
|
* You can get the relevant cursor token
|
420
490
|
* from the `pagingMetadata` object in the previous call's response.
|
421
491
|
* Not relevant for the first request.
|
492
|
+
* @maxLength 2000
|
422
493
|
*/
|
423
494
|
cursor?: string | null;
|
424
495
|
}
|
@@ -441,13 +512,24 @@ export interface PagingMetadataV2 {
|
|
441
512
|
cursors?: Cursors;
|
442
513
|
}
|
443
514
|
export interface Cursors {
|
444
|
-
/**
|
515
|
+
/**
|
516
|
+
* Cursor pointing to next page in the list of results.
|
517
|
+
* @maxLength 2000
|
518
|
+
*/
|
445
519
|
next?: string | null;
|
446
|
-
/**
|
520
|
+
/**
|
521
|
+
* Cursor pointing to previous page in the list of results.
|
522
|
+
* @maxLength 2000
|
523
|
+
*/
|
447
524
|
prev?: string | null;
|
448
525
|
}
|
449
526
|
export interface BulkDeleteCategoryRequest {
|
450
|
-
/**
|
527
|
+
/**
|
528
|
+
* Category IDs.
|
529
|
+
* @minSize 1
|
530
|
+
* @maxSize 100
|
531
|
+
* @maxLength 38
|
532
|
+
*/
|
451
533
|
categoryIds?: string[];
|
452
534
|
/** Should delete bypassing the trash-bin. */
|
453
535
|
permanent?: boolean;
|
@@ -455,7 +537,11 @@ export interface BulkDeleteCategoryRequest {
|
|
455
537
|
export interface BulkDeleteCategoryResponse {
|
456
538
|
}
|
457
539
|
export interface DeleteCategoryRequest {
|
458
|
-
/**
|
540
|
+
/**
|
541
|
+
* Category ID.
|
542
|
+
* @minLength 1
|
543
|
+
* @maxLength 38
|
544
|
+
*/
|
459
545
|
categoryId: string;
|
460
546
|
}
|
461
547
|
export interface DeleteCategoryResponse {
|
@@ -531,9 +617,15 @@ export interface ActionEvent {
|
|
531
617
|
body?: string;
|
532
618
|
}
|
533
619
|
export interface MessageEnvelope {
|
534
|
-
/**
|
620
|
+
/**
|
621
|
+
* App instance ID.
|
622
|
+
* @format GUID
|
623
|
+
*/
|
535
624
|
instanceId?: string | null;
|
536
|
-
/**
|
625
|
+
/**
|
626
|
+
* Event type.
|
627
|
+
* @maxLength 150
|
628
|
+
*/
|
537
629
|
eventType?: string;
|
538
630
|
/** The identification type and identity data. */
|
539
631
|
identity?: IdentificationData;
|
@@ -541,26 +633,50 @@ export interface MessageEnvelope {
|
|
541
633
|
data?: string;
|
542
634
|
}
|
543
635
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
544
|
-
/**
|
636
|
+
/**
|
637
|
+
* ID of a site visitor that has not logged in to the site.
|
638
|
+
* @format GUID
|
639
|
+
*/
|
545
640
|
anonymousVisitorId?: string;
|
546
|
-
/**
|
641
|
+
/**
|
642
|
+
* ID of a site visitor that has logged in to the site.
|
643
|
+
* @format GUID
|
644
|
+
*/
|
547
645
|
memberId?: string;
|
548
|
-
/**
|
646
|
+
/**
|
647
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
648
|
+
* @format GUID
|
649
|
+
*/
|
549
650
|
wixUserId?: string;
|
550
|
-
/**
|
651
|
+
/**
|
652
|
+
* ID of an app.
|
653
|
+
* @format GUID
|
654
|
+
*/
|
551
655
|
appId?: string;
|
552
656
|
/** @readonly */
|
553
657
|
identityType?: WebhookIdentityType;
|
554
658
|
}
|
555
659
|
/** @oneof */
|
556
660
|
export interface IdentificationDataIdOneOf {
|
557
|
-
/**
|
661
|
+
/**
|
662
|
+
* ID of a site visitor that has not logged in to the site.
|
663
|
+
* @format GUID
|
664
|
+
*/
|
558
665
|
anonymousVisitorId?: string;
|
559
|
-
/**
|
666
|
+
/**
|
667
|
+
* ID of a site visitor that has logged in to the site.
|
668
|
+
* @format GUID
|
669
|
+
*/
|
560
670
|
memberId?: string;
|
561
|
-
/**
|
671
|
+
/**
|
672
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
673
|
+
* @format GUID
|
674
|
+
*/
|
562
675
|
wixUserId?: string;
|
563
|
-
/**
|
676
|
+
/**
|
677
|
+
* ID of an app.
|
678
|
+
* @format GUID
|
679
|
+
*/
|
564
680
|
appId?: string;
|
565
681
|
}
|
566
682
|
export declare enum WebhookIdentityType {
|
@@ -628,9 +744,15 @@ export interface QueryCategoriesResponseNonNullableFields {
|
|
628
744
|
categories: CategoryNonNullableFields[];
|
629
745
|
}
|
630
746
|
export interface BaseEventMetadata {
|
631
|
-
/**
|
747
|
+
/**
|
748
|
+
* App instance ID.
|
749
|
+
* @format GUID
|
750
|
+
*/
|
632
751
|
instanceId?: string | null;
|
633
|
-
/**
|
752
|
+
/**
|
753
|
+
* Event type.
|
754
|
+
* @maxLength 150
|
755
|
+
*/
|
634
756
|
eventType?: string;
|
635
757
|
/** The identification type and identity data. */
|
636
758
|
identity?: IdentificationData;
|
@@ -750,6 +872,7 @@ export interface CreateCategoryOptions {
|
|
750
872
|
*
|
751
873
|
* 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
874
|
* retrieve the url field in the response in addition to the category’s base fields.
|
875
|
+
* @maxSize 10
|
753
876
|
*/
|
754
877
|
fieldsets?: Field[];
|
755
878
|
}
|
@@ -768,9 +891,16 @@ export interface CreateCategoryOptions {
|
|
768
891
|
*/
|
769
892
|
export declare function updateCategory(_id: string, category: UpdateCategory, options?: UpdateCategoryOptions): Promise<Category & CategoryNonNullableFields>;
|
770
893
|
export interface UpdateCategory {
|
771
|
-
/**
|
894
|
+
/**
|
895
|
+
* Category ID.
|
896
|
+
* @immutable
|
897
|
+
* @maxLength 38
|
898
|
+
*/
|
772
899
|
_id?: string;
|
773
|
-
/**
|
900
|
+
/**
|
901
|
+
* Category label. Displayed in the Category Menu.
|
902
|
+
* @maxLength 35
|
903
|
+
*/
|
774
904
|
label?: string;
|
775
905
|
/**
|
776
906
|
* Number of posts in the category.
|
@@ -782,10 +912,14 @@ export interface UpdateCategory {
|
|
782
912
|
* @readonly
|
783
913
|
*/
|
784
914
|
url?: string;
|
785
|
-
/**
|
915
|
+
/**
|
916
|
+
* Category description.
|
917
|
+
* @maxLength 500
|
918
|
+
*/
|
786
919
|
description?: string | null;
|
787
920
|
/**
|
788
921
|
* Category title.
|
922
|
+
* @maxLength 200
|
789
923
|
* @deprecated Category title.
|
790
924
|
* @targetRemovalDate 2025-07-16
|
791
925
|
*/
|
@@ -797,21 +931,23 @@ export interface UpdateCategory {
|
|
797
931
|
* Default: `-1`
|
798
932
|
*/
|
799
933
|
displayPosition?: number | null;
|
800
|
-
/**
|
934
|
+
/**
|
935
|
+
* ID of the category's translations. All translations of a single category share the same `translationId`.
|
936
|
+
* @format GUID
|
937
|
+
*/
|
801
938
|
translationId?: string | null;
|
802
939
|
/**
|
803
940
|
* Category language.
|
804
941
|
*
|
805
942
|
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
943
|
+
* @immutable
|
806
944
|
*/
|
807
945
|
language?: string | null;
|
808
|
-
/** 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`. */
|
809
|
-
slug?: string;
|
810
946
|
/**
|
811
|
-
*
|
812
|
-
* @
|
947
|
+
* 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`.
|
948
|
+
* @maxLength 100
|
813
949
|
*/
|
814
|
-
|
950
|
+
slug?: string;
|
815
951
|
/** SEO data. */
|
816
952
|
seoData?: SeoSchema;
|
817
953
|
/** Category cover image. */
|
@@ -829,6 +965,7 @@ export interface UpdateCategoryOptions {
|
|
829
965
|
*
|
830
966
|
* 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
967
|
* retrieve the url field in the response in addition to the category’s base fields.
|
968
|
+
* @maxSize 10
|
832
969
|
*/
|
833
970
|
fieldsets?: Field[];
|
834
971
|
}
|
@@ -857,6 +994,7 @@ export interface GetCategoryOptions {
|
|
857
994
|
*
|
858
995
|
* 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
996
|
* retrieve the url field in the response in addition to the category’s base fields.
|
997
|
+
* @maxSize 10
|
860
998
|
*/
|
861
999
|
fieldsets?: Field[];
|
862
1000
|
}
|
@@ -891,11 +1029,13 @@ export interface GetCategoryBySlugOptions {
|
|
891
1029
|
*
|
892
1030
|
* 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
1031
|
* retrieve the url field in the response in addition to the category’s base fields.
|
1032
|
+
* @maxSize 10
|
894
1033
|
*/
|
895
1034
|
fieldsets?: Field[];
|
896
1035
|
/**
|
897
1036
|
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
898
1037
|
* Language of the category to retrieve.
|
1038
|
+
* @format LANGUAGE_TAG
|
899
1039
|
*/
|
900
1040
|
language?: string | null;
|
901
1041
|
}
|
@@ -935,6 +1075,7 @@ export interface ListCategoriesOptions {
|
|
935
1075
|
*
|
936
1076
|
* 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
1077
|
* retrieve the url field in the response in addition to the category’s base fields.
|
1078
|
+
* @maxSize 10
|
938
1079
|
*/
|
939
1080
|
fieldsets?: Field[];
|
940
1081
|
/**
|
@@ -943,6 +1084,7 @@ export interface ListCategoriesOptions {
|
|
943
1084
|
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
944
1085
|
* Pass a language to only receive categories that are in that language.
|
945
1086
|
* If omitted, categories in all languages are returned.
|
1087
|
+
* @format LANGUAGE_TAG
|
946
1088
|
*/
|
947
1089
|
language?: string | null;
|
948
1090
|
}
|
@@ -976,7 +1118,10 @@ export interface ListCategoriesOptions {
|
|
976
1118
|
*/
|
977
1119
|
export declare function queryCategories(options?: QueryCategoriesOptions): CategoriesQueryBuilder;
|
978
1120
|
export interface QueryCategoriesOptions {
|
979
|
-
/**
|
1121
|
+
/**
|
1122
|
+
|
1123
|
+
* @maxSize 10
|
1124
|
+
*/
|
980
1125
|
fieldsets?: Field[] | undefined;
|
981
1126
|
}
|
982
1127
|
interface QueryOffsetResult {
|
@@ -998,11 +1143,11 @@ export interface CategoriesQueryBuilder {
|
|
998
1143
|
/** @param propertyName - Property whose value is compared with `value`.
|
999
1144
|
* @param value - Value to compare against.
|
1000
1145
|
*/
|
1001
|
-
eq: (propertyName: '_id' | 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language' | 'slug'
|
1146
|
+
eq: (propertyName: '_id' | 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language' | 'slug', value: any) => CategoriesQueryBuilder;
|
1002
1147
|
/** @param propertyName - Property whose value is compared with `value`.
|
1003
1148
|
* @param value - Value to compare against.
|
1004
1149
|
*/
|
1005
|
-
ne: (propertyName: '_id' | 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language' | 'slug'
|
1150
|
+
ne: (propertyName: '_id' | 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language' | 'slug', value: any) => CategoriesQueryBuilder;
|
1006
1151
|
/** @param propertyName - Property whose value is compared with `value`.
|
1007
1152
|
* @param value - Value to compare against.
|
1008
1153
|
*/
|
@@ -1023,7 +1168,7 @@ export interface CategoriesQueryBuilder {
|
|
1023
1168
|
* @param string - String to compare against. Case-insensitive.
|
1024
1169
|
*/
|
1025
1170
|
startsWith: (propertyName: 'label' | 'title', value: string) => CategoriesQueryBuilder;
|
1026
|
-
in: (propertyName: '_id' | 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language' | 'slug'
|
1171
|
+
in: (propertyName: '_id' | 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language' | 'slug', value: any) => CategoriesQueryBuilder;
|
1027
1172
|
exists: (propertyName: 'label' | 'title' | 'translationId' | 'language' | 'slug', value: boolean) => CategoriesQueryBuilder;
|
1028
1173
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
1029
1174
|
ascending: (...propertyNames: Array<'_id' | 'label' | 'postCount' | 'title' | 'displayPosition' | 'language' | 'slug'>) => CategoriesQueryBuilder;
|
@@ -39,11 +39,6 @@ var Field;
|
|
39
39
|
Field["UNKNOWN"] = "UNKNOWN";
|
40
40
|
/** Includes Category url. */
|
41
41
|
Field["URL"] = "URL";
|
42
|
-
/**
|
43
|
-
* Includes internal id field.
|
44
|
-
* Reserved for internal use
|
45
|
-
*/
|
46
|
-
Field["INTERNAL_ID"] = "INTERNAL_ID";
|
47
42
|
/** Includes SEO data. */
|
48
43
|
Field["SEO"] = "SEO";
|
49
44
|
})(Field || (exports.Field = Field = {}));
|
@@ -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":"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"}
|