@wix/auto_sdk_ecom_checkout-templates 1.0.55 → 1.0.56
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 +4 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +4 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +4 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +4 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2764,11 +2764,13 @@ declare enum WebhookIdentityType {
|
|
|
2764
2764
|
}
|
|
2765
2765
|
/** @enumType */
|
|
2766
2766
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
2767
|
+
/** @docsIgnore */
|
|
2767
2768
|
type CreateCheckoutTemplateApplicationErrors = {
|
|
2768
2769
|
code?: 'CANNOT_CREATE_CHECKOUT_TEMPLATE_WITHOUT_ITEMS';
|
|
2769
2770
|
description?: string;
|
|
2770
2771
|
data?: Record<string, any>;
|
|
2771
2772
|
};
|
|
2773
|
+
/** @docsIgnore */
|
|
2772
2774
|
type UpdateCheckoutTemplateApplicationErrors = {
|
|
2773
2775
|
code?: 'CANNOT_UPDATE_CHECKOUT_TEMPLATE_WITHOUT_SPECIFIED_FIELDS';
|
|
2774
2776
|
description?: string;
|
|
@@ -2786,11 +2788,13 @@ type UpdateCheckoutTemplateApplicationErrors = {
|
|
|
2786
2788
|
description?: string;
|
|
2787
2789
|
data?: Record<string, any>;
|
|
2788
2790
|
};
|
|
2791
|
+
/** @docsIgnore */
|
|
2789
2792
|
type CreateCheckoutFromTemplateApplicationErrors = {
|
|
2790
2793
|
code?: 'CANNOT_CREATE_CHECKOUT_FROM_INACTIVE_TEMPLATE';
|
|
2791
2794
|
description?: string;
|
|
2792
2795
|
data?: Record<string, any>;
|
|
2793
2796
|
};
|
|
2797
|
+
/** @docsIgnore */
|
|
2794
2798
|
type CreateAndRedirectToCheckoutApplicationErrors = {
|
|
2795
2799
|
code?: 'CANNOT_CREATE_CHECKOUT_FROM_INACTIVE_TEMPLATE';
|
|
2796
2800
|
description?: string;
|