@wix/blog 1.0.327 → 1.0.328
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/blog",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.328",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@wix/blog_categories": "1.0.51",
|
|
27
27
|
"@wix/blog_draft-posts": "1.0.52",
|
|
28
28
|
"@wix/blog_posts": "1.0.58",
|
|
29
|
-
"@wix/blog_tags": "1.0.
|
|
29
|
+
"@wix/blog_tags": "1.0.56"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"glob": "^10.4.1",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"fqdn": ""
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
|
-
"falconPackageHash": "
|
|
54
|
+
"falconPackageHash": "0fea8ec9db373d292b26966ca6a186b4b0533c2bb1868338da5a3e8f"
|
|
55
55
|
}
|
|
@@ -9860,14 +9860,6 @@ interface BlogTag {
|
|
|
9860
9860
|
* @readonly
|
|
9861
9861
|
*/
|
|
9862
9862
|
_updatedDate?: Date | null;
|
|
9863
|
-
/**
|
|
9864
|
-
* Reserved for internal use.
|
|
9865
|
-
* @readonly
|
|
9866
|
-
* @deprecated
|
|
9867
|
-
* @replacedBy published_post_count
|
|
9868
|
-
* @targetRemovalDate 2024-06-30
|
|
9869
|
-
*/
|
|
9870
|
-
publicationCount?: number;
|
|
9871
9863
|
/**
|
|
9872
9864
|
* Number of posts with this tag, including unpublished draft posts.
|
|
9873
9865
|
* @readonly
|
|
@@ -10398,7 +10390,6 @@ interface BlogTagNonNullableFields {
|
|
|
10398
10390
|
_id: string;
|
|
10399
10391
|
label: string;
|
|
10400
10392
|
slug: string;
|
|
10401
|
-
publicationCount: number;
|
|
10402
10393
|
postCount: number;
|
|
10403
10394
|
url: string;
|
|
10404
10395
|
publishedPostCount: number;
|
|
@@ -10539,27 +10530,27 @@ interface TagsQueryBuilder {
|
|
|
10539
10530
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
10540
10531
|
* @param value - Value to compare against.
|
|
10541
10532
|
*/
|
|
10542
|
-
eq: (propertyName: '_id' | 'label' | 'slug' | '
|
|
10533
|
+
eq: (propertyName: '_id' | 'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
|
|
10543
10534
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
10544
10535
|
* @param value - Value to compare against.
|
|
10545
10536
|
*/
|
|
10546
|
-
ne: (propertyName: '_id' | 'label' | 'slug' | '
|
|
10537
|
+
ne: (propertyName: '_id' | 'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
|
|
10547
10538
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
10548
10539
|
* @param value - Value to compare against.
|
|
10549
10540
|
*/
|
|
10550
|
-
ge: (propertyName: '
|
|
10541
|
+
ge: (propertyName: 'postCount' | 'publishedPostCount', value: any) => TagsQueryBuilder;
|
|
10551
10542
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
10552
10543
|
* @param value - Value to compare against.
|
|
10553
10544
|
*/
|
|
10554
|
-
gt: (propertyName: '
|
|
10545
|
+
gt: (propertyName: 'postCount' | 'publishedPostCount', value: any) => TagsQueryBuilder;
|
|
10555
10546
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
10556
10547
|
* @param value - Value to compare against.
|
|
10557
10548
|
*/
|
|
10558
|
-
le: (propertyName: '
|
|
10549
|
+
le: (propertyName: 'postCount' | 'publishedPostCount', value: any) => TagsQueryBuilder;
|
|
10559
10550
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
10560
10551
|
* @param value - Value to compare against.
|
|
10561
10552
|
*/
|
|
10562
|
-
lt: (propertyName: '
|
|
10553
|
+
lt: (propertyName: 'postCount' | 'publishedPostCount', value: any) => TagsQueryBuilder;
|
|
10563
10554
|
/** @param propertyName - Property whose value is compared with `string`.
|
|
10564
10555
|
* @param string - String to compare against. Case-insensitive.
|
|
10565
10556
|
*/
|
|
@@ -10568,12 +10559,12 @@ interface TagsQueryBuilder {
|
|
|
10568
10559
|
* @param values - List of values to compare against.
|
|
10569
10560
|
*/
|
|
10570
10561
|
hasSome: (propertyName: '_id' | 'label' | 'slug', value: any[]) => TagsQueryBuilder;
|
|
10571
|
-
in: (propertyName: 'label' | 'slug' | '
|
|
10562
|
+
in: (propertyName: 'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
|
|
10572
10563
|
exists: (propertyName: 'label' | 'slug' | 'translationId' | 'language', value: boolean) => TagsQueryBuilder;
|
|
10573
10564
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
10574
|
-
ascending: (...propertyNames: Array<'label' | 'slug' | '
|
|
10565
|
+
ascending: (...propertyNames: Array<'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'language'>) => TagsQueryBuilder;
|
|
10575
10566
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
10576
|
-
descending: (...propertyNames: Array<'label' | 'slug' | '
|
|
10567
|
+
descending: (...propertyNames: Array<'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'language'>) => TagsQueryBuilder;
|
|
10577
10568
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object. */
|
|
10578
10569
|
limit: (limit: number) => TagsQueryBuilder;
|
|
10579
10570
|
/** @param skip - Number of items to skip in the query results before returning the results. */
|
|
@@ -9860,14 +9860,6 @@ interface BlogTag {
|
|
|
9860
9860
|
* @readonly
|
|
9861
9861
|
*/
|
|
9862
9862
|
_updatedDate?: Date | null;
|
|
9863
|
-
/**
|
|
9864
|
-
* Reserved for internal use.
|
|
9865
|
-
* @readonly
|
|
9866
|
-
* @deprecated
|
|
9867
|
-
* @replacedBy published_post_count
|
|
9868
|
-
* @targetRemovalDate 2024-06-30
|
|
9869
|
-
*/
|
|
9870
|
-
publicationCount?: number;
|
|
9871
9863
|
/**
|
|
9872
9864
|
* Number of posts with this tag, including unpublished draft posts.
|
|
9873
9865
|
* @readonly
|
|
@@ -10398,7 +10390,6 @@ interface BlogTagNonNullableFields {
|
|
|
10398
10390
|
_id: string;
|
|
10399
10391
|
label: string;
|
|
10400
10392
|
slug: string;
|
|
10401
|
-
publicationCount: number;
|
|
10402
10393
|
postCount: number;
|
|
10403
10394
|
url: string;
|
|
10404
10395
|
publishedPostCount: number;
|
|
@@ -10539,27 +10530,27 @@ interface TagsQueryBuilder {
|
|
|
10539
10530
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
10540
10531
|
* @param value - Value to compare against.
|
|
10541
10532
|
*/
|
|
10542
|
-
eq: (propertyName: '_id' | 'label' | 'slug' | '
|
|
10533
|
+
eq: (propertyName: '_id' | 'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
|
|
10543
10534
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
10544
10535
|
* @param value - Value to compare against.
|
|
10545
10536
|
*/
|
|
10546
|
-
ne: (propertyName: '_id' | 'label' | 'slug' | '
|
|
10537
|
+
ne: (propertyName: '_id' | 'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
|
|
10547
10538
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
10548
10539
|
* @param value - Value to compare against.
|
|
10549
10540
|
*/
|
|
10550
|
-
ge: (propertyName: '
|
|
10541
|
+
ge: (propertyName: 'postCount' | 'publishedPostCount', value: any) => TagsQueryBuilder;
|
|
10551
10542
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
10552
10543
|
* @param value - Value to compare against.
|
|
10553
10544
|
*/
|
|
10554
|
-
gt: (propertyName: '
|
|
10545
|
+
gt: (propertyName: 'postCount' | 'publishedPostCount', value: any) => TagsQueryBuilder;
|
|
10555
10546
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
10556
10547
|
* @param value - Value to compare against.
|
|
10557
10548
|
*/
|
|
10558
|
-
le: (propertyName: '
|
|
10549
|
+
le: (propertyName: 'postCount' | 'publishedPostCount', value: any) => TagsQueryBuilder;
|
|
10559
10550
|
/** @param propertyName - Property whose value is compared with `value`.
|
|
10560
10551
|
* @param value - Value to compare against.
|
|
10561
10552
|
*/
|
|
10562
|
-
lt: (propertyName: '
|
|
10553
|
+
lt: (propertyName: 'postCount' | 'publishedPostCount', value: any) => TagsQueryBuilder;
|
|
10563
10554
|
/** @param propertyName - Property whose value is compared with `string`.
|
|
10564
10555
|
* @param string - String to compare against. Case-insensitive.
|
|
10565
10556
|
*/
|
|
@@ -10568,12 +10559,12 @@ interface TagsQueryBuilder {
|
|
|
10568
10559
|
* @param values - List of values to compare against.
|
|
10569
10560
|
*/
|
|
10570
10561
|
hasSome: (propertyName: '_id' | 'label' | 'slug', value: any[]) => TagsQueryBuilder;
|
|
10571
|
-
in: (propertyName: 'label' | 'slug' | '
|
|
10562
|
+
in: (propertyName: 'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
|
|
10572
10563
|
exists: (propertyName: 'label' | 'slug' | 'translationId' | 'language', value: boolean) => TagsQueryBuilder;
|
|
10573
10564
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
10574
|
-
ascending: (...propertyNames: Array<'label' | 'slug' | '
|
|
10565
|
+
ascending: (...propertyNames: Array<'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'language'>) => TagsQueryBuilder;
|
|
10575
10566
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
10576
|
-
descending: (...propertyNames: Array<'label' | 'slug' | '
|
|
10567
|
+
descending: (...propertyNames: Array<'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'language'>) => TagsQueryBuilder;
|
|
10577
10568
|
/** @param limit - Number of items to return, which is also the `pageSize` of the results object. */
|
|
10578
10569
|
limit: (limit: number) => TagsQueryBuilder;
|
|
10579
10570
|
/** @param skip - Number of items to skip in the query results before returning the results. */
|
|
@@ -11450,14 +11450,6 @@ interface BlogTag$1 {
|
|
|
11450
11450
|
* @readonly
|
|
11451
11451
|
*/
|
|
11452
11452
|
updatedDate?: Date | null;
|
|
11453
|
-
/**
|
|
11454
|
-
* Reserved for internal use.
|
|
11455
|
-
* @readonly
|
|
11456
|
-
* @deprecated
|
|
11457
|
-
* @replacedBy published_post_count
|
|
11458
|
-
* @targetRemovalDate 2024-06-30
|
|
11459
|
-
*/
|
|
11460
|
-
publicationCount?: number;
|
|
11461
11453
|
/**
|
|
11462
11454
|
* Number of posts with this tag, including unpublished draft posts.
|
|
11463
11455
|
* @readonly
|
|
@@ -11695,7 +11687,6 @@ interface BlogTagNonNullableFields$1 {
|
|
|
11695
11687
|
id: string;
|
|
11696
11688
|
label: string;
|
|
11697
11689
|
slug: string;
|
|
11698
|
-
publicationCount: number;
|
|
11699
11690
|
postCount: number;
|
|
11700
11691
|
url?: PageUrlNonNullableFields;
|
|
11701
11692
|
publishedPostCount: number;
|
|
@@ -11741,14 +11732,6 @@ interface BlogTag {
|
|
|
11741
11732
|
* @readonly
|
|
11742
11733
|
*/
|
|
11743
11734
|
_updatedDate?: Date | null;
|
|
11744
|
-
/**
|
|
11745
|
-
* Reserved for internal use.
|
|
11746
|
-
* @readonly
|
|
11747
|
-
* @deprecated
|
|
11748
|
-
* @replacedBy published_post_count
|
|
11749
|
-
* @targetRemovalDate 2024-06-30
|
|
11750
|
-
*/
|
|
11751
|
-
publicationCount?: number;
|
|
11752
11735
|
/**
|
|
11753
11736
|
* Number of posts with this tag, including unpublished draft posts.
|
|
11754
11737
|
* @readonly
|
|
@@ -11976,7 +11959,6 @@ interface BlogTagNonNullableFields {
|
|
|
11976
11959
|
_id: string;
|
|
11977
11960
|
label: string;
|
|
11978
11961
|
slug: string;
|
|
11979
|
-
publicationCount: number;
|
|
11980
11962
|
postCount: number;
|
|
11981
11963
|
url: string;
|
|
11982
11964
|
publishedPostCount: number;
|