@wix/auto_sdk_blog_categories 1.0.0 → 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 +210 -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 +210 -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 +210 -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 +210 -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;
|
@@ -688,6 +821,8 @@ export interface CategoryCreatedEnvelope {
|
|
688
821
|
* @permissionId BLOG.READ-CATEGORY
|
689
822
|
* @webhook
|
690
823
|
* @eventType wix.blog.v3.category_created
|
824
|
+
* @serviceIdentifier com.wixpress.npm.communities.platformized.blog.v3.CategoryService
|
825
|
+
* @slug created
|
691
826
|
*/
|
692
827
|
export declare function onCategoryCreated(handler: (event: CategoryCreatedEnvelope) => void | Promise<void>): void;
|
693
828
|
export interface CategoryDeletedEnvelope {
|
@@ -704,6 +839,8 @@ export interface CategoryDeletedEnvelope {
|
|
704
839
|
* @permissionId BLOG.READ-CATEGORY
|
705
840
|
* @webhook
|
706
841
|
* @eventType wix.blog.v3.category_deleted
|
842
|
+
* @serviceIdentifier com.wixpress.npm.communities.platformized.blog.v3.CategoryService
|
843
|
+
* @slug deleted
|
707
844
|
*/
|
708
845
|
export declare function onCategoryDeleted(handler: (event: CategoryDeletedEnvelope) => void | Promise<void>): void;
|
709
846
|
export interface CategoryUpdatedEnvelope {
|
@@ -721,6 +858,8 @@ export interface CategoryUpdatedEnvelope {
|
|
721
858
|
* @permissionId BLOG.READ-CATEGORY
|
722
859
|
* @webhook
|
723
860
|
* @eventType wix.blog.v3.category_updated
|
861
|
+
* @serviceIdentifier com.wixpress.npm.communities.platformized.blog.v3.CategoryService
|
862
|
+
* @slug updated
|
724
863
|
*/
|
725
864
|
export declare function onCategoryUpdated(handler: (event: CategoryUpdatedEnvelope) => void | Promise<void>): void;
|
726
865
|
/**
|
@@ -744,6 +883,7 @@ export interface CreateCategoryOptions {
|
|
744
883
|
*
|
745
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
|
746
885
|
* retrieve the url field in the response in addition to the category’s base fields.
|
886
|
+
* @maxSize 10
|
747
887
|
*/
|
748
888
|
fieldsets?: Field[];
|
749
889
|
}
|
@@ -762,9 +902,16 @@ export interface CreateCategoryOptions {
|
|
762
902
|
*/
|
763
903
|
export declare function updateCategory(_id: string, category: UpdateCategory, options?: UpdateCategoryOptions): Promise<Category & CategoryNonNullableFields>;
|
764
904
|
export interface UpdateCategory {
|
765
|
-
/**
|
905
|
+
/**
|
906
|
+
* Category ID.
|
907
|
+
* @immutable
|
908
|
+
* @maxLength 38
|
909
|
+
*/
|
766
910
|
_id?: string;
|
767
|
-
/**
|
911
|
+
/**
|
912
|
+
* Category label. Displayed in the Category Menu.
|
913
|
+
* @maxLength 35
|
914
|
+
*/
|
768
915
|
label?: string;
|
769
916
|
/**
|
770
917
|
* Number of posts in the category.
|
@@ -776,10 +923,14 @@ export interface UpdateCategory {
|
|
776
923
|
* @readonly
|
777
924
|
*/
|
778
925
|
url?: string;
|
779
|
-
/**
|
926
|
+
/**
|
927
|
+
* Category description.
|
928
|
+
* @maxLength 500
|
929
|
+
*/
|
780
930
|
description?: string | null;
|
781
931
|
/**
|
782
932
|
* Category title.
|
933
|
+
* @maxLength 200
|
783
934
|
* @deprecated Category title.
|
784
935
|
* @targetRemovalDate 2025-07-16
|
785
936
|
*/
|
@@ -791,19 +942,27 @@ export interface UpdateCategory {
|
|
791
942
|
* Default: `-1`
|
792
943
|
*/
|
793
944
|
displayPosition?: number | null;
|
794
|
-
/**
|
945
|
+
/**
|
946
|
+
* ID of the category's translations. All translations of a single category share the same `translationId`.
|
947
|
+
* @format GUID
|
948
|
+
*/
|
795
949
|
translationId?: string | null;
|
796
950
|
/**
|
797
951
|
* Category language.
|
798
952
|
*
|
799
953
|
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
954
|
+
* @immutable
|
800
955
|
*/
|
801
956
|
language?: string | null;
|
802
|
-
/**
|
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
|
+
*/
|
803
961
|
slug?: string;
|
804
962
|
/**
|
805
963
|
* Reserved for internal use.
|
806
964
|
* @readonly
|
965
|
+
* @maxLength 24
|
807
966
|
*/
|
808
967
|
internalId?: string | null;
|
809
968
|
/** SEO data. */
|
@@ -823,6 +982,7 @@ export interface UpdateCategoryOptions {
|
|
823
982
|
*
|
824
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
|
825
984
|
* retrieve the url field in the response in addition to the category’s base fields.
|
985
|
+
* @maxSize 10
|
826
986
|
*/
|
827
987
|
fieldsets?: Field[];
|
828
988
|
}
|
@@ -851,6 +1011,7 @@ export interface GetCategoryOptions {
|
|
851
1011
|
*
|
852
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
|
853
1013
|
* retrieve the url field in the response in addition to the category’s base fields.
|
1014
|
+
* @maxSize 10
|
854
1015
|
*/
|
855
1016
|
fieldsets?: Field[];
|
856
1017
|
}
|
@@ -885,11 +1046,13 @@ export interface GetCategoryBySlugOptions {
|
|
885
1046
|
*
|
886
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
|
887
1048
|
* retrieve the url field in the response in addition to the category’s base fields.
|
1049
|
+
* @maxSize 10
|
888
1050
|
*/
|
889
1051
|
fieldsets?: Field[];
|
890
1052
|
/**
|
891
1053
|
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
892
1054
|
* Language of the category to retrieve.
|
1055
|
+
* @format LANGUAGE_TAG
|
893
1056
|
*/
|
894
1057
|
language?: string | null;
|
895
1058
|
}
|
@@ -929,6 +1092,7 @@ export interface ListCategoriesOptions {
|
|
929
1092
|
*
|
930
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
|
931
1094
|
* retrieve the url field in the response in addition to the category’s base fields.
|
1095
|
+
* @maxSize 10
|
932
1096
|
*/
|
933
1097
|
fieldsets?: Field[];
|
934
1098
|
/**
|
@@ -937,6 +1101,7 @@ export interface ListCategoriesOptions {
|
|
937
1101
|
* 2-or-4-letter language code in [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
938
1102
|
* Pass a language to only receive categories that are in that language.
|
939
1103
|
* If omitted, categories in all languages are returned.
|
1104
|
+
* @format LANGUAGE_TAG
|
940
1105
|
*/
|
941
1106
|
language?: string | null;
|
942
1107
|
}
|
@@ -970,7 +1135,10 @@ export interface ListCategoriesOptions {
|
|
970
1135
|
*/
|
971
1136
|
export declare function queryCategories(options?: QueryCategoriesOptions): CategoriesQueryBuilder;
|
972
1137
|
export interface QueryCategoriesOptions {
|
973
|
-
/**
|
1138
|
+
/**
|
1139
|
+
|
1140
|
+
* @maxSize 10
|
1141
|
+
*/
|
974
1142
|
fieldsets?: Field[] | undefined;
|
975
1143
|
}
|
976
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,OAAO,EAAE,cAAc,IAAI,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACvF,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,EACL,qCAAqC,EACrC,uCAAuC,GACxC,MAAM,yCAAyC,CAAC;AAEjD,OAAO,KAAK,2BAA2B,MAAM,uCAAuC,CAAC;AACrF,aAAa;AACb,OAAO,EAAE,4BAA4B,EAAE,MAAM,wCAAwC,CAAC;AACtF,OAAO,EAAE,4BAA4B,EAAE,MAAM,wCAAwC,CAAC;AACtF,OAAO,EAAE,gCAAgC,EAAE,MAAM,2CAA2C,CAAC;AAC7F,OAAO,EAAE,gCAAgC,EAAE,MAAM,2CAA2C,CAAC;AAC7F,OAAO,EAAE,cAAc,EAAE,MAAM,kDAAkD,CAAC;
|
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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"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@wix/auto_sdk_blog_categories",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.2",
|
4
4
|
"publishConfig": {
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
6
6
|
"access": "public"
|
@@ -48,5 +48,5 @@
|
|
48
48
|
"fqdn": "wix.blog.v3.category"
|
49
49
|
}
|
50
50
|
},
|
51
|
-
"falconPackageHash": "
|
51
|
+
"falconPackageHash": "54e19666c4df90a2bab1953782b38ff28709efe8bc56d25afe2849cc"
|
52
52
|
}
|