@wix/auto_sdk_blog_posts 1.0.134 → 1.0.135
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/index.js +3 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +6 -4
- package/build/cjs/index.typings.js +3 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs +3 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +6 -4
- package/build/es/index.typings.mjs +3 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.js +3 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +6 -4
- package/build/internal/cjs/index.typings.js +3 -1
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.mjs +3 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +6 -4
- package/build/internal/es/index.typings.mjs +3 -1
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -4344,10 +4344,12 @@ type PostQuery = {
|
|
|
4344
4344
|
}[];
|
|
4345
4345
|
};
|
|
4346
4346
|
declare const utils: {
|
|
4347
|
-
|
|
4348
|
-
|
|
4349
|
-
|
|
4350
|
-
|
|
4347
|
+
query: {
|
|
4348
|
+
/** @enumType */
|
|
4349
|
+
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Post, PostQuerySpec, PostQuery>;
|
|
4350
|
+
Filter: _wix_sdk_types.FilterFactory<Post, PostQuerySpec>;
|
|
4351
|
+
Sort: _wix_sdk_types.SortFactory<PostQuerySpec>;
|
|
4352
|
+
};
|
|
4351
4353
|
};
|
|
4352
4354
|
/**
|
|
4353
4355
|
* Retrieves a post's metrics.
|
|
@@ -1581,7 +1581,9 @@ async function typedQueryPosts(query, options) {
|
|
|
1581
1581
|
}
|
|
1582
1582
|
}
|
|
1583
1583
|
var utils = {
|
|
1584
|
-
|
|
1584
|
+
query: {
|
|
1585
|
+
...(0, import_query_builder_utils.createQueryUtils)()
|
|
1586
|
+
}
|
|
1585
1587
|
};
|
|
1586
1588
|
async function getPostMetrics2(postId) {
|
|
1587
1589
|
const { httpClient, sideEffects } = arguments[1];
|