@wix/blog 1.0.326 → 1.0.327

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.326",
3
+ "version": "1.0.327",
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.54"
29
+ "@wix/blog_tags": "1.0.55"
30
30
  },
31
31
  "devDependencies": {
32
32
  "glob": "^10.4.1",
@@ -51,5 +51,5 @@
51
51
  "fqdn": ""
52
52
  }
53
53
  },
54
- "falconPackageHash": "0fea8ec9db373d292b26966ca6a186b4b0533c2bb1868338da5a3e8f"
54
+ "falconPackageHash": "47a21ac308e55c1f0368df65b329064344c20a7fe1732fa45b6ca4cd"
55
55
  }
@@ -9860,6 +9860,14 @@ 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;
9863
9871
  /**
9864
9872
  * Number of posts with this tag, including unpublished draft posts.
9865
9873
  * @readonly
@@ -10390,6 +10398,7 @@ interface BlogTagNonNullableFields {
10390
10398
  _id: string;
10391
10399
  label: string;
10392
10400
  slug: string;
10401
+ publicationCount: number;
10393
10402
  postCount: number;
10394
10403
  url: string;
10395
10404
  publishedPostCount: number;
@@ -10530,27 +10539,27 @@ interface TagsQueryBuilder {
10530
10539
  /** @param propertyName - Property whose value is compared with `value`.
10531
10540
  * @param value - Value to compare against.
10532
10541
  */
10533
- eq: (propertyName: '_id' | 'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
10542
+ eq: (propertyName: '_id' | 'label' | 'slug' | 'publicationCount' | 'postCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
10534
10543
  /** @param propertyName - Property whose value is compared with `value`.
10535
10544
  * @param value - Value to compare against.
10536
10545
  */
10537
- ne: (propertyName: '_id' | 'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
10546
+ ne: (propertyName: '_id' | 'label' | 'slug' | 'publicationCount' | 'postCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
10538
10547
  /** @param propertyName - Property whose value is compared with `value`.
10539
10548
  * @param value - Value to compare against.
10540
10549
  */
10541
- ge: (propertyName: 'postCount' | 'publishedPostCount', value: any) => TagsQueryBuilder;
10550
+ ge: (propertyName: 'publicationCount' | 'postCount', value: any) => TagsQueryBuilder;
10542
10551
  /** @param propertyName - Property whose value is compared with `value`.
10543
10552
  * @param value - Value to compare against.
10544
10553
  */
10545
- gt: (propertyName: 'postCount' | 'publishedPostCount', value: any) => TagsQueryBuilder;
10554
+ gt: (propertyName: 'publicationCount' | 'postCount', value: any) => TagsQueryBuilder;
10546
10555
  /** @param propertyName - Property whose value is compared with `value`.
10547
10556
  * @param value - Value to compare against.
10548
10557
  */
10549
- le: (propertyName: 'postCount' | 'publishedPostCount', value: any) => TagsQueryBuilder;
10558
+ le: (propertyName: 'publicationCount' | 'postCount', value: any) => TagsQueryBuilder;
10550
10559
  /** @param propertyName - Property whose value is compared with `value`.
10551
10560
  * @param value - Value to compare against.
10552
10561
  */
10553
- lt: (propertyName: 'postCount' | 'publishedPostCount', value: any) => TagsQueryBuilder;
10562
+ lt: (propertyName: 'publicationCount' | 'postCount', value: any) => TagsQueryBuilder;
10554
10563
  /** @param propertyName - Property whose value is compared with `string`.
10555
10564
  * @param string - String to compare against. Case-insensitive.
10556
10565
  */
@@ -10559,12 +10568,12 @@ interface TagsQueryBuilder {
10559
10568
  * @param values - List of values to compare against.
10560
10569
  */
10561
10570
  hasSome: (propertyName: '_id' | 'label' | 'slug', value: any[]) => TagsQueryBuilder;
10562
- in: (propertyName: 'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
10571
+ in: (propertyName: 'label' | 'slug' | 'publicationCount' | 'postCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
10563
10572
  exists: (propertyName: 'label' | 'slug' | 'translationId' | 'language', value: boolean) => TagsQueryBuilder;
10564
10573
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
10565
- ascending: (...propertyNames: Array<'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'language'>) => TagsQueryBuilder;
10574
+ ascending: (...propertyNames: Array<'label' | 'slug' | 'publicationCount' | 'postCount' | 'language'>) => TagsQueryBuilder;
10566
10575
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
10567
- descending: (...propertyNames: Array<'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'language'>) => TagsQueryBuilder;
10576
+ descending: (...propertyNames: Array<'label' | 'slug' | 'publicationCount' | 'postCount' | 'language'>) => TagsQueryBuilder;
10568
10577
  /** @param limit - Number of items to return, which is also the `pageSize` of the results object. */
10569
10578
  limit: (limit: number) => TagsQueryBuilder;
10570
10579
  /** @param skip - Number of items to skip in the query results before returning the results. */
@@ -9860,6 +9860,14 @@ 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;
9863
9871
  /**
9864
9872
  * Number of posts with this tag, including unpublished draft posts.
9865
9873
  * @readonly
@@ -10390,6 +10398,7 @@ interface BlogTagNonNullableFields {
10390
10398
  _id: string;
10391
10399
  label: string;
10392
10400
  slug: string;
10401
+ publicationCount: number;
10393
10402
  postCount: number;
10394
10403
  url: string;
10395
10404
  publishedPostCount: number;
@@ -10530,27 +10539,27 @@ interface TagsQueryBuilder {
10530
10539
  /** @param propertyName - Property whose value is compared with `value`.
10531
10540
  * @param value - Value to compare against.
10532
10541
  */
10533
- eq: (propertyName: '_id' | 'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
10542
+ eq: (propertyName: '_id' | 'label' | 'slug' | 'publicationCount' | 'postCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
10534
10543
  /** @param propertyName - Property whose value is compared with `value`.
10535
10544
  * @param value - Value to compare against.
10536
10545
  */
10537
- ne: (propertyName: '_id' | 'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
10546
+ ne: (propertyName: '_id' | 'label' | 'slug' | 'publicationCount' | 'postCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
10538
10547
  /** @param propertyName - Property whose value is compared with `value`.
10539
10548
  * @param value - Value to compare against.
10540
10549
  */
10541
- ge: (propertyName: 'postCount' | 'publishedPostCount', value: any) => TagsQueryBuilder;
10550
+ ge: (propertyName: 'publicationCount' | 'postCount', value: any) => TagsQueryBuilder;
10542
10551
  /** @param propertyName - Property whose value is compared with `value`.
10543
10552
  * @param value - Value to compare against.
10544
10553
  */
10545
- gt: (propertyName: 'postCount' | 'publishedPostCount', value: any) => TagsQueryBuilder;
10554
+ gt: (propertyName: 'publicationCount' | 'postCount', value: any) => TagsQueryBuilder;
10546
10555
  /** @param propertyName - Property whose value is compared with `value`.
10547
10556
  * @param value - Value to compare against.
10548
10557
  */
10549
- le: (propertyName: 'postCount' | 'publishedPostCount', value: any) => TagsQueryBuilder;
10558
+ le: (propertyName: 'publicationCount' | 'postCount', value: any) => TagsQueryBuilder;
10550
10559
  /** @param propertyName - Property whose value is compared with `value`.
10551
10560
  * @param value - Value to compare against.
10552
10561
  */
10553
- lt: (propertyName: 'postCount' | 'publishedPostCount', value: any) => TagsQueryBuilder;
10562
+ lt: (propertyName: 'publicationCount' | 'postCount', value: any) => TagsQueryBuilder;
10554
10563
  /** @param propertyName - Property whose value is compared with `string`.
10555
10564
  * @param string - String to compare against. Case-insensitive.
10556
10565
  */
@@ -10559,12 +10568,12 @@ interface TagsQueryBuilder {
10559
10568
  * @param values - List of values to compare against.
10560
10569
  */
10561
10570
  hasSome: (propertyName: '_id' | 'label' | 'slug', value: any[]) => TagsQueryBuilder;
10562
- in: (propertyName: 'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
10571
+ in: (propertyName: 'label' | 'slug' | 'publicationCount' | 'postCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
10563
10572
  exists: (propertyName: 'label' | 'slug' | 'translationId' | 'language', value: boolean) => TagsQueryBuilder;
10564
10573
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
10565
- ascending: (...propertyNames: Array<'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'language'>) => TagsQueryBuilder;
10574
+ ascending: (...propertyNames: Array<'label' | 'slug' | 'publicationCount' | 'postCount' | 'language'>) => TagsQueryBuilder;
10566
10575
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
10567
- descending: (...propertyNames: Array<'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'language'>) => TagsQueryBuilder;
10576
+ descending: (...propertyNames: Array<'label' | 'slug' | 'publicationCount' | 'postCount' | 'language'>) => TagsQueryBuilder;
10568
10577
  /** @param limit - Number of items to return, which is also the `pageSize` of the results object. */
10569
10578
  limit: (limit: number) => TagsQueryBuilder;
10570
10579
  /** @param skip - Number of items to skip in the query results before returning the results. */
@@ -11450,6 +11450,14 @@ 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;
11453
11461
  /**
11454
11462
  * Number of posts with this tag, including unpublished draft posts.
11455
11463
  * @readonly
@@ -11687,6 +11695,7 @@ interface BlogTagNonNullableFields$1 {
11687
11695
  id: string;
11688
11696
  label: string;
11689
11697
  slug: string;
11698
+ publicationCount: number;
11690
11699
  postCount: number;
11691
11700
  url?: PageUrlNonNullableFields;
11692
11701
  publishedPostCount: number;
@@ -11732,6 +11741,14 @@ interface BlogTag {
11732
11741
  * @readonly
11733
11742
  */
11734
11743
  _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;
11735
11752
  /**
11736
11753
  * Number of posts with this tag, including unpublished draft posts.
11737
11754
  * @readonly
@@ -11959,6 +11976,7 @@ interface BlogTagNonNullableFields {
11959
11976
  _id: string;
11960
11977
  label: string;
11961
11978
  slug: string;
11979
+ publicationCount: number;
11962
11980
  postCount: number;
11963
11981
  url: string;
11964
11982
  publishedPostCount: number;