@wix/auto_sdk_blog_draft-posts 1.0.36 → 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.d.ts +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +45 -16
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +44 -15
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +45 -16
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +44 -15
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +45 -16
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +44 -15
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +45 -16
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +44 -15
- package/package.json +2 -2
|
@@ -1391,6 +1391,8 @@ interface AppEmbedData extends AppEmbedDataAppDataOneOf {
|
|
|
1391
1391
|
cardStyles?: CardStyles;
|
|
1392
1392
|
/** Styling for the app embed's container. */
|
|
1393
1393
|
containerData?: PluginContainerData;
|
|
1394
|
+
/** Pricing data for embedded Wix App content. */
|
|
1395
|
+
pricingData?: PricingData;
|
|
1394
1396
|
}
|
|
1395
1397
|
/** @oneof */
|
|
1396
1398
|
interface AppEmbedDataAppDataOneOf {
|
|
@@ -1592,6 +1594,33 @@ interface CardStyles {
|
|
|
1592
1594
|
*/
|
|
1593
1595
|
textColor?: string | null;
|
|
1594
1596
|
}
|
|
1597
|
+
interface PricingData {
|
|
1598
|
+
/**
|
|
1599
|
+
* Minimum numeric price value as string (e.g., "10.99").
|
|
1600
|
+
* @decimalValue options { maxScale:2 }
|
|
1601
|
+
*/
|
|
1602
|
+
valueFrom?: string | null;
|
|
1603
|
+
/**
|
|
1604
|
+
* Maximum numeric price value as string (e.g., "19.99").
|
|
1605
|
+
* @decimalValue options { maxScale:2 }
|
|
1606
|
+
*/
|
|
1607
|
+
valueTo?: string | null;
|
|
1608
|
+
/**
|
|
1609
|
+
* Numeric price value as string after discount application (e.g., "15.99").
|
|
1610
|
+
* @decimalValue options { maxScale:2 }
|
|
1611
|
+
*/
|
|
1612
|
+
discountedValue?: string | null;
|
|
1613
|
+
/**
|
|
1614
|
+
* Currency of the value in ISO 4217 format (e.g., "USD", "EUR").
|
|
1615
|
+
* @format CURRENCY
|
|
1616
|
+
*/
|
|
1617
|
+
currency?: string | null;
|
|
1618
|
+
/**
|
|
1619
|
+
* Pricing plan ID.
|
|
1620
|
+
* @format GUID
|
|
1621
|
+
*/
|
|
1622
|
+
pricingPlanId?: string | null;
|
|
1623
|
+
}
|
|
1595
1624
|
interface VideoData {
|
|
1596
1625
|
/** Styling for the video's container. */
|
|
1597
1626
|
containerData?: PluginContainerData;
|
|
@@ -2430,21 +2459,6 @@ interface QueryDraftPostsRequest {
|
|
|
2430
2459
|
/** Query options. */
|
|
2431
2460
|
query?: PlatformQuery;
|
|
2432
2461
|
}
|
|
2433
|
-
interface Sorting {
|
|
2434
|
-
/**
|
|
2435
|
-
* Name of the field to sort by.
|
|
2436
|
-
* @maxLength 512
|
|
2437
|
-
*/
|
|
2438
|
-
fieldName?: string;
|
|
2439
|
-
/** Sort order. */
|
|
2440
|
-
order?: SortOrderWithLiterals;
|
|
2441
|
-
}
|
|
2442
|
-
declare enum SortOrder {
|
|
2443
|
-
ASC = "ASC",
|
|
2444
|
-
DESC = "DESC"
|
|
2445
|
-
}
|
|
2446
|
-
/** @enumType */
|
|
2447
|
-
type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
2448
2462
|
interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
|
|
2449
2463
|
/** Paging options to limit and skip the number of items. */
|
|
2450
2464
|
paging?: Paging;
|
|
@@ -2473,6 +2487,21 @@ interface PlatformQueryPagingMethodOneOf {
|
|
|
2473
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`. */
|
|
2474
2488
|
cursorPaging?: CursorPaging;
|
|
2475
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';
|
|
2476
2505
|
interface Paging {
|
|
2477
2506
|
/**
|
|
2478
2507
|
* Number of items to load.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_blog_draft-posts",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.38",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": "wix.blog.v3.draft"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "5eac21cf7d49fe1f7573f3ec843b0274320d62fb1e29ac710b4af717"
|
|
54
54
|
}
|