@wix/auto_sdk_ecom_checkout-templates 1.0.14 → 1.0.16
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/{ecom-v1-checkout-template-checkout-templates.universal-Dlk9Q0d1.d.mts → ecom-v1-checkout-template-checkout-templates.universal-CLwke5y5.d.mts} +18 -0
- package/build/{ecom-v1-checkout-template-checkout-templates.universal-Dlk9Q0d1.d.ts → ecom-v1-checkout-template-checkout-templates.universal-CLwke5y5.d.ts} +18 -0
- package/build/index.d.mts +2 -2
- package/build/index.d.ts +2 -2
- package/build/index.js +12 -0
- package/build/index.js.map +1 -1
- package/build/index.mjs +12 -0
- package/build/index.mjs.map +1 -1
- package/build/internal/{ecom-v1-checkout-template-checkout-templates.universal-BDZkX1fX.d.mts → ecom-v1-checkout-template-checkout-templates.universal-D0KtbaVp.d.mts} +18 -0
- package/build/internal/{ecom-v1-checkout-template-checkout-templates.universal-BDZkX1fX.d.ts → ecom-v1-checkout-template-checkout-templates.universal-D0KtbaVp.d.ts} +18 -0
- package/build/internal/index.d.mts +2 -2
- package/build/internal/index.d.ts +2 -2
- package/build/internal/index.js +12 -0
- package/build/internal/index.js.map +1 -1
- package/build/internal/index.mjs +12 -0
- package/build/internal/index.mjs.map +1 -1
- package/build/internal/meta.d.mts +24 -1
- package/build/internal/meta.d.ts +24 -1
- package/build/internal/meta.js +12 -0
- package/build/internal/meta.js.map +1 -1
- package/build/internal/meta.mjs +12 -0
- package/build/internal/meta.mjs.map +1 -1
- package/build/meta.d.mts +24 -1
- package/build/meta.d.ts +24 -1
- package/build/meta.js +12 -0
- package/build/meta.js.map +1 -1
- package/build/meta.mjs +12 -0
- package/build/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -43,6 +43,12 @@ interface CheckoutTemplate {
|
|
|
43
43
|
* Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
|
|
44
44
|
*/
|
|
45
45
|
customContentReference?: CustomContentReference;
|
|
46
|
+
/**
|
|
47
|
+
* References to an external app and resource associated with the checkout.
|
|
48
|
+
* Used for integration and tracking across different platforms.
|
|
49
|
+
* @immutable
|
|
50
|
+
*/
|
|
51
|
+
externalReference?: ExternalReference;
|
|
46
52
|
}
|
|
47
53
|
declare enum Status {
|
|
48
54
|
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
@@ -796,6 +802,12 @@ interface Checkout {
|
|
|
796
802
|
* Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
|
|
797
803
|
*/
|
|
798
804
|
customContentReference?: CustomContentReference;
|
|
805
|
+
/**
|
|
806
|
+
* References to an external app and resource associated with this checkout.
|
|
807
|
+
* Used for integration and tracking across different platforms.
|
|
808
|
+
* @immutable
|
|
809
|
+
*/
|
|
810
|
+
externalReference?: ExternalReference;
|
|
799
811
|
/**
|
|
800
812
|
* The business location ID associated with the checkout.
|
|
801
813
|
*
|
|
@@ -2680,6 +2692,12 @@ interface UpdateCheckoutTemplate {
|
|
|
2680
2692
|
* Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
|
|
2681
2693
|
*/
|
|
2682
2694
|
customContentReference?: CustomContentReference;
|
|
2695
|
+
/**
|
|
2696
|
+
* References to an external app and resource associated with the checkout.
|
|
2697
|
+
* Used for integration and tracking across different platforms.
|
|
2698
|
+
* @immutable
|
|
2699
|
+
*/
|
|
2700
|
+
externalReference?: ExternalReference;
|
|
2683
2701
|
}
|
|
2684
2702
|
interface QueryCursorResult {
|
|
2685
2703
|
cursors: Cursors;
|
|
@@ -43,6 +43,12 @@ interface CheckoutTemplate {
|
|
|
43
43
|
* Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
|
|
44
44
|
*/
|
|
45
45
|
customContentReference?: CustomContentReference;
|
|
46
|
+
/**
|
|
47
|
+
* References to an external app and resource associated with the checkout.
|
|
48
|
+
* Used for integration and tracking across different platforms.
|
|
49
|
+
* @immutable
|
|
50
|
+
*/
|
|
51
|
+
externalReference?: ExternalReference;
|
|
46
52
|
}
|
|
47
53
|
declare enum Status {
|
|
48
54
|
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
@@ -796,6 +802,12 @@ interface Checkout {
|
|
|
796
802
|
* Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
|
|
797
803
|
*/
|
|
798
804
|
customContentReference?: CustomContentReference;
|
|
805
|
+
/**
|
|
806
|
+
* References to an external app and resource associated with this checkout.
|
|
807
|
+
* Used for integration and tracking across different platforms.
|
|
808
|
+
* @immutable
|
|
809
|
+
*/
|
|
810
|
+
externalReference?: ExternalReference;
|
|
799
811
|
/**
|
|
800
812
|
* The business location ID associated with the checkout.
|
|
801
813
|
*
|
|
@@ -2680,6 +2692,12 @@ interface UpdateCheckoutTemplate {
|
|
|
2680
2692
|
* Learn more about [permission scopes](https://dev.wix.com/docs/build-apps/develop-your-app/access/authorization/about-permissions).
|
|
2681
2693
|
*/
|
|
2682
2694
|
customContentReference?: CustomContentReference;
|
|
2695
|
+
/**
|
|
2696
|
+
* References to an external app and resource associated with the checkout.
|
|
2697
|
+
* Used for integration and tracking across different platforms.
|
|
2698
|
+
* @immutable
|
|
2699
|
+
*/
|
|
2700
|
+
externalReference?: ExternalReference;
|
|
2683
2701
|
}
|
|
2684
2702
|
interface QueryCursorResult {
|
|
2685
2703
|
cursors: Cursors;
|
package/build/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, MaybeContext, BuildRESTFunction } from '@wix/sdk-types';
|
|
2
|
-
import { C as CheckoutTemplate, U as UpdateCheckoutTemplate, a as CheckoutTemplatesQueryBuilder, b as CreateCheckoutFromTemplateResponse, R as RawHttpResponse } from './ecom-v1-checkout-template-checkout-templates.universal-
|
|
3
|
-
export { bP as ActionEvent, bg as AdditionalFee, A as AdditionalFeeSource, an as Address, ap as AddressLocation, am as AddressWithContact, b6 as AggregatedTaxBreakdown, aC as ApplicableLineItems, aP as ApplicationError, aW as AppliedDiscount, aX as AppliedDiscountDiscountSourceOneOf, b5 as AutoTaxFallbackCalculationDetails, bT as BaseEventMetadata, aI as BuyerInfo, aJ as BuyerInfoIdOneOf, aL as CalculationErrors, aM as CalculationErrorsShippingCalculationErrorOneOf, aA as Carrier, aU as CarrierError, aT as CarrierErrors, aE as CarrierServiceOption, u as CatalogOverrideFields, t as CatalogReference, k as ChannelType, bp as Charge, f as ChargeType, a9 as Checkout, q as CheckoutCustomization, bV as CheckoutTemplateCreatedEnvelope, bW as CheckoutTemplateDeletedEnvelope, bX as CheckoutTemplateUpdatedEnvelope, a8 as CheckoutTemplateUsed, bY as CheckoutTemplateUsedEnvelope, bZ as CheckoutTemplatesQueryResult, E as Color, bh as ConversionInfo, aY as Coupon, bH as CreateAndRedirectToCheckoutRequest, bG as CreateCheckoutFromTemplateRequest, bq as CreateCheckoutTemplateRequest, br as CreateCheckoutTemplateResponse, b7 as CreatedBy, b8 as CreatedByIdOneOf, bC as CursorPaging, bE as CursorPagingMetadata, bz as CursorQuery, bA as CursorQueryPagingMethodOneOf, bF as Cursors, a6 as CustomContentReference, b1 as CustomField, K as CustomLineItem, bn as CustomSettings, bw as DeleteCheckoutTemplateRequest, bx as DeleteCheckoutTemplateResponse, az as DeliveryAllocation, au as DeliveryLogistics, aw as DeliveryTimeSlot, $ as Description, w as DescriptionLine, y as DescriptionLineDescriptionLineValueOneOf, z as DescriptionLineName, D as DescriptionLineType, x as DescriptionLineValueOneOf, aN as Details, aO as DetailsKindOneOf, a_ as DiscountRule, a$ as DiscountRuleName, h as DiscountType, bJ as DomainEvent, bK as DomainEventBodyOneOf, bL as EntityCreatedEvent, bO as EntityDeletedEvent, bN as EntityUpdatedEvent, bU as EventMetadata, a5 as ExtendedFields, a7 as ExternalReference, j as FallbackReason, aR as FieldViolation, F as FileType, af as FocalPoint, Z as FreeTrialPeriod, aq as FullAddressContactDetails, bs as GetCheckoutTemplateRequest, bt as GetCheckoutTemplateResponse, aV as GiftCard, ai as Group, bI as HeadersEntry, bR as IdentificationData, bS as IdentificationDataIdOneOf, bd as InvalidMembership, ag as ItemAvailabilityInfo, d as ItemAvailabilityStatus, al as ItemModifier, ac as ItemTaxFullDetails, O as ItemType, I as ItemTypeItemType, Q as ItemTypeItemTypeDataOneOf, J as JurisdictionType, aa as LineItem, b0 as LineItemDiscount, M as ManualCalculationReason, ba as Membership, bb as MembershipName, b9 as MembershipOptions, bc as MembershipPaymentCredits, aZ as MerchantDiscount, bQ as MessageEnvelope, aj as ModifierGroup, ab as MultiCurrencyPrice, m as NameInLineItem, N as NameInOther, bl as Other, aH as OtherCharge, H as PaymentOption, P as PaymentOptionType, G as PhysicalProperties, av as PickupDetails, e as PickupMethod, B as PlainTextValue, a2 as Policy, L as PriceDescription, aK as PriceSummary, v as ProductName, by as QueryCheckoutTemplatesRequest, bD as QueryCheckoutTemplatesResponse, i as RateType, aB as Region, bM as RestoreInfo, g as RuleType, ah as Scope, a0 as SecuredMedia, at as SelectedCarrierServiceOption, ay as SelectedCarrierServiceOptionOtherCharge, ax as SelectedCarrierServiceOptionPrices, bf as SelectedMembership, be as SelectedMemberships, a1 as ServiceProperties, l as Severity, as as ShippingInfo, aF as ShippingOption, aG as ShippingPrice, aD as ShippingRegion, o as SortOrder, bB as Sorting, S as Status, ao as StreetAddress, bo as SubscriptionCharges, c as SubscriptionFrequency, X as SubscriptionOptionInfo, Y as SubscriptionSettings, n as SuggestedFix, aS as SystemError, bj as Target, bm as TargetLineItem, bk as TargetTargetTypeOneOf, ae as TaxBreakdown, b3 as TaxCalculationDetails, b4 as TaxCalculationDetailsCalculationDetailsOneOf, ad as TaxRateBreakdown, b2 as TaxSummary, a3 as TaxableAddress, a4 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, _ as Title, ak as TranslatableString, bu as UpdateCheckoutTemplateRequest, bv as UpdateCheckoutTemplateResponse, s as V1LineItem, aQ as ValidationError, ar as VatId, V as VatType, bi as Violation, r as WebClientCustomization, p as WebhookIdentityType, W as WeightUnit } from './ecom-v1-checkout-template-checkout-templates.universal-
|
|
2
|
+
import { C as CheckoutTemplate, U as UpdateCheckoutTemplate, a as CheckoutTemplatesQueryBuilder, b as CreateCheckoutFromTemplateResponse, R as RawHttpResponse } from './ecom-v1-checkout-template-checkout-templates.universal-CLwke5y5.mjs';
|
|
3
|
+
export { bP as ActionEvent, bg as AdditionalFee, A as AdditionalFeeSource, an as Address, ap as AddressLocation, am as AddressWithContact, b6 as AggregatedTaxBreakdown, aC as ApplicableLineItems, aP as ApplicationError, aW as AppliedDiscount, aX as AppliedDiscountDiscountSourceOneOf, b5 as AutoTaxFallbackCalculationDetails, bT as BaseEventMetadata, aI as BuyerInfo, aJ as BuyerInfoIdOneOf, aL as CalculationErrors, aM as CalculationErrorsShippingCalculationErrorOneOf, aA as Carrier, aU as CarrierError, aT as CarrierErrors, aE as CarrierServiceOption, u as CatalogOverrideFields, t as CatalogReference, k as ChannelType, bp as Charge, f as ChargeType, a9 as Checkout, q as CheckoutCustomization, bV as CheckoutTemplateCreatedEnvelope, bW as CheckoutTemplateDeletedEnvelope, bX as CheckoutTemplateUpdatedEnvelope, a8 as CheckoutTemplateUsed, bY as CheckoutTemplateUsedEnvelope, bZ as CheckoutTemplatesQueryResult, E as Color, bh as ConversionInfo, aY as Coupon, bH as CreateAndRedirectToCheckoutRequest, bG as CreateCheckoutFromTemplateRequest, bq as CreateCheckoutTemplateRequest, br as CreateCheckoutTemplateResponse, b7 as CreatedBy, b8 as CreatedByIdOneOf, bC as CursorPaging, bE as CursorPagingMetadata, bz as CursorQuery, bA as CursorQueryPagingMethodOneOf, bF as Cursors, a6 as CustomContentReference, b1 as CustomField, K as CustomLineItem, bn as CustomSettings, bw as DeleteCheckoutTemplateRequest, bx as DeleteCheckoutTemplateResponse, az as DeliveryAllocation, au as DeliveryLogistics, aw as DeliveryTimeSlot, $ as Description, w as DescriptionLine, y as DescriptionLineDescriptionLineValueOneOf, z as DescriptionLineName, D as DescriptionLineType, x as DescriptionLineValueOneOf, aN as Details, aO as DetailsKindOneOf, a_ as DiscountRule, a$ as DiscountRuleName, h as DiscountType, bJ as DomainEvent, bK as DomainEventBodyOneOf, bL as EntityCreatedEvent, bO as EntityDeletedEvent, bN as EntityUpdatedEvent, bU as EventMetadata, a5 as ExtendedFields, a7 as ExternalReference, j as FallbackReason, aR as FieldViolation, F as FileType, af as FocalPoint, Z as FreeTrialPeriod, aq as FullAddressContactDetails, bs as GetCheckoutTemplateRequest, bt as GetCheckoutTemplateResponse, aV as GiftCard, ai as Group, bI as HeadersEntry, bR as IdentificationData, bS as IdentificationDataIdOneOf, bd as InvalidMembership, ag as ItemAvailabilityInfo, d as ItemAvailabilityStatus, al as ItemModifier, ac as ItemTaxFullDetails, O as ItemType, I as ItemTypeItemType, Q as ItemTypeItemTypeDataOneOf, J as JurisdictionType, aa as LineItem, b0 as LineItemDiscount, M as ManualCalculationReason, ba as Membership, bb as MembershipName, b9 as MembershipOptions, bc as MembershipPaymentCredits, aZ as MerchantDiscount, bQ as MessageEnvelope, aj as ModifierGroup, ab as MultiCurrencyPrice, m as NameInLineItem, N as NameInOther, bl as Other, aH as OtherCharge, H as PaymentOption, P as PaymentOptionType, G as PhysicalProperties, av as PickupDetails, e as PickupMethod, B as PlainTextValue, a2 as Policy, L as PriceDescription, aK as PriceSummary, v as ProductName, by as QueryCheckoutTemplatesRequest, bD as QueryCheckoutTemplatesResponse, i as RateType, aB as Region, bM as RestoreInfo, g as RuleType, ah as Scope, a0 as SecuredMedia, at as SelectedCarrierServiceOption, ay as SelectedCarrierServiceOptionOtherCharge, ax as SelectedCarrierServiceOptionPrices, bf as SelectedMembership, be as SelectedMemberships, a1 as ServiceProperties, l as Severity, as as ShippingInfo, aF as ShippingOption, aG as ShippingPrice, aD as ShippingRegion, o as SortOrder, bB as Sorting, S as Status, ao as StreetAddress, bo as SubscriptionCharges, c as SubscriptionFrequency, X as SubscriptionOptionInfo, Y as SubscriptionSettings, n as SuggestedFix, aS as SystemError, bj as Target, bm as TargetLineItem, bk as TargetTargetTypeOneOf, ae as TaxBreakdown, b3 as TaxCalculationDetails, b4 as TaxCalculationDetailsCalculationDetailsOneOf, ad as TaxRateBreakdown, b2 as TaxSummary, a3 as TaxableAddress, a4 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, _ as Title, ak as TranslatableString, bu as UpdateCheckoutTemplateRequest, bv as UpdateCheckoutTemplateResponse, s as V1LineItem, aQ as ValidationError, ar as VatId, V as VatType, bi as Violation, r as WebClientCustomization, p as WebhookIdentityType, W as WeightUnit } from './ecom-v1-checkout-template-checkout-templates.universal-CLwke5y5.mjs';
|
|
4
4
|
import { createEventModule } from '@wix/sdk-runtime/event-definition-modules';
|
|
5
5
|
|
|
6
6
|
declare function createCheckoutTemplate$1(httpClient: HttpClient): CreateCheckoutTemplateSignature;
|
package/build/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, MaybeContext, BuildRESTFunction } from '@wix/sdk-types';
|
|
2
|
-
import { C as CheckoutTemplate, U as UpdateCheckoutTemplate, a as CheckoutTemplatesQueryBuilder, b as CreateCheckoutFromTemplateResponse, R as RawHttpResponse } from './ecom-v1-checkout-template-checkout-templates.universal-
|
|
3
|
-
export { bP as ActionEvent, bg as AdditionalFee, A as AdditionalFeeSource, an as Address, ap as AddressLocation, am as AddressWithContact, b6 as AggregatedTaxBreakdown, aC as ApplicableLineItems, aP as ApplicationError, aW as AppliedDiscount, aX as AppliedDiscountDiscountSourceOneOf, b5 as AutoTaxFallbackCalculationDetails, bT as BaseEventMetadata, aI as BuyerInfo, aJ as BuyerInfoIdOneOf, aL as CalculationErrors, aM as CalculationErrorsShippingCalculationErrorOneOf, aA as Carrier, aU as CarrierError, aT as CarrierErrors, aE as CarrierServiceOption, u as CatalogOverrideFields, t as CatalogReference, k as ChannelType, bp as Charge, f as ChargeType, a9 as Checkout, q as CheckoutCustomization, bV as CheckoutTemplateCreatedEnvelope, bW as CheckoutTemplateDeletedEnvelope, bX as CheckoutTemplateUpdatedEnvelope, a8 as CheckoutTemplateUsed, bY as CheckoutTemplateUsedEnvelope, bZ as CheckoutTemplatesQueryResult, E as Color, bh as ConversionInfo, aY as Coupon, bH as CreateAndRedirectToCheckoutRequest, bG as CreateCheckoutFromTemplateRequest, bq as CreateCheckoutTemplateRequest, br as CreateCheckoutTemplateResponse, b7 as CreatedBy, b8 as CreatedByIdOneOf, bC as CursorPaging, bE as CursorPagingMetadata, bz as CursorQuery, bA as CursorQueryPagingMethodOneOf, bF as Cursors, a6 as CustomContentReference, b1 as CustomField, K as CustomLineItem, bn as CustomSettings, bw as DeleteCheckoutTemplateRequest, bx as DeleteCheckoutTemplateResponse, az as DeliveryAllocation, au as DeliveryLogistics, aw as DeliveryTimeSlot, $ as Description, w as DescriptionLine, y as DescriptionLineDescriptionLineValueOneOf, z as DescriptionLineName, D as DescriptionLineType, x as DescriptionLineValueOneOf, aN as Details, aO as DetailsKindOneOf, a_ as DiscountRule, a$ as DiscountRuleName, h as DiscountType, bJ as DomainEvent, bK as DomainEventBodyOneOf, bL as EntityCreatedEvent, bO as EntityDeletedEvent, bN as EntityUpdatedEvent, bU as EventMetadata, a5 as ExtendedFields, a7 as ExternalReference, j as FallbackReason, aR as FieldViolation, F as FileType, af as FocalPoint, Z as FreeTrialPeriod, aq as FullAddressContactDetails, bs as GetCheckoutTemplateRequest, bt as GetCheckoutTemplateResponse, aV as GiftCard, ai as Group, bI as HeadersEntry, bR as IdentificationData, bS as IdentificationDataIdOneOf, bd as InvalidMembership, ag as ItemAvailabilityInfo, d as ItemAvailabilityStatus, al as ItemModifier, ac as ItemTaxFullDetails, O as ItemType, I as ItemTypeItemType, Q as ItemTypeItemTypeDataOneOf, J as JurisdictionType, aa as LineItem, b0 as LineItemDiscount, M as ManualCalculationReason, ba as Membership, bb as MembershipName, b9 as MembershipOptions, bc as MembershipPaymentCredits, aZ as MerchantDiscount, bQ as MessageEnvelope, aj as ModifierGroup, ab as MultiCurrencyPrice, m as NameInLineItem, N as NameInOther, bl as Other, aH as OtherCharge, H as PaymentOption, P as PaymentOptionType, G as PhysicalProperties, av as PickupDetails, e as PickupMethod, B as PlainTextValue, a2 as Policy, L as PriceDescription, aK as PriceSummary, v as ProductName, by as QueryCheckoutTemplatesRequest, bD as QueryCheckoutTemplatesResponse, i as RateType, aB as Region, bM as RestoreInfo, g as RuleType, ah as Scope, a0 as SecuredMedia, at as SelectedCarrierServiceOption, ay as SelectedCarrierServiceOptionOtherCharge, ax as SelectedCarrierServiceOptionPrices, bf as SelectedMembership, be as SelectedMemberships, a1 as ServiceProperties, l as Severity, as as ShippingInfo, aF as ShippingOption, aG as ShippingPrice, aD as ShippingRegion, o as SortOrder, bB as Sorting, S as Status, ao as StreetAddress, bo as SubscriptionCharges, c as SubscriptionFrequency, X as SubscriptionOptionInfo, Y as SubscriptionSettings, n as SuggestedFix, aS as SystemError, bj as Target, bm as TargetLineItem, bk as TargetTargetTypeOneOf, ae as TaxBreakdown, b3 as TaxCalculationDetails, b4 as TaxCalculationDetailsCalculationDetailsOneOf, ad as TaxRateBreakdown, b2 as TaxSummary, a3 as TaxableAddress, a4 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, _ as Title, ak as TranslatableString, bu as UpdateCheckoutTemplateRequest, bv as UpdateCheckoutTemplateResponse, s as V1LineItem, aQ as ValidationError, ar as VatId, V as VatType, bi as Violation, r as WebClientCustomization, p as WebhookIdentityType, W as WeightUnit } from './ecom-v1-checkout-template-checkout-templates.universal-
|
|
2
|
+
import { C as CheckoutTemplate, U as UpdateCheckoutTemplate, a as CheckoutTemplatesQueryBuilder, b as CreateCheckoutFromTemplateResponse, R as RawHttpResponse } from './ecom-v1-checkout-template-checkout-templates.universal-CLwke5y5.js';
|
|
3
|
+
export { bP as ActionEvent, bg as AdditionalFee, A as AdditionalFeeSource, an as Address, ap as AddressLocation, am as AddressWithContact, b6 as AggregatedTaxBreakdown, aC as ApplicableLineItems, aP as ApplicationError, aW as AppliedDiscount, aX as AppliedDiscountDiscountSourceOneOf, b5 as AutoTaxFallbackCalculationDetails, bT as BaseEventMetadata, aI as BuyerInfo, aJ as BuyerInfoIdOneOf, aL as CalculationErrors, aM as CalculationErrorsShippingCalculationErrorOneOf, aA as Carrier, aU as CarrierError, aT as CarrierErrors, aE as CarrierServiceOption, u as CatalogOverrideFields, t as CatalogReference, k as ChannelType, bp as Charge, f as ChargeType, a9 as Checkout, q as CheckoutCustomization, bV as CheckoutTemplateCreatedEnvelope, bW as CheckoutTemplateDeletedEnvelope, bX as CheckoutTemplateUpdatedEnvelope, a8 as CheckoutTemplateUsed, bY as CheckoutTemplateUsedEnvelope, bZ as CheckoutTemplatesQueryResult, E as Color, bh as ConversionInfo, aY as Coupon, bH as CreateAndRedirectToCheckoutRequest, bG as CreateCheckoutFromTemplateRequest, bq as CreateCheckoutTemplateRequest, br as CreateCheckoutTemplateResponse, b7 as CreatedBy, b8 as CreatedByIdOneOf, bC as CursorPaging, bE as CursorPagingMetadata, bz as CursorQuery, bA as CursorQueryPagingMethodOneOf, bF as Cursors, a6 as CustomContentReference, b1 as CustomField, K as CustomLineItem, bn as CustomSettings, bw as DeleteCheckoutTemplateRequest, bx as DeleteCheckoutTemplateResponse, az as DeliveryAllocation, au as DeliveryLogistics, aw as DeliveryTimeSlot, $ as Description, w as DescriptionLine, y as DescriptionLineDescriptionLineValueOneOf, z as DescriptionLineName, D as DescriptionLineType, x as DescriptionLineValueOneOf, aN as Details, aO as DetailsKindOneOf, a_ as DiscountRule, a$ as DiscountRuleName, h as DiscountType, bJ as DomainEvent, bK as DomainEventBodyOneOf, bL as EntityCreatedEvent, bO as EntityDeletedEvent, bN as EntityUpdatedEvent, bU as EventMetadata, a5 as ExtendedFields, a7 as ExternalReference, j as FallbackReason, aR as FieldViolation, F as FileType, af as FocalPoint, Z as FreeTrialPeriod, aq as FullAddressContactDetails, bs as GetCheckoutTemplateRequest, bt as GetCheckoutTemplateResponse, aV as GiftCard, ai as Group, bI as HeadersEntry, bR as IdentificationData, bS as IdentificationDataIdOneOf, bd as InvalidMembership, ag as ItemAvailabilityInfo, d as ItemAvailabilityStatus, al as ItemModifier, ac as ItemTaxFullDetails, O as ItemType, I as ItemTypeItemType, Q as ItemTypeItemTypeDataOneOf, J as JurisdictionType, aa as LineItem, b0 as LineItemDiscount, M as ManualCalculationReason, ba as Membership, bb as MembershipName, b9 as MembershipOptions, bc as MembershipPaymentCredits, aZ as MerchantDiscount, bQ as MessageEnvelope, aj as ModifierGroup, ab as MultiCurrencyPrice, m as NameInLineItem, N as NameInOther, bl as Other, aH as OtherCharge, H as PaymentOption, P as PaymentOptionType, G as PhysicalProperties, av as PickupDetails, e as PickupMethod, B as PlainTextValue, a2 as Policy, L as PriceDescription, aK as PriceSummary, v as ProductName, by as QueryCheckoutTemplatesRequest, bD as QueryCheckoutTemplatesResponse, i as RateType, aB as Region, bM as RestoreInfo, g as RuleType, ah as Scope, a0 as SecuredMedia, at as SelectedCarrierServiceOption, ay as SelectedCarrierServiceOptionOtherCharge, ax as SelectedCarrierServiceOptionPrices, bf as SelectedMembership, be as SelectedMemberships, a1 as ServiceProperties, l as Severity, as as ShippingInfo, aF as ShippingOption, aG as ShippingPrice, aD as ShippingRegion, o as SortOrder, bB as Sorting, S as Status, ao as StreetAddress, bo as SubscriptionCharges, c as SubscriptionFrequency, X as SubscriptionOptionInfo, Y as SubscriptionSettings, n as SuggestedFix, aS as SystemError, bj as Target, bm as TargetLineItem, bk as TargetTargetTypeOneOf, ae as TaxBreakdown, b3 as TaxCalculationDetails, b4 as TaxCalculationDetailsCalculationDetailsOneOf, ad as TaxRateBreakdown, b2 as TaxSummary, a3 as TaxableAddress, a4 as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, _ as Title, ak as TranslatableString, bu as UpdateCheckoutTemplateRequest, bv as UpdateCheckoutTemplateResponse, s as V1LineItem, aQ as ValidationError, ar as VatId, V as VatType, bi as Violation, r as WebClientCustomization, p as WebhookIdentityType, W as WeightUnit } from './ecom-v1-checkout-template-checkout-templates.universal-CLwke5y5.js';
|
|
4
4
|
import { createEventModule } from '@wix/sdk-runtime/event-definition-modules';
|
|
5
5
|
|
|
6
6
|
declare function createCheckoutTemplate$1(httpClient: HttpClient): CreateCheckoutTemplateSignature;
|
package/build/index.js
CHANGED
|
@@ -98,6 +98,18 @@ function resolveWixEcomCheckoutTemplateApiV1CheckoutTemplateServiceUrl(opts) {
|
|
|
98
98
|
srcPath: "/ecom/v1/checkout-templates",
|
|
99
99
|
destPath: "/v1/checkout-templates"
|
|
100
100
|
}
|
|
101
|
+
],
|
|
102
|
+
"*.dev.wix-code.com": [
|
|
103
|
+
{
|
|
104
|
+
srcPath: "/ecom/v1/checkout-templates",
|
|
105
|
+
destPath: "/v1/checkout-templates"
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
_: [
|
|
109
|
+
{
|
|
110
|
+
srcPath: "/ecom/v1/checkout-templates",
|
|
111
|
+
destPath: "/v1/checkout-templates"
|
|
112
|
+
}
|
|
101
113
|
]
|
|
102
114
|
};
|
|
103
115
|
return (0, import_rest_modules2.resolveUrl)(Object.assign(opts, { domainToMappings }));
|