@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.
|
|
@@ -1496,7 +1496,9 @@ async function typedQueryPosts(query, options) {
|
|
|
1496
1496
|
}
|
|
1497
1497
|
}
|
|
1498
1498
|
var utils = {
|
|
1499
|
-
|
|
1499
|
+
query: {
|
|
1500
|
+
...createQueryUtils()
|
|
1501
|
+
}
|
|
1500
1502
|
};
|
|
1501
1503
|
async function getPostMetrics2(postId) {
|
|
1502
1504
|
const { httpClient, sideEffects } = arguments[1];
|