@wix/ecom 1.0.760 → 1.0.761
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/ecom",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.761",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"@wix/ecom_custom-triggers": "1.0.23",
|
|
34
34
|
"@wix/ecom_delivery-profile": "1.0.18",
|
|
35
35
|
"@wix/ecom_discount-rules": "1.0.51",
|
|
36
|
-
"@wix/ecom_discounts": "1.0.
|
|
36
|
+
"@wix/ecom_discounts": "1.0.3",
|
|
37
37
|
"@wix/ecom_discounts-custom-trigger": "1.0.6",
|
|
38
|
-
"@wix/ecom_draft-orders": "1.0.
|
|
38
|
+
"@wix/ecom_draft-orders": "1.0.20",
|
|
39
39
|
"@wix/ecom_gift-vouchers": "1.0.1",
|
|
40
40
|
"@wix/ecom_gift-vouchers-provider": "1.0.2",
|
|
41
41
|
"@wix/ecom_local-delivery-options": "1.0.7",
|
|
@@ -77,5 +77,5 @@
|
|
|
77
77
|
"fqdn": ""
|
|
78
78
|
}
|
|
79
79
|
},
|
|
80
|
-
"falconPackageHash": "
|
|
80
|
+
"falconPackageHash": "f947c7edcacce93fce0884e198a27029d5d28f8a3dc43d4bd844ce7d"
|
|
81
81
|
}
|
|
@@ -19291,6 +19291,9 @@ interface CalculatedDraftOrderNonNullableFields {
|
|
|
19291
19291
|
interface CreateDraftOrderResponseNonNullableFields {
|
|
19292
19292
|
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19293
19293
|
}
|
|
19294
|
+
interface CreateEmptyDraftOrderResponseNonNullableFields {
|
|
19295
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19296
|
+
}
|
|
19294
19297
|
interface AddLineItemsToDraftOrderResponseNonNullableFields {
|
|
19295
19298
|
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19296
19299
|
}
|
|
@@ -19315,6 +19318,18 @@ interface CreateCustomAdditionalFeesResponseNonNullableFields {
|
|
|
19315
19318
|
interface DeleteCustomAdditionalFeesResponseNonNullableFields {
|
|
19316
19319
|
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19317
19320
|
}
|
|
19321
|
+
interface SetShippingInfoResponseNonNullableFields {
|
|
19322
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19323
|
+
}
|
|
19324
|
+
interface SetBuyerInfoResponseNonNullableFields {
|
|
19325
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19326
|
+
}
|
|
19327
|
+
interface SetRecipientInfoResponseNonNullableFields {
|
|
19328
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19329
|
+
}
|
|
19330
|
+
interface SetBillingInfoResponseNonNullableFields {
|
|
19331
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19332
|
+
}
|
|
19318
19333
|
interface GetDraftOrderResponseNonNullableFields {
|
|
19319
19334
|
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19320
19335
|
}
|
|
@@ -19527,6 +19542,10 @@ interface CommitDraftOrderResponseNonNullableFields {
|
|
|
19527
19542
|
committedDraftOrder?: DraftOrderNonNullableFields;
|
|
19528
19543
|
orderAfterCommit?: OrderNonNullableFields$1;
|
|
19529
19544
|
}
|
|
19545
|
+
interface CreateOrderFromDraftResponseNonNullableFields {
|
|
19546
|
+
committedDraftOrder?: DraftOrderNonNullableFields;
|
|
19547
|
+
createdOrder?: OrderNonNullableFields$1;
|
|
19548
|
+
}
|
|
19530
19549
|
interface QueryDraftOrdersResponseNonNullableFields {
|
|
19531
19550
|
draftOrders: DraftOrderNonNullableFields[];
|
|
19532
19551
|
}
|
|
@@ -19643,6 +19662,13 @@ interface CreateDraftOrderSignature {
|
|
|
19643
19662
|
*/
|
|
19644
19663
|
(orderId: string | null): Promise<CreateDraftOrderResponse & CreateDraftOrderResponseNonNullableFields>;
|
|
19645
19664
|
}
|
|
19665
|
+
declare function createEmptyDraftOrder$1(httpClient: HttpClient): CreateEmptyDraftOrderSignature;
|
|
19666
|
+
interface CreateEmptyDraftOrderSignature {
|
|
19667
|
+
/**
|
|
19668
|
+
* Creates an empty draft order.
|
|
19669
|
+
*/
|
|
19670
|
+
(): Promise<CreateEmptyDraftOrderResponse & CreateEmptyDraftOrderResponseNonNullableFields>;
|
|
19671
|
+
}
|
|
19646
19672
|
declare function addLineItemsToDraftOrder$1(httpClient: HttpClient): AddLineItemsToDraftOrderSignature;
|
|
19647
19673
|
interface AddLineItemsToDraftOrderSignature {
|
|
19648
19674
|
/**
|
|
@@ -19722,6 +19748,34 @@ interface DeleteCustomAdditionalFeesSignature {
|
|
|
19722
19748
|
*/
|
|
19723
19749
|
(draftOrderId: string, customAdditionalFees: string[]): Promise<DeleteCustomAdditionalFeesResponse & DeleteCustomAdditionalFeesResponseNonNullableFields>;
|
|
19724
19750
|
}
|
|
19751
|
+
declare function setShippingInfo$1(httpClient: HttpClient): SetShippingInfoSignature;
|
|
19752
|
+
interface SetShippingInfoSignature {
|
|
19753
|
+
/**
|
|
19754
|
+
* Sets shipping info to a draft order.
|
|
19755
|
+
*/
|
|
19756
|
+
(): Promise<void>;
|
|
19757
|
+
}
|
|
19758
|
+
declare function setBuyerInfo$1(httpClient: HttpClient): SetBuyerInfoSignature;
|
|
19759
|
+
interface SetBuyerInfoSignature {
|
|
19760
|
+
/**
|
|
19761
|
+
* Sets buyer info to a draft order.
|
|
19762
|
+
*/
|
|
19763
|
+
(): Promise<void>;
|
|
19764
|
+
}
|
|
19765
|
+
declare function setRecipientInfo$1(httpClient: HttpClient): SetRecipientInfoSignature;
|
|
19766
|
+
interface SetRecipientInfoSignature {
|
|
19767
|
+
/**
|
|
19768
|
+
* Sets recipient info to a draft order.
|
|
19769
|
+
*/
|
|
19770
|
+
(): Promise<void>;
|
|
19771
|
+
}
|
|
19772
|
+
declare function setBillingInfo$1(httpClient: HttpClient): SetBillingInfoSignature;
|
|
19773
|
+
interface SetBillingInfoSignature {
|
|
19774
|
+
/**
|
|
19775
|
+
* Sets billing info to a draft order.
|
|
19776
|
+
*/
|
|
19777
|
+
(): Promise<void>;
|
|
19778
|
+
}
|
|
19725
19779
|
declare function getDraftOrder$1(httpClient: HttpClient): GetDraftOrderSignature;
|
|
19726
19780
|
interface GetDraftOrderSignature {
|
|
19727
19781
|
/**
|
|
@@ -19752,6 +19806,15 @@ interface CommitDraftOrderSignature {
|
|
|
19752
19806
|
*/
|
|
19753
19807
|
(draftOrderId: string, options?: CommitDraftOrderOptions | undefined): Promise<CommitDraftOrderResponse & CommitDraftOrderResponseNonNullableFields>;
|
|
19754
19808
|
}
|
|
19809
|
+
declare function createOrderFromDraft$1(httpClient: HttpClient): CreateOrderFromDraftSignature;
|
|
19810
|
+
interface CreateOrderFromDraftSignature {
|
|
19811
|
+
/**
|
|
19812
|
+
* Create new order and control what side-effects will be applied
|
|
19813
|
+
* Commit cannot be undone or reverted.
|
|
19814
|
+
* Order-edit become closed for editing, however it's kept for reference and can be retrieved.
|
|
19815
|
+
*/
|
|
19816
|
+
(): Promise<void>;
|
|
19817
|
+
}
|
|
19755
19818
|
declare function deleteDraftOrder$1(httpClient: HttpClient): DeleteDraftOrderSignature;
|
|
19756
19819
|
interface DeleteDraftOrderSignature {
|
|
19757
19820
|
/**
|
|
@@ -19770,6 +19833,7 @@ interface QueryDraftOrdersSignature {
|
|
|
19770
19833
|
}
|
|
19771
19834
|
|
|
19772
19835
|
declare const createDraftOrder: BuildRESTFunction<typeof createDraftOrder$1> & typeof createDraftOrder$1;
|
|
19836
|
+
declare const createEmptyDraftOrder: BuildRESTFunction<typeof createEmptyDraftOrder$1> & typeof createEmptyDraftOrder$1;
|
|
19773
19837
|
declare const addLineItemsToDraftOrder: BuildRESTFunction<typeof addLineItemsToDraftOrder$1> & typeof addLineItemsToDraftOrder$1;
|
|
19774
19838
|
declare const updateLineItems: BuildRESTFunction<typeof updateLineItems$1> & typeof updateLineItems$1;
|
|
19775
19839
|
declare const setDiscounts: BuildRESTFunction<typeof setDiscounts$1> & typeof setDiscounts$1;
|
|
@@ -19778,9 +19842,14 @@ declare const deleteCustomDiscounts: BuildRESTFunction<typeof deleteCustomDiscou
|
|
|
19778
19842
|
declare const setAdditionalFees: BuildRESTFunction<typeof setAdditionalFees$1> & typeof setAdditionalFees$1;
|
|
19779
19843
|
declare const createCustomAdditionalFees: BuildRESTFunction<typeof createCustomAdditionalFees$1> & typeof createCustomAdditionalFees$1;
|
|
19780
19844
|
declare const deleteCustomAdditionalFees: BuildRESTFunction<typeof deleteCustomAdditionalFees$1> & typeof deleteCustomAdditionalFees$1;
|
|
19845
|
+
declare const setShippingInfo: BuildRESTFunction<typeof setShippingInfo$1> & typeof setShippingInfo$1;
|
|
19846
|
+
declare const setBuyerInfo: BuildRESTFunction<typeof setBuyerInfo$1> & typeof setBuyerInfo$1;
|
|
19847
|
+
declare const setRecipientInfo: BuildRESTFunction<typeof setRecipientInfo$1> & typeof setRecipientInfo$1;
|
|
19848
|
+
declare const setBillingInfo: BuildRESTFunction<typeof setBillingInfo$1> & typeof setBillingInfo$1;
|
|
19781
19849
|
declare const getDraftOrder: BuildRESTFunction<typeof getDraftOrder$1> & typeof getDraftOrder$1;
|
|
19782
19850
|
declare const getOrderDraftabilityStatus: BuildRESTFunction<typeof getOrderDraftabilityStatus$1> & typeof getOrderDraftabilityStatus$1;
|
|
19783
19851
|
declare const commitDraftOrder: BuildRESTFunction<typeof commitDraftOrder$1> & typeof commitDraftOrder$1;
|
|
19852
|
+
declare const createOrderFromDraft: BuildRESTFunction<typeof createOrderFromDraft$1> & typeof createOrderFromDraft$1;
|
|
19784
19853
|
declare const deleteDraftOrder: BuildRESTFunction<typeof deleteDraftOrder$1> & typeof deleteDraftOrder$1;
|
|
19785
19854
|
declare const queryDraftOrders: BuildRESTFunction<typeof queryDraftOrders$1> & typeof queryDraftOrders$1;
|
|
19786
19855
|
|
|
@@ -19816,8 +19885,10 @@ type context$c_CreateDraftOrderResponse = CreateDraftOrderResponse;
|
|
|
19816
19885
|
type context$c_CreateDraftOrderResponseNonNullableFields = CreateDraftOrderResponseNonNullableFields;
|
|
19817
19886
|
type context$c_CreateEmptyDraftOrderRequest = CreateEmptyDraftOrderRequest;
|
|
19818
19887
|
type context$c_CreateEmptyDraftOrderResponse = CreateEmptyDraftOrderResponse;
|
|
19888
|
+
type context$c_CreateEmptyDraftOrderResponseNonNullableFields = CreateEmptyDraftOrderResponseNonNullableFields;
|
|
19819
19889
|
type context$c_CreateOrderFromDraftRequest = CreateOrderFromDraftRequest;
|
|
19820
19890
|
type context$c_CreateOrderFromDraftResponse = CreateOrderFromDraftResponse;
|
|
19891
|
+
type context$c_CreateOrderFromDraftResponseNonNullableFields = CreateOrderFromDraftResponseNonNullableFields;
|
|
19821
19892
|
type context$c_CustomLineItem = CustomLineItem;
|
|
19822
19893
|
type context$c_DeleteCustomAdditionalFeesRequest = DeleteCustomAdditionalFeesRequest;
|
|
19823
19894
|
type context$c_DeleteCustomAdditionalFeesResponse = DeleteCustomAdditionalFeesResponse;
|
|
@@ -19867,15 +19938,19 @@ type context$c_SetAdditionalFeesResponse = SetAdditionalFeesResponse;
|
|
|
19867
19938
|
type context$c_SetAdditionalFeesResponseNonNullableFields = SetAdditionalFeesResponseNonNullableFields;
|
|
19868
19939
|
type context$c_SetBillingInfoRequest = SetBillingInfoRequest;
|
|
19869
19940
|
type context$c_SetBillingInfoResponse = SetBillingInfoResponse;
|
|
19941
|
+
type context$c_SetBillingInfoResponseNonNullableFields = SetBillingInfoResponseNonNullableFields;
|
|
19870
19942
|
type context$c_SetBuyerInfoRequest = SetBuyerInfoRequest;
|
|
19871
19943
|
type context$c_SetBuyerInfoResponse = SetBuyerInfoResponse;
|
|
19944
|
+
type context$c_SetBuyerInfoResponseNonNullableFields = SetBuyerInfoResponseNonNullableFields;
|
|
19872
19945
|
type context$c_SetDiscountsRequest = SetDiscountsRequest;
|
|
19873
19946
|
type context$c_SetDiscountsResponse = SetDiscountsResponse;
|
|
19874
19947
|
type context$c_SetDiscountsResponseNonNullableFields = SetDiscountsResponseNonNullableFields;
|
|
19875
19948
|
type context$c_SetRecipientInfoRequest = SetRecipientInfoRequest;
|
|
19876
19949
|
type context$c_SetRecipientInfoResponse = SetRecipientInfoResponse;
|
|
19950
|
+
type context$c_SetRecipientInfoResponseNonNullableFields = SetRecipientInfoResponseNonNullableFields;
|
|
19877
19951
|
type context$c_SetShippingInfoRequest = SetShippingInfoRequest;
|
|
19878
19952
|
type context$c_SetShippingInfoResponse = SetShippingInfoResponse;
|
|
19953
|
+
type context$c_SetShippingInfoResponseNonNullableFields = SetShippingInfoResponseNonNullableFields;
|
|
19879
19954
|
type context$c_ShippingChangedDetails = ShippingChangedDetails;
|
|
19880
19955
|
type context$c_ShippingDetails = ShippingDetails;
|
|
19881
19956
|
type context$c_ShippingDetailsChangeTypeOneOf = ShippingDetailsChangeTypeOneOf;
|
|
@@ -19898,6 +19973,8 @@ declare const context$c_commitDraftOrder: typeof commitDraftOrder;
|
|
|
19898
19973
|
declare const context$c_createCustomAdditionalFees: typeof createCustomAdditionalFees;
|
|
19899
19974
|
declare const context$c_createCustomDiscounts: typeof createCustomDiscounts;
|
|
19900
19975
|
declare const context$c_createDraftOrder: typeof createDraftOrder;
|
|
19976
|
+
declare const context$c_createEmptyDraftOrder: typeof createEmptyDraftOrder;
|
|
19977
|
+
declare const context$c_createOrderFromDraft: typeof createOrderFromDraft;
|
|
19901
19978
|
declare const context$c_deleteCustomAdditionalFees: typeof deleteCustomAdditionalFees;
|
|
19902
19979
|
declare const context$c_deleteCustomDiscounts: typeof deleteCustomDiscounts;
|
|
19903
19980
|
declare const context$c_deleteDraftOrder: typeof deleteDraftOrder;
|
|
@@ -19905,10 +19982,14 @@ declare const context$c_getDraftOrder: typeof getDraftOrder;
|
|
|
19905
19982
|
declare const context$c_getOrderDraftabilityStatus: typeof getOrderDraftabilityStatus;
|
|
19906
19983
|
declare const context$c_queryDraftOrders: typeof queryDraftOrders;
|
|
19907
19984
|
declare const context$c_setAdditionalFees: typeof setAdditionalFees;
|
|
19985
|
+
declare const context$c_setBillingInfo: typeof setBillingInfo;
|
|
19986
|
+
declare const context$c_setBuyerInfo: typeof setBuyerInfo;
|
|
19908
19987
|
declare const context$c_setDiscounts: typeof setDiscounts;
|
|
19988
|
+
declare const context$c_setRecipientInfo: typeof setRecipientInfo;
|
|
19989
|
+
declare const context$c_setShippingInfo: typeof setShippingInfo;
|
|
19909
19990
|
declare const context$c_updateLineItems: typeof updateLineItems;
|
|
19910
19991
|
declare namespace context$c {
|
|
19911
|
-
export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type context$c_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type context$c_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type context$c_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type context$c_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type context$c_AdditionalFeeDetails as AdditionalFeeDetails, type context$c_AdditionalFeeOption as AdditionalFeeOption, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$5 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, context$c_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type context$c_BillingChangedDetails as BillingChangedDetails, type context$c_BillingDetails as BillingDetails, type context$c_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type context$c_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type context$c_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type context$c_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$2 as CatalogReference, type context$c_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type context$c_CommitDraftOrderOptions as CommitDraftOrderOptions, type context$c_CommitDraftOrderRequest as CommitDraftOrderRequest, type context$c_CommitDraftOrderResponse as CommitDraftOrderResponse, type context$c_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type context$c_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type context$c_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type context$c_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type context$c_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type context$c_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type context$c_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type context$c_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type context$c_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type context$c_CreateDraftOrderRequest as CreateDraftOrderRequest, type context$c_CreateDraftOrderResponse as CreateDraftOrderResponse, type context$c_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type context$c_CreateEmptyDraftOrderRequest as CreateEmptyDraftOrderRequest, type context$c_CreateEmptyDraftOrderResponse as CreateEmptyDraftOrderResponse, type context$c_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type context$c_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type context$c_CustomLineItem as CustomLineItem, type context$c_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type context$c_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type context$c_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type context$c_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type context$c_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type context$c_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type context$c_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type context$c_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, type DescriptionLine$1 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$1 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$1 as DescriptionLineName, DescriptionLineType$1 as DescriptionLineType, type DescriptionLineValueOneOf$1 as DescriptionLineValueOneOf, type Details$1 as Details, type DetailsKindOneOf$1 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type context$c_DiscountDetails as DiscountDetails, type context$c_DiscountOption as DiscountOption, type context$c_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type context$c_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type context$c_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type context$c_DraftOrdersQueryResult as DraftOrdersQueryResult, context$c_EditingStatus as EditingStatus, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$1 as FieldViolation, context$c_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$c_GetDraftEditabilityStatusRequest as GetDraftEditabilityStatusRequest, type context$c_GetDraftEditabilityStatusResponse as GetDraftEditabilityStatusResponse, type context$c_GetDraftOrderRequest as GetDraftOrderRequest, type context$c_GetDraftOrderResponse as GetDraftOrderResponse, type context$c_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type context$c_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type context$c_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type context$c_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type context$c_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type context$c_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type context$c_ItemDetails as ItemDetails, type context$c_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type context$c_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, context$c_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type context$c_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, PaymentOptionType$2 as PaymentOptionType, type PaymentRefundFailed$1 as PaymentRefundFailed, type PaymentRefunded$1 as PaymentRefunded, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, context$c_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$2 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type context$c_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type context$c_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type context$c_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type context$c_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type context$c_RecipientInfoDetails as RecipientInfoDetails, type context$c_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated$1 as RefundInitiated, type RefundedAsStoreCredit$1 as RefundedAsStoreCredit, type RefundedPayment$1 as RefundedPayment, type RefundedPaymentKindOneOf$1 as RefundedPaymentKindOneOf, type RegularPaymentRefund$1 as RegularPaymentRefund, type RestoreInfo$9 as RestoreInfo, RuleType$1 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type context$c_SecuredMedia as SecuredMedia, type context$c_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type context$c_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type context$c_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type context$c_SetBillingInfoRequest as SetBillingInfoRequest, type context$c_SetBillingInfoResponse as SetBillingInfoResponse, type context$c_SetBuyerInfoRequest as SetBuyerInfoRequest, type context$c_SetBuyerInfoResponse as SetBuyerInfoResponse, type context$c_SetDiscountsRequest as SetDiscountsRequest, type context$c_SetDiscountsResponse as SetDiscountsResponse, type context$c_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type context$c_SetRecipientInfoRequest as SetRecipientInfoRequest, type context$c_SetRecipientInfoResponse as SetRecipientInfoResponse, type context$c_SetShippingInfoRequest as SetShippingInfoRequest, type context$c_SetShippingInfoResponse as SetShippingInfoResponse, type context$c_ShippingChangedDetails as ShippingChangedDetails, type context$c_ShippingDetails as ShippingDetails, type context$c_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingInformationChange$1 as ShippingInformationChange, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$4 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$1 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TaxableAddress$1 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$1 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$1 as TaxableAddressType, type TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type context$c_UpdateLineItemsOptions as UpdateLineItemsOptions, type context$c_UpdateLineItemsRequest as UpdateLineItemsRequest, type context$c_UpdateLineItemsResponse as UpdateLineItemsResponse, type context$c_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type context$c_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type context$c_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type context$c_V1BalanceSummary as V1BalanceSummary, type context$c_V1CreatedBy as V1CreatedBy, type context$c_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type context$c_V1DeliveryLogistics as V1DeliveryLogistics, type context$c_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type context$c_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type context$c_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type context$c_V1ShippingPrice as V1ShippingPrice, type ValidationError$1 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$3 as WeightUnit, context$c_addLineItemsToDraftOrder as addLineItemsToDraftOrder, context$c_commitDraftOrder as commitDraftOrder, context$c_createCustomAdditionalFees as createCustomAdditionalFees, context$c_createCustomDiscounts as createCustomDiscounts, context$c_createDraftOrder as createDraftOrder, context$c_deleteCustomAdditionalFees as deleteCustomAdditionalFees, context$c_deleteCustomDiscounts as deleteCustomDiscounts, context$c_deleteDraftOrder as deleteDraftOrder, context$c_getDraftOrder as getDraftOrder, context$c_getOrderDraftabilityStatus as getOrderDraftabilityStatus, context$c_queryDraftOrders as queryDraftOrders, context$c_setAdditionalFees as setAdditionalFees, context$c_setDiscounts as setDiscounts, context$c_updateLineItems as updateLineItems };
|
|
19992
|
+
export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type context$c_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type context$c_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type context$c_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type context$c_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type context$c_AdditionalFeeDetails as AdditionalFeeDetails, type context$c_AdditionalFeeOption as AdditionalFeeOption, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$5 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, context$c_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type context$c_BillingChangedDetails as BillingChangedDetails, type context$c_BillingDetails as BillingDetails, type context$c_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type context$c_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type context$c_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type context$c_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$2 as CatalogReference, type context$c_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type context$c_CommitDraftOrderOptions as CommitDraftOrderOptions, type context$c_CommitDraftOrderRequest as CommitDraftOrderRequest, type context$c_CommitDraftOrderResponse as CommitDraftOrderResponse, type context$c_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type context$c_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type context$c_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type context$c_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type context$c_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type context$c_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type context$c_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type context$c_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type context$c_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type context$c_CreateDraftOrderRequest as CreateDraftOrderRequest, type context$c_CreateDraftOrderResponse as CreateDraftOrderResponse, type context$c_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type context$c_CreateEmptyDraftOrderRequest as CreateEmptyDraftOrderRequest, type context$c_CreateEmptyDraftOrderResponse as CreateEmptyDraftOrderResponse, type context$c_CreateEmptyDraftOrderResponseNonNullableFields as CreateEmptyDraftOrderResponseNonNullableFields, type context$c_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type context$c_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type context$c_CreateOrderFromDraftResponseNonNullableFields as CreateOrderFromDraftResponseNonNullableFields, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type context$c_CustomLineItem as CustomLineItem, type context$c_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type context$c_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type context$c_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type context$c_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type context$c_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type context$c_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type context$c_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type context$c_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, type DescriptionLine$1 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$1 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$1 as DescriptionLineName, DescriptionLineType$1 as DescriptionLineType, type DescriptionLineValueOneOf$1 as DescriptionLineValueOneOf, type Details$1 as Details, type DetailsKindOneOf$1 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type context$c_DiscountDetails as DiscountDetails, type context$c_DiscountOption as DiscountOption, type context$c_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type context$c_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type context$c_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type context$c_DraftOrdersQueryResult as DraftOrdersQueryResult, context$c_EditingStatus as EditingStatus, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$1 as FieldViolation, context$c_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$c_GetDraftEditabilityStatusRequest as GetDraftEditabilityStatusRequest, type context$c_GetDraftEditabilityStatusResponse as GetDraftEditabilityStatusResponse, type context$c_GetDraftOrderRequest as GetDraftOrderRequest, type context$c_GetDraftOrderResponse as GetDraftOrderResponse, type context$c_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type context$c_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type context$c_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type context$c_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type context$c_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type context$c_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type context$c_ItemDetails as ItemDetails, type context$c_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type context$c_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, context$c_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type context$c_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, PaymentOptionType$2 as PaymentOptionType, type PaymentRefundFailed$1 as PaymentRefundFailed, type PaymentRefunded$1 as PaymentRefunded, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, context$c_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$2 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type context$c_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type context$c_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type context$c_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type context$c_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type context$c_RecipientInfoDetails as RecipientInfoDetails, type context$c_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated$1 as RefundInitiated, type RefundedAsStoreCredit$1 as RefundedAsStoreCredit, type RefundedPayment$1 as RefundedPayment, type RefundedPaymentKindOneOf$1 as RefundedPaymentKindOneOf, type RegularPaymentRefund$1 as RegularPaymentRefund, type RestoreInfo$9 as RestoreInfo, RuleType$1 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type context$c_SecuredMedia as SecuredMedia, type context$c_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type context$c_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type context$c_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type context$c_SetBillingInfoRequest as SetBillingInfoRequest, type context$c_SetBillingInfoResponse as SetBillingInfoResponse, type context$c_SetBillingInfoResponseNonNullableFields as SetBillingInfoResponseNonNullableFields, type context$c_SetBuyerInfoRequest as SetBuyerInfoRequest, type context$c_SetBuyerInfoResponse as SetBuyerInfoResponse, type context$c_SetBuyerInfoResponseNonNullableFields as SetBuyerInfoResponseNonNullableFields, type context$c_SetDiscountsRequest as SetDiscountsRequest, type context$c_SetDiscountsResponse as SetDiscountsResponse, type context$c_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type context$c_SetRecipientInfoRequest as SetRecipientInfoRequest, type context$c_SetRecipientInfoResponse as SetRecipientInfoResponse, type context$c_SetRecipientInfoResponseNonNullableFields as SetRecipientInfoResponseNonNullableFields, type context$c_SetShippingInfoRequest as SetShippingInfoRequest, type context$c_SetShippingInfoResponse as SetShippingInfoResponse, type context$c_SetShippingInfoResponseNonNullableFields as SetShippingInfoResponseNonNullableFields, type context$c_ShippingChangedDetails as ShippingChangedDetails, type context$c_ShippingDetails as ShippingDetails, type context$c_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingInformationChange$1 as ShippingInformationChange, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$4 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$1 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TaxableAddress$1 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$1 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$1 as TaxableAddressType, type TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type context$c_UpdateLineItemsOptions as UpdateLineItemsOptions, type context$c_UpdateLineItemsRequest as UpdateLineItemsRequest, type context$c_UpdateLineItemsResponse as UpdateLineItemsResponse, type context$c_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type context$c_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type context$c_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type context$c_V1BalanceSummary as V1BalanceSummary, type context$c_V1CreatedBy as V1CreatedBy, type context$c_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type context$c_V1DeliveryLogistics as V1DeliveryLogistics, type context$c_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type context$c_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type context$c_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type context$c_V1ShippingPrice as V1ShippingPrice, type ValidationError$1 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$3 as WeightUnit, context$c_addLineItemsToDraftOrder as addLineItemsToDraftOrder, context$c_commitDraftOrder as commitDraftOrder, context$c_createCustomAdditionalFees as createCustomAdditionalFees, context$c_createCustomDiscounts as createCustomDiscounts, context$c_createDraftOrder as createDraftOrder, context$c_createEmptyDraftOrder as createEmptyDraftOrder, context$c_createOrderFromDraft as createOrderFromDraft, context$c_deleteCustomAdditionalFees as deleteCustomAdditionalFees, context$c_deleteCustomDiscounts as deleteCustomDiscounts, context$c_deleteDraftOrder as deleteDraftOrder, context$c_getDraftOrder as getDraftOrder, context$c_getOrderDraftabilityStatus as getOrderDraftabilityStatus, context$c_queryDraftOrders as queryDraftOrders, context$c_setAdditionalFees as setAdditionalFees, context$c_setBillingInfo as setBillingInfo, context$c_setBuyerInfo as setBuyerInfo, context$c_setDiscounts as setDiscounts, context$c_setRecipientInfo as setRecipientInfo, context$c_setShippingInfo as setShippingInfo, context$c_updateLineItems as updateLineItems };
|
|
19912
19993
|
}
|
|
19913
19994
|
|
|
19914
19995
|
interface OrderWithFulfillments {
|
|
@@ -19291,6 +19291,9 @@ interface CalculatedDraftOrderNonNullableFields {
|
|
|
19291
19291
|
interface CreateDraftOrderResponseNonNullableFields {
|
|
19292
19292
|
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19293
19293
|
}
|
|
19294
|
+
interface CreateEmptyDraftOrderResponseNonNullableFields {
|
|
19295
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19296
|
+
}
|
|
19294
19297
|
interface AddLineItemsToDraftOrderResponseNonNullableFields {
|
|
19295
19298
|
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19296
19299
|
}
|
|
@@ -19315,6 +19318,18 @@ interface CreateCustomAdditionalFeesResponseNonNullableFields {
|
|
|
19315
19318
|
interface DeleteCustomAdditionalFeesResponseNonNullableFields {
|
|
19316
19319
|
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19317
19320
|
}
|
|
19321
|
+
interface SetShippingInfoResponseNonNullableFields {
|
|
19322
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19323
|
+
}
|
|
19324
|
+
interface SetBuyerInfoResponseNonNullableFields {
|
|
19325
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19326
|
+
}
|
|
19327
|
+
interface SetRecipientInfoResponseNonNullableFields {
|
|
19328
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19329
|
+
}
|
|
19330
|
+
interface SetBillingInfoResponseNonNullableFields {
|
|
19331
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19332
|
+
}
|
|
19318
19333
|
interface GetDraftOrderResponseNonNullableFields {
|
|
19319
19334
|
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
19320
19335
|
}
|
|
@@ -19527,6 +19542,10 @@ interface CommitDraftOrderResponseNonNullableFields {
|
|
|
19527
19542
|
committedDraftOrder?: DraftOrderNonNullableFields;
|
|
19528
19543
|
orderAfterCommit?: OrderNonNullableFields$1;
|
|
19529
19544
|
}
|
|
19545
|
+
interface CreateOrderFromDraftResponseNonNullableFields {
|
|
19546
|
+
committedDraftOrder?: DraftOrderNonNullableFields;
|
|
19547
|
+
createdOrder?: OrderNonNullableFields$1;
|
|
19548
|
+
}
|
|
19530
19549
|
interface QueryDraftOrdersResponseNonNullableFields {
|
|
19531
19550
|
draftOrders: DraftOrderNonNullableFields[];
|
|
19532
19551
|
}
|
|
@@ -19643,6 +19662,13 @@ interface CreateDraftOrderSignature {
|
|
|
19643
19662
|
*/
|
|
19644
19663
|
(orderId: string | null): Promise<CreateDraftOrderResponse & CreateDraftOrderResponseNonNullableFields>;
|
|
19645
19664
|
}
|
|
19665
|
+
declare function createEmptyDraftOrder$1(httpClient: HttpClient): CreateEmptyDraftOrderSignature;
|
|
19666
|
+
interface CreateEmptyDraftOrderSignature {
|
|
19667
|
+
/**
|
|
19668
|
+
* Creates an empty draft order.
|
|
19669
|
+
*/
|
|
19670
|
+
(): Promise<CreateEmptyDraftOrderResponse & CreateEmptyDraftOrderResponseNonNullableFields>;
|
|
19671
|
+
}
|
|
19646
19672
|
declare function addLineItemsToDraftOrder$1(httpClient: HttpClient): AddLineItemsToDraftOrderSignature;
|
|
19647
19673
|
interface AddLineItemsToDraftOrderSignature {
|
|
19648
19674
|
/**
|
|
@@ -19722,6 +19748,34 @@ interface DeleteCustomAdditionalFeesSignature {
|
|
|
19722
19748
|
*/
|
|
19723
19749
|
(draftOrderId: string, customAdditionalFees: string[]): Promise<DeleteCustomAdditionalFeesResponse & DeleteCustomAdditionalFeesResponseNonNullableFields>;
|
|
19724
19750
|
}
|
|
19751
|
+
declare function setShippingInfo$1(httpClient: HttpClient): SetShippingInfoSignature;
|
|
19752
|
+
interface SetShippingInfoSignature {
|
|
19753
|
+
/**
|
|
19754
|
+
* Sets shipping info to a draft order.
|
|
19755
|
+
*/
|
|
19756
|
+
(): Promise<void>;
|
|
19757
|
+
}
|
|
19758
|
+
declare function setBuyerInfo$1(httpClient: HttpClient): SetBuyerInfoSignature;
|
|
19759
|
+
interface SetBuyerInfoSignature {
|
|
19760
|
+
/**
|
|
19761
|
+
* Sets buyer info to a draft order.
|
|
19762
|
+
*/
|
|
19763
|
+
(): Promise<void>;
|
|
19764
|
+
}
|
|
19765
|
+
declare function setRecipientInfo$1(httpClient: HttpClient): SetRecipientInfoSignature;
|
|
19766
|
+
interface SetRecipientInfoSignature {
|
|
19767
|
+
/**
|
|
19768
|
+
* Sets recipient info to a draft order.
|
|
19769
|
+
*/
|
|
19770
|
+
(): Promise<void>;
|
|
19771
|
+
}
|
|
19772
|
+
declare function setBillingInfo$1(httpClient: HttpClient): SetBillingInfoSignature;
|
|
19773
|
+
interface SetBillingInfoSignature {
|
|
19774
|
+
/**
|
|
19775
|
+
* Sets billing info to a draft order.
|
|
19776
|
+
*/
|
|
19777
|
+
(): Promise<void>;
|
|
19778
|
+
}
|
|
19725
19779
|
declare function getDraftOrder$1(httpClient: HttpClient): GetDraftOrderSignature;
|
|
19726
19780
|
interface GetDraftOrderSignature {
|
|
19727
19781
|
/**
|
|
@@ -19752,6 +19806,15 @@ interface CommitDraftOrderSignature {
|
|
|
19752
19806
|
*/
|
|
19753
19807
|
(draftOrderId: string, options?: CommitDraftOrderOptions | undefined): Promise<CommitDraftOrderResponse & CommitDraftOrderResponseNonNullableFields>;
|
|
19754
19808
|
}
|
|
19809
|
+
declare function createOrderFromDraft$1(httpClient: HttpClient): CreateOrderFromDraftSignature;
|
|
19810
|
+
interface CreateOrderFromDraftSignature {
|
|
19811
|
+
/**
|
|
19812
|
+
* Create new order and control what side-effects will be applied
|
|
19813
|
+
* Commit cannot be undone or reverted.
|
|
19814
|
+
* Order-edit become closed for editing, however it's kept for reference and can be retrieved.
|
|
19815
|
+
*/
|
|
19816
|
+
(): Promise<void>;
|
|
19817
|
+
}
|
|
19755
19818
|
declare function deleteDraftOrder$1(httpClient: HttpClient): DeleteDraftOrderSignature;
|
|
19756
19819
|
interface DeleteDraftOrderSignature {
|
|
19757
19820
|
/**
|
|
@@ -19770,6 +19833,7 @@ interface QueryDraftOrdersSignature {
|
|
|
19770
19833
|
}
|
|
19771
19834
|
|
|
19772
19835
|
declare const createDraftOrder: BuildRESTFunction<typeof createDraftOrder$1> & typeof createDraftOrder$1;
|
|
19836
|
+
declare const createEmptyDraftOrder: BuildRESTFunction<typeof createEmptyDraftOrder$1> & typeof createEmptyDraftOrder$1;
|
|
19773
19837
|
declare const addLineItemsToDraftOrder: BuildRESTFunction<typeof addLineItemsToDraftOrder$1> & typeof addLineItemsToDraftOrder$1;
|
|
19774
19838
|
declare const updateLineItems: BuildRESTFunction<typeof updateLineItems$1> & typeof updateLineItems$1;
|
|
19775
19839
|
declare const setDiscounts: BuildRESTFunction<typeof setDiscounts$1> & typeof setDiscounts$1;
|
|
@@ -19778,9 +19842,14 @@ declare const deleteCustomDiscounts: BuildRESTFunction<typeof deleteCustomDiscou
|
|
|
19778
19842
|
declare const setAdditionalFees: BuildRESTFunction<typeof setAdditionalFees$1> & typeof setAdditionalFees$1;
|
|
19779
19843
|
declare const createCustomAdditionalFees: BuildRESTFunction<typeof createCustomAdditionalFees$1> & typeof createCustomAdditionalFees$1;
|
|
19780
19844
|
declare const deleteCustomAdditionalFees: BuildRESTFunction<typeof deleteCustomAdditionalFees$1> & typeof deleteCustomAdditionalFees$1;
|
|
19845
|
+
declare const setShippingInfo: BuildRESTFunction<typeof setShippingInfo$1> & typeof setShippingInfo$1;
|
|
19846
|
+
declare const setBuyerInfo: BuildRESTFunction<typeof setBuyerInfo$1> & typeof setBuyerInfo$1;
|
|
19847
|
+
declare const setRecipientInfo: BuildRESTFunction<typeof setRecipientInfo$1> & typeof setRecipientInfo$1;
|
|
19848
|
+
declare const setBillingInfo: BuildRESTFunction<typeof setBillingInfo$1> & typeof setBillingInfo$1;
|
|
19781
19849
|
declare const getDraftOrder: BuildRESTFunction<typeof getDraftOrder$1> & typeof getDraftOrder$1;
|
|
19782
19850
|
declare const getOrderDraftabilityStatus: BuildRESTFunction<typeof getOrderDraftabilityStatus$1> & typeof getOrderDraftabilityStatus$1;
|
|
19783
19851
|
declare const commitDraftOrder: BuildRESTFunction<typeof commitDraftOrder$1> & typeof commitDraftOrder$1;
|
|
19852
|
+
declare const createOrderFromDraft: BuildRESTFunction<typeof createOrderFromDraft$1> & typeof createOrderFromDraft$1;
|
|
19784
19853
|
declare const deleteDraftOrder: BuildRESTFunction<typeof deleteDraftOrder$1> & typeof deleteDraftOrder$1;
|
|
19785
19854
|
declare const queryDraftOrders: BuildRESTFunction<typeof queryDraftOrders$1> & typeof queryDraftOrders$1;
|
|
19786
19855
|
|
|
@@ -19816,8 +19885,10 @@ type index_d$c_CreateDraftOrderResponse = CreateDraftOrderResponse;
|
|
|
19816
19885
|
type index_d$c_CreateDraftOrderResponseNonNullableFields = CreateDraftOrderResponseNonNullableFields;
|
|
19817
19886
|
type index_d$c_CreateEmptyDraftOrderRequest = CreateEmptyDraftOrderRequest;
|
|
19818
19887
|
type index_d$c_CreateEmptyDraftOrderResponse = CreateEmptyDraftOrderResponse;
|
|
19888
|
+
type index_d$c_CreateEmptyDraftOrderResponseNonNullableFields = CreateEmptyDraftOrderResponseNonNullableFields;
|
|
19819
19889
|
type index_d$c_CreateOrderFromDraftRequest = CreateOrderFromDraftRequest;
|
|
19820
19890
|
type index_d$c_CreateOrderFromDraftResponse = CreateOrderFromDraftResponse;
|
|
19891
|
+
type index_d$c_CreateOrderFromDraftResponseNonNullableFields = CreateOrderFromDraftResponseNonNullableFields;
|
|
19821
19892
|
type index_d$c_CustomLineItem = CustomLineItem;
|
|
19822
19893
|
type index_d$c_DeleteCustomAdditionalFeesRequest = DeleteCustomAdditionalFeesRequest;
|
|
19823
19894
|
type index_d$c_DeleteCustomAdditionalFeesResponse = DeleteCustomAdditionalFeesResponse;
|
|
@@ -19867,15 +19938,19 @@ type index_d$c_SetAdditionalFeesResponse = SetAdditionalFeesResponse;
|
|
|
19867
19938
|
type index_d$c_SetAdditionalFeesResponseNonNullableFields = SetAdditionalFeesResponseNonNullableFields;
|
|
19868
19939
|
type index_d$c_SetBillingInfoRequest = SetBillingInfoRequest;
|
|
19869
19940
|
type index_d$c_SetBillingInfoResponse = SetBillingInfoResponse;
|
|
19941
|
+
type index_d$c_SetBillingInfoResponseNonNullableFields = SetBillingInfoResponseNonNullableFields;
|
|
19870
19942
|
type index_d$c_SetBuyerInfoRequest = SetBuyerInfoRequest;
|
|
19871
19943
|
type index_d$c_SetBuyerInfoResponse = SetBuyerInfoResponse;
|
|
19944
|
+
type index_d$c_SetBuyerInfoResponseNonNullableFields = SetBuyerInfoResponseNonNullableFields;
|
|
19872
19945
|
type index_d$c_SetDiscountsRequest = SetDiscountsRequest;
|
|
19873
19946
|
type index_d$c_SetDiscountsResponse = SetDiscountsResponse;
|
|
19874
19947
|
type index_d$c_SetDiscountsResponseNonNullableFields = SetDiscountsResponseNonNullableFields;
|
|
19875
19948
|
type index_d$c_SetRecipientInfoRequest = SetRecipientInfoRequest;
|
|
19876
19949
|
type index_d$c_SetRecipientInfoResponse = SetRecipientInfoResponse;
|
|
19950
|
+
type index_d$c_SetRecipientInfoResponseNonNullableFields = SetRecipientInfoResponseNonNullableFields;
|
|
19877
19951
|
type index_d$c_SetShippingInfoRequest = SetShippingInfoRequest;
|
|
19878
19952
|
type index_d$c_SetShippingInfoResponse = SetShippingInfoResponse;
|
|
19953
|
+
type index_d$c_SetShippingInfoResponseNonNullableFields = SetShippingInfoResponseNonNullableFields;
|
|
19879
19954
|
type index_d$c_ShippingChangedDetails = ShippingChangedDetails;
|
|
19880
19955
|
type index_d$c_ShippingDetails = ShippingDetails;
|
|
19881
19956
|
type index_d$c_ShippingDetailsChangeTypeOneOf = ShippingDetailsChangeTypeOneOf;
|
|
@@ -19898,6 +19973,8 @@ declare const index_d$c_commitDraftOrder: typeof commitDraftOrder;
|
|
|
19898
19973
|
declare const index_d$c_createCustomAdditionalFees: typeof createCustomAdditionalFees;
|
|
19899
19974
|
declare const index_d$c_createCustomDiscounts: typeof createCustomDiscounts;
|
|
19900
19975
|
declare const index_d$c_createDraftOrder: typeof createDraftOrder;
|
|
19976
|
+
declare const index_d$c_createEmptyDraftOrder: typeof createEmptyDraftOrder;
|
|
19977
|
+
declare const index_d$c_createOrderFromDraft: typeof createOrderFromDraft;
|
|
19901
19978
|
declare const index_d$c_deleteCustomAdditionalFees: typeof deleteCustomAdditionalFees;
|
|
19902
19979
|
declare const index_d$c_deleteCustomDiscounts: typeof deleteCustomDiscounts;
|
|
19903
19980
|
declare const index_d$c_deleteDraftOrder: typeof deleteDraftOrder;
|
|
@@ -19905,10 +19982,14 @@ declare const index_d$c_getDraftOrder: typeof getDraftOrder;
|
|
|
19905
19982
|
declare const index_d$c_getOrderDraftabilityStatus: typeof getOrderDraftabilityStatus;
|
|
19906
19983
|
declare const index_d$c_queryDraftOrders: typeof queryDraftOrders;
|
|
19907
19984
|
declare const index_d$c_setAdditionalFees: typeof setAdditionalFees;
|
|
19985
|
+
declare const index_d$c_setBillingInfo: typeof setBillingInfo;
|
|
19986
|
+
declare const index_d$c_setBuyerInfo: typeof setBuyerInfo;
|
|
19908
19987
|
declare const index_d$c_setDiscounts: typeof setDiscounts;
|
|
19988
|
+
declare const index_d$c_setRecipientInfo: typeof setRecipientInfo;
|
|
19989
|
+
declare const index_d$c_setShippingInfo: typeof setShippingInfo;
|
|
19909
19990
|
declare const index_d$c_updateLineItems: typeof updateLineItems;
|
|
19910
19991
|
declare namespace index_d$c {
|
|
19911
|
-
export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type index_d$c_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type index_d$c_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type index_d$c_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type index_d$c_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type index_d$c_AdditionalFeeDetails as AdditionalFeeDetails, type index_d$c_AdditionalFeeOption as AdditionalFeeOption, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$5 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, index_d$c_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type index_d$c_BillingChangedDetails as BillingChangedDetails, type index_d$c_BillingDetails as BillingDetails, type index_d$c_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type index_d$c_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type index_d$c_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type index_d$c_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$2 as CatalogReference, type index_d$c_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type index_d$c_CommitDraftOrderOptions as CommitDraftOrderOptions, type index_d$c_CommitDraftOrderRequest as CommitDraftOrderRequest, type index_d$c_CommitDraftOrderResponse as CommitDraftOrderResponse, type index_d$c_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type index_d$c_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type index_d$c_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type index_d$c_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type index_d$c_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type index_d$c_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type index_d$c_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type index_d$c_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type index_d$c_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type index_d$c_CreateDraftOrderRequest as CreateDraftOrderRequest, type index_d$c_CreateDraftOrderResponse as CreateDraftOrderResponse, type index_d$c_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type index_d$c_CreateEmptyDraftOrderRequest as CreateEmptyDraftOrderRequest, type index_d$c_CreateEmptyDraftOrderResponse as CreateEmptyDraftOrderResponse, type index_d$c_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type index_d$c_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type index_d$c_CustomLineItem as CustomLineItem, type index_d$c_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type index_d$c_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type index_d$c_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type index_d$c_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type index_d$c_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type index_d$c_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type index_d$c_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type index_d$c_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, type DescriptionLine$1 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$1 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$1 as DescriptionLineName, DescriptionLineType$1 as DescriptionLineType, type DescriptionLineValueOneOf$1 as DescriptionLineValueOneOf, type Details$1 as Details, type DetailsKindOneOf$1 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type index_d$c_DiscountDetails as DiscountDetails, type index_d$c_DiscountOption as DiscountOption, type index_d$c_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type index_d$c_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type index_d$c_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type index_d$c_DraftOrdersQueryResult as DraftOrdersQueryResult, index_d$c_EditingStatus as EditingStatus, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$1 as FieldViolation, index_d$c_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$c_GetDraftEditabilityStatusRequest as GetDraftEditabilityStatusRequest, type index_d$c_GetDraftEditabilityStatusResponse as GetDraftEditabilityStatusResponse, type index_d$c_GetDraftOrderRequest as GetDraftOrderRequest, type index_d$c_GetDraftOrderResponse as GetDraftOrderResponse, type index_d$c_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type index_d$c_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type index_d$c_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type index_d$c_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type index_d$c_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type index_d$c_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type index_d$c_ItemDetails as ItemDetails, type index_d$c_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type index_d$c_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, index_d$c_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type index_d$c_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, PaymentOptionType$2 as PaymentOptionType, type PaymentRefundFailed$1 as PaymentRefundFailed, type PaymentRefunded$1 as PaymentRefunded, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, index_d$c_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$2 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type index_d$c_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type index_d$c_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type index_d$c_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type index_d$c_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type index_d$c_RecipientInfoDetails as RecipientInfoDetails, type index_d$c_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated$1 as RefundInitiated, type RefundedAsStoreCredit$1 as RefundedAsStoreCredit, type RefundedPayment$1 as RefundedPayment, type RefundedPaymentKindOneOf$1 as RefundedPaymentKindOneOf, type RegularPaymentRefund$1 as RegularPaymentRefund, type RestoreInfo$9 as RestoreInfo, RuleType$1 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type index_d$c_SecuredMedia as SecuredMedia, type index_d$c_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type index_d$c_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type index_d$c_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type index_d$c_SetBillingInfoRequest as SetBillingInfoRequest, type index_d$c_SetBillingInfoResponse as SetBillingInfoResponse, type index_d$c_SetBuyerInfoRequest as SetBuyerInfoRequest, type index_d$c_SetBuyerInfoResponse as SetBuyerInfoResponse, type index_d$c_SetDiscountsRequest as SetDiscountsRequest, type index_d$c_SetDiscountsResponse as SetDiscountsResponse, type index_d$c_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type index_d$c_SetRecipientInfoRequest as SetRecipientInfoRequest, type index_d$c_SetRecipientInfoResponse as SetRecipientInfoResponse, type index_d$c_SetShippingInfoRequest as SetShippingInfoRequest, type index_d$c_SetShippingInfoResponse as SetShippingInfoResponse, type index_d$c_ShippingChangedDetails as ShippingChangedDetails, type index_d$c_ShippingDetails as ShippingDetails, type index_d$c_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingInformationChange$1 as ShippingInformationChange, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$4 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$1 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TaxableAddress$1 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$1 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$1 as TaxableAddressType, type TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type index_d$c_UpdateLineItemsOptions as UpdateLineItemsOptions, type index_d$c_UpdateLineItemsRequest as UpdateLineItemsRequest, type index_d$c_UpdateLineItemsResponse as UpdateLineItemsResponse, type index_d$c_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type index_d$c_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type index_d$c_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type index_d$c_V1BalanceSummary as V1BalanceSummary, type index_d$c_V1CreatedBy as V1CreatedBy, type index_d$c_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type index_d$c_V1DeliveryLogistics as V1DeliveryLogistics, type index_d$c_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type index_d$c_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type index_d$c_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type index_d$c_V1ShippingPrice as V1ShippingPrice, type ValidationError$1 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$3 as WeightUnit, index_d$c_addLineItemsToDraftOrder as addLineItemsToDraftOrder, index_d$c_commitDraftOrder as commitDraftOrder, index_d$c_createCustomAdditionalFees as createCustomAdditionalFees, index_d$c_createCustomDiscounts as createCustomDiscounts, index_d$c_createDraftOrder as createDraftOrder, index_d$c_deleteCustomAdditionalFees as deleteCustomAdditionalFees, index_d$c_deleteCustomDiscounts as deleteCustomDiscounts, index_d$c_deleteDraftOrder as deleteDraftOrder, index_d$c_getDraftOrder as getDraftOrder, index_d$c_getOrderDraftabilityStatus as getOrderDraftabilityStatus, index_d$c_queryDraftOrders as queryDraftOrders, index_d$c_setAdditionalFees as setAdditionalFees, index_d$c_setDiscounts as setDiscounts, index_d$c_updateLineItems as updateLineItems };
|
|
19992
|
+
export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type index_d$c_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type index_d$c_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type index_d$c_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type index_d$c_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type index_d$c_AdditionalFeeDetails as AdditionalFeeDetails, type index_d$c_AdditionalFeeOption as AdditionalFeeOption, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApplicationError$5 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, index_d$c_AppliedDiscountDiscountType as AppliedDiscountDiscountType, AttributionSource$1 as AttributionSource, type AuthorizedPaymentCaptured$1 as AuthorizedPaymentCaptured, type AuthorizedPaymentCreated$1 as AuthorizedPaymentCreated, type AuthorizedPaymentVoided$1 as AuthorizedPaymentVoided, type Balance$1 as Balance, type BalanceSummary$1 as BalanceSummary, type index_d$c_BillingChangedDetails as BillingChangedDetails, type index_d$c_BillingDetails as BillingDetails, type index_d$c_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type index_d$c_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type index_d$c_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type index_d$c_CalculatedDraftOrder as CalculatedDraftOrder, type CalculationErrors$1 as CalculationErrors, type CalculationErrorsShippingCalculationErrorOneOf$1 as CalculationErrorsShippingCalculationErrorOneOf, type CarrierError$1 as CarrierError, type CarrierErrors$1 as CarrierErrors, type CatalogReference$2 as CatalogReference, type index_d$c_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type index_d$c_CommitDraftOrderOptions as CommitDraftOrderOptions, type index_d$c_CommitDraftOrderRequest as CommitDraftOrderRequest, type index_d$c_CommitDraftOrderResponse as CommitDraftOrderResponse, type index_d$c_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type index_d$c_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type index_d$c_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type index_d$c_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type index_d$c_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type index_d$c_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type index_d$c_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type index_d$c_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type index_d$c_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type index_d$c_CreateDraftOrderRequest as CreateDraftOrderRequest, type index_d$c_CreateDraftOrderResponse as CreateDraftOrderResponse, type index_d$c_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type index_d$c_CreateEmptyDraftOrderRequest as CreateEmptyDraftOrderRequest, type index_d$c_CreateEmptyDraftOrderResponse as CreateEmptyDraftOrderResponse, type index_d$c_CreateEmptyDraftOrderResponseNonNullableFields as CreateEmptyDraftOrderResponseNonNullableFields, type index_d$c_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type index_d$c_CreateOrderFromDraftResponse as CreateOrderFromDraftResponse, type index_d$c_CreateOrderFromDraftResponseNonNullableFields as CreateOrderFromDraftResponseNonNullableFields, type CreatedBy$1 as CreatedBy, type CreatedByStringOneOf$1 as CreatedByStringOneOf, type CursorPaging$6 as CursorPaging, type CursorPagingMetadata$6 as CursorPagingMetadata, type CursorQuery$4 as CursorQuery, type CursorQueryPagingMethodOneOf$4 as CursorQueryPagingMethodOneOf, type Cursors$6 as Cursors, type CustomActivity$1 as CustomActivity, type CustomField$2 as CustomField, type index_d$c_CustomLineItem as CustomLineItem, type index_d$c_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type index_d$c_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type index_d$c_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type index_d$c_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type index_d$c_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type index_d$c_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type index_d$c_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type index_d$c_DeleteDraftOrderResponse as DeleteDraftOrderResponse, type DeliveryLogistics$2 as DeliveryLogistics, type DeliveryTimeSlot$2 as DeliveryTimeSlot, type DescriptionLine$1 as DescriptionLine, type DescriptionLineDescriptionLineValueOneOf$1 as DescriptionLineDescriptionLineValueOneOf, type DescriptionLineName$1 as DescriptionLineName, DescriptionLineType$1 as DescriptionLineType, type DescriptionLineValueOneOf$1 as DescriptionLineValueOneOf, type Details$1 as Details, type DetailsKindOneOf$1 as DetailsKindOneOf, type DigitalFile$2 as DigitalFile, type index_d$c_DiscountDetails as DiscountDetails, type index_d$c_DiscountOption as DiscountOption, type index_d$c_DiscountOptionDiscountAmountOneOf as DiscountOptionDiscountAmountOneOf, DiscountReason$1 as DiscountReason, type DiscountRule$2 as DiscountRule, type DiscountRuleName$2 as DiscountRuleName, DiscountType$2 as DiscountType, type DomainEvent$9 as DomainEvent, type DomainEventBodyOneOf$9 as DomainEventBodyOneOf, type index_d$c_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type index_d$c_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type index_d$c_DraftOrdersQueryResult as DraftOrdersQueryResult, index_d$c_EditingStatus as EditingStatus, type EntityCreatedEvent$9 as EntityCreatedEvent, type EntityDeletedEvent$9 as EntityDeletedEvent, type EntityUpdatedEvent$9 as EntityUpdatedEvent, type ExtendedFields$4 as ExtendedFields, type FieldViolation$1 as FieldViolation, index_d$c_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$c_GetDraftEditabilityStatusRequest as GetDraftEditabilityStatusRequest, type index_d$c_GetDraftEditabilityStatusResponse as GetDraftEditabilityStatusResponse, type index_d$c_GetDraftOrderRequest as GetDraftOrderRequest, type index_d$c_GetDraftOrderResponse as GetDraftOrderResponse, type index_d$c_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type index_d$c_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type index_d$c_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type index_d$c_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type index_d$c_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type index_d$c_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type index_d$c_ItemDetails as ItemDetails, type index_d$c_ItemDetailsChangeTypeOneOf as ItemDetailsChangeTypeOneOf, type ItemTaxFullDetails$2 as ItemTaxFullDetails, type ItemType$2 as ItemType, ItemTypeItemType$2 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$2 as ItemTypeItemTypeDataOneOf, JurisdictionType$2 as JurisdictionType, type LineItemAmount$1 as LineItemAmount, type index_d$c_LineItemChangeDetails as LineItemChangeDetails, type LineItemChanges$1 as LineItemChanges, type LineItemDiscount$2 as LineItemDiscount, type LineItemExchangeData$1 as LineItemExchangeData, type LineItemPriceChange$1 as LineItemPriceChange, type LineItemQuantityChange$1 as LineItemQuantityChange, LineItemQuantityChangeType$1 as LineItemQuantityChangeType, type LineItemTaxBreakdown$1 as LineItemTaxBreakdown, type LineItemTaxInfo$1 as LineItemTaxInfo, type LocationAndQuantity$1 as LocationAndQuantity, type ManagedAdditionalFee$1 as ManagedAdditionalFee, type ManagedDiscount$1 as ManagedDiscount, type ManagedLineItem$1 as ManagedLineItem, type MerchantComment$1 as MerchantComment, type MerchantDiscount$2 as MerchantDiscount, type MerchantDiscountMerchantDiscountReasonOneOf$1 as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$9 as MessageEnvelope, type NewExchangeOrderCreated$1 as NewExchangeOrderCreated, index_d$c_NonDraftableReason as NonDraftableReason, type Order$2 as Order, type OrderChange$1 as OrderChange, type OrderChangeValueOneOf$1 as OrderChangeValueOneOf, type OrderCreateNotifications$1 as OrderCreateNotifications, type index_d$c_OrderCreateSettings as OrderCreateSettings, type OrderCreatedFromExchange$1 as OrderCreatedFromExchange, type OrderLineItem$1 as OrderLineItem, type OrderRefunded$2 as OrderRefunded, OrderStatus$1 as OrderStatus, type OrderTaxBreakdown$1 as OrderTaxBreakdown, type OrderTaxInfo$1 as OrderTaxInfo, PaymentOptionType$2 as PaymentOptionType, type PaymentRefundFailed$1 as PaymentRefundFailed, type PaymentRefunded$1 as PaymentRefunded, PaymentStatus$2 as PaymentStatus, type PhysicalProperties$2 as PhysicalProperties, type PickupAddress$2 as PickupAddress, type PickupDetails$3 as PickupDetails, index_d$c_PickupDetailsPickupMethod as PickupDetailsPickupMethod, PickupMethod$2 as PickupMethod, type PlainTextValue$1 as PlainTextValue, type Price$3 as Price, type PriceDescription$1 as PriceDescription, type PriceSummary$2 as PriceSummary, type ProductName$1 as ProductName, type index_d$c_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type index_d$c_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type index_d$c_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type index_d$c_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type index_d$c_RecipientInfoDetails as RecipientInfoDetails, type index_d$c_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated$1 as RefundInitiated, type RefundedAsStoreCredit$1 as RefundedAsStoreCredit, type RefundedPayment$1 as RefundedPayment, type RefundedPaymentKindOneOf$1 as RefundedPaymentKindOneOf, type RegularPaymentRefund$1 as RegularPaymentRefund, type RestoreInfo$9 as RestoreInfo, RuleType$1 as RuleType, type SavedPaymentMethod$1 as SavedPaymentMethod, type index_d$c_SecuredMedia as SecuredMedia, type index_d$c_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type index_d$c_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type index_d$c_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type index_d$c_SetBillingInfoRequest as SetBillingInfoRequest, type index_d$c_SetBillingInfoResponse as SetBillingInfoResponse, type index_d$c_SetBillingInfoResponseNonNullableFields as SetBillingInfoResponseNonNullableFields, type index_d$c_SetBuyerInfoRequest as SetBuyerInfoRequest, type index_d$c_SetBuyerInfoResponse as SetBuyerInfoResponse, type index_d$c_SetBuyerInfoResponseNonNullableFields as SetBuyerInfoResponseNonNullableFields, type index_d$c_SetDiscountsRequest as SetDiscountsRequest, type index_d$c_SetDiscountsResponse as SetDiscountsResponse, type index_d$c_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type index_d$c_SetRecipientInfoRequest as SetRecipientInfoRequest, type index_d$c_SetRecipientInfoResponse as SetRecipientInfoResponse, type index_d$c_SetRecipientInfoResponseNonNullableFields as SetRecipientInfoResponseNonNullableFields, type index_d$c_SetShippingInfoRequest as SetShippingInfoRequest, type index_d$c_SetShippingInfoResponse as SetShippingInfoResponse, type index_d$c_SetShippingInfoResponseNonNullableFields as SetShippingInfoResponseNonNullableFields, type index_d$c_ShippingChangedDetails as ShippingChangedDetails, type index_d$c_ShippingDetails as ShippingDetails, type index_d$c_ShippingDetailsChangeTypeOneOf as ShippingDetailsChangeTypeOneOf, type ShippingInformation$2 as ShippingInformation, type ShippingInformationChange$1 as ShippingInformationChange, type ShippingOption$2 as ShippingOption, type ShippingPrice$2 as ShippingPrice, type ShippingRegion$2 as ShippingRegion, SortOrder$6 as SortOrder, type Sorting$6 as Sorting, SourceType$1 as SourceType, type StreetAddress$4 as StreetAddress, SubscriptionFrequency$3 as SubscriptionFrequency, type SubscriptionInfo$2 as SubscriptionInfo, type SubscriptionSettings$3 as SubscriptionSettings, type SystemError$1 as SystemError, type TagList$1 as TagList, type Tags$1 as Tags, type TaxDetails$1 as TaxDetails, type TaxSummary$2 as TaxSummary, type TaxableAddress$1 as TaxableAddress, type TaxableAddressTaxableAddressDataOneOf$1 as TaxableAddressTaxableAddressDataOneOf, TaxableAddressType$1 as TaxableAddressType, type TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type index_d$c_UpdateLineItemsOptions as UpdateLineItemsOptions, type index_d$c_UpdateLineItemsRequest as UpdateLineItemsRequest, type index_d$c_UpdateLineItemsResponse as UpdateLineItemsResponse, type index_d$c_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type index_d$c_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type index_d$c_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type index_d$c_V1BalanceSummary as V1BalanceSummary, type index_d$c_V1CreatedBy as V1CreatedBy, type index_d$c_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type index_d$c_V1DeliveryLogistics as V1DeliveryLogistics, type index_d$c_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type index_d$c_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type index_d$c_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type index_d$c_V1ShippingPrice as V1ShippingPrice, type ValidationError$1 as ValidationError, type VatId$2 as VatId, VatType$2 as VatType, WebhookIdentityType$9 as WebhookIdentityType, WeightUnit$3 as WeightUnit, index_d$c_addLineItemsToDraftOrder as addLineItemsToDraftOrder, index_d$c_commitDraftOrder as commitDraftOrder, index_d$c_createCustomAdditionalFees as createCustomAdditionalFees, index_d$c_createCustomDiscounts as createCustomDiscounts, index_d$c_createDraftOrder as createDraftOrder, index_d$c_createEmptyDraftOrder as createEmptyDraftOrder, index_d$c_createOrderFromDraft as createOrderFromDraft, index_d$c_deleteCustomAdditionalFees as deleteCustomAdditionalFees, index_d$c_deleteCustomDiscounts as deleteCustomDiscounts, index_d$c_deleteDraftOrder as deleteDraftOrder, index_d$c_getDraftOrder as getDraftOrder, index_d$c_getOrderDraftabilityStatus as getOrderDraftabilityStatus, index_d$c_queryDraftOrders as queryDraftOrders, index_d$c_setAdditionalFees as setAdditionalFees, index_d$c_setBillingInfo as setBillingInfo, index_d$c_setBuyerInfo as setBuyerInfo, index_d$c_setDiscounts as setDiscounts, index_d$c_setRecipientInfo as setRecipientInfo, index_d$c_setShippingInfo as setShippingInfo, index_d$c_updateLineItems as updateLineItems };
|
|
19912
19993
|
}
|
|
19913
19994
|
|
|
19914
19995
|
interface OrderWithFulfillments {
|
|
@@ -19018,6 +19018,12 @@ interface CarrierError$3 {
|
|
|
19018
19018
|
/** Error details. */
|
|
19019
19019
|
error?: Details$3;
|
|
19020
19020
|
}
|
|
19021
|
+
interface CreateEmptyDraftOrderRequest$1 {
|
|
19022
|
+
}
|
|
19023
|
+
interface CreateEmptyDraftOrderResponse$1 {
|
|
19024
|
+
/** The draft order details calculated with latest content */
|
|
19025
|
+
calculatedDraftOrder?: CalculatedDraftOrder$1;
|
|
19026
|
+
}
|
|
19021
19027
|
interface AddLineItemsToDraftOrderRequest$1 {
|
|
19022
19028
|
/** The draft order id */
|
|
19023
19029
|
draftOrderId: string;
|
|
@@ -19226,6 +19232,22 @@ interface DeleteCustomAdditionalFeesResponse$1 {
|
|
|
19226
19232
|
/** The draft order details calculated with latest content */
|
|
19227
19233
|
calculatedDraftOrder?: CalculatedDraftOrder$1;
|
|
19228
19234
|
}
|
|
19235
|
+
interface SetShippingInfoRequest$1 {
|
|
19236
|
+
}
|
|
19237
|
+
interface SetShippingInfoResponse$1 {
|
|
19238
|
+
}
|
|
19239
|
+
interface SetBuyerInfoRequest$1 {
|
|
19240
|
+
}
|
|
19241
|
+
interface SetBuyerInfoResponse$1 {
|
|
19242
|
+
}
|
|
19243
|
+
interface SetRecipientInfoRequest$1 {
|
|
19244
|
+
}
|
|
19245
|
+
interface SetRecipientInfoResponse$1 {
|
|
19246
|
+
}
|
|
19247
|
+
interface SetBillingInfoRequest$1 {
|
|
19248
|
+
}
|
|
19249
|
+
interface SetBillingInfoResponse$1 {
|
|
19250
|
+
}
|
|
19229
19251
|
interface GetDraftOrderRequest$1 {
|
|
19230
19252
|
/** The draft order id */
|
|
19231
19253
|
draftOrderId: string;
|
|
@@ -19626,6 +19648,10 @@ interface V1BalanceSummary$1 {
|
|
|
19626
19648
|
*/
|
|
19627
19649
|
authorized?: Price$7;
|
|
19628
19650
|
}
|
|
19651
|
+
interface CreateOrderFromDraftRequest$1 {
|
|
19652
|
+
}
|
|
19653
|
+
interface CreateOrderFromDraftResponse$1 {
|
|
19654
|
+
}
|
|
19629
19655
|
interface DeleteDraftOrderRequest$1 {
|
|
19630
19656
|
/** The draft order id */
|
|
19631
19657
|
draftOrderId: string;
|
|
@@ -20082,6 +20108,9 @@ interface CalculatedDraftOrderNonNullableFields$1 {
|
|
|
20082
20108
|
interface CreateDraftOrderResponseNonNullableFields$1 {
|
|
20083
20109
|
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
|
|
20084
20110
|
}
|
|
20111
|
+
interface CreateEmptyDraftOrderResponseNonNullableFields$1 {
|
|
20112
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
|
|
20113
|
+
}
|
|
20085
20114
|
interface AddLineItemsToDraftOrderResponseNonNullableFields$1 {
|
|
20086
20115
|
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
|
|
20087
20116
|
}
|
|
@@ -20106,6 +20135,18 @@ interface CreateCustomAdditionalFeesResponseNonNullableFields$1 {
|
|
|
20106
20135
|
interface DeleteCustomAdditionalFeesResponseNonNullableFields$1 {
|
|
20107
20136
|
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
|
|
20108
20137
|
}
|
|
20138
|
+
interface SetShippingInfoResponseNonNullableFields$1 {
|
|
20139
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
|
|
20140
|
+
}
|
|
20141
|
+
interface SetBuyerInfoResponseNonNullableFields$1 {
|
|
20142
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
|
|
20143
|
+
}
|
|
20144
|
+
interface SetRecipientInfoResponseNonNullableFields$1 {
|
|
20145
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
|
|
20146
|
+
}
|
|
20147
|
+
interface SetBillingInfoResponseNonNullableFields$1 {
|
|
20148
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
|
|
20149
|
+
}
|
|
20109
20150
|
interface GetDraftOrderResponseNonNullableFields$1 {
|
|
20110
20151
|
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
|
|
20111
20152
|
}
|
|
@@ -20318,6 +20359,10 @@ interface CommitDraftOrderResponseNonNullableFields$1 {
|
|
|
20318
20359
|
committedDraftOrder?: DraftOrderNonNullableFields$1;
|
|
20319
20360
|
orderAfterCommit?: OrderNonNullableFields$3;
|
|
20320
20361
|
}
|
|
20362
|
+
interface CreateOrderFromDraftResponseNonNullableFields$1 {
|
|
20363
|
+
committedDraftOrder?: DraftOrderNonNullableFields$1;
|
|
20364
|
+
createdOrder?: OrderNonNullableFields$3;
|
|
20365
|
+
}
|
|
20321
20366
|
interface QueryDraftOrdersResponseNonNullableFields$1 {
|
|
20322
20367
|
draftOrders: DraftOrderNonNullableFields$1[];
|
|
20323
20368
|
}
|
|
@@ -21530,6 +21575,12 @@ interface CarrierError$2 {
|
|
|
21530
21575
|
/** Error details. */
|
|
21531
21576
|
error?: Details$2;
|
|
21532
21577
|
}
|
|
21578
|
+
interface CreateEmptyDraftOrderRequest {
|
|
21579
|
+
}
|
|
21580
|
+
interface CreateEmptyDraftOrderResponse {
|
|
21581
|
+
/** The draft order details calculated with latest content */
|
|
21582
|
+
calculatedDraftOrder?: CalculatedDraftOrder;
|
|
21583
|
+
}
|
|
21533
21584
|
interface AddLineItemsToDraftOrderRequest {
|
|
21534
21585
|
/** The draft order id */
|
|
21535
21586
|
draftOrderId: string;
|
|
@@ -21732,6 +21783,22 @@ interface DeleteCustomAdditionalFeesResponse {
|
|
|
21732
21783
|
/** The draft order details calculated with latest content */
|
|
21733
21784
|
calculatedDraftOrder?: CalculatedDraftOrder;
|
|
21734
21785
|
}
|
|
21786
|
+
interface SetShippingInfoRequest {
|
|
21787
|
+
}
|
|
21788
|
+
interface SetShippingInfoResponse {
|
|
21789
|
+
}
|
|
21790
|
+
interface SetBuyerInfoRequest {
|
|
21791
|
+
}
|
|
21792
|
+
interface SetBuyerInfoResponse {
|
|
21793
|
+
}
|
|
21794
|
+
interface SetRecipientInfoRequest {
|
|
21795
|
+
}
|
|
21796
|
+
interface SetRecipientInfoResponse {
|
|
21797
|
+
}
|
|
21798
|
+
interface SetBillingInfoRequest {
|
|
21799
|
+
}
|
|
21800
|
+
interface SetBillingInfoResponse {
|
|
21801
|
+
}
|
|
21735
21802
|
interface GetDraftOrderRequest {
|
|
21736
21803
|
/** The draft order id */
|
|
21737
21804
|
draftOrderId: string;
|
|
@@ -22132,6 +22199,10 @@ interface V1BalanceSummary {
|
|
|
22132
22199
|
*/
|
|
22133
22200
|
authorized?: Price$6;
|
|
22134
22201
|
}
|
|
22202
|
+
interface CreateOrderFromDraftRequest {
|
|
22203
|
+
}
|
|
22204
|
+
interface CreateOrderFromDraftResponse {
|
|
22205
|
+
}
|
|
22135
22206
|
interface DeleteDraftOrderRequest {
|
|
22136
22207
|
/** The draft order id */
|
|
22137
22208
|
draftOrderId: string;
|
|
@@ -22582,6 +22653,9 @@ interface CalculatedDraftOrderNonNullableFields {
|
|
|
22582
22653
|
interface CreateDraftOrderResponseNonNullableFields {
|
|
22583
22654
|
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
22584
22655
|
}
|
|
22656
|
+
interface CreateEmptyDraftOrderResponseNonNullableFields {
|
|
22657
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
22658
|
+
}
|
|
22585
22659
|
interface AddLineItemsToDraftOrderResponseNonNullableFields {
|
|
22586
22660
|
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
22587
22661
|
}
|
|
@@ -22606,6 +22680,18 @@ interface CreateCustomAdditionalFeesResponseNonNullableFields {
|
|
|
22606
22680
|
interface DeleteCustomAdditionalFeesResponseNonNullableFields {
|
|
22607
22681
|
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
22608
22682
|
}
|
|
22683
|
+
interface SetShippingInfoResponseNonNullableFields {
|
|
22684
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
22685
|
+
}
|
|
22686
|
+
interface SetBuyerInfoResponseNonNullableFields {
|
|
22687
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
22688
|
+
}
|
|
22689
|
+
interface SetRecipientInfoResponseNonNullableFields {
|
|
22690
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
22691
|
+
}
|
|
22692
|
+
interface SetBillingInfoResponseNonNullableFields {
|
|
22693
|
+
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
22694
|
+
}
|
|
22609
22695
|
interface GetDraftOrderResponseNonNullableFields {
|
|
22610
22696
|
calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
|
|
22611
22697
|
}
|
|
@@ -22818,6 +22904,10 @@ interface CommitDraftOrderResponseNonNullableFields {
|
|
|
22818
22904
|
committedDraftOrder?: DraftOrderNonNullableFields;
|
|
22819
22905
|
orderAfterCommit?: OrderNonNullableFields$2;
|
|
22820
22906
|
}
|
|
22907
|
+
interface CreateOrderFromDraftResponseNonNullableFields {
|
|
22908
|
+
committedDraftOrder?: DraftOrderNonNullableFields;
|
|
22909
|
+
createdOrder?: OrderNonNullableFields$2;
|
|
22910
|
+
}
|
|
22821
22911
|
interface QueryDraftOrdersResponseNonNullableFields {
|
|
22822
22912
|
draftOrders: DraftOrderNonNullableFields[];
|
|
22823
22913
|
}
|
|
@@ -22835,6 +22925,7 @@ type __PublicMethodMetaInfo$c<K = string, M = unknown, T = unknown, S = unknown,
|
|
|
22835
22925
|
declare function createDraftOrder(): __PublicMethodMetaInfo$c<'POST', {
|
|
22836
22926
|
orderId: string;
|
|
22837
22927
|
}, CreateDraftOrderRequest, CreateDraftOrderRequest$1, CreateDraftOrderResponse & CreateDraftOrderResponseNonNullableFields, CreateDraftOrderResponse$1 & CreateDraftOrderResponseNonNullableFields$1>;
|
|
22928
|
+
declare function createEmptyDraftOrder(): __PublicMethodMetaInfo$c<'POST', {}, CreateEmptyDraftOrderRequest, CreateEmptyDraftOrderRequest$1, CreateEmptyDraftOrderResponse & CreateEmptyDraftOrderResponseNonNullableFields, CreateEmptyDraftOrderResponse$1 & CreateEmptyDraftOrderResponseNonNullableFields$1>;
|
|
22838
22929
|
declare function addLineItemsToDraftOrder(): __PublicMethodMetaInfo$c<'POST', {
|
|
22839
22930
|
draftOrderId: string;
|
|
22840
22931
|
}, AddLineItemsToDraftOrderRequest, AddLineItemsToDraftOrderRequest$1, AddLineItemsToDraftOrderResponse & AddLineItemsToDraftOrderResponseNonNullableFields, AddLineItemsToDraftOrderResponse$1 & AddLineItemsToDraftOrderResponseNonNullableFields$1>;
|
|
@@ -22859,6 +22950,10 @@ declare function createCustomAdditionalFees(): __PublicMethodMetaInfo$c<'POST',
|
|
|
22859
22950
|
declare function deleteCustomAdditionalFees(): __PublicMethodMetaInfo$c<'POST', {
|
|
22860
22951
|
draftOrderId: string;
|
|
22861
22952
|
}, DeleteCustomAdditionalFeesRequest, DeleteCustomAdditionalFeesRequest$1, DeleteCustomAdditionalFeesResponse & DeleteCustomAdditionalFeesResponseNonNullableFields, DeleteCustomAdditionalFeesResponse$1 & DeleteCustomAdditionalFeesResponseNonNullableFields$1>;
|
|
22953
|
+
declare function setShippingInfo(): __PublicMethodMetaInfo$c<'PUT', {}, SetShippingInfoRequest, SetShippingInfoRequest$1, SetShippingInfoResponse & SetShippingInfoResponseNonNullableFields, SetShippingInfoResponse$1 & SetShippingInfoResponseNonNullableFields$1>;
|
|
22954
|
+
declare function setBuyerInfo(): __PublicMethodMetaInfo$c<'PUT', {}, SetBuyerInfoRequest, SetBuyerInfoRequest$1, SetBuyerInfoResponse & SetBuyerInfoResponseNonNullableFields, SetBuyerInfoResponse$1 & SetBuyerInfoResponseNonNullableFields$1>;
|
|
22955
|
+
declare function setRecipientInfo(): __PublicMethodMetaInfo$c<'PUT', {}, SetRecipientInfoRequest, SetRecipientInfoRequest$1, SetRecipientInfoResponse & SetRecipientInfoResponseNonNullableFields, SetRecipientInfoResponse$1 & SetRecipientInfoResponseNonNullableFields$1>;
|
|
22956
|
+
declare function setBillingInfo(): __PublicMethodMetaInfo$c<'PUT', {}, SetBillingInfoRequest, SetBillingInfoRequest$1, SetBillingInfoResponse & SetBillingInfoResponseNonNullableFields, SetBillingInfoResponse$1 & SetBillingInfoResponseNonNullableFields$1>;
|
|
22862
22957
|
declare function getDraftOrder(): __PublicMethodMetaInfo$c<'GET', {
|
|
22863
22958
|
draftOrderId: string;
|
|
22864
22959
|
}, GetDraftOrderRequest, GetDraftOrderRequest$1, GetDraftOrderResponse & GetDraftOrderResponseNonNullableFields, GetDraftOrderResponse$1 & GetDraftOrderResponseNonNullableFields$1>;
|
|
@@ -22868,6 +22963,9 @@ declare function getOrderDraftabilityStatus(): __PublicMethodMetaInfo$c<'GET', {
|
|
|
22868
22963
|
declare function commitDraftOrder(): __PublicMethodMetaInfo$c<'POST', {
|
|
22869
22964
|
draftOrderId: string;
|
|
22870
22965
|
}, CommitDraftOrderRequest, CommitDraftOrderRequest$1, CommitDraftOrderResponse & CommitDraftOrderResponseNonNullableFields, CommitDraftOrderResponse$1 & CommitDraftOrderResponseNonNullableFields$1>;
|
|
22966
|
+
declare function createOrderFromDraft(): __PublicMethodMetaInfo$c<'POST', {
|
|
22967
|
+
draftOrderId: string;
|
|
22968
|
+
}, CreateOrderFromDraftRequest, CreateOrderFromDraftRequest$1, CreateOrderFromDraftResponse & CreateOrderFromDraftResponseNonNullableFields, CreateOrderFromDraftResponse$1 & CreateOrderFromDraftResponseNonNullableFields$1>;
|
|
22871
22969
|
declare function deleteDraftOrder(): __PublicMethodMetaInfo$c<'DELETE', {
|
|
22872
22970
|
draftOrderId: string;
|
|
22873
22971
|
}, DeleteDraftOrderRequest, DeleteDraftOrderRequest$1, DeleteDraftOrderResponse, DeleteDraftOrderResponse$1>;
|
|
@@ -22878,6 +22976,8 @@ declare const meta$c_commitDraftOrder: typeof commitDraftOrder;
|
|
|
22878
22976
|
declare const meta$c_createCustomAdditionalFees: typeof createCustomAdditionalFees;
|
|
22879
22977
|
declare const meta$c_createCustomDiscounts: typeof createCustomDiscounts;
|
|
22880
22978
|
declare const meta$c_createDraftOrder: typeof createDraftOrder;
|
|
22979
|
+
declare const meta$c_createEmptyDraftOrder: typeof createEmptyDraftOrder;
|
|
22980
|
+
declare const meta$c_createOrderFromDraft: typeof createOrderFromDraft;
|
|
22881
22981
|
declare const meta$c_deleteCustomAdditionalFees: typeof deleteCustomAdditionalFees;
|
|
22882
22982
|
declare const meta$c_deleteCustomDiscounts: typeof deleteCustomDiscounts;
|
|
22883
22983
|
declare const meta$c_deleteDraftOrder: typeof deleteDraftOrder;
|
|
@@ -22885,10 +22985,14 @@ declare const meta$c_getDraftOrder: typeof getDraftOrder;
|
|
|
22885
22985
|
declare const meta$c_getOrderDraftabilityStatus: typeof getOrderDraftabilityStatus;
|
|
22886
22986
|
declare const meta$c_queryDraftOrders: typeof queryDraftOrders;
|
|
22887
22987
|
declare const meta$c_setAdditionalFees: typeof setAdditionalFees;
|
|
22988
|
+
declare const meta$c_setBillingInfo: typeof setBillingInfo;
|
|
22989
|
+
declare const meta$c_setBuyerInfo: typeof setBuyerInfo;
|
|
22888
22990
|
declare const meta$c_setDiscounts: typeof setDiscounts;
|
|
22991
|
+
declare const meta$c_setRecipientInfo: typeof setRecipientInfo;
|
|
22992
|
+
declare const meta$c_setShippingInfo: typeof setShippingInfo;
|
|
22889
22993
|
declare const meta$c_updateLineItems: typeof updateLineItems;
|
|
22890
22994
|
declare namespace meta$c {
|
|
22891
|
-
export { type __PublicMethodMetaInfo$c as __PublicMethodMetaInfo, meta$c_addLineItemsToDraftOrder as addLineItemsToDraftOrder, meta$c_commitDraftOrder as commitDraftOrder, meta$c_createCustomAdditionalFees as createCustomAdditionalFees, meta$c_createCustomDiscounts as createCustomDiscounts, meta$c_createDraftOrder as createDraftOrder, meta$c_deleteCustomAdditionalFees as deleteCustomAdditionalFees, meta$c_deleteCustomDiscounts as deleteCustomDiscounts, meta$c_deleteDraftOrder as deleteDraftOrder, meta$c_getDraftOrder as getDraftOrder, meta$c_getOrderDraftabilityStatus as getOrderDraftabilityStatus, meta$c_queryDraftOrders as queryDraftOrders, meta$c_setAdditionalFees as setAdditionalFees, meta$c_setDiscounts as setDiscounts, meta$c_updateLineItems as updateLineItems };
|
|
22995
|
+
export { type __PublicMethodMetaInfo$c as __PublicMethodMetaInfo, meta$c_addLineItemsToDraftOrder as addLineItemsToDraftOrder, meta$c_commitDraftOrder as commitDraftOrder, meta$c_createCustomAdditionalFees as createCustomAdditionalFees, meta$c_createCustomDiscounts as createCustomDiscounts, meta$c_createDraftOrder as createDraftOrder, meta$c_createEmptyDraftOrder as createEmptyDraftOrder, meta$c_createOrderFromDraft as createOrderFromDraft, meta$c_deleteCustomAdditionalFees as deleteCustomAdditionalFees, meta$c_deleteCustomDiscounts as deleteCustomDiscounts, meta$c_deleteDraftOrder as deleteDraftOrder, meta$c_getDraftOrder as getDraftOrder, meta$c_getOrderDraftabilityStatus as getOrderDraftabilityStatus, meta$c_queryDraftOrders as queryDraftOrders, meta$c_setAdditionalFees as setAdditionalFees, meta$c_setBillingInfo as setBillingInfo, meta$c_setBuyerInfo as setBuyerInfo, meta$c_setDiscounts as setDiscounts, meta$c_setRecipientInfo as setRecipientInfo, meta$c_setShippingInfo as setShippingInfo, meta$c_updateLineItems as updateLineItems };
|
|
22892
22996
|
}
|
|
22893
22997
|
|
|
22894
22998
|
interface OrderWithFulfillments$1 {
|
|
@@ -1732,6 +1732,85 @@ interface IdentificationDataIdOneOf$2 {
|
|
|
1732
1732
|
appId?: string;
|
|
1733
1733
|
}
|
|
1734
1734
|
|
|
1735
|
+
declare class CouponLimitPerCustomerExceededWixError extends Error {
|
|
1736
|
+
/** @hidden */
|
|
1737
|
+
httpCode: number;
|
|
1738
|
+
/** @hidden */
|
|
1739
|
+
statusCode: string;
|
|
1740
|
+
/** @hidden */
|
|
1741
|
+
applicationCode: string;
|
|
1742
|
+
/** @hidden */
|
|
1743
|
+
name: string;
|
|
1744
|
+
constructor();
|
|
1745
|
+
/** @hidden */
|
|
1746
|
+
static readonly __type = "wix_spi_error";
|
|
1747
|
+
}
|
|
1748
|
+
declare class CouponIsDisabledWixError extends Error {
|
|
1749
|
+
/** @hidden */
|
|
1750
|
+
httpCode: number;
|
|
1751
|
+
/** @hidden */
|
|
1752
|
+
statusCode: string;
|
|
1753
|
+
/** @hidden */
|
|
1754
|
+
applicationCode: string;
|
|
1755
|
+
/** @hidden */
|
|
1756
|
+
name: string;
|
|
1757
|
+
constructor();
|
|
1758
|
+
/** @hidden */
|
|
1759
|
+
static readonly __type = "wix_spi_error";
|
|
1760
|
+
}
|
|
1761
|
+
declare class CouponUsageExceededWixError extends Error {
|
|
1762
|
+
/** @hidden */
|
|
1763
|
+
httpCode: number;
|
|
1764
|
+
/** @hidden */
|
|
1765
|
+
statusCode: string;
|
|
1766
|
+
/** @hidden */
|
|
1767
|
+
applicationCode: string;
|
|
1768
|
+
/** @hidden */
|
|
1769
|
+
name: string;
|
|
1770
|
+
constructor();
|
|
1771
|
+
/** @hidden */
|
|
1772
|
+
static readonly __type = "wix_spi_error";
|
|
1773
|
+
}
|
|
1774
|
+
declare class CouponHasExpiredWixError extends Error {
|
|
1775
|
+
/** @hidden */
|
|
1776
|
+
httpCode: number;
|
|
1777
|
+
/** @hidden */
|
|
1778
|
+
statusCode: string;
|
|
1779
|
+
/** @hidden */
|
|
1780
|
+
applicationCode: string;
|
|
1781
|
+
/** @hidden */
|
|
1782
|
+
name: string;
|
|
1783
|
+
constructor();
|
|
1784
|
+
/** @hidden */
|
|
1785
|
+
static readonly __type = "wix_spi_error";
|
|
1786
|
+
}
|
|
1787
|
+
declare class CouponIsNotActiveYetWixError extends Error {
|
|
1788
|
+
/** @hidden */
|
|
1789
|
+
httpCode: number;
|
|
1790
|
+
/** @hidden */
|
|
1791
|
+
statusCode: string;
|
|
1792
|
+
/** @hidden */
|
|
1793
|
+
applicationCode: string;
|
|
1794
|
+
/** @hidden */
|
|
1795
|
+
name: string;
|
|
1796
|
+
constructor();
|
|
1797
|
+
/** @hidden */
|
|
1798
|
+
static readonly __type = "wix_spi_error";
|
|
1799
|
+
}
|
|
1800
|
+
declare class CouponDoesNotExistWixError extends Error {
|
|
1801
|
+
/** @hidden */
|
|
1802
|
+
httpCode: number;
|
|
1803
|
+
/** @hidden */
|
|
1804
|
+
statusCode: string;
|
|
1805
|
+
/** @hidden */
|
|
1806
|
+
applicationCode: string;
|
|
1807
|
+
/** @hidden */
|
|
1808
|
+
name: string;
|
|
1809
|
+
constructor();
|
|
1810
|
+
/** @hidden */
|
|
1811
|
+
static readonly __type = "wix_spi_error";
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1735
1814
|
interface GetEligibleDiscountsEnvelope {
|
|
1736
1815
|
request: GetEligibleDiscountsRequest;
|
|
1737
1816
|
metadata: Context$2;
|
|
@@ -1750,7 +1829,19 @@ type _publicProvideHandlersType$2 = typeof provideHandlers$5;
|
|
|
1750
1829
|
declare const provideHandlers$4: ReturnType<typeof createServicePluginModule$2<_publicProvideHandlersType>>;
|
|
1751
1830
|
|
|
1752
1831
|
type context$2_BaseDiscounts = BaseDiscounts;
|
|
1832
|
+
type context$2_CouponDoesNotExistWixError = CouponDoesNotExistWixError;
|
|
1833
|
+
declare const context$2_CouponDoesNotExistWixError: typeof CouponDoesNotExistWixError;
|
|
1834
|
+
type context$2_CouponHasExpiredWixError = CouponHasExpiredWixError;
|
|
1835
|
+
declare const context$2_CouponHasExpiredWixError: typeof CouponHasExpiredWixError;
|
|
1836
|
+
type context$2_CouponIsDisabledWixError = CouponIsDisabledWixError;
|
|
1837
|
+
declare const context$2_CouponIsDisabledWixError: typeof CouponIsDisabledWixError;
|
|
1838
|
+
type context$2_CouponIsNotActiveYetWixError = CouponIsNotActiveYetWixError;
|
|
1839
|
+
declare const context$2_CouponIsNotActiveYetWixError: typeof CouponIsNotActiveYetWixError;
|
|
1840
|
+
type context$2_CouponLimitPerCustomerExceededWixError = CouponLimitPerCustomerExceededWixError;
|
|
1841
|
+
declare const context$2_CouponLimitPerCustomerExceededWixError: typeof CouponLimitPerCustomerExceededWixError;
|
|
1753
1842
|
type context$2_CouponOptions = CouponOptions;
|
|
1843
|
+
type context$2_CouponUsageExceededWixError = CouponUsageExceededWixError;
|
|
1844
|
+
declare const context$2_CouponUsageExceededWixError: typeof CouponUsageExceededWixError;
|
|
1754
1845
|
type context$2_Discount = Discount;
|
|
1755
1846
|
type context$2_DiscountDiscountScopesOneOf = DiscountDiscountScopesOneOf;
|
|
1756
1847
|
type context$2_DiscountDiscountTypeOneOf = DiscountDiscountTypeOneOf;
|
|
@@ -1769,7 +1860,7 @@ declare const context$2_TargetType: typeof TargetType;
|
|
|
1769
1860
|
type context$2_Type = Type;
|
|
1770
1861
|
declare const context$2_Type: typeof Type;
|
|
1771
1862
|
declare namespace context$2 {
|
|
1772
|
-
export { type context$2_BaseDiscounts as BaseDiscounts, type CatalogReference$2 as CatalogReference, type Context$2 as Context, type context$2_CouponOptions as CouponOptions, type context$2_Discount as Discount, type context$2_DiscountDiscountScopesOneOf as DiscountDiscountScopesOneOf, type context$2_DiscountDiscountTypeOneOf as DiscountDiscountTypeOneOf, type context$2_DiscountName as DiscountName, type context$2_DiscountRate as DiscountRate, type context$2_DiscountRateRateOneOf as DiscountRateRateOneOf, context$2_DiscountSource as DiscountSource, type context$2_DiscountsSPIConfig as DiscountsSPIConfig, type context$2_GetEligibleDiscountsRequest as GetEligibleDiscountsRequest, type context$2_GetEligibleDiscountsResponse as GetEligibleDiscountsResponse, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type LineItem$2 as LineItem, type context$2_LineItemRate as LineItemRate, type context$2_LineItemsDiscounts as LineItemsDiscounts, context$2_TargetType as TargetType, context$2_Type as Type, type _publicProvideHandlersType$2 as _publicProvideHandlersType, provideHandlers$4 as provideHandlers, provideHandlers$5 as publicProvideHandlers };
|
|
1863
|
+
export { type context$2_BaseDiscounts as BaseDiscounts, type CatalogReference$2 as CatalogReference, type Context$2 as Context, context$2_CouponDoesNotExistWixError as CouponDoesNotExistWixError, context$2_CouponHasExpiredWixError as CouponHasExpiredWixError, context$2_CouponIsDisabledWixError as CouponIsDisabledWixError, context$2_CouponIsNotActiveYetWixError as CouponIsNotActiveYetWixError, context$2_CouponLimitPerCustomerExceededWixError as CouponLimitPerCustomerExceededWixError, type context$2_CouponOptions as CouponOptions, context$2_CouponUsageExceededWixError as CouponUsageExceededWixError, type context$2_Discount as Discount, type context$2_DiscountDiscountScopesOneOf as DiscountDiscountScopesOneOf, type context$2_DiscountDiscountTypeOneOf as DiscountDiscountTypeOneOf, type context$2_DiscountName as DiscountName, type context$2_DiscountRate as DiscountRate, type context$2_DiscountRateRateOneOf as DiscountRateRateOneOf, context$2_DiscountSource as DiscountSource, type context$2_DiscountsSPIConfig as DiscountsSPIConfig, type context$2_GetEligibleDiscountsRequest as GetEligibleDiscountsRequest, type context$2_GetEligibleDiscountsResponse as GetEligibleDiscountsResponse, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type LineItem$2 as LineItem, type context$2_LineItemRate as LineItemRate, type context$2_LineItemsDiscounts as LineItemsDiscounts, context$2_TargetType as TargetType, context$2_Type as Type, type _publicProvideHandlersType$2 as _publicProvideHandlersType, provideHandlers$4 as provideHandlers, provideHandlers$5 as publicProvideHandlers };
|
|
1773
1864
|
}
|
|
1774
1865
|
|
|
1775
1866
|
interface GetPaymentSettingsRequest {
|
|
@@ -1749,8 +1749,99 @@ declare function createServicePluginModule$2<T extends ServicePluginDefinition<a
|
|
|
1749
1749
|
type _publicProvideHandlersType$2 = typeof provideHandlers$5;
|
|
1750
1750
|
declare const provideHandlers$4: ReturnType<typeof createServicePluginModule$2<_publicProvideHandlersType>>;
|
|
1751
1751
|
|
|
1752
|
+
declare class CouponLimitPerCustomerExceededWixError extends Error {
|
|
1753
|
+
/** @hidden */
|
|
1754
|
+
httpCode: number;
|
|
1755
|
+
/** @hidden */
|
|
1756
|
+
statusCode: string;
|
|
1757
|
+
/** @hidden */
|
|
1758
|
+
applicationCode: string;
|
|
1759
|
+
/** @hidden */
|
|
1760
|
+
name: string;
|
|
1761
|
+
constructor();
|
|
1762
|
+
/** @hidden */
|
|
1763
|
+
static readonly __type = "wix_spi_error";
|
|
1764
|
+
}
|
|
1765
|
+
declare class CouponIsDisabledWixError extends Error {
|
|
1766
|
+
/** @hidden */
|
|
1767
|
+
httpCode: number;
|
|
1768
|
+
/** @hidden */
|
|
1769
|
+
statusCode: string;
|
|
1770
|
+
/** @hidden */
|
|
1771
|
+
applicationCode: string;
|
|
1772
|
+
/** @hidden */
|
|
1773
|
+
name: string;
|
|
1774
|
+
constructor();
|
|
1775
|
+
/** @hidden */
|
|
1776
|
+
static readonly __type = "wix_spi_error";
|
|
1777
|
+
}
|
|
1778
|
+
declare class CouponUsageExceededWixError extends Error {
|
|
1779
|
+
/** @hidden */
|
|
1780
|
+
httpCode: number;
|
|
1781
|
+
/** @hidden */
|
|
1782
|
+
statusCode: string;
|
|
1783
|
+
/** @hidden */
|
|
1784
|
+
applicationCode: string;
|
|
1785
|
+
/** @hidden */
|
|
1786
|
+
name: string;
|
|
1787
|
+
constructor();
|
|
1788
|
+
/** @hidden */
|
|
1789
|
+
static readonly __type = "wix_spi_error";
|
|
1790
|
+
}
|
|
1791
|
+
declare class CouponHasExpiredWixError extends Error {
|
|
1792
|
+
/** @hidden */
|
|
1793
|
+
httpCode: number;
|
|
1794
|
+
/** @hidden */
|
|
1795
|
+
statusCode: string;
|
|
1796
|
+
/** @hidden */
|
|
1797
|
+
applicationCode: string;
|
|
1798
|
+
/** @hidden */
|
|
1799
|
+
name: string;
|
|
1800
|
+
constructor();
|
|
1801
|
+
/** @hidden */
|
|
1802
|
+
static readonly __type = "wix_spi_error";
|
|
1803
|
+
}
|
|
1804
|
+
declare class CouponIsNotActiveYetWixError extends Error {
|
|
1805
|
+
/** @hidden */
|
|
1806
|
+
httpCode: number;
|
|
1807
|
+
/** @hidden */
|
|
1808
|
+
statusCode: string;
|
|
1809
|
+
/** @hidden */
|
|
1810
|
+
applicationCode: string;
|
|
1811
|
+
/** @hidden */
|
|
1812
|
+
name: string;
|
|
1813
|
+
constructor();
|
|
1814
|
+
/** @hidden */
|
|
1815
|
+
static readonly __type = "wix_spi_error";
|
|
1816
|
+
}
|
|
1817
|
+
declare class CouponDoesNotExistWixError extends Error {
|
|
1818
|
+
/** @hidden */
|
|
1819
|
+
httpCode: number;
|
|
1820
|
+
/** @hidden */
|
|
1821
|
+
statusCode: string;
|
|
1822
|
+
/** @hidden */
|
|
1823
|
+
applicationCode: string;
|
|
1824
|
+
/** @hidden */
|
|
1825
|
+
name: string;
|
|
1826
|
+
constructor();
|
|
1827
|
+
/** @hidden */
|
|
1828
|
+
static readonly __type = "wix_spi_error";
|
|
1829
|
+
}
|
|
1830
|
+
|
|
1752
1831
|
type index_d$2_BaseDiscounts = BaseDiscounts;
|
|
1832
|
+
type index_d$2_CouponDoesNotExistWixError = CouponDoesNotExistWixError;
|
|
1833
|
+
declare const index_d$2_CouponDoesNotExistWixError: typeof CouponDoesNotExistWixError;
|
|
1834
|
+
type index_d$2_CouponHasExpiredWixError = CouponHasExpiredWixError;
|
|
1835
|
+
declare const index_d$2_CouponHasExpiredWixError: typeof CouponHasExpiredWixError;
|
|
1836
|
+
type index_d$2_CouponIsDisabledWixError = CouponIsDisabledWixError;
|
|
1837
|
+
declare const index_d$2_CouponIsDisabledWixError: typeof CouponIsDisabledWixError;
|
|
1838
|
+
type index_d$2_CouponIsNotActiveYetWixError = CouponIsNotActiveYetWixError;
|
|
1839
|
+
declare const index_d$2_CouponIsNotActiveYetWixError: typeof CouponIsNotActiveYetWixError;
|
|
1840
|
+
type index_d$2_CouponLimitPerCustomerExceededWixError = CouponLimitPerCustomerExceededWixError;
|
|
1841
|
+
declare const index_d$2_CouponLimitPerCustomerExceededWixError: typeof CouponLimitPerCustomerExceededWixError;
|
|
1753
1842
|
type index_d$2_CouponOptions = CouponOptions;
|
|
1843
|
+
type index_d$2_CouponUsageExceededWixError = CouponUsageExceededWixError;
|
|
1844
|
+
declare const index_d$2_CouponUsageExceededWixError: typeof CouponUsageExceededWixError;
|
|
1754
1845
|
type index_d$2_Discount = Discount;
|
|
1755
1846
|
type index_d$2_DiscountDiscountScopesOneOf = DiscountDiscountScopesOneOf;
|
|
1756
1847
|
type index_d$2_DiscountDiscountTypeOneOf = DiscountDiscountTypeOneOf;
|
|
@@ -1769,7 +1860,7 @@ declare const index_d$2_TargetType: typeof TargetType;
|
|
|
1769
1860
|
type index_d$2_Type = Type;
|
|
1770
1861
|
declare const index_d$2_Type: typeof Type;
|
|
1771
1862
|
declare namespace index_d$2 {
|
|
1772
|
-
export { type index_d$2_BaseDiscounts as BaseDiscounts, type CatalogReference$2 as CatalogReference, type Context$2 as Context, type index_d$2_CouponOptions as CouponOptions, type index_d$2_Discount as Discount, type index_d$2_DiscountDiscountScopesOneOf as DiscountDiscountScopesOneOf, type index_d$2_DiscountDiscountTypeOneOf as DiscountDiscountTypeOneOf, type index_d$2_DiscountName as DiscountName, type index_d$2_DiscountRate as DiscountRate, type index_d$2_DiscountRateRateOneOf as DiscountRateRateOneOf, index_d$2_DiscountSource as DiscountSource, type index_d$2_DiscountsSPIConfig as DiscountsSPIConfig, type index_d$2_GetEligibleDiscountsRequest as GetEligibleDiscountsRequest, type index_d$2_GetEligibleDiscountsResponse as GetEligibleDiscountsResponse, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type LineItem$2 as LineItem, type index_d$2_LineItemRate as LineItemRate, type index_d$2_LineItemsDiscounts as LineItemsDiscounts, index_d$2_TargetType as TargetType, index_d$2_Type as Type, type _publicProvideHandlersType$2 as _publicProvideHandlersType, provideHandlers$4 as provideHandlers, provideHandlers$5 as publicProvideHandlers };
|
|
1863
|
+
export { type index_d$2_BaseDiscounts as BaseDiscounts, type CatalogReference$2 as CatalogReference, type Context$2 as Context, index_d$2_CouponDoesNotExistWixError as CouponDoesNotExistWixError, index_d$2_CouponHasExpiredWixError as CouponHasExpiredWixError, index_d$2_CouponIsDisabledWixError as CouponIsDisabledWixError, index_d$2_CouponIsNotActiveYetWixError as CouponIsNotActiveYetWixError, index_d$2_CouponLimitPerCustomerExceededWixError as CouponLimitPerCustomerExceededWixError, type index_d$2_CouponOptions as CouponOptions, index_d$2_CouponUsageExceededWixError as CouponUsageExceededWixError, type index_d$2_Discount as Discount, type index_d$2_DiscountDiscountScopesOneOf as DiscountDiscountScopesOneOf, type index_d$2_DiscountDiscountTypeOneOf as DiscountDiscountTypeOneOf, type index_d$2_DiscountName as DiscountName, type index_d$2_DiscountRate as DiscountRate, type index_d$2_DiscountRateRateOneOf as DiscountRateRateOneOf, index_d$2_DiscountSource as DiscountSource, type index_d$2_DiscountsSPIConfig as DiscountsSPIConfig, type index_d$2_GetEligibleDiscountsRequest as GetEligibleDiscountsRequest, type index_d$2_GetEligibleDiscountsResponse as GetEligibleDiscountsResponse, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type LineItem$2 as LineItem, type index_d$2_LineItemRate as LineItemRate, type index_d$2_LineItemsDiscounts as LineItemsDiscounts, index_d$2_TargetType as TargetType, index_d$2_Type as Type, type _publicProvideHandlersType$2 as _publicProvideHandlersType, provideHandlers$4 as provideHandlers, provideHandlers$5 as publicProvideHandlers };
|
|
1773
1864
|
}
|
|
1774
1865
|
|
|
1775
1866
|
interface GetPaymentSettingsRequest {
|