@wix/auto_sdk_blog_draft-posts 1.0.37 → 1.0.38

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.
@@ -2832,21 +2832,6 @@ interface QueryDraftPostsRequest {
2832
2832
  /** Query options. */
2833
2833
  query?: PlatformQuery;
2834
2834
  }
2835
- interface Sorting {
2836
- /**
2837
- * Name of the field to sort by.
2838
- * @maxLength 512
2839
- */
2840
- fieldName?: string;
2841
- /** Sort order. */
2842
- order?: SortOrderWithLiterals;
2843
- }
2844
- declare enum SortOrder {
2845
- ASC = "ASC",
2846
- DESC = "DESC"
2847
- }
2848
- /** @enumType */
2849
- type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
2850
2835
  interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
2851
2836
  /** Paging options to limit and skip the number of items. */
2852
2837
  paging?: Paging;
@@ -2875,6 +2860,21 @@ interface PlatformQueryPagingMethodOneOf {
2875
2860
  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
2876
2861
  cursorPaging?: CursorPaging;
2877
2862
  }
2863
+ interface Sorting {
2864
+ /**
2865
+ * Name of the field to sort by.
2866
+ * @maxLength 512
2867
+ */
2868
+ fieldName?: string;
2869
+ /** Sort order. */
2870
+ order?: SortOrderWithLiterals;
2871
+ }
2872
+ declare enum SortOrder {
2873
+ ASC = "ASC",
2874
+ DESC = "DESC"
2875
+ }
2876
+ /** @enumType */
2877
+ type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
2878
2878
  interface Paging {
2879
2879
  /**
2880
2880
  * Number of items to load.