@wix/auto_sdk_ecom_current-cart 1.0.164 → 1.0.166
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 +1 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -39
- package/build/cjs/index.typings.js +1 -2
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +2 -32
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +0 -4
- package/build/cjs/schemas.js +1 -9
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +1 -2
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -39
- package/build/es/index.typings.mjs +1 -2
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +2 -32
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +0 -4
- package/build/es/schemas.mjs +1 -9
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +1 -2
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +9 -40
- package/build/internal/cjs/index.typings.js +1 -2
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +2 -32
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.d.ts +0 -4
- package/build/internal/cjs/schemas.js +1 -9
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +1 -2
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +9 -40
- package/build/internal/es/index.typings.mjs +1 -2
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +2 -32
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.d.mts +0 -4
- package/build/internal/es/schemas.mjs +1 -9
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1279,13 +1279,6 @@ interface UpdateCartRequest {
|
|
|
1279
1279
|
cartInfo?: Cart;
|
|
1280
1280
|
/** Coupon code. For more information, see the Coupons API. */
|
|
1281
1281
|
couponCode?: string | null;
|
|
1282
|
-
/**
|
|
1283
|
-
* Merchant discounts to apply to specific line items. If no `lineItemIds` are passed, the discount will be applied to the whole cart.
|
|
1284
|
-
* @maxSize 100
|
|
1285
|
-
* @deprecated Merchant discounts to apply to specific line items. If no `lineItemIds` are passed, the discount will be applied to the whole cart.
|
|
1286
|
-
* @targetRemovalDate 2025-09-01
|
|
1287
|
-
*/
|
|
1288
|
-
merchantDiscounts?: MerchantDiscountInput[];
|
|
1289
1282
|
/**
|
|
1290
1283
|
* Catalog line items.
|
|
1291
1284
|
* @maxSize 300
|
|
@@ -1300,19 +1293,6 @@ interface UpdateCartRequest {
|
|
|
1300
1293
|
*/
|
|
1301
1294
|
customLineItems?: CustomLineItem[];
|
|
1302
1295
|
}
|
|
1303
|
-
interface MerchantDiscountInput {
|
|
1304
|
-
/**
|
|
1305
|
-
* Discount amount.
|
|
1306
|
-
* @decimalValue options { gte:0 }
|
|
1307
|
-
*/
|
|
1308
|
-
amount?: string;
|
|
1309
|
-
/**
|
|
1310
|
-
* IDs of line items the discount applies to.
|
|
1311
|
-
* @format GUID
|
|
1312
|
-
* @maxSize 300
|
|
1313
|
-
*/
|
|
1314
|
-
lineItemIds?: string[];
|
|
1315
|
-
}
|
|
1316
1296
|
interface CustomLineItem {
|
|
1317
1297
|
/**
|
|
1318
1298
|
* Custom line item quantity.
|
|
@@ -1706,10 +1686,7 @@ interface LineItemPricesData {
|
|
|
1706
1686
|
priceBeforeDiscounts?: MultiCurrencyPrice;
|
|
1707
1687
|
/** Total line item price after catalog-defined discounts, automatic discounts, and modifiers. */
|
|
1708
1688
|
lineItemPrice?: MultiCurrencyPrice;
|
|
1709
|
-
/**
|
|
1710
|
-
* Item price before all discounts and modifiers.
|
|
1711
|
-
* Defaults to `price` when not provided.
|
|
1712
|
-
*/
|
|
1689
|
+
/** Catalog price before any discounts, with modifiers. */
|
|
1713
1690
|
fullPrice?: MultiCurrencyPrice;
|
|
1714
1691
|
/**
|
|
1715
1692
|
* Total price of all item modifiers.
|
|
@@ -2821,7 +2798,13 @@ declare enum ChannelType {
|
|
|
2821
2798
|
* @documentationMaturity preview
|
|
2822
2799
|
* @internal
|
|
2823
2800
|
*/
|
|
2824
|
-
WIX_INVOICES_PLATFORM = "WIX_INVOICES_PLATFORM"
|
|
2801
|
+
WIX_INVOICES_PLATFORM = "WIX_INVOICES_PLATFORM",
|
|
2802
|
+
/**
|
|
2803
|
+
* UCP (Universal Checkout Protocol) Agentic Checkout sales channel.
|
|
2804
|
+
* @documentationMaturity preview
|
|
2805
|
+
* @internal
|
|
2806
|
+
*/
|
|
2807
|
+
UCP_AGENTIC_CHECKOUT = "UCP_AGENTIC_CHECKOUT"
|
|
2825
2808
|
}
|
|
2826
2809
|
/** @enumType */
|
|
2827
2810
|
type ChannelTypeWithLiterals = ChannelType | 'UNSPECIFIED' | 'WEB' | 'POS' | 'EBAY' | 'AMAZON' | 'OTHER_PLATFORM' | 'WIX_APP_STORE' | 'WIX_INVOICES' | 'BACKOFFICE_MERCHANT' | 'WISH' | 'CLASS_PASS' | 'GLOBAL_E' | 'FACEBOOK' | 'ETSY' | 'TIKTOK' | 'FAIRE_COM' | 'PAYPAL_AGENTIC_CHECKOUT' | 'STRIPE_AGENTIC_CHECKOUT';
|
|
@@ -3054,13 +3037,6 @@ interface CreateCartRequest {
|
|
|
3054
3037
|
cartInfo?: Cart;
|
|
3055
3038
|
/** Code of an existing coupon to apply to cart. For more information, see the Coupons API. */
|
|
3056
3039
|
couponCode?: string | null;
|
|
3057
|
-
/**
|
|
3058
|
-
* Merchant discounts to apply to specific line items. If no `lineItemIds` are passed, the discount will be applied to the whole cart.
|
|
3059
|
-
* @maxSize 100
|
|
3060
|
-
* @deprecated Merchant discounts to apply to specific line items. If no `lineItemIds` are passed, the discount will be applied to the whole cart.
|
|
3061
|
-
* @targetRemovalDate 2025-09-01
|
|
3062
|
-
*/
|
|
3063
|
-
merchantDiscounts?: MerchantDiscountInput[];
|
|
3064
3040
|
/**
|
|
3065
3041
|
* Catalog line items.
|
|
3066
3042
|
* @maxSize 300
|
|
@@ -3422,13 +3398,6 @@ interface UpdateCurrentCartOptions {
|
|
|
3422
3398
|
cartInfo?: Cart;
|
|
3423
3399
|
/** Coupon code. For more information, see the Coupons API. */
|
|
3424
3400
|
couponCode?: string | null;
|
|
3425
|
-
/**
|
|
3426
|
-
* Merchant discounts to apply to specific line items. If no `lineItemIds` are passed, the discount will be applied to the whole cart.
|
|
3427
|
-
* @maxSize 100
|
|
3428
|
-
* @deprecated Merchant discounts to apply to specific line items. If no `lineItemIds` are passed, the discount will be applied to the whole cart.
|
|
3429
|
-
* @targetRemovalDate 2025-09-01
|
|
3430
|
-
*/
|
|
3431
|
-
merchantDiscounts?: MerchantDiscountInput[];
|
|
3432
3401
|
/**
|
|
3433
3402
|
* Catalog line items.
|
|
3434
3403
|
* @maxSize 300
|
|
@@ -3633,4 +3602,4 @@ interface EstimateCurrentCartTotalsOptions {
|
|
|
3633
3602
|
*/
|
|
3634
3603
|
declare function deleteCurrentCart(): Promise<void>;
|
|
3635
3604
|
|
|
3636
|
-
export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, type AddToCartRequest, type AddToCartResponse, type AddToCurrentCartAndEstimateTotalsRequest, type AddToCurrentCartOptions, type AddToCurrentCartRequest, type AdditionalFee, AdditionalFeeSource, type AdditionalFeeSourceWithLiterals, type Address, type AddressLocation, type AddressWithContact, type AggregatedTaxBreakdown, type ApplicableLineItems, type ApplicationError, type AppliedDiscount, type AppliedDiscountDiscountSourceOneOf, AppliedDiscountDiscountType, type AppliedDiscountDiscountTypeWithLiterals, type AutoTaxFallbackCalculationDetails, BalanceType, type BalanceTypeWithLiterals, type BaseEventMetadata, type BillingSettings, type BuyerInfo, type BuyerInfoIdOneOf, type CalculatedItemModifier, type CalculatedLineItem, type CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf, type Carrier, type CarrierError, type CarrierErrors, type CarrierServiceOption, type Cart, type CartCreatedEnvelope, type CartDeletedEnvelope, type CartDiscount, type CartDiscountDiscountSourceOneOf, type CartUpdatedEnvelope, type CatalogOverrideFields, type CatalogReference, ChannelType, type ChannelTypeWithLiterals, ChargeType, type ChargeTypeWithLiterals, type Color, type Coupon, type CreateCartRequest, type CreateCartResponse, type CreateCheckoutFromCurrentCartOptions, type CreateCheckoutFromCurrentCartRequest, type CreateCheckoutRequest, type CreateCheckoutResponse, type CustomLineItem, type DeleteCartRequest, type DeleteCartResponse, type DeleteCurrentCartRequest, type DeliveryAllocation, type DeliveryLogistics, type DeliveryTimeSlot, type Description, type DescriptionLine, type DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName, DescriptionLineType, type DescriptionLineTypeWithLiterals, type DescriptionLineValueOneOf, type Details, type DetailsKindOneOf, type Dimensions, DimensionsUnit, type DimensionsUnitWithLiterals, type DiscountRule, type DiscountRuleName, DiscountType, type DiscountTypeWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EstimateCurrentCartTotalsOptions, type EstimateCurrentCartTotalsRequest, type EstimateTotalsRequest, type EstimateTotalsResponse, type EventMetadata, type ExtendedFields, FallbackReason, type FallbackReasonWithLiterals, type FieldViolation, FileType, type FileTypeWithLiterals, type FocalPoint, type FreeTrialPeriod, type FullAddressContactDetails, type GetCartByCheckoutIdRequest, type GetCartByCheckoutIdResponse, type GetCartRequest, type GetCartResponse, type GetCurrentCartApplicationErrors, type GetCurrentCartRequest, type GetCurrentCartResponse, type GiftCard, type GiftCardCalculationError, type Group, type HostSelectedMembership, type IdentificationData, type IdentificationDataIdOneOf, type InvalidMembership, type ItemAvailabilityInfo, ItemAvailabilityStatus, type ItemAvailabilityStatusWithLiterals, type ItemCombination, type ItemCombinationLineItem, type ItemModifier, type ItemTaxFullDetails, type ItemType, type ItemTypeItemTypeDataOneOf, ItemTypePreset, type ItemTypePresetWithLiterals, JurisdictionType, type JurisdictionTypeWithLiterals, type LineItem, type LineItemAdded, type LineItemDiscount, type LineItemPricesData, type LineItemQuantityUpdate, ManualCalculationReason, type ManualCalculationReasonWithLiterals, type Membership, type MembershipName, type MembershipOptions, type MembershipPaymentCredits, type MerchantDiscount, type
|
|
3605
|
+
export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, type AddToCartRequest, type AddToCartResponse, type AddToCurrentCartAndEstimateTotalsRequest, type AddToCurrentCartOptions, type AddToCurrentCartRequest, type AdditionalFee, AdditionalFeeSource, type AdditionalFeeSourceWithLiterals, type Address, type AddressLocation, type AddressWithContact, type AggregatedTaxBreakdown, type ApplicableLineItems, type ApplicationError, type AppliedDiscount, type AppliedDiscountDiscountSourceOneOf, AppliedDiscountDiscountType, type AppliedDiscountDiscountTypeWithLiterals, type AutoTaxFallbackCalculationDetails, BalanceType, type BalanceTypeWithLiterals, type BaseEventMetadata, type BillingSettings, type BuyerInfo, type BuyerInfoIdOneOf, type CalculatedItemModifier, type CalculatedLineItem, type CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf, type Carrier, type CarrierError, type CarrierErrors, type CarrierServiceOption, type Cart, type CartCreatedEnvelope, type CartDeletedEnvelope, type CartDiscount, type CartDiscountDiscountSourceOneOf, type CartUpdatedEnvelope, type CatalogOverrideFields, type CatalogReference, ChannelType, type ChannelTypeWithLiterals, ChargeType, type ChargeTypeWithLiterals, type Color, type Coupon, type CreateCartRequest, type CreateCartResponse, type CreateCheckoutFromCurrentCartOptions, type CreateCheckoutFromCurrentCartRequest, type CreateCheckoutRequest, type CreateCheckoutResponse, type CustomLineItem, type DeleteCartRequest, type DeleteCartResponse, type DeleteCurrentCartRequest, type DeliveryAllocation, type DeliveryLogistics, type DeliveryTimeSlot, type Description, type DescriptionLine, type DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName, DescriptionLineType, type DescriptionLineTypeWithLiterals, type DescriptionLineValueOneOf, type Details, type DetailsKindOneOf, type Dimensions, DimensionsUnit, type DimensionsUnitWithLiterals, type DiscountRule, type DiscountRuleName, DiscountType, type DiscountTypeWithLiterals, type DomainEvent, type DomainEventBodyOneOf, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EstimateCurrentCartTotalsOptions, type EstimateCurrentCartTotalsRequest, type EstimateTotalsRequest, type EstimateTotalsResponse, type EventMetadata, type ExtendedFields, FallbackReason, type FallbackReasonWithLiterals, type FieldViolation, FileType, type FileTypeWithLiterals, type FocalPoint, type FreeTrialPeriod, type FullAddressContactDetails, type GetCartByCheckoutIdRequest, type GetCartByCheckoutIdResponse, type GetCartRequest, type GetCartResponse, type GetCurrentCartApplicationErrors, type GetCurrentCartRequest, type GetCurrentCartResponse, type GiftCard, type GiftCardCalculationError, type Group, type HostSelectedMembership, type IdentificationData, type IdentificationDataIdOneOf, type InvalidMembership, type ItemAvailabilityInfo, ItemAvailabilityStatus, type ItemAvailabilityStatusWithLiterals, type ItemCombination, type ItemCombinationLineItem, type ItemModifier, type ItemTaxFullDetails, type ItemType, type ItemTypeItemTypeDataOneOf, ItemTypePreset, type ItemTypePresetWithLiterals, JurisdictionType, type JurisdictionTypeWithLiterals, type LineItem, type LineItemAdded, type LineItemDiscount, type LineItemPricesData, type LineItemQuantityUpdate, ManualCalculationReason, type ManualCalculationReasonWithLiterals, type Membership, type MembershipName, type MembershipOptions, type MembershipPaymentCredits, type MerchantDiscount, type MessageEnvelope, type ModifierGroup, type MultiCurrencyPrice, NameInLineItem, type NameInLineItemWithLiterals, NameInOther, type NameInOtherWithLiterals, type Other, type OtherCharge, type PaymentOption, PaymentOptionType, type PaymentOptionTypeWithLiterals, type PhysicalProperties, type PickupDetails, PickupMethod, type PickupMethodWithLiterals, type PlainTextValue, type PlatformFee, PlatformFeeChargeType, type PlatformFeeChargeTypeWithLiterals, type Policy, type PriceDescription, type PriceSummary, type ProductName, ProductPeriodAlignment, type ProductPeriodAlignmentWithLiterals, RateType, type RateTypeWithLiterals, type Region, type RemoveBusinessLocationRequest, type RemoveBusinessLocationResponse, type RemoveCouponFromCurrentCartRequest, type RemoveCouponRequest, type RemoveCouponResponse, type RemoveLineItemsFromCurrentCartRequest, type RemoveLineItemsRequest, type RemoveLineItemsResponse, type RestoreInfo, RuleType, type RuleTypeWithLiterals, type Scope, type SecuredMedia, type SelectedCarrierServiceOption, type SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices, type SelectedMembership, type SelectedMemberships, type SelectedShippingOption, type ServiceProperties, Severity, type SeverityWithLiterals, type ShippingInformation, type ShippingOption, type ShippingPrice, type ShippingRegion, type StreetAddress, SubscriptionFrequency, type SubscriptionFrequencyWithLiterals, type SubscriptionOptionInfo, type SubscriptionSettings, SuggestedFix, type SuggestedFixWithLiterals, type SystemError, type Target, type TargetLineItem, type TargetTargetTypeOneOf, type TaxBreakdown, type TaxCalculationDetails, type TaxCalculationDetailsCalculationDetailsOneOf, type TaxRateBreakdown, type TaxSummary, type TaxableAddress, type TaxableAddressTaxableAddressDataOneOf, TaxableAddressType, type TaxableAddressTypeWithLiterals, type Title, type TranslatableString, type UpdateCartRequest, type UpdateCartResponse, type UpdateCurrentCartLineItemQuantityRequest, type UpdateCurrentCartOptions, type UpdateLineItemsQuantityRequest, type UpdateLineItemsQuantityResponse, type V1Coupon, type V1DiscountRule, type V1DiscountRuleName, type V1ItemModifier, type V1MerchantDiscount, type V1ModifierGroup, type ValidationError, type VatId, VatType, type VatTypeWithLiterals, type Violation, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, WeightUnit, type WeightUnitWithLiterals, addToCurrentCart, createCheckoutFromCurrentCart, deleteCurrentCart, estimateCurrentCartTotals, getCurrentCart, onCartCreated, onCartDeleted, onCartUpdated, removeCouponFromCurrentCart, removeLineItemsFromCurrentCart, updateCurrentCart, updateCurrentCartLineItemQuantity };
|
|
@@ -915,6 +915,7 @@ var ChannelType = /* @__PURE__ */ ((ChannelType2) => {
|
|
|
915
915
|
ChannelType2["PAYPAL_AGENTIC_CHECKOUT"] = "PAYPAL_AGENTIC_CHECKOUT";
|
|
916
916
|
ChannelType2["STRIPE_AGENTIC_CHECKOUT"] = "STRIPE_AGENTIC_CHECKOUT";
|
|
917
917
|
ChannelType2["WIX_INVOICES_PLATFORM"] = "WIX_INVOICES_PLATFORM";
|
|
918
|
+
ChannelType2["UCP_AGENTIC_CHECKOUT"] = "UCP_AGENTIC_CHECKOUT";
|
|
918
919
|
return ChannelType2;
|
|
919
920
|
})(ChannelType || {});
|
|
920
921
|
var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
@@ -972,7 +973,6 @@ async function updateCurrentCart2(options) {
|
|
|
972
973
|
(0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
973
974
|
cartInfo: options?.cartInfo,
|
|
974
975
|
couponCode: options?.couponCode,
|
|
975
|
-
merchantDiscounts: options?.merchantDiscounts,
|
|
976
976
|
lineItems: options?.lineItems,
|
|
977
977
|
customLineItems: options?.customLineItems
|
|
978
978
|
}),
|
|
@@ -1033,7 +1033,6 @@ async function updateCurrentCart2(options) {
|
|
|
1033
1033
|
explicitPathsToArguments: {
|
|
1034
1034
|
cartInfo: "$[0].cartInfo",
|
|
1035
1035
|
couponCode: "$[0].couponCode",
|
|
1036
|
-
merchantDiscounts: "$[0].merchantDiscounts",
|
|
1037
1036
|
lineItems: "$[0].lineItems",
|
|
1038
1037
|
customLineItems: "$[0].customLineItems"
|
|
1039
1038
|
},
|