@wix/blog 1.0.334 → 1.0.336
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.336",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@wix/blog_blog-cache": "1.0.10",
|
|
25
25
|
"@wix/blog_blog-importer": "1.0.23",
|
|
26
|
-
"@wix/blog_categories": "1.0.
|
|
26
|
+
"@wix/blog_categories": "1.0.55",
|
|
27
27
|
"@wix/blog_draft-posts": "1.0.56",
|
|
28
|
-
"@wix/blog_posts": "1.0.
|
|
29
|
-
"@wix/blog_tags": "1.0.
|
|
28
|
+
"@wix/blog_posts": "1.0.64",
|
|
29
|
+
"@wix/blog_tags": "1.0.61"
|
|
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": "2ad5b973580a10688b38590f0e3778f1dbdb7ba6f397fe0230e309d3"
|
|
55
55
|
}
|
|
@@ -2172,7 +2172,7 @@ interface CategoriesQueryBuilder {
|
|
|
2172
2172
|
* @param string - String to compare against. Case-insensitive.
|
|
2173
2173
|
*/
|
|
2174
2174
|
startsWith: (propertyName: 'label' | 'title', value: string) => CategoriesQueryBuilder;
|
|
2175
|
-
in: (propertyName: 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language' | 'slug', value: any) => CategoriesQueryBuilder;
|
|
2175
|
+
in: (propertyName: '_id' | 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language' | 'slug', value: any) => CategoriesQueryBuilder;
|
|
2176
2176
|
exists: (propertyName: 'label' | 'title' | 'translationId' | 'language' | 'slug', value: boolean) => CategoriesQueryBuilder;
|
|
2177
2177
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
2178
2178
|
ascending: (...propertyNames: Array<'label' | 'postCount' | 'title' | 'displayPosition' | 'language' | 'slug'>) => CategoriesQueryBuilder;
|
|
@@ -9370,7 +9370,7 @@ interface PostsQueryBuilder {
|
|
|
9370
9370
|
* @param values - List of values to compare against.
|
|
9371
9371
|
*/
|
|
9372
9372
|
hasAll: (propertyName: 'categoryIds' | 'hashtags' | 'tagIds' | 'pricingPlanIds', value: any[]) => PostsQueryBuilder;
|
|
9373
|
-
in: (propertyName: 'title' | 'firstPublishedDate' | 'lastPublishedDate' | 'minutesToRead' | 'translationId' | 'language' | 'metrics.comments' | 'metrics.likes' | 'metrics.views', value: any) => PostsQueryBuilder;
|
|
9373
|
+
in: (propertyName: '_id' | 'title' | 'firstPublishedDate' | 'lastPublishedDate' | 'minutesToRead' | 'translationId' | 'language' | 'metrics.comments' | 'metrics.likes' | 'metrics.views', value: any) => PostsQueryBuilder;
|
|
9374
9374
|
exists: (propertyName: 'title' | 'translationId' | 'language', value: boolean) => PostsQueryBuilder;
|
|
9375
9375
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
9376
9376
|
ascending: (...propertyNames: Array<'_id' | 'title' | 'firstPublishedDate' | 'lastPublishedDate' | 'slug' | 'featured' | 'pinned' | 'commentingEnabled' | 'metrics.comments' | 'metrics.likes' | 'metrics.views'>) => PostsQueryBuilder;
|
|
@@ -10598,8 +10598,8 @@ interface TagsQueryBuilder {
|
|
|
10598
10598
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
10599
10599
|
* @param values - List of values to compare against.
|
|
10600
10600
|
*/
|
|
10601
|
-
hasSome: (propertyName: '
|
|
10602
|
-
in: (propertyName: 'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
|
|
10601
|
+
hasSome: (propertyName: 'label' | 'slug', value: any[]) => TagsQueryBuilder;
|
|
10602
|
+
in: (propertyName: '_id' | 'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
|
|
10603
10603
|
exists: (propertyName: 'label' | 'slug' | 'translationId' | 'language', value: boolean) => TagsQueryBuilder;
|
|
10604
10604
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
10605
10605
|
ascending: (...propertyNames: Array<'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'language'>) => TagsQueryBuilder;
|
|
@@ -2172,7 +2172,7 @@ interface CategoriesQueryBuilder {
|
|
|
2172
2172
|
* @param string - String to compare against. Case-insensitive.
|
|
2173
2173
|
*/
|
|
2174
2174
|
startsWith: (propertyName: 'label' | 'title', value: string) => CategoriesQueryBuilder;
|
|
2175
|
-
in: (propertyName: 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language' | 'slug', value: any) => CategoriesQueryBuilder;
|
|
2175
|
+
in: (propertyName: '_id' | 'label' | 'postCount' | 'title' | 'displayPosition' | 'translationId' | 'language' | 'slug', value: any) => CategoriesQueryBuilder;
|
|
2176
2176
|
exists: (propertyName: 'label' | 'title' | 'translationId' | 'language' | 'slug', value: boolean) => CategoriesQueryBuilder;
|
|
2177
2177
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
2178
2178
|
ascending: (...propertyNames: Array<'label' | 'postCount' | 'title' | 'displayPosition' | 'language' | 'slug'>) => CategoriesQueryBuilder;
|
|
@@ -9370,7 +9370,7 @@ interface PostsQueryBuilder {
|
|
|
9370
9370
|
* @param values - List of values to compare against.
|
|
9371
9371
|
*/
|
|
9372
9372
|
hasAll: (propertyName: 'categoryIds' | 'hashtags' | 'tagIds' | 'pricingPlanIds', value: any[]) => PostsQueryBuilder;
|
|
9373
|
-
in: (propertyName: 'title' | 'firstPublishedDate' | 'lastPublishedDate' | 'minutesToRead' | 'translationId' | 'language' | 'metrics.comments' | 'metrics.likes' | 'metrics.views', value: any) => PostsQueryBuilder;
|
|
9373
|
+
in: (propertyName: '_id' | 'title' | 'firstPublishedDate' | 'lastPublishedDate' | 'minutesToRead' | 'translationId' | 'language' | 'metrics.comments' | 'metrics.likes' | 'metrics.views', value: any) => PostsQueryBuilder;
|
|
9374
9374
|
exists: (propertyName: 'title' | 'translationId' | 'language', value: boolean) => PostsQueryBuilder;
|
|
9375
9375
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
9376
9376
|
ascending: (...propertyNames: Array<'_id' | 'title' | 'firstPublishedDate' | 'lastPublishedDate' | 'slug' | 'featured' | 'pinned' | 'commentingEnabled' | 'metrics.comments' | 'metrics.likes' | 'metrics.views'>) => PostsQueryBuilder;
|
|
@@ -10598,8 +10598,8 @@ interface TagsQueryBuilder {
|
|
|
10598
10598
|
/** @param propertyName - Property whose value is compared with `values`.
|
|
10599
10599
|
* @param values - List of values to compare against.
|
|
10600
10600
|
*/
|
|
10601
|
-
hasSome: (propertyName: '
|
|
10602
|
-
in: (propertyName: 'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
|
|
10601
|
+
hasSome: (propertyName: 'label' | 'slug', value: any[]) => TagsQueryBuilder;
|
|
10602
|
+
in: (propertyName: '_id' | 'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'translationId' | 'language', value: any) => TagsQueryBuilder;
|
|
10603
10603
|
exists: (propertyName: 'label' | 'slug' | 'translationId' | 'language', value: boolean) => TagsQueryBuilder;
|
|
10604
10604
|
/** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. */
|
|
10605
10605
|
ascending: (...propertyNames: Array<'label' | 'slug' | 'postCount' | 'publishedPostCount' | 'language'>) => TagsQueryBuilder;
|