@wix/blog 1.0.309 → 1.0.310

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.309",
3
+ "version": "1.0.310",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -20,7 +20,7 @@
20
20
  "dependencies": {
21
21
  "@wix/blog_blog-cache": "1.0.8",
22
22
  "@wix/blog_blog-importer": "1.0.19",
23
- "@wix/blog_categories": "1.0.46",
23
+ "@wix/blog_categories": "1.0.47",
24
24
  "@wix/blog_draft-posts": "1.0.46",
25
25
  "@wix/blog_posts": "1.0.52",
26
26
  "@wix/blog_tags": "1.0.44"
@@ -48,5 +48,5 @@
48
48
  "fqdn": ""
49
49
  }
50
50
  },
51
- "falconPackageHash": "d2ae396c6b09505a11a1cc1c5658f0483baefc478f2ab7e8b2d46cfd"
51
+ "falconPackageHash": "9c351bcf5f3cc545f4b74d6f9a4db7775f403298b748f3af075f9246"
52
52
  }
@@ -2116,11 +2116,11 @@ interface CategoriesQueryBuilder {
2116
2116
  /** @param propertyName - Property whose value is compared with `value`.
2117
2117
  * @param value - Value to compare against.
2118
2118
  */
2119
- eq: (propertyName: '_id' | 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language', value: any) => CategoriesQueryBuilder;
2119
+ eq: (propertyName: '_id' | 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language' | 'slug', value: any) => CategoriesQueryBuilder;
2120
2120
  /** @param propertyName - Property whose value is compared with `value`.
2121
2121
  * @param value - Value to compare against.
2122
2122
  */
2123
- ne: (propertyName: '_id' | 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language', value: any) => CategoriesQueryBuilder;
2123
+ ne: (propertyName: '_id' | 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language' | 'slug', value: any) => CategoriesQueryBuilder;
2124
2124
  /** @param propertyName - Property whose value is compared with `value`.
2125
2125
  * @param value - Value to compare against.
2126
2126
  */
@@ -2141,12 +2141,8 @@ interface CategoriesQueryBuilder {
2141
2141
  * @param string - String to compare against. Case-insensitive.
2142
2142
  */
2143
2143
  startsWith: (propertyName: 'label' | 'title', value: string) => CategoriesQueryBuilder;
2144
- /** @param propertyName - Property whose value is compared with `values`.
2145
- * @param values - List of values to compare against.
2146
- */
2147
- hasSome: (propertyName: '_id' | 'label' | 'title' | 'slug', value: any[]) => CategoriesQueryBuilder;
2148
- in: (propertyName: 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language', value: any) => CategoriesQueryBuilder;
2149
- exists: (propertyName: 'label' | 'title' | 'translationId' | 'language', value: boolean) => CategoriesQueryBuilder;
2144
+ in: (propertyName: 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language' | 'slug', value: any) => CategoriesQueryBuilder;
2145
+ exists: (propertyName: 'label' | 'title' | 'translationId' | 'language' | 'slug', value: boolean) => CategoriesQueryBuilder;
2150
2146
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
2151
2147
  ascending: (...propertyNames: Array<'label' | 'postCount' | 'title' | 'displayPosition' | 'language' | 'slug'>) => CategoriesQueryBuilder;
2152
2148
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
@@ -2116,11 +2116,11 @@ interface CategoriesQueryBuilder {
2116
2116
  /** @param propertyName - Property whose value is compared with `value`.
2117
2117
  * @param value - Value to compare against.
2118
2118
  */
2119
- eq: (propertyName: '_id' | 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language', value: any) => CategoriesQueryBuilder;
2119
+ eq: (propertyName: '_id' | 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language' | 'slug', value: any) => CategoriesQueryBuilder;
2120
2120
  /** @param propertyName - Property whose value is compared with `value`.
2121
2121
  * @param value - Value to compare against.
2122
2122
  */
2123
- ne: (propertyName: '_id' | 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language', value: any) => CategoriesQueryBuilder;
2123
+ ne: (propertyName: '_id' | 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language' | 'slug', value: any) => CategoriesQueryBuilder;
2124
2124
  /** @param propertyName - Property whose value is compared with `value`.
2125
2125
  * @param value - Value to compare against.
2126
2126
  */
@@ -2141,12 +2141,8 @@ interface CategoriesQueryBuilder {
2141
2141
  * @param string - String to compare against. Case-insensitive.
2142
2142
  */
2143
2143
  startsWith: (propertyName: 'label' | 'title', value: string) => CategoriesQueryBuilder;
2144
- /** @param propertyName - Property whose value is compared with `values`.
2145
- * @param values - List of values to compare against.
2146
- */
2147
- hasSome: (propertyName: '_id' | 'label' | 'title' | 'slug', value: any[]) => CategoriesQueryBuilder;
2148
- in: (propertyName: 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language', value: any) => CategoriesQueryBuilder;
2149
- exists: (propertyName: 'label' | 'title' | 'translationId' | 'language', value: boolean) => CategoriesQueryBuilder;
2144
+ in: (propertyName: 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language' | 'slug', value: any) => CategoriesQueryBuilder;
2145
+ exists: (propertyName: 'label' | 'title' | 'translationId' | 'language' | 'slug', value: boolean) => CategoriesQueryBuilder;
2150
2146
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
2151
2147
  ascending: (...propertyNames: Array<'label' | 'postCount' | 'title' | 'displayPosition' | 'language' | 'slug'>) => CategoriesQueryBuilder;
2152
2148
  /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */