@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.
@@ -4337,10 +4337,12 @@ type PostQuery = {
4337
4337
  }[];
4338
4338
  };
4339
4339
  declare const utils: {
4340
- /** @enumType */
4341
- QueryBuilder: () => _wix_sdk_types.QueryBuilder<Post, PostQuerySpec, PostQuery>;
4342
- Filter: _wix_sdk_types.FilterFactory<Post, PostQuerySpec>;
4343
- Sort: _wix_sdk_types.SortFactory<PostQuerySpec>;
4340
+ query: {
4341
+ /** @enumType */
4342
+ QueryBuilder: () => _wix_sdk_types.QueryBuilder<Post, PostQuerySpec, PostQuery>;
4343
+ Filter: _wix_sdk_types.FilterFactory<Post, PostQuerySpec>;
4344
+ Sort: _wix_sdk_types.SortFactory<PostQuerySpec>;
4345
+ };
4344
4346
  };
4345
4347
  /**
4346
4348
  * 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];