@wix/auto_sdk_ecom_cart 1.0.116 → 1.0.118
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 +8 -8
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +13 -13
- package/build/cjs/index.typings.js +8 -8
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +13 -13
- package/build/cjs/meta.js +8 -8
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +7 -7
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +13 -13
- package/build/es/index.typings.mjs +7 -7
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +13 -13
- package/build/es/meta.mjs +7 -7
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +8 -8
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +23 -23
- package/build/internal/cjs/index.typings.js +8 -8
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +13 -13
- package/build/internal/cjs/meta.js +8 -8
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +7 -7
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +23 -23
- package/build/internal/es/index.typings.mjs +7 -7
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +13 -13
- package/build/internal/es/meta.mjs +7 -7
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -875,7 +875,7 @@ interface PlatformFee {
|
|
|
875
875
|
/** __Required.__ Platform fee name. */
|
|
876
876
|
name?: TranslatableString;
|
|
877
877
|
/** Platform fee charge type. */
|
|
878
|
-
chargeType?:
|
|
878
|
+
chargeType?: PlatformFeeChargeTypeWithLiterals;
|
|
879
879
|
/**
|
|
880
880
|
* Percentage rate charged as platform fee.
|
|
881
881
|
*
|
|
@@ -885,7 +885,7 @@ interface PlatformFee {
|
|
|
885
885
|
*/
|
|
886
886
|
percentageRate?: string;
|
|
887
887
|
}
|
|
888
|
-
declare enum
|
|
888
|
+
declare enum PlatformFeeChargeType {
|
|
889
889
|
UNKNOWN_CHARGE_TYPE = "UNKNOWN_CHARGE_TYPE",
|
|
890
890
|
/** The platform fee is passed on to the customer. */
|
|
891
891
|
PASS_ON = "PASS_ON",
|
|
@@ -893,7 +893,7 @@ declare enum V1ChargeType {
|
|
|
893
893
|
ABSORBED = "ABSORBED"
|
|
894
894
|
}
|
|
895
895
|
/** @enumType */
|
|
896
|
-
type
|
|
896
|
+
type PlatformFeeChargeTypeWithLiterals = PlatformFeeChargeType | 'UNKNOWN_CHARGE_TYPE' | 'PASS_ON' | 'ABSORBED';
|
|
897
897
|
/** Buyer Info */
|
|
898
898
|
interface BuyerInfo extends BuyerInfoIdOneOf {
|
|
899
899
|
/**
|
|
@@ -2151,6 +2151,16 @@ interface AppliedDiscount extends AppliedDiscountDiscountSourceOneOf {
|
|
|
2151
2151
|
* @max 999
|
|
2152
2152
|
*/
|
|
2153
2153
|
subscriptionCycles?: number | null;
|
|
2154
|
+
/**
|
|
2155
|
+
* A list of item combinations for this applied discount.
|
|
2156
|
+
* Each entry represents a unique combination of line items that triggered
|
|
2157
|
+
* or received this discount, along with how many times that combination was applied together.
|
|
2158
|
+
* Relevant ONLY for BXGY and Quantity-based promotions.
|
|
2159
|
+
* In BXGY the combination will contain the "X" items with discount amount of 0.
|
|
2160
|
+
* @internal
|
|
2161
|
+
* @maxSize 1000
|
|
2162
|
+
*/
|
|
2163
|
+
itemCombinations?: ItemCombination[];
|
|
2154
2164
|
}
|
|
2155
2165
|
/** @oneof */
|
|
2156
2166
|
interface AppliedDiscountDiscountSourceOneOf {
|
|
@@ -2199,16 +2209,6 @@ interface V1DiscountRule {
|
|
|
2199
2209
|
name?: V1DiscountRuleName;
|
|
2200
2210
|
/** Discount value. */
|
|
2201
2211
|
amount?: MultiCurrencyPrice;
|
|
2202
|
-
/**
|
|
2203
|
-
* A list of item combinations for this discount rule.
|
|
2204
|
-
* Each entry represents a unique combination of line items that triggered
|
|
2205
|
-
* or received this discount, along with how many times that combination was applied together.
|
|
2206
|
-
* Relevant ONLY for BXGY and Quantity-based promotions.
|
|
2207
|
-
* In BXGY the combination will contain the "X" items with discount amount of 0.
|
|
2208
|
-
* @internal
|
|
2209
|
-
* @maxSize 1000
|
|
2210
|
-
*/
|
|
2211
|
-
itemCombinations?: ItemCombination[];
|
|
2212
2212
|
}
|
|
2213
2213
|
interface V1DiscountRuleName {
|
|
2214
2214
|
/**
|
|
@@ -2224,6 +2224,15 @@ interface V1DiscountRuleName {
|
|
|
2224
2224
|
*/
|
|
2225
2225
|
translated?: string | null;
|
|
2226
2226
|
}
|
|
2227
|
+
interface LineItemDiscount {
|
|
2228
|
+
/**
|
|
2229
|
+
* ID of line item the discount applies to.
|
|
2230
|
+
* @format GUID
|
|
2231
|
+
*/
|
|
2232
|
+
_id?: string;
|
|
2233
|
+
/** Discount value. */
|
|
2234
|
+
totalDiscountAmount?: MultiCurrencyPrice;
|
|
2235
|
+
}
|
|
2227
2236
|
interface ItemCombination {
|
|
2228
2237
|
/**
|
|
2229
2238
|
* The number of times this exact combination of items (with the specified quantities) was applied together in the order.
|
|
@@ -2253,15 +2262,6 @@ interface ItemCombinationLineItem {
|
|
|
2253
2262
|
*/
|
|
2254
2263
|
quantity?: number;
|
|
2255
2264
|
}
|
|
2256
|
-
interface LineItemDiscount {
|
|
2257
|
-
/**
|
|
2258
|
-
* ID of line item the discount applies to.
|
|
2259
|
-
* @format GUID
|
|
2260
|
-
*/
|
|
2261
|
-
_id?: string;
|
|
2262
|
-
/** Discount value. */
|
|
2263
|
-
totalDiscountAmount?: MultiCurrencyPrice;
|
|
2264
|
-
}
|
|
2265
2265
|
interface CalculationErrors extends CalculationErrorsShippingCalculationErrorOneOf {
|
|
2266
2266
|
/** General shipping calculation error. */
|
|
2267
2267
|
generalShippingCalculationError?: Details;
|
|
@@ -3697,4 +3697,4 @@ declare function deleteCart(_id: string): Promise<void>;
|
|
|
3697
3697
|
*/
|
|
3698
3698
|
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>>;
|
|
3699
3699
|
|
|
3700
|
-
export { 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 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 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 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 LineItemDiscount, type LineItemPricesData, type LineItemQuantityUpdate, ManualCalculationReason, type ManualCalculationReasonWithLiterals, type Membership, type MembershipName, type MembershipOptions, type MembershipPaymentCredits, type MerchantDiscount, type MerchantDiscountInput, 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, type Policy, type PriceDescription, type PriceSummary, type ProductName, 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,
|
|
3700
|
+
export { 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 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 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 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 LineItemDiscount, type LineItemPricesData, type LineItemQuantityUpdate, ManualCalculationReason, type ManualCalculationReasonWithLiterals, type Membership, type MembershipName, type MembershipOptions, type MembershipPaymentCredits, type MerchantDiscount, type MerchantDiscountInput, 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, 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, getCartByCheckoutId, onCartCreated, onCartDeleted, onCartUpdated, removeBusinessLocation, removeCoupon, removeLineItems, updateCart, updateLineItemsQuantity };
|
|
@@ -37,13 +37,13 @@ __export(index_typings_exports, {
|
|
|
37
37
|
NameInOther: () => NameInOther,
|
|
38
38
|
PaymentOptionType: () => PaymentOptionType,
|
|
39
39
|
PickupMethod: () => PickupMethod,
|
|
40
|
+
PlatformFeeChargeType: () => PlatformFeeChargeType,
|
|
40
41
|
RateType: () => RateType,
|
|
41
42
|
RuleType: () => RuleType,
|
|
42
43
|
Severity: () => Severity,
|
|
43
44
|
SubscriptionFrequency: () => SubscriptionFrequency,
|
|
44
45
|
SuggestedFix: () => SuggestedFix,
|
|
45
46
|
TaxableAddressType: () => TaxableAddressType,
|
|
46
|
-
V1ChargeType: () => V1ChargeType,
|
|
47
47
|
VatType: () => VatType,
|
|
48
48
|
WebhookIdentityType: () => WebhookIdentityType,
|
|
49
49
|
WeightUnit: () => WeightUnit,
|
|
@@ -951,12 +951,12 @@ var TaxableAddressType = /* @__PURE__ */ ((TaxableAddressType2) => {
|
|
|
951
951
|
TaxableAddressType2["SHIPPING"] = "SHIPPING";
|
|
952
952
|
return TaxableAddressType2;
|
|
953
953
|
})(TaxableAddressType || {});
|
|
954
|
-
var
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
return
|
|
959
|
-
})(
|
|
954
|
+
var PlatformFeeChargeType = /* @__PURE__ */ ((PlatformFeeChargeType2) => {
|
|
955
|
+
PlatformFeeChargeType2["UNKNOWN_CHARGE_TYPE"] = "UNKNOWN_CHARGE_TYPE";
|
|
956
|
+
PlatformFeeChargeType2["PASS_ON"] = "PASS_ON";
|
|
957
|
+
PlatformFeeChargeType2["ABSORBED"] = "ABSORBED";
|
|
958
|
+
return PlatformFeeChargeType2;
|
|
959
|
+
})(PlatformFeeChargeType || {});
|
|
960
960
|
var WeightUnit = /* @__PURE__ */ ((WeightUnit2) => {
|
|
961
961
|
WeightUnit2["UNSPECIFIED_WEIGHT_UNIT"] = "UNSPECIFIED_WEIGHT_UNIT";
|
|
962
962
|
WeightUnit2["KG"] = "KG";
|
|
@@ -1740,13 +1740,13 @@ async function removeBusinessLocation2(_id) {
|
|
|
1740
1740
|
NameInOther,
|
|
1741
1741
|
PaymentOptionType,
|
|
1742
1742
|
PickupMethod,
|
|
1743
|
+
PlatformFeeChargeType,
|
|
1743
1744
|
RateType,
|
|
1744
1745
|
RuleType,
|
|
1745
1746
|
Severity,
|
|
1746
1747
|
SubscriptionFrequency,
|
|
1747
1748
|
SuggestedFix,
|
|
1748
1749
|
TaxableAddressType,
|
|
1749
|
-
V1ChargeType,
|
|
1750
1750
|
VatType,
|
|
1751
1751
|
WebhookIdentityType,
|
|
1752
1752
|
WeightUnit,
|