@wix/auto_sdk_ecom_draft-orders 1.0.165 → 1.0.167
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 +171 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +29 -1
- package/build/cjs/index.typings.js +153 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +29 -1
- package/build/cjs/meta.js +155 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +170 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +29 -1
- package/build/es/index.typings.mjs +152 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +29 -1
- package/build/es/meta.mjs +154 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +171 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +333 -2
- package/build/internal/cjs/index.typings.js +153 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +840 -3
- package/build/internal/cjs/meta.js +155 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +170 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +333 -2
- package/build/internal/es/index.typings.mjs +152 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +840 -3
- package/build/internal/es/meta.mjs +154 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
package/build/cjs/meta.d.ts
CHANGED
|
@@ -1038,6 +1038,19 @@ interface ExtendedFields {
|
|
|
1038
1038
|
*/
|
|
1039
1039
|
namespaces?: Record<string, Record<string, any>>;
|
|
1040
1040
|
}
|
|
1041
|
+
interface ServiceProperties {
|
|
1042
|
+
/**
|
|
1043
|
+
* Date and time the service is to be provided, in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
|
|
1044
|
+
* For example, the start time of a class.
|
|
1045
|
+
*/
|
|
1046
|
+
scheduledDate?: Date | null;
|
|
1047
|
+
/**
|
|
1048
|
+
* The number of people participating in the service. For example, the number of people attending a class or the number of people per hotel room.
|
|
1049
|
+
* @min 1
|
|
1050
|
+
* @max 10000
|
|
1051
|
+
*/
|
|
1052
|
+
numberOfParticipants?: number | null;
|
|
1053
|
+
}
|
|
1041
1054
|
interface ItemChangedDetails {
|
|
1042
1055
|
/**
|
|
1043
1056
|
* Line item quantity before change.
|
|
@@ -2994,6 +3007,21 @@ interface CommitDraftOrderRequest {
|
|
|
2994
3007
|
*/
|
|
2995
3008
|
reason?: string | null;
|
|
2996
3009
|
}
|
|
3010
|
+
/** How committing endpoints treat the draft order's totals calculation. */
|
|
3011
|
+
declare enum CalculationBehavior {
|
|
3012
|
+
/** Recalculate totals before committing. Default behavior. */
|
|
3013
|
+
RECALCULATE = "RECALCULATE",
|
|
3014
|
+
/**
|
|
3015
|
+
* Commit the last persisted calculation without recalculating totals.
|
|
3016
|
+
* A hint, not a command: the server falls back to `RECALCULATE` when the persisted
|
|
3017
|
+
* calculation cannot be safely reused, for example when it is older than a
|
|
3018
|
+
* server-configured staleness bound or completed with calculation errors.
|
|
3019
|
+
* The payment balance is always refreshed.
|
|
3020
|
+
*/
|
|
3021
|
+
REUSE_LAST = "REUSE_LAST"
|
|
3022
|
+
}
|
|
3023
|
+
/** @enumType */
|
|
3024
|
+
type CalculationBehaviorWithLiterals = CalculationBehavior | 'RECALCULATE' | 'REUSE_LAST';
|
|
2997
3025
|
interface CommitDraftOrderResponse {
|
|
2998
3026
|
/** Draft order after commit. */
|
|
2999
3027
|
committedDraftOrder?: DraftOrder;
|
|
@@ -5514,4 +5542,4 @@ declare function updateExtendedFields(): __PublicMethodMetaInfo<'POST', {
|
|
|
5514
5542
|
declare function setTaxExemption(): __PublicMethodMetaInfo<'PUT', {}, SetTaxExemptionRequest$1, SetTaxExemptionRequest, SetTaxExemptionResponse$1, SetTaxExemptionResponse>;
|
|
5515
5543
|
declare function setBusinessLocation(): __PublicMethodMetaInfo<'PUT', {}, SetBusinessLocationRequest$1, SetBusinessLocationRequest, SetBusinessLocationResponse$1, SetBusinessLocationResponse>;
|
|
5516
5544
|
|
|
5517
|
-
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type ActivityContentOneOf as ActivityContentOneOfOriginal, type Activity as ActivityOriginal, ActivityType as ActivityTypeOriginal, type ActivityTypeWithLiterals as ActivityTypeWithLiteralsOriginal, type AddLineItemsToDraftOrderApplicationErrors as AddLineItemsToDraftOrderApplicationErrorsOriginal, type AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequestOriginal, type AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponseOriginal, type AdditionalFeeDetails as AdditionalFeeDetailsOriginal, type AdditionalFeeOption as AdditionalFeeOptionOriginal, type AdditionalFee as AdditionalFeeOriginal, AdditionalFeeSource as AdditionalFeeSourceOriginal, type AdditionalFeeSourceWithLiterals as AdditionalFeeSourceWithLiteralsOriginal, type AddressLocation as AddressLocationOriginal, type Address as AddressOriginal, type AddressWithContact as AddressWithContactOriginal, AdjustmentType as AdjustmentTypeOriginal, type AdjustmentTypeWithLiterals as AdjustmentTypeWithLiteralsOriginal, type ApplicationError as ApplicationErrorOriginal, type AppliedDiscountDiscountSourceOneOf as AppliedDiscountDiscountSourceOneOfOriginal, AppliedDiscountDiscountType as AppliedDiscountDiscountTypeOriginal, type AppliedDiscountDiscountTypeWithLiterals as AppliedDiscountDiscountTypeWithLiteralsOriginal, type AppliedDiscount as AppliedDiscountOriginal, AttributionSource as AttributionSourceOriginal, type AttributionSourceWithLiterals as AttributionSourceWithLiteralsOriginal, type AuthorizedPaymentCaptured as AuthorizedPaymentCapturedOriginal, type AuthorizedPaymentCreated as AuthorizedPaymentCreatedOriginal, type AuthorizedPaymentVoided as AuthorizedPaymentVoidedOriginal, type Balance as BalanceOriginal, type BalanceSummary as BalanceSummaryOriginal, type BillingAdjustment as BillingAdjustmentOriginal, type BillingAdjustmentPriceSummary as BillingAdjustmentPriceSummaryOriginal, type BillingChangedDetails as BillingChangedDetailsOriginal, type BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOfOriginal, type BillingDetails as BillingDetailsOriginal, type BillingSettings as BillingSettingsOriginal, type BusinessLocationChangedDetails as BusinessLocationChangedDetailsOriginal, type BusinessLocationDetailsChangeTypeOneOf as BusinessLocationDetailsChangeTypeOneOfOriginal, type BusinessLocationDetails as BusinessLocationDetailsOriginal, type BuyerChangedDetails as BuyerChangedDetailsOriginal, type BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOfOriginal, type BuyerDetails as BuyerDetailsOriginal, type BuyerInfoIdOneOf as BuyerInfoIdOneOfOriginal, type BuyerInfo as BuyerInfoOriginal, type CalculatedDraftOrder as CalculatedDraftOrderOriginal, type CalculationErrors as CalculationErrorsOriginal, type CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOfOriginal, type CarrierError as CarrierErrorOriginal, type CarrierErrors as CarrierErrorsOriginal, type CashRounding as CashRoundingOriginal, type CatalogReferenceLineItem as CatalogReferenceLineItemOriginal, type CatalogReference as CatalogReferenceOriginal, type ChannelInfo as ChannelInfoOriginal, ChannelType as ChannelTypeOriginal, type ChannelTypeWithLiterals as ChannelTypeWithLiteralsOriginal, ChargeType as ChargeTypeOriginal, type ChargeTypeWithLiterals as ChargeTypeWithLiteralsOriginal, type ChargebackCreated as ChargebackCreatedOriginal, type ChargebackReversed as ChargebackReversedOriginal, type Color as ColorOriginal, type CommitDraftOrderApplicationErrors as CommitDraftOrderApplicationErrorsOriginal, type CommitDraftOrderRequest as CommitDraftOrderRequestOriginal, type CommitDraftOrderResponse as CommitDraftOrderResponseOriginal, type Coupon as CouponOriginal, type CreateCustomAdditionalFeesApplicationErrors as CreateCustomAdditionalFeesApplicationErrorsOriginal, type CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequestOriginal, type CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponseOriginal, type CreateCustomDiscountsApplicationErrors as CreateCustomDiscountsApplicationErrorsOriginal, type CreateCustomDiscountsRequest as CreateCustomDiscountsRequestOriginal, type CreateCustomDiscountsResponse as CreateCustomDiscountsResponseOriginal, type CreateDraftOrderApplicationErrors as CreateDraftOrderApplicationErrorsOriginal, type CreateDraftOrderRequest as CreateDraftOrderRequestOriginal, type CreateDraftOrderRequestSourceOneOf as CreateDraftOrderRequestSourceOneOfOriginal, type CreateDraftOrderResponse as CreateDraftOrderResponseOriginal, type CreateEmptyDraftOrderApplicationErrors as CreateEmptyDraftOrderApplicationErrorsOriginal, type CreateEmptyDraftOrderRequest as CreateEmptyDraftOrderRequestOriginal, type CreateEmptyDraftOrderResponse as CreateEmptyDraftOrderResponseOriginal, type CreateOrderFromDraftApplicationErrors as CreateOrderFromDraftApplicationErrorsOriginal, type CreateOrderFromDraftRequest as CreateOrderFromDraftRequestOriginal, type CreateOrderFromDraftResponse as CreateOrderFromDraftResponseOriginal, type CreatedBy as CreatedByOriginal, type CreatedByStringOneOf as CreatedByStringOneOfOriginal, type CreditCardDetails as CreditCardDetailsOriginal, type CurrencyConversionDetails as CurrencyConversionDetailsOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type CustomActivity as CustomActivityOriginal, type CustomAllowedActions as CustomAllowedActionsOriginal, type CustomField as CustomFieldOriginal, type CustomLineItem as CustomLineItemOriginal, type DecimalQuantity as DecimalQuantityOriginal, type DecimalQuantityOverride as DecimalQuantityOverrideOriginal, type DecimalQuantityUnitOneOf as DecimalQuantityUnitOneOfOriginal, type DeleteCustomAdditionalFeesApplicationErrors as DeleteCustomAdditionalFeesApplicationErrorsOriginal, type DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequestOriginal, type DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponseOriginal, type DeleteCustomDiscountsApplicationErrors as DeleteCustomDiscountsApplicationErrorsOriginal, type DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequestOriginal, type DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponseOriginal, type DeleteDraftOrderApplicationErrors as DeleteDraftOrderApplicationErrorsOriginal, type DeleteDraftOrderRequest as DeleteDraftOrderRequestOriginal, type DeleteDraftOrderResponse as DeleteDraftOrderResponseOriginal, type DeliveryLogistics as DeliveryLogisticsOriginal, type DeliveryTimeSlot as DeliveryTimeSlotOriginal, type DepositDetailsDepositOneOf as DepositDetailsDepositOneOfOriginal, type DepositDetails as DepositDetailsOriginal, type DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOfOriginal, type DescriptionLineName as DescriptionLineNameOriginal, type DescriptionLine as DescriptionLineOriginal, DescriptionLineType as DescriptionLineTypeOriginal, type DescriptionLineTypeWithLiterals as DescriptionLineTypeWithLiteralsOriginal, type DescriptionLineValueOneOf as DescriptionLineValueOneOfOriginal, type DescriptionLinesOverride as DescriptionLinesOverrideOriginal, type DetailsKindOneOf as DetailsKindOneOfOriginal, type Details as DetailsOriginal, type DigitalFile as DigitalFileOriginal, type Dimensions as DimensionsOriginal, DimensionsUnit as DimensionsUnitOriginal, type DimensionsUnitWithLiterals as DimensionsUnitWithLiteralsOriginal, type DiscountDetails as DiscountDetailsOriginal, type DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOfOriginal, type DiscountOption as DiscountOptionOriginal, DiscountReason as DiscountReasonOriginal, type DiscountReasonWithLiterals as DiscountReasonWithLiteralsOriginal, type DiscountRuleName as DiscountRuleNameOriginal, type DiscountRule as DiscountRuleOriginal, DiscountType as DiscountTypeOriginal, type DiscountTypeWithLiterals as DiscountTypeWithLiteralsOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DraftOrderChangesApplied as DraftOrderChangesAppliedOriginal, type DraftOrderCommitSettings as DraftOrderCommitSettingsOriginal, type DraftOrderInput as DraftOrderInputOriginal, type DraftOrder as DraftOrderOriginal, EditingStatus as EditingStatusOriginal, type EditingStatusWithLiterals as EditingStatusWithLiteralsOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExtendedFields as ExtendedFieldsOriginal, type ExternalReceipt as ExternalReceiptOriginal, type FieldViolation as FieldViolationOriginal, FileType as FileTypeOriginal, type FileTypeWithLiterals as FileTypeWithLiteralsOriginal, type FocalPoint as FocalPointOriginal, type FormIdentifier as FormIdentifierOriginal, type FormInfo as FormInfoOriginal, type FreeTrialPeriod as FreeTrialPeriodOriginal, FulfillmentStatus as FulfillmentStatusOriginal, type FulfillmentStatusWithLiterals as FulfillmentStatusWithLiteralsOriginal, type FulfillmentStatusesAggregate as FulfillmentStatusesAggregateOriginal, type FullAddressContactDetails as FullAddressContactDetailsOriginal, type GetDraftOrderApplicationErrors as GetDraftOrderApplicationErrorsOriginal, type GetDraftOrderRequest as GetDraftOrderRequestOriginal, type GetDraftOrderResponse as GetDraftOrderResponseOriginal, type GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequestOriginal, type GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponseOriginal, type GiftCardPaymentRefund as GiftCardPaymentRefundOriginal, type IdAndApplied as IdAndAppliedOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type Image as ImageOriginal, type InventoryUpdate as InventoryUpdateOriginal, type ItemChangedDetails as ItemChangedDetailsOriginal, type ItemChangedImplicitlyDetails as ItemChangedImplicitlyDetailsOriginal, type ItemCombinationLineItem as ItemCombinationLineItemOriginal, type ItemCombination as ItemCombinationOriginal, type ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOfOriginal, type ItemDetails as ItemDetailsOriginal, type ItemModifier as ItemModifierOriginal, type ItemTaxFullDetails as ItemTaxFullDetailsOriginal, type ItemTypeItemTypeDataOneOf as ItemTypeItemTypeDataOneOfOriginal, type ItemType as ItemTypeOriginal, ItemTypePreset as ItemTypePresetOriginal, type ItemTypePresetWithLiterals as ItemTypePresetWithLiteralsOriginal, JurisdictionType as JurisdictionTypeOriginal, type JurisdictionTypeWithLiterals as JurisdictionTypeWithLiteralsOriginal, type LineItemAmount as LineItemAmountOriginal, type LineItemChangeDetails as LineItemChangeDetailsOriginal, type LineItemChanges as LineItemChangesOriginal, type LineItemDescriptionLineChange as LineItemDescriptionLineChangeOriginal, type LineItemDiscount as LineItemDiscountOriginal, type LineItemExchangeData as LineItemExchangeDataOriginal, type LineItemModifiersChange as LineItemModifiersChangeOriginal, type LineItemPriceChange as LineItemPriceChangeOriginal, type LineItemProductNameChange as LineItemProductNameChangeOriginal, type LineItemQuantityChange as LineItemQuantityChangeOriginal, LineItemQuantityChangeType as LineItemQuantityChangeTypeOriginal, type LineItemQuantityChangeTypeWithLiterals as LineItemQuantityChangeTypeWithLiteralsOriginal, type LineItemTaxBreakdown as LineItemTaxBreakdownOriginal, type LineItemTaxInfo as LineItemTaxInfoOriginal, type LocationAndQuantity as LocationAndQuantityOriginal, type Location as LocationOriginal, type ManagedAdditionalFee as ManagedAdditionalFeeOriginal, type ManagedDiscount as ManagedDiscountOriginal, type ManagedLineItem as ManagedLineItemOriginal, MeasurementUnit as MeasurementUnitOriginal, type MeasurementUnitWithLiterals as MeasurementUnitWithLiteralsOriginal, type MembershipPaymentRefund as MembershipPaymentRefundOriginal, type MerchantComment as MerchantCommentOriginal, type MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOfOriginal, type MerchantDiscount as MerchantDiscountOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type ModifierGroup as ModifierGroupOriginal, type ModifiersGroupsOverride as ModifiersGroupsOverrideOriginal, type NewExchangeOrderCreated as NewExchangeOrderCreatedOriginal, NonDraftableReason as NonDraftableReasonOriginal, type NonDraftableReasonWithLiterals as NonDraftableReasonWithLiteralsOriginal, OrderActionType as OrderActionTypeOriginal, type OrderActionTypeWithLiterals as OrderActionTypeWithLiteralsOriginal, OrderActivityTypeEnumActivityType as OrderActivityTypeEnumActivityTypeOriginal, type OrderActivityTypeEnumActivityTypeWithLiterals as OrderActivityTypeEnumActivityTypeWithLiteralsOriginal, type OrderChange as OrderChangeOriginal, type OrderChangeValueOneOf as OrderChangeValueOneOfOriginal, type OrderCreateNotifications as OrderCreateNotificationsOriginal, type OrderCreateSettingsEditableByOneOf as OrderCreateSettingsEditableByOneOfOriginal, type OrderCreateSettings as OrderCreateSettingsOriginal, type OrderCreatedFromExchange as OrderCreatedFromExchangeOriginal, type OrderLineItem as OrderLineItemOriginal, type Order as OrderOriginal, type OrderRefunded as OrderRefundedOriginal, type OrderSettingsAllowedActionsOneOf as OrderSettingsAllowedActionsOneOfOriginal, type OrderSettingsEditableByOneOf as OrderSettingsEditableByOneOfOriginal, type OrderSettings as OrderSettingsOriginal, OrderStatus as OrderStatusOriginal, type OrderStatusWithLiterals as OrderStatusWithLiteralsOriginal, type OrderTaxBreakdown as OrderTaxBreakdownOriginal, type OrderTaxInfo as OrderTaxInfoOriginal, type OwnerApps as OwnerAppsOriginal, type PageUrlV2 as PageUrlV2Original, type PaymentCanceled as PaymentCanceledOriginal, type PaymentCanceledPaymentDetailsOneOf as PaymentCanceledPaymentDetailsOneOfOriginal, type PaymentDeclined as PaymentDeclinedOriginal, type PaymentDeclinedPaymentDetailsOneOf as PaymentDeclinedPaymentDetailsOneOfOriginal, type PaymentOptionOverride as PaymentOptionOverrideOriginal, PaymentOptionType as PaymentOptionTypeOriginal, type PaymentOptionTypeWithLiterals as PaymentOptionTypeWithLiteralsOriginal, type PaymentPending as PaymentPendingOriginal, type PaymentPendingPaymentDetailsOneOf as PaymentPendingPaymentDetailsOneOfOriginal, type PaymentRefundFailed as PaymentRefundFailedOriginal, type PaymentRefunded as PaymentRefundedOriginal, PaymentStatus as PaymentStatusOriginal, type PaymentStatusWithLiterals as PaymentStatusWithLiteralsOriginal, type PhysicalProperties as PhysicalPropertiesOriginal, type PickupAddress as PickupAddressOriginal, type PickupDetails as PickupDetailsOriginal, PickupDetailsPickupMethod as PickupDetailsPickupMethodOriginal, type PickupDetailsPickupMethodWithLiterals as PickupDetailsPickupMethodWithLiteralsOriginal, PickupMethod as PickupMethodOriginal, type PickupMethodWithLiterals as PickupMethodWithLiteralsOriginal, type PlainTextValue as PlainTextValueOriginal, type PlatformFee as PlatformFeeOriginal, type PlatformFeeSummary as PlatformFeeSummaryOriginal, type PriceDescription as PriceDescriptionOriginal, type Price as PriceOriginal, type PriceSummary as PriceSummaryOriginal, type ProductName as ProductNameOriginal, ProductPeriodAlignment as ProductPeriodAlignmentOriginal, type ProductPeriodAlignmentWithLiterals as ProductPeriodAlignmentWithLiteralsOriginal, type QueryDraftOrdersRequest as QueryDraftOrdersRequestOriginal, type QueryDraftOrdersResponse as QueryDraftOrdersResponseOriginal, type ReceiptCreated as ReceiptCreatedOriginal, type ReceiptCreatedReceiptInfoOneOf as ReceiptCreatedReceiptInfoOneOfOriginal, type ReceiptSent as ReceiptSentOriginal, type ReceiptSentReceiptInfoOneOf as ReceiptSentReceiptInfoOneOfOriginal, type RecipientInfoChangedDetails as RecipientInfoChangedDetailsOriginal, type RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOfOriginal, type RecipientInfoDetails as RecipientInfoDetailsOriginal, type RefundInitiated as RefundInitiatedOriginal, type RefundedAsStoreCredit as RefundedAsStoreCreditOriginal, type RefundedPaymentKindOneOf as RefundedPaymentKindOneOfOriginal, type RefundedPayment as RefundedPaymentOriginal, type RegularPayment as RegularPaymentOriginal, type RegularPaymentPaymentMethodDetailsOneOf as RegularPaymentPaymentMethodDetailsOneOfOriginal, type RegularPaymentRefund as RegularPaymentRefundOriginal, type RestockLocation as RestockLocationOriginal, type RestoreInfo as RestoreInfoOriginal, RuleType as RuleTypeOriginal, type RuleTypeWithLiterals as RuleTypeWithLiteralsOriginal, type SavedPaymentMethod as SavedPaymentMethodOriginal, type SecuredMedia as SecuredMediaOriginal, type SetAdditionalFeesApplicationErrors as SetAdditionalFeesApplicationErrorsOriginal, type SetAdditionalFeesRequest as SetAdditionalFeesRequestOriginal, type SetAdditionalFeesResponse as SetAdditionalFeesResponseOriginal, type SetBillingInfoApplicationErrors as SetBillingInfoApplicationErrorsOriginal, type SetBillingInfoRequest as SetBillingInfoRequestOriginal, type SetBillingInfoResponse as SetBillingInfoResponseOriginal, type SetBusinessLocationApplicationErrors as SetBusinessLocationApplicationErrorsOriginal, type SetBusinessLocationRequest as SetBusinessLocationRequestOriginal, type SetBusinessLocationResponse as SetBusinessLocationResponseOriginal, type SetBuyerInfoApplicationErrors as SetBuyerInfoApplicationErrorsOriginal, type SetBuyerInfoRequest as SetBuyerInfoRequestOriginal, type SetBuyerInfoResponse as SetBuyerInfoResponseOriginal, type SetDepositApplicationErrors as SetDepositApplicationErrorsOriginal, type SetDepositRequest as SetDepositRequestOriginal, type SetDepositResponse as SetDepositResponseOriginal, type SetDiscountsApplicationErrors as SetDiscountsApplicationErrorsOriginal, type SetDiscountsRequest as SetDiscountsRequestOriginal, type SetDiscountsResponse as SetDiscountsResponseOriginal, type SetRecipientInfoApplicationErrors as SetRecipientInfoApplicationErrorsOriginal, type SetRecipientInfoRequest as SetRecipientInfoRequestOriginal, type SetRecipientInfoResponse as SetRecipientInfoResponseOriginal, type SetShippingInfoApplicationErrors as SetShippingInfoApplicationErrorsOriginal, type SetShippingInfoRequest as SetShippingInfoRequestOriginal, type SetShippingInfoResponse as SetShippingInfoResponseOriginal, type SetTaxExemptionApplicationErrors as SetTaxExemptionApplicationErrorsOriginal, type SetTaxExemptionRequest as SetTaxExemptionRequestOriginal, type SetTaxExemptionResponse as SetTaxExemptionResponseOriginal, type ShippingChangedDetails as ShippingChangedDetailsOriginal, type ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOfOriginal, type ShippingDetails as ShippingDetailsOriginal, type ShippingInformationChange as ShippingInformationChangeOriginal, type ShippingInformation as ShippingInformationOriginal, type ShippingOption as ShippingOptionOriginal, type ShippingPrice as ShippingPriceOriginal, type ShippingRegion as ShippingRegionOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, SourceType as SourceTypeOriginal, type SourceTypeWithLiterals as SourceTypeWithLiteralsOriginal, SpecificItemsCouponBehavior as SpecificItemsCouponBehaviorOriginal, type SpecificItemsCouponBehaviorWithLiterals as SpecificItemsCouponBehaviorWithLiteralsOriginal, type StreetAddress as StreetAddressOriginal, type SubscriptionDescription as SubscriptionDescriptionOriginal, SubscriptionFrequency as SubscriptionFrequencyOriginal, type SubscriptionFrequencyWithLiterals as SubscriptionFrequencyWithLiteralsOriginal, type SubscriptionInfo as SubscriptionInfoOriginal, type SubscriptionSettings as SubscriptionSettingsOriginal, type SubscriptionTitle as SubscriptionTitleOriginal, type SystemError as SystemErrorOriginal, type TagList as TagListOriginal, type Tags as TagsOriginal, type TaxDetails as TaxDetailsOriginal, type TaxSummary as TaxSummaryOriginal, type TaxableAddress as TaxableAddressOriginal, type TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOfOriginal, TaxableAddressType as TaxableAddressTypeOriginal, type TaxableAddressTypeWithLiterals as TaxableAddressTypeWithLiteralsOriginal, type TotalPriceChange as TotalPriceChangeOriginal, type TranslatableString as TranslatableStringOriginal, type TranslatedValue as TranslatedValueOriginal, type UpdateExtendedFieldsApplicationErrors as UpdateExtendedFieldsApplicationErrorsOriginal, type UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequestOriginal, type UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponseOriginal, type UpdateLineItemsApplicationErrors as UpdateLineItemsApplicationErrorsOriginal, type UpdateLineItemsRequest as UpdateLineItemsRequestOriginal, type UpdateLineItemsResponse as UpdateLineItemsResponseOriginal, type UpdateShippingInfoRequest as UpdateShippingInfoRequestOriginal, type UpdateShippingInfoResponse as UpdateShippingInfoResponseOriginal, type V1BalanceSummary as V1BalanceSummaryOriginal, type V1CreatedBy as V1CreatedByOriginal, type V1CreatedByStringOneOf as V1CreatedByStringOneOfOriginal, type V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOfOriginal, type V1DeliveryLogistics as V1DeliveryLogisticsOriginal, type V1DeliveryTimeSlot as V1DeliveryTimeSlotOriginal, V1OrderStatus as V1OrderStatusOriginal, type V1OrderStatusWithLiterals as V1OrderStatusWithLiteralsOriginal, type V1PickupDetails as V1PickupDetailsOriginal, type V1ShippingInformation as V1ShippingInformationOriginal, type V1ShippingPrice as V1ShippingPriceOriginal, type ValidationError as ValidationErrorOriginal, type VatId as VatIdOriginal, VatType as VatTypeOriginal, type VatTypeWithLiterals as VatTypeWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, WeightUnit as WeightUnitOriginal, type WeightUnitWithLiterals as WeightUnitWithLiteralsOriginal, type WixReceipt as WixReceiptOriginal, type __PublicMethodMetaInfo, addLineItemsToDraftOrder, commitDraftOrder, createCustomAdditionalFees, createCustomDiscounts, createDraftOrder, createEmptyDraftOrder, createOrderFromDraft, deleteCustomAdditionalFees, deleteCustomDiscounts, deleteDraftOrder, getDraftOrder, getOrderDraftabilityStatus, queryDraftOrders, setAdditionalFees, setBillingInfo, setBusinessLocation, setBuyerInfo, setDeposit, setDiscounts, setRecipientInfo, setShippingInfo, setTaxExemption, updateExtendedFields, updateLineItems };
|
|
5545
|
+
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, type ActivityContentOneOf as ActivityContentOneOfOriginal, type Activity as ActivityOriginal, ActivityType as ActivityTypeOriginal, type ActivityTypeWithLiterals as ActivityTypeWithLiteralsOriginal, type AddLineItemsToDraftOrderApplicationErrors as AddLineItemsToDraftOrderApplicationErrorsOriginal, type AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequestOriginal, type AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponseOriginal, type AdditionalFeeDetails as AdditionalFeeDetailsOriginal, type AdditionalFeeOption as AdditionalFeeOptionOriginal, type AdditionalFee as AdditionalFeeOriginal, AdditionalFeeSource as AdditionalFeeSourceOriginal, type AdditionalFeeSourceWithLiterals as AdditionalFeeSourceWithLiteralsOriginal, type AddressLocation as AddressLocationOriginal, type Address as AddressOriginal, type AddressWithContact as AddressWithContactOriginal, AdjustmentType as AdjustmentTypeOriginal, type AdjustmentTypeWithLiterals as AdjustmentTypeWithLiteralsOriginal, type ApplicationError as ApplicationErrorOriginal, type AppliedDiscountDiscountSourceOneOf as AppliedDiscountDiscountSourceOneOfOriginal, AppliedDiscountDiscountType as AppliedDiscountDiscountTypeOriginal, type AppliedDiscountDiscountTypeWithLiterals as AppliedDiscountDiscountTypeWithLiteralsOriginal, type AppliedDiscount as AppliedDiscountOriginal, AttributionSource as AttributionSourceOriginal, type AttributionSourceWithLiterals as AttributionSourceWithLiteralsOriginal, type AuthorizedPaymentCaptured as AuthorizedPaymentCapturedOriginal, type AuthorizedPaymentCreated as AuthorizedPaymentCreatedOriginal, type AuthorizedPaymentVoided as AuthorizedPaymentVoidedOriginal, type Balance as BalanceOriginal, type BalanceSummary as BalanceSummaryOriginal, type BillingAdjustment as BillingAdjustmentOriginal, type BillingAdjustmentPriceSummary as BillingAdjustmentPriceSummaryOriginal, type BillingChangedDetails as BillingChangedDetailsOriginal, type BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOfOriginal, type BillingDetails as BillingDetailsOriginal, type BillingSettings as BillingSettingsOriginal, type BusinessLocationChangedDetails as BusinessLocationChangedDetailsOriginal, type BusinessLocationDetailsChangeTypeOneOf as BusinessLocationDetailsChangeTypeOneOfOriginal, type BusinessLocationDetails as BusinessLocationDetailsOriginal, type BuyerChangedDetails as BuyerChangedDetailsOriginal, type BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOfOriginal, type BuyerDetails as BuyerDetailsOriginal, type BuyerInfoIdOneOf as BuyerInfoIdOneOfOriginal, type BuyerInfo as BuyerInfoOriginal, type CalculatedDraftOrder as CalculatedDraftOrderOriginal, CalculationBehavior as CalculationBehaviorOriginal, type CalculationBehaviorWithLiterals as CalculationBehaviorWithLiteralsOriginal, type CalculationErrors as CalculationErrorsOriginal, type CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOfOriginal, type CarrierError as CarrierErrorOriginal, type CarrierErrors as CarrierErrorsOriginal, type CashRounding as CashRoundingOriginal, type CatalogReferenceLineItem as CatalogReferenceLineItemOriginal, type CatalogReference as CatalogReferenceOriginal, type ChannelInfo as ChannelInfoOriginal, ChannelType as ChannelTypeOriginal, type ChannelTypeWithLiterals as ChannelTypeWithLiteralsOriginal, ChargeType as ChargeTypeOriginal, type ChargeTypeWithLiterals as ChargeTypeWithLiteralsOriginal, type ChargebackCreated as ChargebackCreatedOriginal, type ChargebackReversed as ChargebackReversedOriginal, type Color as ColorOriginal, type CommitDraftOrderApplicationErrors as CommitDraftOrderApplicationErrorsOriginal, type CommitDraftOrderRequest as CommitDraftOrderRequestOriginal, type CommitDraftOrderResponse as CommitDraftOrderResponseOriginal, type Coupon as CouponOriginal, type CreateCustomAdditionalFeesApplicationErrors as CreateCustomAdditionalFeesApplicationErrorsOriginal, type CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequestOriginal, type CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponseOriginal, type CreateCustomDiscountsApplicationErrors as CreateCustomDiscountsApplicationErrorsOriginal, type CreateCustomDiscountsRequest as CreateCustomDiscountsRequestOriginal, type CreateCustomDiscountsResponse as CreateCustomDiscountsResponseOriginal, type CreateDraftOrderApplicationErrors as CreateDraftOrderApplicationErrorsOriginal, type CreateDraftOrderRequest as CreateDraftOrderRequestOriginal, type CreateDraftOrderRequestSourceOneOf as CreateDraftOrderRequestSourceOneOfOriginal, type CreateDraftOrderResponse as CreateDraftOrderResponseOriginal, type CreateEmptyDraftOrderApplicationErrors as CreateEmptyDraftOrderApplicationErrorsOriginal, type CreateEmptyDraftOrderRequest as CreateEmptyDraftOrderRequestOriginal, type CreateEmptyDraftOrderResponse as CreateEmptyDraftOrderResponseOriginal, type CreateOrderFromDraftApplicationErrors as CreateOrderFromDraftApplicationErrorsOriginal, type CreateOrderFromDraftRequest as CreateOrderFromDraftRequestOriginal, type CreateOrderFromDraftResponse as CreateOrderFromDraftResponseOriginal, type CreatedBy as CreatedByOriginal, type CreatedByStringOneOf as CreatedByStringOneOfOriginal, type CreditCardDetails as CreditCardDetailsOriginal, type CurrencyConversionDetails as CurrencyConversionDetailsOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type CustomActivity as CustomActivityOriginal, type CustomAllowedActions as CustomAllowedActionsOriginal, type CustomField as CustomFieldOriginal, type CustomLineItem as CustomLineItemOriginal, type DecimalQuantity as DecimalQuantityOriginal, type DecimalQuantityOverride as DecimalQuantityOverrideOriginal, type DecimalQuantityUnitOneOf as DecimalQuantityUnitOneOfOriginal, type DeleteCustomAdditionalFeesApplicationErrors as DeleteCustomAdditionalFeesApplicationErrorsOriginal, type DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequestOriginal, type DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponseOriginal, type DeleteCustomDiscountsApplicationErrors as DeleteCustomDiscountsApplicationErrorsOriginal, type DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequestOriginal, type DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponseOriginal, type DeleteDraftOrderApplicationErrors as DeleteDraftOrderApplicationErrorsOriginal, type DeleteDraftOrderRequest as DeleteDraftOrderRequestOriginal, type DeleteDraftOrderResponse as DeleteDraftOrderResponseOriginal, type DeliveryLogistics as DeliveryLogisticsOriginal, type DeliveryTimeSlot as DeliveryTimeSlotOriginal, type DepositDetailsDepositOneOf as DepositDetailsDepositOneOfOriginal, type DepositDetails as DepositDetailsOriginal, type DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOfOriginal, type DescriptionLineName as DescriptionLineNameOriginal, type DescriptionLine as DescriptionLineOriginal, DescriptionLineType as DescriptionLineTypeOriginal, type DescriptionLineTypeWithLiterals as DescriptionLineTypeWithLiteralsOriginal, type DescriptionLineValueOneOf as DescriptionLineValueOneOfOriginal, type DescriptionLinesOverride as DescriptionLinesOverrideOriginal, type DetailsKindOneOf as DetailsKindOneOfOriginal, type Details as DetailsOriginal, type DigitalFile as DigitalFileOriginal, type Dimensions as DimensionsOriginal, DimensionsUnit as DimensionsUnitOriginal, type DimensionsUnitWithLiterals as DimensionsUnitWithLiteralsOriginal, type DiscountDetails as DiscountDetailsOriginal, type DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOfOriginal, type DiscountOption as DiscountOptionOriginal, DiscountReason as DiscountReasonOriginal, type DiscountReasonWithLiterals as DiscountReasonWithLiteralsOriginal, type DiscountRuleName as DiscountRuleNameOriginal, type DiscountRule as DiscountRuleOriginal, DiscountType as DiscountTypeOriginal, type DiscountTypeWithLiterals as DiscountTypeWithLiteralsOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type DraftOrderChangesApplied as DraftOrderChangesAppliedOriginal, type DraftOrderCommitSettings as DraftOrderCommitSettingsOriginal, type DraftOrderInput as DraftOrderInputOriginal, type DraftOrder as DraftOrderOriginal, EditingStatus as EditingStatusOriginal, type EditingStatusWithLiterals as EditingStatusWithLiteralsOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExtendedFields as ExtendedFieldsOriginal, type ExternalReceipt as ExternalReceiptOriginal, type FieldViolation as FieldViolationOriginal, FileType as FileTypeOriginal, type FileTypeWithLiterals as FileTypeWithLiteralsOriginal, type FocalPoint as FocalPointOriginal, type FormIdentifier as FormIdentifierOriginal, type FormInfo as FormInfoOriginal, type FreeTrialPeriod as FreeTrialPeriodOriginal, FulfillmentStatus as FulfillmentStatusOriginal, type FulfillmentStatusWithLiterals as FulfillmentStatusWithLiteralsOriginal, type FulfillmentStatusesAggregate as FulfillmentStatusesAggregateOriginal, type FullAddressContactDetails as FullAddressContactDetailsOriginal, type GetDraftOrderApplicationErrors as GetDraftOrderApplicationErrorsOriginal, type GetDraftOrderRequest as GetDraftOrderRequestOriginal, type GetDraftOrderResponse as GetDraftOrderResponseOriginal, type GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequestOriginal, type GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponseOriginal, type GiftCardPaymentRefund as GiftCardPaymentRefundOriginal, type IdAndApplied as IdAndAppliedOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type Image as ImageOriginal, type InventoryUpdate as InventoryUpdateOriginal, type ItemChangedDetails as ItemChangedDetailsOriginal, type ItemChangedImplicitlyDetails as ItemChangedImplicitlyDetailsOriginal, type ItemCombinationLineItem as ItemCombinationLineItemOriginal, type ItemCombination as ItemCombinationOriginal, type ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOfOriginal, type ItemDetails as ItemDetailsOriginal, type ItemModifier as ItemModifierOriginal, type ItemTaxFullDetails as ItemTaxFullDetailsOriginal, type ItemTypeItemTypeDataOneOf as ItemTypeItemTypeDataOneOfOriginal, type ItemType as ItemTypeOriginal, ItemTypePreset as ItemTypePresetOriginal, type ItemTypePresetWithLiterals as ItemTypePresetWithLiteralsOriginal, JurisdictionType as JurisdictionTypeOriginal, type JurisdictionTypeWithLiterals as JurisdictionTypeWithLiteralsOriginal, type LineItemAmount as LineItemAmountOriginal, type LineItemChangeDetails as LineItemChangeDetailsOriginal, type LineItemChanges as LineItemChangesOriginal, type LineItemDescriptionLineChange as LineItemDescriptionLineChangeOriginal, type LineItemDiscount as LineItemDiscountOriginal, type LineItemExchangeData as LineItemExchangeDataOriginal, type LineItemModifiersChange as LineItemModifiersChangeOriginal, type LineItemPriceChange as LineItemPriceChangeOriginal, type LineItemProductNameChange as LineItemProductNameChangeOriginal, type LineItemQuantityChange as LineItemQuantityChangeOriginal, LineItemQuantityChangeType as LineItemQuantityChangeTypeOriginal, type LineItemQuantityChangeTypeWithLiterals as LineItemQuantityChangeTypeWithLiteralsOriginal, type LineItemTaxBreakdown as LineItemTaxBreakdownOriginal, type LineItemTaxInfo as LineItemTaxInfoOriginal, type LocationAndQuantity as LocationAndQuantityOriginal, type Location as LocationOriginal, type ManagedAdditionalFee as ManagedAdditionalFeeOriginal, type ManagedDiscount as ManagedDiscountOriginal, type ManagedLineItem as ManagedLineItemOriginal, MeasurementUnit as MeasurementUnitOriginal, type MeasurementUnitWithLiterals as MeasurementUnitWithLiteralsOriginal, type MembershipPaymentRefund as MembershipPaymentRefundOriginal, type MerchantComment as MerchantCommentOriginal, type MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOfOriginal, type MerchantDiscount as MerchantDiscountOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type ModifierGroup as ModifierGroupOriginal, type ModifiersGroupsOverride as ModifiersGroupsOverrideOriginal, type NewExchangeOrderCreated as NewExchangeOrderCreatedOriginal, NonDraftableReason as NonDraftableReasonOriginal, type NonDraftableReasonWithLiterals as NonDraftableReasonWithLiteralsOriginal, OrderActionType as OrderActionTypeOriginal, type OrderActionTypeWithLiterals as OrderActionTypeWithLiteralsOriginal, OrderActivityTypeEnumActivityType as OrderActivityTypeEnumActivityTypeOriginal, type OrderActivityTypeEnumActivityTypeWithLiterals as OrderActivityTypeEnumActivityTypeWithLiteralsOriginal, type OrderChange as OrderChangeOriginal, type OrderChangeValueOneOf as OrderChangeValueOneOfOriginal, type OrderCreateNotifications as OrderCreateNotificationsOriginal, type OrderCreateSettingsEditableByOneOf as OrderCreateSettingsEditableByOneOfOriginal, type OrderCreateSettings as OrderCreateSettingsOriginal, type OrderCreatedFromExchange as OrderCreatedFromExchangeOriginal, type OrderLineItem as OrderLineItemOriginal, type Order as OrderOriginal, type OrderRefunded as OrderRefundedOriginal, type OrderSettingsAllowedActionsOneOf as OrderSettingsAllowedActionsOneOfOriginal, type OrderSettingsEditableByOneOf as OrderSettingsEditableByOneOfOriginal, type OrderSettings as OrderSettingsOriginal, OrderStatus as OrderStatusOriginal, type OrderStatusWithLiterals as OrderStatusWithLiteralsOriginal, type OrderTaxBreakdown as OrderTaxBreakdownOriginal, type OrderTaxInfo as OrderTaxInfoOriginal, type OwnerApps as OwnerAppsOriginal, type PageUrlV2 as PageUrlV2Original, type PaymentCanceled as PaymentCanceledOriginal, type PaymentCanceledPaymentDetailsOneOf as PaymentCanceledPaymentDetailsOneOfOriginal, type PaymentDeclined as PaymentDeclinedOriginal, type PaymentDeclinedPaymentDetailsOneOf as PaymentDeclinedPaymentDetailsOneOfOriginal, type PaymentOptionOverride as PaymentOptionOverrideOriginal, PaymentOptionType as PaymentOptionTypeOriginal, type PaymentOptionTypeWithLiterals as PaymentOptionTypeWithLiteralsOriginal, type PaymentPending as PaymentPendingOriginal, type PaymentPendingPaymentDetailsOneOf as PaymentPendingPaymentDetailsOneOfOriginal, type PaymentRefundFailed as PaymentRefundFailedOriginal, type PaymentRefunded as PaymentRefundedOriginal, PaymentStatus as PaymentStatusOriginal, type PaymentStatusWithLiterals as PaymentStatusWithLiteralsOriginal, type PhysicalProperties as PhysicalPropertiesOriginal, type PickupAddress as PickupAddressOriginal, type PickupDetails as PickupDetailsOriginal, PickupDetailsPickupMethod as PickupDetailsPickupMethodOriginal, type PickupDetailsPickupMethodWithLiterals as PickupDetailsPickupMethodWithLiteralsOriginal, PickupMethod as PickupMethodOriginal, type PickupMethodWithLiterals as PickupMethodWithLiteralsOriginal, type PlainTextValue as PlainTextValueOriginal, type PlatformFee as PlatformFeeOriginal, type PlatformFeeSummary as PlatformFeeSummaryOriginal, type PriceDescription as PriceDescriptionOriginal, type Price as PriceOriginal, type PriceSummary as PriceSummaryOriginal, type ProductName as ProductNameOriginal, ProductPeriodAlignment as ProductPeriodAlignmentOriginal, type ProductPeriodAlignmentWithLiterals as ProductPeriodAlignmentWithLiteralsOriginal, type QueryDraftOrdersRequest as QueryDraftOrdersRequestOriginal, type QueryDraftOrdersResponse as QueryDraftOrdersResponseOriginal, type ReceiptCreated as ReceiptCreatedOriginal, type ReceiptCreatedReceiptInfoOneOf as ReceiptCreatedReceiptInfoOneOfOriginal, type ReceiptSent as ReceiptSentOriginal, type ReceiptSentReceiptInfoOneOf as ReceiptSentReceiptInfoOneOfOriginal, type RecipientInfoChangedDetails as RecipientInfoChangedDetailsOriginal, type RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOfOriginal, type RecipientInfoDetails as RecipientInfoDetailsOriginal, type RefundInitiated as RefundInitiatedOriginal, type RefundedAsStoreCredit as RefundedAsStoreCreditOriginal, type RefundedPaymentKindOneOf as RefundedPaymentKindOneOfOriginal, type RefundedPayment as RefundedPaymentOriginal, type RegularPayment as RegularPaymentOriginal, type RegularPaymentPaymentMethodDetailsOneOf as RegularPaymentPaymentMethodDetailsOneOfOriginal, type RegularPaymentRefund as RegularPaymentRefundOriginal, type RestockLocation as RestockLocationOriginal, type RestoreInfo as RestoreInfoOriginal, RuleType as RuleTypeOriginal, type RuleTypeWithLiterals as RuleTypeWithLiteralsOriginal, type SavedPaymentMethod as SavedPaymentMethodOriginal, type SecuredMedia as SecuredMediaOriginal, type ServiceProperties as ServicePropertiesOriginal, type SetAdditionalFeesApplicationErrors as SetAdditionalFeesApplicationErrorsOriginal, type SetAdditionalFeesRequest as SetAdditionalFeesRequestOriginal, type SetAdditionalFeesResponse as SetAdditionalFeesResponseOriginal, type SetBillingInfoApplicationErrors as SetBillingInfoApplicationErrorsOriginal, type SetBillingInfoRequest as SetBillingInfoRequestOriginal, type SetBillingInfoResponse as SetBillingInfoResponseOriginal, type SetBusinessLocationApplicationErrors as SetBusinessLocationApplicationErrorsOriginal, type SetBusinessLocationRequest as SetBusinessLocationRequestOriginal, type SetBusinessLocationResponse as SetBusinessLocationResponseOriginal, type SetBuyerInfoApplicationErrors as SetBuyerInfoApplicationErrorsOriginal, type SetBuyerInfoRequest as SetBuyerInfoRequestOriginal, type SetBuyerInfoResponse as SetBuyerInfoResponseOriginal, type SetDepositApplicationErrors as SetDepositApplicationErrorsOriginal, type SetDepositRequest as SetDepositRequestOriginal, type SetDepositResponse as SetDepositResponseOriginal, type SetDiscountsApplicationErrors as SetDiscountsApplicationErrorsOriginal, type SetDiscountsRequest as SetDiscountsRequestOriginal, type SetDiscountsResponse as SetDiscountsResponseOriginal, type SetRecipientInfoApplicationErrors as SetRecipientInfoApplicationErrorsOriginal, type SetRecipientInfoRequest as SetRecipientInfoRequestOriginal, type SetRecipientInfoResponse as SetRecipientInfoResponseOriginal, type SetShippingInfoApplicationErrors as SetShippingInfoApplicationErrorsOriginal, type SetShippingInfoRequest as SetShippingInfoRequestOriginal, type SetShippingInfoResponse as SetShippingInfoResponseOriginal, type SetTaxExemptionApplicationErrors as SetTaxExemptionApplicationErrorsOriginal, type SetTaxExemptionRequest as SetTaxExemptionRequestOriginal, type SetTaxExemptionResponse as SetTaxExemptionResponseOriginal, type ShippingChangedDetails as ShippingChangedDetailsOriginal, type ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOfOriginal, type ShippingDetails as ShippingDetailsOriginal, type ShippingInformationChange as ShippingInformationChangeOriginal, type ShippingInformation as ShippingInformationOriginal, type ShippingOption as ShippingOptionOriginal, type ShippingPrice as ShippingPriceOriginal, type ShippingRegion as ShippingRegionOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, SourceType as SourceTypeOriginal, type SourceTypeWithLiterals as SourceTypeWithLiteralsOriginal, SpecificItemsCouponBehavior as SpecificItemsCouponBehaviorOriginal, type SpecificItemsCouponBehaviorWithLiterals as SpecificItemsCouponBehaviorWithLiteralsOriginal, type StreetAddress as StreetAddressOriginal, type SubscriptionDescription as SubscriptionDescriptionOriginal, SubscriptionFrequency as SubscriptionFrequencyOriginal, type SubscriptionFrequencyWithLiterals as SubscriptionFrequencyWithLiteralsOriginal, type SubscriptionInfo as SubscriptionInfoOriginal, type SubscriptionSettings as SubscriptionSettingsOriginal, type SubscriptionTitle as SubscriptionTitleOriginal, type SystemError as SystemErrorOriginal, type TagList as TagListOriginal, type Tags as TagsOriginal, type TaxDetails as TaxDetailsOriginal, type TaxSummary as TaxSummaryOriginal, type TaxableAddress as TaxableAddressOriginal, type TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOfOriginal, TaxableAddressType as TaxableAddressTypeOriginal, type TaxableAddressTypeWithLiterals as TaxableAddressTypeWithLiteralsOriginal, type TotalPriceChange as TotalPriceChangeOriginal, type TranslatableString as TranslatableStringOriginal, type TranslatedValue as TranslatedValueOriginal, type UpdateExtendedFieldsApplicationErrors as UpdateExtendedFieldsApplicationErrorsOriginal, type UpdateExtendedFieldsRequest as UpdateExtendedFieldsRequestOriginal, type UpdateExtendedFieldsResponse as UpdateExtendedFieldsResponseOriginal, type UpdateLineItemsApplicationErrors as UpdateLineItemsApplicationErrorsOriginal, type UpdateLineItemsRequest as UpdateLineItemsRequestOriginal, type UpdateLineItemsResponse as UpdateLineItemsResponseOriginal, type UpdateShippingInfoRequest as UpdateShippingInfoRequestOriginal, type UpdateShippingInfoResponse as UpdateShippingInfoResponseOriginal, type V1BalanceSummary as V1BalanceSummaryOriginal, type V1CreatedBy as V1CreatedByOriginal, type V1CreatedByStringOneOf as V1CreatedByStringOneOfOriginal, type V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOfOriginal, type V1DeliveryLogistics as V1DeliveryLogisticsOriginal, type V1DeliveryTimeSlot as V1DeliveryTimeSlotOriginal, V1OrderStatus as V1OrderStatusOriginal, type V1OrderStatusWithLiterals as V1OrderStatusWithLiteralsOriginal, type V1PickupDetails as V1PickupDetailsOriginal, type V1ShippingInformation as V1ShippingInformationOriginal, type V1ShippingPrice as V1ShippingPriceOriginal, type ValidationError as ValidationErrorOriginal, type VatId as VatIdOriginal, VatType as VatTypeOriginal, type VatTypeWithLiterals as VatTypeWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, WeightUnit as WeightUnitOriginal, type WeightUnitWithLiterals as WeightUnitWithLiteralsOriginal, type WixReceipt as WixReceiptOriginal, type __PublicMethodMetaInfo, addLineItemsToDraftOrder, commitDraftOrder, createCustomAdditionalFees, createCustomDiscounts, createDraftOrder, createEmptyDraftOrder, createOrderFromDraft, deleteCustomAdditionalFees, deleteCustomDiscounts, deleteDraftOrder, getDraftOrder, getOrderDraftabilityStatus, queryDraftOrders, setAdditionalFees, setBillingInfo, setBusinessLocation, setBuyerInfo, setDeposit, setDiscounts, setRecipientInfo, setShippingInfo, setTaxExemption, updateExtendedFields, updateLineItems };
|
package/build/cjs/meta.js
CHANGED
|
@@ -25,6 +25,7 @@ __export(meta_exports, {
|
|
|
25
25
|
AdjustmentTypeOriginal: () => AdjustmentType,
|
|
26
26
|
AppliedDiscountDiscountTypeOriginal: () => AppliedDiscountDiscountType,
|
|
27
27
|
AttributionSourceOriginal: () => AttributionSource,
|
|
28
|
+
CalculationBehaviorOriginal: () => CalculationBehavior,
|
|
28
29
|
ChannelTypeOriginal: () => ChannelType,
|
|
29
30
|
ChargeTypeOriginal: () => ChargeType,
|
|
30
31
|
DescriptionLineTypeOriginal: () => DescriptionLineType,
|
|
@@ -200,6 +201,12 @@ function createDraftOrder(payload) {
|
|
|
200
201
|
{
|
|
201
202
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
202
203
|
},
|
|
204
|
+
{
|
|
205
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
209
|
+
},
|
|
203
210
|
{
|
|
204
211
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
205
212
|
},
|
|
@@ -337,6 +344,12 @@ function createEmptyDraftOrder(payload) {
|
|
|
337
344
|
{
|
|
338
345
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
339
346
|
},
|
|
347
|
+
{
|
|
348
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
352
|
+
},
|
|
340
353
|
{
|
|
341
354
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
342
355
|
},
|
|
@@ -492,6 +505,12 @@ function addLineItemsToDraftOrder(payload) {
|
|
|
492
505
|
{
|
|
493
506
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
494
507
|
},
|
|
508
|
+
{
|
|
509
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
513
|
+
},
|
|
495
514
|
{
|
|
496
515
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
497
516
|
},
|
|
@@ -635,6 +654,12 @@ function updateLineItems(payload) {
|
|
|
635
654
|
{
|
|
636
655
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
637
656
|
},
|
|
657
|
+
{
|
|
658
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
662
|
+
},
|
|
638
663
|
{
|
|
639
664
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
640
665
|
},
|
|
@@ -772,6 +797,12 @@ function setDeposit(payload) {
|
|
|
772
797
|
{
|
|
773
798
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
774
799
|
},
|
|
800
|
+
{
|
|
801
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
805
|
+
},
|
|
775
806
|
{
|
|
776
807
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
777
808
|
},
|
|
@@ -909,6 +940,12 @@ function setDiscounts(payload) {
|
|
|
909
940
|
{
|
|
910
941
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
911
942
|
},
|
|
943
|
+
{
|
|
944
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
948
|
+
},
|
|
912
949
|
{
|
|
913
950
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
914
951
|
},
|
|
@@ -1046,6 +1083,12 @@ function createCustomDiscounts(payload) {
|
|
|
1046
1083
|
{
|
|
1047
1084
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
1048
1085
|
},
|
|
1086
|
+
{
|
|
1087
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
1091
|
+
},
|
|
1049
1092
|
{
|
|
1050
1093
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
1051
1094
|
},
|
|
@@ -1183,6 +1226,12 @@ function deleteCustomDiscounts(payload) {
|
|
|
1183
1226
|
{
|
|
1184
1227
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
1185
1228
|
},
|
|
1229
|
+
{
|
|
1230
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
1234
|
+
},
|
|
1186
1235
|
{
|
|
1187
1236
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
1188
1237
|
},
|
|
@@ -1320,6 +1369,12 @@ function setAdditionalFees(payload) {
|
|
|
1320
1369
|
{
|
|
1321
1370
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
1322
1371
|
},
|
|
1372
|
+
{
|
|
1373
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
1374
|
+
},
|
|
1375
|
+
{
|
|
1376
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
1377
|
+
},
|
|
1323
1378
|
{
|
|
1324
1379
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
1325
1380
|
},
|
|
@@ -1457,6 +1512,12 @@ function createCustomAdditionalFees(payload) {
|
|
|
1457
1512
|
{
|
|
1458
1513
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
1459
1514
|
},
|
|
1515
|
+
{
|
|
1516
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
1517
|
+
},
|
|
1518
|
+
{
|
|
1519
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
1520
|
+
},
|
|
1460
1521
|
{
|
|
1461
1522
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
1462
1523
|
},
|
|
@@ -1594,6 +1655,12 @@ function deleteCustomAdditionalFees(payload) {
|
|
|
1594
1655
|
{
|
|
1595
1656
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
1596
1657
|
},
|
|
1658
|
+
{
|
|
1659
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
1660
|
+
},
|
|
1661
|
+
{
|
|
1662
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
1663
|
+
},
|
|
1597
1664
|
{
|
|
1598
1665
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
1599
1666
|
},
|
|
@@ -1758,6 +1825,12 @@ function setShippingInfo(payload) {
|
|
|
1758
1825
|
{
|
|
1759
1826
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
1760
1827
|
},
|
|
1828
|
+
{
|
|
1829
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
1830
|
+
},
|
|
1831
|
+
{
|
|
1832
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
1833
|
+
},
|
|
1761
1834
|
{
|
|
1762
1835
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
1763
1836
|
},
|
|
@@ -1895,6 +1968,12 @@ function setBuyerInfo(payload) {
|
|
|
1895
1968
|
{
|
|
1896
1969
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
1897
1970
|
},
|
|
1971
|
+
{
|
|
1972
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
1973
|
+
},
|
|
1974
|
+
{
|
|
1975
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
1976
|
+
},
|
|
1898
1977
|
{
|
|
1899
1978
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
1900
1979
|
},
|
|
@@ -2041,6 +2120,12 @@ function setRecipientInfo(payload) {
|
|
|
2041
2120
|
{
|
|
2042
2121
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
2043
2122
|
},
|
|
2123
|
+
{
|
|
2124
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
2125
|
+
},
|
|
2126
|
+
{
|
|
2127
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
2128
|
+
},
|
|
2044
2129
|
{
|
|
2045
2130
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
2046
2131
|
},
|
|
@@ -2187,6 +2272,12 @@ function setBillingInfo(payload) {
|
|
|
2187
2272
|
{
|
|
2188
2273
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
2189
2274
|
},
|
|
2275
|
+
{
|
|
2276
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
2277
|
+
},
|
|
2278
|
+
{
|
|
2279
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
2280
|
+
},
|
|
2190
2281
|
{
|
|
2191
2282
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
2192
2283
|
},
|
|
@@ -2324,6 +2415,12 @@ function getDraftOrder(payload) {
|
|
|
2324
2415
|
{
|
|
2325
2416
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
2326
2417
|
},
|
|
2418
|
+
{
|
|
2419
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
2420
|
+
},
|
|
2421
|
+
{
|
|
2422
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
2423
|
+
},
|
|
2327
2424
|
{
|
|
2328
2425
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
2329
2426
|
},
|
|
@@ -2493,6 +2590,12 @@ function commitDraftOrder(payload) {
|
|
|
2493
2590
|
{
|
|
2494
2591
|
path: "committedDraftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
2495
2592
|
},
|
|
2593
|
+
{
|
|
2594
|
+
path: "committedDraftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
2595
|
+
},
|
|
2596
|
+
{
|
|
2597
|
+
path: "committedDraftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
2598
|
+
},
|
|
2496
2599
|
{
|
|
2497
2600
|
path: "committedDraftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
2498
2601
|
},
|
|
@@ -2519,6 +2622,10 @@ function commitDraftOrder(payload) {
|
|
|
2519
2622
|
{
|
|
2520
2623
|
path: "orderAfterCommit.lineItems.subscriptionInfo.subscriptionSettings.startDate"
|
|
2521
2624
|
},
|
|
2625
|
+
{
|
|
2626
|
+
path: "orderAfterCommit.lineItems.serviceProperties.scheduledDate"
|
|
2627
|
+
},
|
|
2628
|
+
{ path: "orderAfterCommit.lineItems.serviceProperties.endDate" },
|
|
2522
2629
|
{ path: "orderAfterCommit.shippingInfo.logistics.deliverByDate" },
|
|
2523
2630
|
{
|
|
2524
2631
|
path: "orderAfterCommit.shippingInfo.logistics.deliveryTimeSlot.from"
|
|
@@ -2659,6 +2766,12 @@ function createOrderFromDraft(payload) {
|
|
|
2659
2766
|
{
|
|
2660
2767
|
path: "committedDraftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
2661
2768
|
},
|
|
2769
|
+
{
|
|
2770
|
+
path: "committedDraftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
2771
|
+
},
|
|
2772
|
+
{
|
|
2773
|
+
path: "committedDraftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
2774
|
+
},
|
|
2662
2775
|
{
|
|
2663
2776
|
path: "committedDraftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
2664
2777
|
},
|
|
@@ -2685,6 +2798,10 @@ function createOrderFromDraft(payload) {
|
|
|
2685
2798
|
{
|
|
2686
2799
|
path: "createdOrder.lineItems.subscriptionInfo.subscriptionSettings.startDate"
|
|
2687
2800
|
},
|
|
2801
|
+
{
|
|
2802
|
+
path: "createdOrder.lineItems.serviceProperties.scheduledDate"
|
|
2803
|
+
},
|
|
2804
|
+
{ path: "createdOrder.lineItems.serviceProperties.endDate" },
|
|
2688
2805
|
{ path: "createdOrder.shippingInfo.logistics.deliverByDate" },
|
|
2689
2806
|
{
|
|
2690
2807
|
path: "createdOrder.shippingInfo.logistics.deliveryTimeSlot.from"
|
|
@@ -2849,6 +2966,12 @@ function queryDraftOrders(payload) {
|
|
|
2849
2966
|
{
|
|
2850
2967
|
path: "draftOrders.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
2851
2968
|
},
|
|
2969
|
+
{
|
|
2970
|
+
path: "draftOrders.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
2971
|
+
},
|
|
2972
|
+
{
|
|
2973
|
+
path: "draftOrders.lineItems.lineItem.serviceProperties.endDate"
|
|
2974
|
+
},
|
|
2852
2975
|
{
|
|
2853
2976
|
path: "draftOrders.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
2854
2977
|
},
|
|
@@ -2964,6 +3087,12 @@ function updateExtendedFields(payload) {
|
|
|
2964
3087
|
{
|
|
2965
3088
|
path: "draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
2966
3089
|
},
|
|
3090
|
+
{
|
|
3091
|
+
path: "draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
3092
|
+
},
|
|
3093
|
+
{
|
|
3094
|
+
path: "draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
3095
|
+
},
|
|
2967
3096
|
{
|
|
2968
3097
|
path: "draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
2969
3098
|
},
|
|
@@ -3081,6 +3210,12 @@ function setTaxExemption(payload) {
|
|
|
3081
3210
|
{
|
|
3082
3211
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
3083
3212
|
},
|
|
3213
|
+
{
|
|
3214
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
3215
|
+
},
|
|
3216
|
+
{
|
|
3217
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
3218
|
+
},
|
|
3084
3219
|
{
|
|
3085
3220
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
3086
3221
|
},
|
|
@@ -3218,6 +3353,12 @@ function setBusinessLocation(payload) {
|
|
|
3218
3353
|
{
|
|
3219
3354
|
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.subscriptionInfo.subscriptionSettings.startDate"
|
|
3220
3355
|
},
|
|
3356
|
+
{
|
|
3357
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.scheduledDate"
|
|
3358
|
+
},
|
|
3359
|
+
{
|
|
3360
|
+
path: "calculatedDraftOrder.draftOrder.lineItems.lineItem.serviceProperties.endDate"
|
|
3361
|
+
},
|
|
3221
3362
|
{
|
|
3222
3363
|
path: "calculatedDraftOrder.draftOrder.shippingInfo.changedDetails.shippingInfoBeforeChange.logistics.deliverByDate"
|
|
3223
3364
|
},
|
|
@@ -3529,8 +3670,19 @@ var NonDraftableReason = /* @__PURE__ */ ((NonDraftableReason2) => {
|
|
|
3529
3670
|
NonDraftableReason2["ORDER_AND_SITE_WEIGHT_UNITS_ARE_INCONSISTENT"] = "ORDER_AND_SITE_WEIGHT_UNITS_ARE_INCONSISTENT";
|
|
3530
3671
|
NonDraftableReason2["ORDER_NOT_FOUND"] = "ORDER_NOT_FOUND";
|
|
3531
3672
|
NonDraftableReason2["SUBSCRIPTION_LINE_ITEM_EXISTS"] = "SUBSCRIPTION_LINE_ITEM_EXISTS";
|
|
3673
|
+
NonDraftableReason2["AMOUNTS_DO_NOT_ADD_UP"] = "AMOUNTS_DO_NOT_ADD_UP";
|
|
3674
|
+
NonDraftableReason2["UNSUPPORTED_CATALOG_ITEM"] = "UNSUPPORTED_CATALOG_ITEM";
|
|
3675
|
+
NonDraftableReason2["TAXABLE_EXISTING_ADDITIONAL_FEE"] = "TAXABLE_EXISTING_ADDITIONAL_FEE";
|
|
3676
|
+
NonDraftableReason2["ORDER_HAS_CHARGEBACKS"] = "ORDER_HAS_CHARGEBACKS";
|
|
3677
|
+
NonDraftableReason2["EDITING_IS_NOT_ALLOWED_FOR_APP"] = "EDITING_IS_NOT_ALLOWED_FOR_APP";
|
|
3678
|
+
NonDraftableReason2["COUPON_BEHAVIOR_IS_UNDEFINED"] = "COUPON_BEHAVIOR_IS_UNDEFINED";
|
|
3532
3679
|
return NonDraftableReason2;
|
|
3533
3680
|
})(NonDraftableReason || {});
|
|
3681
|
+
var CalculationBehavior = /* @__PURE__ */ ((CalculationBehavior2) => {
|
|
3682
|
+
CalculationBehavior2["RECALCULATE"] = "RECALCULATE";
|
|
3683
|
+
CalculationBehavior2["REUSE_LAST"] = "REUSE_LAST";
|
|
3684
|
+
return CalculationBehavior2;
|
|
3685
|
+
})(CalculationBehavior || {});
|
|
3534
3686
|
var PaymentStatus = /* @__PURE__ */ ((PaymentStatus2) => {
|
|
3535
3687
|
PaymentStatus2["UNSPECIFIED"] = "UNSPECIFIED";
|
|
3536
3688
|
PaymentStatus2["NOT_PAID"] = "NOT_PAID";
|
|
@@ -3670,6 +3822,8 @@ var ChannelType = /* @__PURE__ */ ((ChannelType2) => {
|
|
|
3670
3822
|
ChannelType2["FAIRE_COM"] = "FAIRE_COM";
|
|
3671
3823
|
ChannelType2["PAYPAL_AGENTIC_CHECKOUT"] = "PAYPAL_AGENTIC_CHECKOUT";
|
|
3672
3824
|
ChannelType2["STRIPE_AGENTIC_CHECKOUT"] = "STRIPE_AGENTIC_CHECKOUT";
|
|
3825
|
+
ChannelType2["WIX_INVOICES_PLATFORM"] = "WIX_INVOICES_PLATFORM";
|
|
3826
|
+
ChannelType2["UCP_AGENTIC_CHECKOUT"] = "UCP_AGENTIC_CHECKOUT";
|
|
3673
3827
|
return ChannelType2;
|
|
3674
3828
|
})(ChannelType || {});
|
|
3675
3829
|
var OrderActionType = /* @__PURE__ */ ((OrderActionType2) => {
|
|
@@ -4150,6 +4304,7 @@ function setBusinessLocation2() {
|
|
|
4150
4304
|
AdjustmentTypeOriginal,
|
|
4151
4305
|
AppliedDiscountDiscountTypeOriginal,
|
|
4152
4306
|
AttributionSourceOriginal,
|
|
4307
|
+
CalculationBehaviorOriginal,
|
|
4153
4308
|
ChannelTypeOriginal,
|
|
4154
4309
|
ChargeTypeOriginal,
|
|
4155
4310
|
DescriptionLineTypeOriginal,
|