@wix/blog 1.0.136 → 1.0.137
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.universal.d.ts +8 -8
- package/build/cjs/src/blog-v3-post.universal.d.ts +8 -8
- package/build/cjs/src/blog-v3-tag.universal.d.ts +8 -8
- package/build/es/src/blog-v3-category.universal.d.ts +8 -8
- package/build/es/src/blog-v3-post.universal.d.ts +8 -8
- package/build/es/src/blog-v3-tag.universal.d.ts +8 -8
- package/package.json +2 -2
|
@@ -479,7 +479,7 @@ export interface DeleteCategoryResponse {
|
|
|
479
479
|
*/
|
|
480
480
|
export declare function getCategory(categoryId: string, options?: GetCategoryOptions): Promise<GetCategoryResponse>;
|
|
481
481
|
export interface GetCategoryOptions {
|
|
482
|
-
/**
|
|
482
|
+
/** @internal */
|
|
483
483
|
fieldsToInclude?: Field[];
|
|
484
484
|
/**
|
|
485
485
|
* List of category fields to be included in the response. By default, any fields not passed are not returned.
|
|
@@ -507,7 +507,7 @@ export interface GetCategoryOptions {
|
|
|
507
507
|
*/
|
|
508
508
|
export declare function getCategoryBySlug(slug: string, options?: GetCategoryBySlugOptions): Promise<GetCategoryBySlugResponse>;
|
|
509
509
|
export interface GetCategoryBySlugOptions {
|
|
510
|
-
/**
|
|
510
|
+
/** @internal */
|
|
511
511
|
fieldsToInclude?: Field[];
|
|
512
512
|
/**
|
|
513
513
|
* List of category fields to be included in the response. By default, any fields not passed are not returned.
|
|
@@ -529,7 +529,7 @@ export declare function listCategories(options?: ListCategoriesOptions): Promise
|
|
|
529
529
|
export interface ListCategoriesOptions {
|
|
530
530
|
/** Pagination options. */
|
|
531
531
|
paging?: BlogPaging;
|
|
532
|
-
/**
|
|
532
|
+
/** @internal */
|
|
533
533
|
fieldsToInclude?: Field[];
|
|
534
534
|
/**
|
|
535
535
|
* List of category fields to be included in the response. By default, any fields not passed are not returned.
|
|
@@ -558,15 +558,15 @@ export interface ListCategoriesOptions {
|
|
|
558
558
|
export declare function queryCategories(options?: QueryCategoriesOptions): CategoriesQueryBuilder;
|
|
559
559
|
export interface QueryCategoriesOptions {
|
|
560
560
|
/** @internal */
|
|
561
|
-
paging
|
|
561
|
+
paging?: BlogPaging | undefined;
|
|
562
562
|
/** @internal */
|
|
563
|
-
filter
|
|
563
|
+
filter?: Record<string, any> | null | undefined;
|
|
564
564
|
/** @internal */
|
|
565
|
-
sort
|
|
565
|
+
sort?: Sorting[] | undefined;
|
|
566
566
|
/** @internal */
|
|
567
|
-
fieldsToInclude
|
|
567
|
+
fieldsToInclude?: Field[] | undefined;
|
|
568
568
|
/** @internal */
|
|
569
|
-
fieldsets
|
|
569
|
+
fieldsets?: Field[] | undefined;
|
|
570
570
|
}
|
|
571
571
|
interface QueryOffsetResult {
|
|
572
572
|
currentPage: number;
|
|
@@ -2422,7 +2422,7 @@ export interface SendActionEventResponse {
|
|
|
2422
2422
|
*/
|
|
2423
2423
|
export declare function getPost(postId: string, options?: GetPostOptions): Promise<GetPostResponse>;
|
|
2424
2424
|
export interface GetPostOptions {
|
|
2425
|
-
/**
|
|
2425
|
+
/** @internal */
|
|
2426
2426
|
fieldsToInclude?: PostFieldField[];
|
|
2427
2427
|
/**
|
|
2428
2428
|
* List of post fields to be included in the response. By default, any fields not passed are not returned.
|
|
@@ -2450,7 +2450,7 @@ export interface GetPostOptions {
|
|
|
2450
2450
|
*/
|
|
2451
2451
|
export declare function getPostBySlug(slug: string, options?: GetPostBySlugOptions): Promise<GetPostBySlugResponse>;
|
|
2452
2452
|
export interface GetPostBySlugOptions {
|
|
2453
|
-
/**
|
|
2453
|
+
/** @internal */
|
|
2454
2454
|
fieldsToInclude?: PostFieldField[];
|
|
2455
2455
|
/**
|
|
2456
2456
|
* List of post fields to be included in the response. By default, any fields not passed are not returned.
|
|
@@ -2514,7 +2514,7 @@ export interface ListPostsOptions {
|
|
|
2514
2514
|
sort?: GetPostsSort;
|
|
2515
2515
|
/** Pagination options. */
|
|
2516
2516
|
paging?: BlogPaging;
|
|
2517
|
-
/**
|
|
2517
|
+
/** @internal */
|
|
2518
2518
|
fieldsToInclude?: PostFieldField[];
|
|
2519
2519
|
/**
|
|
2520
2520
|
* Language filter.
|
|
@@ -2561,15 +2561,15 @@ export interface ListPostsOptions {
|
|
|
2561
2561
|
export declare function queryPosts(options?: QueryPostsOptions): PostsQueryBuilder;
|
|
2562
2562
|
export interface QueryPostsOptions {
|
|
2563
2563
|
/** @internal */
|
|
2564
|
-
paging
|
|
2564
|
+
paging?: BlogPaging | undefined;
|
|
2565
2565
|
/** @internal */
|
|
2566
|
-
filter
|
|
2566
|
+
filter?: Record<string, any> | null | undefined;
|
|
2567
2567
|
/** @internal */
|
|
2568
|
-
sort
|
|
2568
|
+
sort?: Sorting[] | undefined;
|
|
2569
2569
|
/** @internal */
|
|
2570
|
-
fieldsToInclude
|
|
2570
|
+
fieldsToInclude?: PostFieldField[] | undefined;
|
|
2571
2571
|
/** @internal */
|
|
2572
|
-
fieldsets
|
|
2572
|
+
fieldsets?: PostFieldField[] | undefined;
|
|
2573
2573
|
}
|
|
2574
2574
|
interface QueryOffsetResult {
|
|
2575
2575
|
currentPage: number;
|
|
@@ -439,7 +439,7 @@ export interface GetTagByLabelOptions {
|
|
|
439
439
|
* If omitted, tags in all languages are returned.
|
|
440
440
|
*/
|
|
441
441
|
language?: string | null;
|
|
442
|
-
/**
|
|
442
|
+
/** @internal */
|
|
443
443
|
fieldsToInclude?: Field[];
|
|
444
444
|
/**
|
|
445
445
|
* List of additional tag fields to be included in the response. By default, any fields not passed are not returned.
|
|
@@ -461,7 +461,7 @@ export interface GetTagByLabelOptions {
|
|
|
461
461
|
*/
|
|
462
462
|
export declare function getTag(tagId: string, options?: GetTagOptions): Promise<GetTagResponse>;
|
|
463
463
|
export interface GetTagOptions {
|
|
464
|
-
/**
|
|
464
|
+
/** @internal */
|
|
465
465
|
fieldsToInclude?: Field[];
|
|
466
466
|
/**
|
|
467
467
|
* List of additional tag fields to be included in the response. By default, any fields not passed are not returned.
|
|
@@ -485,7 +485,7 @@ export interface GetTagOptions {
|
|
|
485
485
|
*/
|
|
486
486
|
export declare function getTagBySlug(slug: string, options?: GetTagBySlugOptions): Promise<GetTagBySlugResponse>;
|
|
487
487
|
export interface GetTagBySlugOptions {
|
|
488
|
-
/**
|
|
488
|
+
/** @internal */
|
|
489
489
|
fieldsToInclude?: Field[];
|
|
490
490
|
/**
|
|
491
491
|
* List of additional tag fields to be included in the response. By default, any fields not passed are not returned.
|
|
@@ -514,15 +514,15 @@ export interface GetTagBySlugOptions {
|
|
|
514
514
|
export declare function queryTags(options?: QueryTagsOptions): TagsQueryBuilder;
|
|
515
515
|
export interface QueryTagsOptions {
|
|
516
516
|
/** @internal */
|
|
517
|
-
filter
|
|
517
|
+
filter?: Record<string, any> | null | undefined;
|
|
518
518
|
/** @internal */
|
|
519
|
-
sort
|
|
519
|
+
sort?: Sorting[] | undefined;
|
|
520
520
|
/** @internal */
|
|
521
|
-
paging
|
|
521
|
+
paging?: Paging | undefined;
|
|
522
522
|
/** @internal */
|
|
523
|
-
fieldsToInclude
|
|
523
|
+
fieldsToInclude?: Field[] | undefined;
|
|
524
524
|
/** @internal */
|
|
525
|
-
fieldsets
|
|
525
|
+
fieldsets?: Field[] | undefined;
|
|
526
526
|
}
|
|
527
527
|
interface QueryOffsetResult {
|
|
528
528
|
currentPage: number;
|
|
@@ -479,7 +479,7 @@ export interface DeleteCategoryResponse {
|
|
|
479
479
|
*/
|
|
480
480
|
export declare function getCategory(categoryId: string, options?: GetCategoryOptions): Promise<GetCategoryResponse>;
|
|
481
481
|
export interface GetCategoryOptions {
|
|
482
|
-
/**
|
|
482
|
+
/** @internal */
|
|
483
483
|
fieldsToInclude?: Field[];
|
|
484
484
|
/**
|
|
485
485
|
* List of category fields to be included in the response. By default, any fields not passed are not returned.
|
|
@@ -507,7 +507,7 @@ export interface GetCategoryOptions {
|
|
|
507
507
|
*/
|
|
508
508
|
export declare function getCategoryBySlug(slug: string, options?: GetCategoryBySlugOptions): Promise<GetCategoryBySlugResponse>;
|
|
509
509
|
export interface GetCategoryBySlugOptions {
|
|
510
|
-
/**
|
|
510
|
+
/** @internal */
|
|
511
511
|
fieldsToInclude?: Field[];
|
|
512
512
|
/**
|
|
513
513
|
* List of category fields to be included in the response. By default, any fields not passed are not returned.
|
|
@@ -529,7 +529,7 @@ export declare function listCategories(options?: ListCategoriesOptions): Promise
|
|
|
529
529
|
export interface ListCategoriesOptions {
|
|
530
530
|
/** Pagination options. */
|
|
531
531
|
paging?: BlogPaging;
|
|
532
|
-
/**
|
|
532
|
+
/** @internal */
|
|
533
533
|
fieldsToInclude?: Field[];
|
|
534
534
|
/**
|
|
535
535
|
* List of category fields to be included in the response. By default, any fields not passed are not returned.
|
|
@@ -558,15 +558,15 @@ export interface ListCategoriesOptions {
|
|
|
558
558
|
export declare function queryCategories(options?: QueryCategoriesOptions): CategoriesQueryBuilder;
|
|
559
559
|
export interface QueryCategoriesOptions {
|
|
560
560
|
/** @internal */
|
|
561
|
-
paging
|
|
561
|
+
paging?: BlogPaging | undefined;
|
|
562
562
|
/** @internal */
|
|
563
|
-
filter
|
|
563
|
+
filter?: Record<string, any> | null | undefined;
|
|
564
564
|
/** @internal */
|
|
565
|
-
sort
|
|
565
|
+
sort?: Sorting[] | undefined;
|
|
566
566
|
/** @internal */
|
|
567
|
-
fieldsToInclude
|
|
567
|
+
fieldsToInclude?: Field[] | undefined;
|
|
568
568
|
/** @internal */
|
|
569
|
-
fieldsets
|
|
569
|
+
fieldsets?: Field[] | undefined;
|
|
570
570
|
}
|
|
571
571
|
interface QueryOffsetResult {
|
|
572
572
|
currentPage: number;
|
|
@@ -2422,7 +2422,7 @@ export interface SendActionEventResponse {
|
|
|
2422
2422
|
*/
|
|
2423
2423
|
export declare function getPost(postId: string, options?: GetPostOptions): Promise<GetPostResponse>;
|
|
2424
2424
|
export interface GetPostOptions {
|
|
2425
|
-
/**
|
|
2425
|
+
/** @internal */
|
|
2426
2426
|
fieldsToInclude?: PostFieldField[];
|
|
2427
2427
|
/**
|
|
2428
2428
|
* List of post fields to be included in the response. By default, any fields not passed are not returned.
|
|
@@ -2450,7 +2450,7 @@ export interface GetPostOptions {
|
|
|
2450
2450
|
*/
|
|
2451
2451
|
export declare function getPostBySlug(slug: string, options?: GetPostBySlugOptions): Promise<GetPostBySlugResponse>;
|
|
2452
2452
|
export interface GetPostBySlugOptions {
|
|
2453
|
-
/**
|
|
2453
|
+
/** @internal */
|
|
2454
2454
|
fieldsToInclude?: PostFieldField[];
|
|
2455
2455
|
/**
|
|
2456
2456
|
* List of post fields to be included in the response. By default, any fields not passed are not returned.
|
|
@@ -2514,7 +2514,7 @@ export interface ListPostsOptions {
|
|
|
2514
2514
|
sort?: GetPostsSort;
|
|
2515
2515
|
/** Pagination options. */
|
|
2516
2516
|
paging?: BlogPaging;
|
|
2517
|
-
/**
|
|
2517
|
+
/** @internal */
|
|
2518
2518
|
fieldsToInclude?: PostFieldField[];
|
|
2519
2519
|
/**
|
|
2520
2520
|
* Language filter.
|
|
@@ -2561,15 +2561,15 @@ export interface ListPostsOptions {
|
|
|
2561
2561
|
export declare function queryPosts(options?: QueryPostsOptions): PostsQueryBuilder;
|
|
2562
2562
|
export interface QueryPostsOptions {
|
|
2563
2563
|
/** @internal */
|
|
2564
|
-
paging
|
|
2564
|
+
paging?: BlogPaging | undefined;
|
|
2565
2565
|
/** @internal */
|
|
2566
|
-
filter
|
|
2566
|
+
filter?: Record<string, any> | null | undefined;
|
|
2567
2567
|
/** @internal */
|
|
2568
|
-
sort
|
|
2568
|
+
sort?: Sorting[] | undefined;
|
|
2569
2569
|
/** @internal */
|
|
2570
|
-
fieldsToInclude
|
|
2570
|
+
fieldsToInclude?: PostFieldField[] | undefined;
|
|
2571
2571
|
/** @internal */
|
|
2572
|
-
fieldsets
|
|
2572
|
+
fieldsets?: PostFieldField[] | undefined;
|
|
2573
2573
|
}
|
|
2574
2574
|
interface QueryOffsetResult {
|
|
2575
2575
|
currentPage: number;
|
|
@@ -439,7 +439,7 @@ export interface GetTagByLabelOptions {
|
|
|
439
439
|
* If omitted, tags in all languages are returned.
|
|
440
440
|
*/
|
|
441
441
|
language?: string | null;
|
|
442
|
-
/**
|
|
442
|
+
/** @internal */
|
|
443
443
|
fieldsToInclude?: Field[];
|
|
444
444
|
/**
|
|
445
445
|
* List of additional tag fields to be included in the response. By default, any fields not passed are not returned.
|
|
@@ -461,7 +461,7 @@ export interface GetTagByLabelOptions {
|
|
|
461
461
|
*/
|
|
462
462
|
export declare function getTag(tagId: string, options?: GetTagOptions): Promise<GetTagResponse>;
|
|
463
463
|
export interface GetTagOptions {
|
|
464
|
-
/**
|
|
464
|
+
/** @internal */
|
|
465
465
|
fieldsToInclude?: Field[];
|
|
466
466
|
/**
|
|
467
467
|
* List of additional tag fields to be included in the response. By default, any fields not passed are not returned.
|
|
@@ -485,7 +485,7 @@ export interface GetTagOptions {
|
|
|
485
485
|
*/
|
|
486
486
|
export declare function getTagBySlug(slug: string, options?: GetTagBySlugOptions): Promise<GetTagBySlugResponse>;
|
|
487
487
|
export interface GetTagBySlugOptions {
|
|
488
|
-
/**
|
|
488
|
+
/** @internal */
|
|
489
489
|
fieldsToInclude?: Field[];
|
|
490
490
|
/**
|
|
491
491
|
* List of additional tag fields to be included in the response. By default, any fields not passed are not returned.
|
|
@@ -514,15 +514,15 @@ export interface GetTagBySlugOptions {
|
|
|
514
514
|
export declare function queryTags(options?: QueryTagsOptions): TagsQueryBuilder;
|
|
515
515
|
export interface QueryTagsOptions {
|
|
516
516
|
/** @internal */
|
|
517
|
-
filter
|
|
517
|
+
filter?: Record<string, any> | null | undefined;
|
|
518
518
|
/** @internal */
|
|
519
|
-
sort
|
|
519
|
+
sort?: Sorting[] | undefined;
|
|
520
520
|
/** @internal */
|
|
521
|
-
paging
|
|
521
|
+
paging?: Paging | undefined;
|
|
522
522
|
/** @internal */
|
|
523
|
-
fieldsToInclude
|
|
523
|
+
fieldsToInclude?: Field[] | undefined;
|
|
524
524
|
/** @internal */
|
|
525
|
-
fieldsets
|
|
525
|
+
fieldsets?: Field[] | undefined;
|
|
526
526
|
}
|
|
527
527
|
interface QueryOffsetResult {
|
|
528
528
|
currentPage: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/blog",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.137",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"groupId": "com.wixpress.public-sdk-autogen"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
|
-
"falconPackageHash": "
|
|
36
|
+
"falconPackageHash": "1c6e5974296a19938b42ea72d0b0bfa6b7fb7c90101a4035202dbcf6"
|
|
37
37
|
}
|