@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.
@@ -4344,10 +4344,12 @@ type PostQuery = {
4344
4344
  }[];
4345
4345
  };
4346
4346
  declare const utils: {
4347
- /** @enumType */
4348
- QueryBuilder: () => _wix_sdk_types.QueryBuilder<Post, PostQuerySpec, PostQuery>;
4349
- Filter: _wix_sdk_types.FilterFactory<Post, PostQuerySpec>;
4350
- Sort: _wix_sdk_types.SortFactory<PostQuerySpec>;
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
- ...createQueryUtils()
1499
+ query: {
1500
+ ...createQueryUtils()
1501
+ }
1500
1502
  };
1501
1503
  async function getPostMetrics2(postId) {
1502
1504
  const { httpClient, sideEffects } = arguments[1];