@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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +15 -15
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +15 -15
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +15 -15
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +15 -15
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +15 -15
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +15 -15
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +15 -15
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +15 -15
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -2459,21 +2459,6 @@ interface QueryDraftPostsRequest {
|
|
|
2459
2459
|
/** Query options. */
|
|
2460
2460
|
query?: PlatformQuery;
|
|
2461
2461
|
}
|
|
2462
|
-
interface Sorting {
|
|
2463
|
-
/**
|
|
2464
|
-
* Name of the field to sort by.
|
|
2465
|
-
* @maxLength 512
|
|
2466
|
-
*/
|
|
2467
|
-
fieldName?: string;
|
|
2468
|
-
/** Sort order. */
|
|
2469
|
-
order?: SortOrderWithLiterals;
|
|
2470
|
-
}
|
|
2471
|
-
declare enum SortOrder {
|
|
2472
|
-
ASC = "ASC",
|
|
2473
|
-
DESC = "DESC"
|
|
2474
|
-
}
|
|
2475
|
-
/** @enumType */
|
|
2476
|
-
type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
2477
2462
|
interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
|
|
2478
2463
|
/** Paging options to limit and skip the number of items. */
|
|
2479
2464
|
paging?: Paging;
|
|
@@ -2502,6 +2487,21 @@ interface PlatformQueryPagingMethodOneOf {
|
|
|
2502
2487
|
/** 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`. */
|
|
2503
2488
|
cursorPaging?: CursorPaging;
|
|
2504
2489
|
}
|
|
2490
|
+
interface Sorting {
|
|
2491
|
+
/**
|
|
2492
|
+
* Name of the field to sort by.
|
|
2493
|
+
* @maxLength 512
|
|
2494
|
+
*/
|
|
2495
|
+
fieldName?: string;
|
|
2496
|
+
/** Sort order. */
|
|
2497
|
+
order?: SortOrderWithLiterals;
|
|
2498
|
+
}
|
|
2499
|
+
declare enum SortOrder {
|
|
2500
|
+
ASC = "ASC",
|
|
2501
|
+
DESC = "DESC"
|
|
2502
|
+
}
|
|
2503
|
+
/** @enumType */
|
|
2504
|
+
type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
2505
2505
|
interface Paging {
|
|
2506
2506
|
/**
|
|
2507
2507
|
* Number of items to load.
|