@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.
@@ -1581,7 +1581,9 @@ async function typedQueryPosts(query, options) {
1581
1581
  }
1582
1582
  }
1583
1583
  var utils = {
1584
- ...(0, import_query_builder_utils.createQueryUtils)()
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];