@wix/auto_sdk_pricing-plans_orders 1.0.71 → 1.0.73
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 +13 -13
- package/build/cjs/index.js +15 -5
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +9 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.d.mts +13 -13
- package/build/es/index.mjs +15 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +9 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +13 -13
- package/build/internal/cjs/index.js +15 -5
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +9 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.d.mts +13 -13
- package/build/internal/es/index.mjs +15 -5
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +9 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1467,6 +1467,7 @@ interface SetSubmissionResponse {
|
|
|
1467
1467
|
/** Order with submission id */
|
|
1468
1468
|
order?: Order;
|
|
1469
1469
|
}
|
|
1470
|
+
/** @docsIgnore */
|
|
1470
1471
|
type CreateOnlineOrderApplicationErrors = {
|
|
1471
1472
|
code?: 'MEMBER_REQUIRED';
|
|
1472
1473
|
description?: string;
|
|
@@ -1544,6 +1545,7 @@ type CreateOnlineOrderApplicationErrors = {
|
|
|
1544
1545
|
description?: string;
|
|
1545
1546
|
data?: Record<string, any>;
|
|
1546
1547
|
};
|
|
1548
|
+
/** @docsIgnore */
|
|
1547
1549
|
type CreateOnlineOrderValidationErrors = {
|
|
1548
1550
|
ruleName?: 'UNKNOWN_ORDER_METHOD';
|
|
1549
1551
|
} | {
|
|
@@ -1551,6 +1553,7 @@ type CreateOnlineOrderValidationErrors = {
|
|
|
1551
1553
|
} | {
|
|
1552
1554
|
ruleName?: 'invalid_sort_field';
|
|
1553
1555
|
};
|
|
1556
|
+
/** @docsIgnore */
|
|
1554
1557
|
type CreateOfflineOrderApplicationErrors = {
|
|
1555
1558
|
code?: 'PRICING_PLANS_NOT_INSTALLED';
|
|
1556
1559
|
description?: string;
|
|
@@ -1604,11 +1607,13 @@ type CreateOfflineOrderApplicationErrors = {
|
|
|
1604
1607
|
description?: string;
|
|
1605
1608
|
data?: Record<string, any>;
|
|
1606
1609
|
};
|
|
1610
|
+
/** @docsIgnore */
|
|
1607
1611
|
type CreateOfflineOrderValidationErrors = {
|
|
1608
1612
|
ruleName?: 'MEMBER_DOESNT_EXIST';
|
|
1609
1613
|
} | {
|
|
1610
1614
|
ruleName?: 'invalid_sort_field';
|
|
1611
1615
|
};
|
|
1616
|
+
/** @docsIgnore */
|
|
1612
1617
|
type GetOnlineOrderPreviewApplicationErrors = {
|
|
1613
1618
|
code?: 'PRICING_PLANS_NOT_INSTALLED';
|
|
1614
1619
|
description?: string;
|
|
@@ -1658,9 +1663,11 @@ type GetOnlineOrderPreviewApplicationErrors = {
|
|
|
1658
1663
|
description?: string;
|
|
1659
1664
|
data?: Record<string, any>;
|
|
1660
1665
|
};
|
|
1666
|
+
/** @docsIgnore */
|
|
1661
1667
|
type GetOnlineOrderPreviewValidationErrors = {
|
|
1662
1668
|
ruleName?: 'invalid_sort_field';
|
|
1663
1669
|
};
|
|
1670
|
+
/** @docsIgnore */
|
|
1664
1671
|
type GetOfflineOrderPreviewApplicationErrors = {
|
|
1665
1672
|
code?: 'PRICING_PLANS_NOT_INSTALLED';
|
|
1666
1673
|
description?: string;
|
|
@@ -1710,9 +1717,11 @@ type GetOfflineOrderPreviewApplicationErrors = {
|
|
|
1710
1717
|
description?: string;
|
|
1711
1718
|
data?: Record<string, any>;
|
|
1712
1719
|
};
|
|
1720
|
+
/** @docsIgnore */
|
|
1713
1721
|
type GetOfflineOrderPreviewValidationErrors = {
|
|
1714
1722
|
ruleName?: 'invalid_sort_field';
|
|
1715
1723
|
};
|
|
1724
|
+
/** @docsIgnore */
|
|
1716
1725
|
type GetPricePreviewApplicationErrors = {
|
|
1717
1726
|
code?: 'ERROR_COUPON_IS_DISABLED';
|
|
1718
1727
|
description?: string;
|