@wix/auto_sdk_ecom_cart 1.0.154 → 1.0.156
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 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -46
- package/build/cjs/index.typings.js +1 -4
- 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 -8
- package/build/cjs/schemas.js +1 -15
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +1 -4
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -46
- package/build/es/index.typings.mjs +1 -4
- 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 -8
- package/build/es/schemas.mjs +1 -15
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +1 -4
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +9 -47
- package/build/internal/cjs/index.typings.js +1 -4
- 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 -8
- package/build/internal/cjs/schemas.js +1 -15
- 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 -4
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +9 -47
- package/build/internal/es/index.typings.mjs +1 -4
- 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 -8
- package/build/internal/es/schemas.mjs +1 -15
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1208,13 +1208,6 @@ interface UpdateCartRequest {
|
|
|
1208
1208
|
cartInfo?: Cart;
|
|
1209
1209
|
/** Coupon code. For more information, see the Coupons API. */
|
|
1210
1210
|
couponCode?: string | null;
|
|
1211
|
-
/**
|
|
1212
|
-
* Merchant discounts to apply to specific line items. If no `lineItemIds` are passed, the discount will be applied to the whole cart.
|
|
1213
|
-
* @maxSize 100
|
|
1214
|
-
* @deprecated Merchant discounts to apply to specific line items. If no `lineItemIds` are passed, the discount will be applied to the whole cart.
|
|
1215
|
-
* @targetRemovalDate 2025-09-01
|
|
1216
|
-
*/
|
|
1217
|
-
merchantDiscounts?: MerchantDiscountInput[];
|
|
1218
1211
|
/**
|
|
1219
1212
|
* Catalog line items.
|
|
1220
1213
|
* @maxSize 300
|
|
@@ -1229,19 +1222,6 @@ interface UpdateCartRequest {
|
|
|
1229
1222
|
*/
|
|
1230
1223
|
customLineItems?: CustomLineItem[];
|
|
1231
1224
|
}
|
|
1232
|
-
interface MerchantDiscountInput {
|
|
1233
|
-
/**
|
|
1234
|
-
* Discount amount.
|
|
1235
|
-
* @decimalValue options { gte:0 }
|
|
1236
|
-
*/
|
|
1237
|
-
amount?: string;
|
|
1238
|
-
/**
|
|
1239
|
-
* IDs of line items the discount applies to.
|
|
1240
|
-
* @format GUID
|
|
1241
|
-
* @maxSize 300
|
|
1242
|
-
*/
|
|
1243
|
-
lineItemIds?: string[];
|
|
1244
|
-
}
|
|
1245
1225
|
interface CustomLineItem {
|
|
1246
1226
|
/**
|
|
1247
1227
|
* Custom line item quantity.
|
|
@@ -1617,10 +1597,7 @@ interface LineItemPricesData {
|
|
|
1617
1597
|
priceBeforeDiscounts?: MultiCurrencyPrice;
|
|
1618
1598
|
/** Total line item price after catalog-defined discounts, automatic discounts, and modifiers. */
|
|
1619
1599
|
lineItemPrice?: MultiCurrencyPrice;
|
|
1620
|
-
/**
|
|
1621
|
-
* Item price before all discounts and modifiers.
|
|
1622
|
-
* Defaults to `price` when not provided.
|
|
1623
|
-
*/
|
|
1600
|
+
/** Catalog price before any discounts, with modifiers. */
|
|
1624
1601
|
fullPrice?: MultiCurrencyPrice;
|
|
1625
1602
|
/**
|
|
1626
1603
|
* Partial payment out of `price` to be paid upfront during the checkout.
|
|
@@ -2871,13 +2848,6 @@ interface CreateCartRequest {
|
|
|
2871
2848
|
cartInfo?: Cart;
|
|
2872
2849
|
/** Code of an existing coupon to apply to cart. For more information, see the Coupons API. */
|
|
2873
2850
|
couponCode?: string | null;
|
|
2874
|
-
/**
|
|
2875
|
-
* Merchant discounts to apply to specific line items. If no `lineItemIds` are passed, the discount will be applied to the whole cart.
|
|
2876
|
-
* @maxSize 100
|
|
2877
|
-
* @deprecated Merchant discounts to apply to specific line items. If no `lineItemIds` are passed, the discount will be applied to the whole cart.
|
|
2878
|
-
* @targetRemovalDate 2025-09-01
|
|
2879
|
-
*/
|
|
2880
|
-
merchantDiscounts?: MerchantDiscountInput[];
|
|
2881
2851
|
/**
|
|
2882
2852
|
* Catalog line items.
|
|
2883
2853
|
* @maxSize 300
|
|
@@ -3264,13 +3234,6 @@ interface CreateCartOptions {
|
|
|
3264
3234
|
cartInfo?: Cart;
|
|
3265
3235
|
/** Code of an existing coupon to apply to cart. For more information, see the Coupons API. */
|
|
3266
3236
|
couponCode?: string | null;
|
|
3267
|
-
/**
|
|
3268
|
-
* Merchant discounts to apply to specific line items. If no `lineItemIds` are passed, the discount will be applied to the whole cart.
|
|
3269
|
-
* @maxSize 100
|
|
3270
|
-
* @deprecated Merchant discounts to apply to specific line items. If no `lineItemIds` are passed, the discount will be applied to the whole cart.
|
|
3271
|
-
* @targetRemovalDate 2025-09-01
|
|
3272
|
-
*/
|
|
3273
|
-
merchantDiscounts?: MerchantDiscountInput[];
|
|
3274
3237
|
/**
|
|
3275
3238
|
* Catalog line items.
|
|
3276
3239
|
* @maxSize 300
|
|
@@ -3432,13 +3395,6 @@ interface UpdateCartOptions {
|
|
|
3432
3395
|
};
|
|
3433
3396
|
/** Coupon code. For more information, see the Coupons API. */
|
|
3434
3397
|
couponCode?: string | null;
|
|
3435
|
-
/**
|
|
3436
|
-
* Merchant discounts to apply to specific line items. If no `lineItemIds` are passed, the discount will be applied to the whole cart.
|
|
3437
|
-
* @maxSize 100
|
|
3438
|
-
* @deprecated Merchant discounts to apply to specific line items. If no `lineItemIds` are passed, the discount will be applied to the whole cart.
|
|
3439
|
-
* @targetRemovalDate 2025-09-01
|
|
3440
|
-
*/
|
|
3441
|
-
merchantDiscounts?: MerchantDiscountInput[];
|
|
3442
3398
|
/**
|
|
3443
3399
|
* Catalog line items.
|
|
3444
3400
|
* @maxSize 300
|
|
@@ -3664,4 +3620,4 @@ declare function deleteCart(_id: string): Promise<void>;
|
|
|
3664
3620
|
*/
|
|
3665
3621
|
declare function removeBusinessLocation(_id: string): Promise<NonNullablePaths<RemoveBusinessLocationResponse, `cart.lineItems` | `cart.lineItems.${number}.quantity` | `cart.lineItems.${number}.catalogReference.catalogItemId` | `cart.lineItems.${number}.catalogReference.appId` | `cart.lineItems.${number}.productName.original` | `cart.lineItems.${number}.price.amount` | `cart.lineItems.${number}.price.convertedAmount` | `cart.lineItems.${number}.price.formattedAmount` | `cart.lineItems.${number}.price.formattedConvertedAmount` | `cart.lineItems.${number}.availability.status` | `cart.lineItems.${number}.physicalProperties.shippable` | `cart.lineItems.${number}.itemType.preset` | `cart.lineItems.${number}.itemType.custom` | `cart.lineItems.${number}.subscriptionOptionInfo.subscriptionSettings.frequency` | `cart.lineItems.${number}.subscriptionOptionInfo.subscriptionSettings.autoRenewal` | `cart.lineItems.${number}.subscriptionOptionInfo.subscriptionSettings.enableCustomerCancellation` | `cart.lineItems.${number}.subscriptionOptionInfo.title.original` | `cart.lineItems.${number}.subscriptionOptionInfo.description.original` | `cart.lineItems.${number}.paymentOption` | `cart.lineItems.${number}.priceDescription.original` | `cart.lineItems.${number}.selectedMembership._id` | `cart.lineItems.${number}.selectedMembership.appId` | `cart.lineItems.${number}.customLineItem` | `cart.lineItems.${number}.priceUndetermined` | `cart.lineItems.${number}.fixedQuantity` | `cart.lineItems.${number}.catalogOverrideFields.paymentOption.value` | `cart.lineItems.${number}.savePaymentMethod` | `cart.lineItems.${number}.taxableAddress.addressType` | `cart.lineItems.${number}.membersOnly` | `cart.buyerInfo.visitorId` | `cart.buyerInfo.memberId` | `cart.buyerInfo.userId` | `cart.currency` | `cart.conversionCurrency` | `cart.weightUnit` | `cart.appliedDiscounts` | `cart.appliedDiscounts.${number}.coupon._id` | `cart.appliedDiscounts.${number}.coupon.code` | `cart.contactInfo.address.streetAddress.number` | `cart.contactInfo.address.streetAddress.name` | `cart.contactInfo.contactDetails.vatId._id` | `cart.contactInfo.contactDetails.vatId.type` | `cart.selectedShippingOption.code` | `cart.paymentCurrency`, 7>>;
|
|
3666
3622
|
|
|
3667
|
-
export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, type AddToCartApplicationErrors, type AddToCartOptions, type AddToCartRequest, type AddToCartResponse, type AddToCurrentCartAndEstimateTotalsRequest, 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 CreateCartApplicationErrors, type CreateCartOptions, type CreateCartRequest, type CreateCartResponse, type CreateCheckoutApplicationErrors, type CreateCheckoutFromCurrentCartRequest, type CreateCheckoutOptions, 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 EstimateCurrentCartTotalsRequest, type EstimateTotalsOptions, 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 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
|
|
3623
|
+
export { type AccountInfo, type AccountInfoMetadata, type ActionEvent, type AddToCartApplicationErrors, type AddToCartOptions, type AddToCartRequest, type AddToCartResponse, type AddToCurrentCartAndEstimateTotalsRequest, 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 CreateCartApplicationErrors, type CreateCartOptions, type CreateCartRequest, type CreateCartResponse, type CreateCheckoutApplicationErrors, type CreateCheckoutFromCurrentCartRequest, type CreateCheckoutOptions, 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 EstimateCurrentCartTotalsRequest, type EstimateTotalsOptions, 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 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 UpdateCartApplicationErrors, type UpdateCartOptions, type UpdateCartRequest, type UpdateCartResponse, type UpdateCurrentCartLineItemQuantityRequest, 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, addToCart, createCart, createCheckout, deleteCart, estimateTotals, getCart, onCartCreated, onCartDeleted, onCartUpdated, removeBusinessLocation, removeCoupon, removeLineItems, updateCart, updateLineItemsQuantity };
|
|
@@ -1109,6 +1109,7 @@ var ChannelType = /* @__PURE__ */ ((ChannelType2) => {
|
|
|
1109
1109
|
ChannelType2["PAYPAL_AGENTIC_CHECKOUT"] = "PAYPAL_AGENTIC_CHECKOUT";
|
|
1110
1110
|
ChannelType2["STRIPE_AGENTIC_CHECKOUT"] = "STRIPE_AGENTIC_CHECKOUT";
|
|
1111
1111
|
ChannelType2["WIX_INVOICES_PLATFORM"] = "WIX_INVOICES_PLATFORM";
|
|
1112
|
+
ChannelType2["UCP_AGENTIC_CHECKOUT"] = "UCP_AGENTIC_CHECKOUT";
|
|
1112
1113
|
return ChannelType2;
|
|
1113
1114
|
})(ChannelType || {});
|
|
1114
1115
|
var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
@@ -1125,7 +1126,6 @@ async function createCart2(options) {
|
|
|
1125
1126
|
(0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
1126
1127
|
cartInfo: options?.cartInfo,
|
|
1127
1128
|
couponCode: options?.couponCode,
|
|
1128
|
-
merchantDiscounts: options?.merchantDiscounts,
|
|
1129
1129
|
lineItems: options?.lineItems,
|
|
1130
1130
|
customLineItems: options?.customLineItems
|
|
1131
1131
|
}),
|
|
@@ -1186,7 +1186,6 @@ async function createCart2(options) {
|
|
|
1186
1186
|
explicitPathsToArguments: {
|
|
1187
1187
|
cartInfo: "$[0].cartInfo",
|
|
1188
1188
|
couponCode: "$[0].couponCode",
|
|
1189
|
-
merchantDiscounts: "$[0].merchantDiscounts",
|
|
1190
1189
|
lineItems: "$[0].lineItems",
|
|
1191
1190
|
customLineItems: "$[0].customLineItems"
|
|
1192
1191
|
},
|
|
@@ -1204,7 +1203,6 @@ async function updateCart2(_id, options) {
|
|
|
1204
1203
|
(0, import_rename_all_nested_keys.renameKeysFromSDKRequestToRESTRequest)({
|
|
1205
1204
|
cartInfo: { ...options?.cartInfo, id: _id },
|
|
1206
1205
|
couponCode: options?.couponCode,
|
|
1207
|
-
merchantDiscounts: options?.merchantDiscounts,
|
|
1208
1206
|
lineItems: options?.lineItems,
|
|
1209
1207
|
customLineItems: options?.customLineItems
|
|
1210
1208
|
}),
|
|
@@ -1265,7 +1263,6 @@ async function updateCart2(_id, options) {
|
|
|
1265
1263
|
explicitPathsToArguments: {
|
|
1266
1264
|
"cartInfo.id": "$[0]",
|
|
1267
1265
|
couponCode: "$[1].couponCode",
|
|
1268
|
-
merchantDiscounts: "$[1].merchantDiscounts",
|
|
1269
1266
|
lineItems: "$[1].lineItems",
|
|
1270
1267
|
customLineItems: "$[1].customLineItems"
|
|
1271
1268
|
},
|