@wix/ecom 1.0.735 → 1.0.737
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 +4 -4
- package/type-bundles/context.bundle.d.ts +636 -612
- package/type-bundles/index.bundle.d.ts +636 -612
- package/type-bundles/meta.bundle.d.ts +169 -79
|
@@ -17647,6 +17647,12 @@ interface CarrierError$1 {
|
|
|
17647
17647
|
/** Error details. */
|
|
17648
17648
|
error?: Details$1;
|
|
17649
17649
|
}
|
|
17650
|
+
interface CreateEmptyDraftOrderRequest {
|
|
17651
|
+
}
|
|
17652
|
+
interface CreateEmptyDraftOrderResponse {
|
|
17653
|
+
/** The draft order details calculated with latest content */
|
|
17654
|
+
calculatedDraftOrder?: CalculatedDraftOrder;
|
|
17655
|
+
}
|
|
17650
17656
|
interface AddLineItemsToDraftOrderRequest {
|
|
17651
17657
|
/** The draft order id */
|
|
17652
17658
|
draftOrderId: string;
|
|
@@ -18042,7 +18048,7 @@ interface Order$2 {
|
|
|
18042
18048
|
* @replacedBy tax_info
|
|
18043
18049
|
* @targetRemovalDate 2024-09-30
|
|
18044
18050
|
*/
|
|
18045
|
-
taxSummary?:
|
|
18051
|
+
taxSummary?: TaxSummary$2;
|
|
18046
18052
|
/** Tax information. */
|
|
18047
18053
|
taxInfo?: OrderTaxInfo$1;
|
|
18048
18054
|
/** Applied discounts. */
|
|
@@ -18122,13 +18128,6 @@ declare enum OrderStatus$1 {
|
|
|
18122
18128
|
APPROVED = "APPROVED",
|
|
18123
18129
|
CANCELED = "CANCELED"
|
|
18124
18130
|
}
|
|
18125
|
-
interface ApiTaxSummary$1 {
|
|
18126
|
-
/**
|
|
18127
|
-
* Total tax.
|
|
18128
|
-
* @readonly
|
|
18129
|
-
*/
|
|
18130
|
-
totalTax?: Price$3;
|
|
18131
|
-
}
|
|
18132
18131
|
interface Activity$2 extends ActivityContentOneOf$1 {
|
|
18133
18132
|
/** Custom activity details (optional). `activity.type` must be `CUSTOM_ACTIVITY`. */
|
|
18134
18133
|
customActivity?: CustomActivity$1;
|
|
@@ -19167,9 +19166,6 @@ interface GetOrderDraftabilityStatusResponseNonNullableFields {
|
|
|
19167
19166
|
orderDraftable: boolean;
|
|
19168
19167
|
nonDraftableReasons: NonDraftableReason[];
|
|
19169
19168
|
}
|
|
19170
|
-
interface ApiTaxSummaryNonNullableFields$1 {
|
|
19171
|
-
totalTax?: PriceNonNullableFields$3;
|
|
19172
|
-
}
|
|
19173
19169
|
interface CustomActivityNonNullableFields$1 {
|
|
19174
19170
|
appId: string;
|
|
19175
19171
|
type: string;
|
|
@@ -19350,7 +19346,7 @@ interface OrderNonNullableFields$1 {
|
|
|
19350
19346
|
billingInfo?: AddressWithContactNonNullableFields$1;
|
|
19351
19347
|
shippingInfo?: V1ShippingInformationNonNullableFields$1;
|
|
19352
19348
|
status: OrderStatus$1;
|
|
19353
|
-
taxSummary?:
|
|
19349
|
+
taxSummary?: TaxSummaryNonNullableFields$1;
|
|
19354
19350
|
taxInfo?: OrderTaxInfoNonNullableFields$1;
|
|
19355
19351
|
appliedDiscounts: AppliedDiscountNonNullableFields$2[];
|
|
19356
19352
|
activities: ActivityNonNullableFields$1[];
|
|
@@ -19656,6 +19652,8 @@ type index_d$b_CreateCustomDiscountsResponseNonNullableFields = CreateCustomDisc
|
|
|
19656
19652
|
type index_d$b_CreateDraftOrderRequest = CreateDraftOrderRequest;
|
|
19657
19653
|
type index_d$b_CreateDraftOrderResponse = CreateDraftOrderResponse;
|
|
19658
19654
|
type index_d$b_CreateDraftOrderResponseNonNullableFields = CreateDraftOrderResponseNonNullableFields;
|
|
19655
|
+
type index_d$b_CreateEmptyDraftOrderRequest = CreateEmptyDraftOrderRequest;
|
|
19656
|
+
type index_d$b_CreateEmptyDraftOrderResponse = CreateEmptyDraftOrderResponse;
|
|
19659
19657
|
type index_d$b_CreateOrderFromDraftRequest = CreateOrderFromDraftRequest;
|
|
19660
19658
|
type index_d$b_CreateOrderFromDraftResponse = CreateOrderFromDraftResponse;
|
|
19661
19659
|
type index_d$b_CustomLineItem = CustomLineItem;
|
|
@@ -19748,7 +19746,7 @@ declare const index_d$b_setAdditionalFees: typeof setAdditionalFees;
|
|
|
19748
19746
|
declare const index_d$b_setDiscounts: typeof setDiscounts;
|
|
19749
19747
|
declare const index_d$b_updateLineItems: typeof updateLineItems;
|
|
19750
19748
|
declare namespace index_d$b {
|
|
19751
|
-
export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type index_d$b_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type index_d$b_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type index_d$b_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type index_d$b_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type index_d$b_AdditionalFeeDetails as AdditionalFeeDetails, type index_d$b_AdditionalFeeOption as AdditionalFeeOption, type Address$5 as Address, type AddressLocation$4 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type ApiTaxSummary$1 as ApiTaxSummary, type ApplicationError$5 as ApplicationError, type AppliedDiscount$2 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$2 as AppliedDiscountDiscountSourceOneOf, index_d$b_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$b_BillingChangedDetails as BillingChangedDetails, type index_d$b_BillingDetails as BillingDetails, type index_d$b_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type index_d$b_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type index_d$b_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type index_d$b_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$b_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type index_d$b_CommitDraftOrderOptions as CommitDraftOrderOptions, type index_d$b_CommitDraftOrderRequest as CommitDraftOrderRequest, type index_d$b_CommitDraftOrderResponse as CommitDraftOrderResponse, type index_d$b_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type index_d$b_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type index_d$b_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type index_d$b_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type index_d$b_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type index_d$b_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type index_d$b_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type index_d$b_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type index_d$b_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type index_d$b_CreateDraftOrderRequest as CreateDraftOrderRequest, type index_d$b_CreateDraftOrderResponse as CreateDraftOrderResponse, type index_d$b_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type index_d$b_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type index_d$b_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$b_CustomLineItem as CustomLineItem, type index_d$b_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type index_d$b_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type index_d$b_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type index_d$b_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type index_d$b_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type index_d$b_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type index_d$b_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type index_d$b_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$b_DiscountDetails as DiscountDetails, type index_d$b_DiscountOption as DiscountOption, type index_d$b_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$b_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type index_d$b_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type index_d$b_DraftOrdersQueryResult as DraftOrdersQueryResult, index_d$b_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$b_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$b_GetDraftEditabilityStatusRequest as GetDraftEditabilityStatusRequest, type index_d$b_GetDraftEditabilityStatusResponse as GetDraftEditabilityStatusResponse, type index_d$b_GetDraftOrderRequest as GetDraftOrderRequest, type index_d$b_GetDraftOrderResponse as GetDraftOrderResponse, type index_d$b_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type index_d$b_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type index_d$b_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type index_d$b_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type index_d$b_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type index_d$b_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type index_d$b_ItemDetails as ItemDetails, type index_d$b_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$b_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$b_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$b_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$b_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$b_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type index_d$b_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type index_d$b_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type index_d$b_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type index_d$b_RecipientInfoDetails as RecipientInfoDetails, type index_d$b_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated$1 as RefundInitiated, 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$b_SecuredMedia as SecuredMedia, type index_d$b_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type index_d$b_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type index_d$b_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type index_d$b_SetBillingInfoRequest as SetBillingInfoRequest, type index_d$b_SetBillingInfoResponse as SetBillingInfoResponse, type index_d$b_SetBuyerInfoRequest as SetBuyerInfoRequest, type index_d$b_SetBuyerInfoResponse as SetBuyerInfoResponse, type index_d$b_SetDiscountsRequest as SetDiscountsRequest, type index_d$b_SetDiscountsResponse as SetDiscountsResponse, type index_d$b_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type index_d$b_SetRecipientInfoRequest as SetRecipientInfoRequest, type index_d$b_SetRecipientInfoResponse as SetRecipientInfoResponse, type index_d$b_SetShippingInfoRequest as SetShippingInfoRequest, type index_d$b_SetShippingInfoResponse as SetShippingInfoResponse, type index_d$b_ShippingChangedDetails as ShippingChangedDetails, type index_d$b_ShippingDetails as ShippingDetails, type index_d$b_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 TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type index_d$b_UpdateLineItemsOptions as UpdateLineItemsOptions, type index_d$b_UpdateLineItemsRequest as UpdateLineItemsRequest, type index_d$b_UpdateLineItemsResponse as UpdateLineItemsResponse, type index_d$b_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type index_d$b_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type index_d$b_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type index_d$b_V1BalanceSummary as V1BalanceSummary, type index_d$b_V1CreatedBy as V1CreatedBy, type index_d$b_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type index_d$b_V1DeliveryLogistics as V1DeliveryLogistics, type index_d$b_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type index_d$b_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type index_d$b_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type index_d$b_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$b_addLineItemsToDraftOrder as addLineItemsToDraftOrder, index_d$b_commitDraftOrder as commitDraftOrder, index_d$b_createCustomAdditionalFees as createCustomAdditionalFees, index_d$b_createCustomDiscounts as createCustomDiscounts, index_d$b_createDraftOrder as createDraftOrder, index_d$b_deleteCustomAdditionalFees as deleteCustomAdditionalFees, index_d$b_deleteCustomDiscounts as deleteCustomDiscounts, index_d$b_deleteDraftOrder as deleteDraftOrder, index_d$b_getDraftOrder as getDraftOrder, index_d$b_getOrderDraftabilityStatus as getOrderDraftabilityStatus, index_d$b_queryDraftOrders as queryDraftOrders, index_d$b_setAdditionalFees as setAdditionalFees, index_d$b_setDiscounts as setDiscounts, index_d$b_updateLineItems as updateLineItems };
|
|
19749
|
+
export { type ActionEvent$9 as ActionEvent, type Activity$2 as Activity, type ActivityContentOneOf$1 as ActivityContentOneOf, ActivityType$2 as ActivityType, type index_d$b_AddLineItemsToDraftOrderOptions as AddLineItemsToDraftOrderOptions, type index_d$b_AddLineItemsToDraftOrderRequest as AddLineItemsToDraftOrderRequest, type index_d$b_AddLineItemsToDraftOrderResponse as AddLineItemsToDraftOrderResponse, type index_d$b_AddLineItemsToDraftOrderResponseNonNullableFields as AddLineItemsToDraftOrderResponseNonNullableFields, type AdditionalFee$2 as AdditionalFee, type index_d$b_AdditionalFeeDetails as AdditionalFeeDetails, type index_d$b_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$b_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$b_BillingChangedDetails as BillingChangedDetails, type index_d$b_BillingDetails as BillingDetails, type index_d$b_BillingDetailsChangeTypeOneOf as BillingDetailsChangeTypeOneOf, type index_d$b_BuyerChangedDetails as BuyerChangedDetails, type BuyerDetails$1 as BuyerDetails, type index_d$b_BuyerDetailsChangeTypeOneOf as BuyerDetailsChangeTypeOneOf, type BuyerInfo$3 as BuyerInfo, type BuyerInfoIdOneOf$1 as BuyerInfoIdOneOf, type index_d$b_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$b_CatalogReferenceLineItem as CatalogReferenceLineItem, type ChannelInfo$2 as ChannelInfo, ChannelType$2 as ChannelType, type Color$1 as Color, type index_d$b_CommitDraftOrderOptions as CommitDraftOrderOptions, type index_d$b_CommitDraftOrderRequest as CommitDraftOrderRequest, type index_d$b_CommitDraftOrderResponse as CommitDraftOrderResponse, type index_d$b_CommitDraftOrderResponseNonNullableFields as CommitDraftOrderResponseNonNullableFields, type Coupon$2 as Coupon, type index_d$b_CreateCustomAdditionalFeesOptions as CreateCustomAdditionalFeesOptions, type index_d$b_CreateCustomAdditionalFeesRequest as CreateCustomAdditionalFeesRequest, type index_d$b_CreateCustomAdditionalFeesResponse as CreateCustomAdditionalFeesResponse, type index_d$b_CreateCustomAdditionalFeesResponseNonNullableFields as CreateCustomAdditionalFeesResponseNonNullableFields, type index_d$b_CreateCustomDiscountsOptions as CreateCustomDiscountsOptions, type index_d$b_CreateCustomDiscountsRequest as CreateCustomDiscountsRequest, type index_d$b_CreateCustomDiscountsResponse as CreateCustomDiscountsResponse, type index_d$b_CreateCustomDiscountsResponseNonNullableFields as CreateCustomDiscountsResponseNonNullableFields, type index_d$b_CreateDraftOrderRequest as CreateDraftOrderRequest, type index_d$b_CreateDraftOrderResponse as CreateDraftOrderResponse, type index_d$b_CreateDraftOrderResponseNonNullableFields as CreateDraftOrderResponseNonNullableFields, type index_d$b_CreateEmptyDraftOrderRequest as CreateEmptyDraftOrderRequest, type index_d$b_CreateEmptyDraftOrderResponse as CreateEmptyDraftOrderResponse, type index_d$b_CreateOrderFromDraftRequest as CreateOrderFromDraftRequest, type index_d$b_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$b_CustomLineItem as CustomLineItem, type index_d$b_DeleteCustomAdditionalFeesRequest as DeleteCustomAdditionalFeesRequest, type index_d$b_DeleteCustomAdditionalFeesResponse as DeleteCustomAdditionalFeesResponse, type index_d$b_DeleteCustomAdditionalFeesResponseNonNullableFields as DeleteCustomAdditionalFeesResponseNonNullableFields, type index_d$b_DeleteCustomDiscountsRequest as DeleteCustomDiscountsRequest, type index_d$b_DeleteCustomDiscountsResponse as DeleteCustomDiscountsResponse, type index_d$b_DeleteCustomDiscountsResponseNonNullableFields as DeleteCustomDiscountsResponseNonNullableFields, type index_d$b_DeleteDraftOrderRequest as DeleteDraftOrderRequest, type index_d$b_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$b_DiscountDetails as DiscountDetails, type index_d$b_DiscountOption as DiscountOption, type index_d$b_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$b_DraftOrder as DraftOrder, type DraftOrderChangesApplied$1 as DraftOrderChangesApplied, type DraftOrderCommitSettings$1 as DraftOrderCommitSettings, type index_d$b_DraftOrdersQueryBuilder as DraftOrdersQueryBuilder, type index_d$b_DraftOrdersQueryResult as DraftOrdersQueryResult, index_d$b_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$b_FileType as FileType, FulfillmentStatus$3 as FulfillmentStatus, type FulfillmentStatusesAggregate$1 as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$b_GetDraftEditabilityStatusRequest as GetDraftEditabilityStatusRequest, type index_d$b_GetDraftEditabilityStatusResponse as GetDraftEditabilityStatusResponse, type index_d$b_GetDraftOrderRequest as GetDraftOrderRequest, type index_d$b_GetDraftOrderResponse as GetDraftOrderResponse, type index_d$b_GetDraftOrderResponseNonNullableFields as GetDraftOrderResponseNonNullableFields, type index_d$b_GetOrderDraftabilityStatusRequest as GetOrderDraftabilityStatusRequest, type index_d$b_GetOrderDraftabilityStatusResponse as GetOrderDraftabilityStatusResponse, type index_d$b_GetOrderDraftabilityStatusResponseNonNullableFields as GetOrderDraftabilityStatusResponseNonNullableFields, type index_d$b_IdAndApplied as IdAndApplied, type IdentificationData$9 as IdentificationData, type IdentificationDataIdOneOf$9 as IdentificationDataIdOneOf, type index_d$b_InventoryUpdate as InventoryUpdate, type ItemChangedDetails$1 as ItemChangedDetails, type index_d$b_ItemDetails as ItemDetails, type index_d$b_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$b_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$b_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$b_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$b_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$b_QueryDraftOrdersRequest as QueryDraftOrdersRequest, type index_d$b_QueryDraftOrdersResponse as QueryDraftOrdersResponse, type index_d$b_QueryDraftOrdersResponseNonNullableFields as QueryDraftOrdersResponseNonNullableFields, type index_d$b_RecipientInfoChangedDetails as RecipientInfoChangedDetails, type index_d$b_RecipientInfoDetails as RecipientInfoDetails, type index_d$b_RecipientInfoDetailsChangeTypeOneOf as RecipientInfoDetailsChangeTypeOneOf, type RefundInitiated$1 as RefundInitiated, 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$b_SecuredMedia as SecuredMedia, type index_d$b_SetAdditionalFeesRequest as SetAdditionalFeesRequest, type index_d$b_SetAdditionalFeesResponse as SetAdditionalFeesResponse, type index_d$b_SetAdditionalFeesResponseNonNullableFields as SetAdditionalFeesResponseNonNullableFields, type index_d$b_SetBillingInfoRequest as SetBillingInfoRequest, type index_d$b_SetBillingInfoResponse as SetBillingInfoResponse, type index_d$b_SetBuyerInfoRequest as SetBuyerInfoRequest, type index_d$b_SetBuyerInfoResponse as SetBuyerInfoResponse, type index_d$b_SetDiscountsRequest as SetDiscountsRequest, type index_d$b_SetDiscountsResponse as SetDiscountsResponse, type index_d$b_SetDiscountsResponseNonNullableFields as SetDiscountsResponseNonNullableFields, type index_d$b_SetRecipientInfoRequest as SetRecipientInfoRequest, type index_d$b_SetRecipientInfoResponse as SetRecipientInfoResponse, type index_d$b_SetShippingInfoRequest as SetShippingInfoRequest, type index_d$b_SetShippingInfoResponse as SetShippingInfoResponse, type index_d$b_ShippingChangedDetails as ShippingChangedDetails, type index_d$b_ShippingDetails as ShippingDetails, type index_d$b_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 TotalPriceChange$1 as TotalPriceChange, type TranslatedValue$1 as TranslatedValue, type UpdateExtendedFieldsRequest$3 as UpdateExtendedFieldsRequest, type UpdateExtendedFieldsResponse$3 as UpdateExtendedFieldsResponse, type index_d$b_UpdateLineItemsOptions as UpdateLineItemsOptions, type index_d$b_UpdateLineItemsRequest as UpdateLineItemsRequest, type index_d$b_UpdateLineItemsResponse as UpdateLineItemsResponse, type index_d$b_UpdateLineItemsResponseNonNullableFields as UpdateLineItemsResponseNonNullableFields, type index_d$b_UpdateShippingInfoRequest as UpdateShippingInfoRequest, type index_d$b_UpdateShippingInfoResponse as UpdateShippingInfoResponse, type index_d$b_V1BalanceSummary as V1BalanceSummary, type index_d$b_V1CreatedBy as V1CreatedBy, type index_d$b_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type index_d$b_V1DeliveryLogistics as V1DeliveryLogistics, type index_d$b_V1DeliveryLogisticsAddressOneOf as V1DeliveryLogisticsAddressOneOf, type index_d$b_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type index_d$b_V1PickupDetails as V1PickupDetails, type V1ShippingInformation$1 as V1ShippingInformation, type index_d$b_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$b_addLineItemsToDraftOrder as addLineItemsToDraftOrder, index_d$b_commitDraftOrder as commitDraftOrder, index_d$b_createCustomAdditionalFees as createCustomAdditionalFees, index_d$b_createCustomDiscounts as createCustomDiscounts, index_d$b_createDraftOrder as createDraftOrder, index_d$b_deleteCustomAdditionalFees as deleteCustomAdditionalFees, index_d$b_deleteCustomDiscounts as deleteCustomDiscounts, index_d$b_deleteDraftOrder as deleteDraftOrder, index_d$b_getDraftOrder as getDraftOrder, index_d$b_getOrderDraftabilityStatus as getOrderDraftabilityStatus, index_d$b_queryDraftOrders as queryDraftOrders, index_d$b_setAdditionalFees as setAdditionalFees, index_d$b_setDiscounts as setDiscounts, index_d$b_updateLineItems as updateLineItems };
|
|
19752
19750
|
}
|
|
19753
19751
|
|
|
19754
19752
|
interface OrderWithFulfillments {
|
|
@@ -22409,534 +22407,239 @@ interface SnapshotMessage$1 {
|
|
|
22409
22407
|
_id?: string;
|
|
22410
22408
|
opType?: number;
|
|
22411
22409
|
}
|
|
22412
|
-
|
|
22413
|
-
|
|
22414
|
-
|
|
22415
|
-
orderTransactions?: OrderTransactions$2;
|
|
22416
|
-
/** List of IDs of the updated payments. */
|
|
22417
|
-
paymentIds?: string[];
|
|
22418
|
-
/** List of IDs of the updated refunds. */
|
|
22419
|
-
refundIds?: string[];
|
|
22410
|
+
interface GetMetasiteDataRequest {
|
|
22411
|
+
/** meta site Id for data to retrieve */
|
|
22412
|
+
metasiteId?: string;
|
|
22420
22413
|
}
|
|
22421
|
-
interface
|
|
22422
|
-
/**
|
|
22423
|
-
|
|
22424
|
-
/**
|
|
22425
|
-
|
|
22426
|
-
/**
|
|
22427
|
-
|
|
22414
|
+
interface GetMetasiteDataResponse {
|
|
22415
|
+
/** meta site data */
|
|
22416
|
+
metasite?: MetaSite;
|
|
22417
|
+
/** is metasite added to new SDL population via population manager */
|
|
22418
|
+
isInNewPopulation?: boolean;
|
|
22419
|
+
/** metasite url */
|
|
22420
|
+
metasiteUrl?: string;
|
|
22421
|
+
/** owner data */
|
|
22422
|
+
userDataResponse?: UserDataResponse;
|
|
22428
22423
|
}
|
|
22429
|
-
|
|
22430
|
-
|
|
22431
|
-
|
|
22432
|
-
|
|
22433
|
-
|
|
22424
|
+
/**
|
|
22425
|
+
* Represents Meta Site.
|
|
22426
|
+
*
|
|
22427
|
+
* Meta Site is a legacy concept, it aggregates data from several domains. Generally, it contains and manages
|
|
22428
|
+
* relations between different entities related to the site (or, as a new concept, to the container).
|
|
22429
|
+
*
|
|
22430
|
+
* We prefer to pronounce it as 2 separate words, therefore we use terms "meta site" or "metaSite" or "meta_site" in code.
|
|
22431
|
+
*/
|
|
22432
|
+
interface MetaSite {
|
|
22434
22433
|
/**
|
|
22435
|
-
*
|
|
22434
|
+
* Identifier of meta site.
|
|
22436
22435
|
* @readonly
|
|
22437
22436
|
*/
|
|
22438
|
-
|
|
22439
|
-
/** Date and time the payment was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
|
|
22440
|
-
_createdDate?: Date;
|
|
22437
|
+
metaSiteId?: string;
|
|
22441
22438
|
/**
|
|
22442
|
-
*
|
|
22439
|
+
* Internal version of meta site. Monotonically increasing number.
|
|
22440
|
+
*
|
|
22441
|
+
* If passed within update request, it will be used for optimistic locking. In this case,
|
|
22442
|
+
* StaleStateException will be thrown if current version doesn't match.
|
|
22443
|
+
*
|
|
22444
|
+
* In old MetaSiteDTO -- revision.
|
|
22443
22445
|
* @readonly
|
|
22444
22446
|
*/
|
|
22445
|
-
|
|
22446
|
-
/** Payment amount. */
|
|
22447
|
-
amount?: Price$2;
|
|
22447
|
+
version?: string;
|
|
22448
22448
|
/**
|
|
22449
|
-
*
|
|
22450
|
-
*
|
|
22451
|
-
* + `false`: This payment may be refunded. However, this ultimately depends on the payment provider.
|
|
22449
|
+
* Identifier of account that owns this meta site.
|
|
22450
|
+
* @readonly
|
|
22452
22451
|
*/
|
|
22453
|
-
|
|
22454
|
-
}
|
|
22455
|
-
/** @oneof */
|
|
22456
|
-
interface PaymentPaymentDetailsOneOf$2 {
|
|
22457
|
-
/** Regular payment details. */
|
|
22458
|
-
regularPaymentDetails?: RegularPaymentDetails$2;
|
|
22459
|
-
/** Gift card payment details. */
|
|
22460
|
-
giftcardPaymentDetails?: GiftCardPaymentDetails$2;
|
|
22461
|
-
}
|
|
22462
|
-
interface RegularPaymentDetails$2 extends RegularPaymentDetailsPaymentMethodDetailsOneOf$2 {
|
|
22463
|
-
/** Whether regular card used */
|
|
22464
|
-
creditCardDetails?: CreditCardPaymentMethodDetails$2;
|
|
22465
|
-
/** Wix Payments order ID. */
|
|
22466
|
-
paymentOrderId?: string | null;
|
|
22452
|
+
ownerId?: string;
|
|
22467
22453
|
/**
|
|
22468
|
-
*
|
|
22469
|
-
*
|
|
22454
|
+
* Date and time when meta site was created.
|
|
22455
|
+
* @readonly
|
|
22470
22456
|
*/
|
|
22471
|
-
|
|
22457
|
+
dateCreated?: Date;
|
|
22472
22458
|
/**
|
|
22473
|
-
*
|
|
22474
|
-
*
|
|
22459
|
+
* Date and time when meta site was updated for the last time.
|
|
22460
|
+
* @readonly
|
|
22475
22461
|
*/
|
|
22476
|
-
|
|
22477
|
-
/** Transaction ID in the payment provider's system. For example, at PayPal, Square, Stripe, etc. Not returned for offline payments. */
|
|
22478
|
-
providerTransactionId?: string | null;
|
|
22479
|
-
/** Whether the payment was made offline. For example, when using cash or when marked as paid in the Business Manager. */
|
|
22480
|
-
offlinePayment?: boolean;
|
|
22481
|
-
/** Payment status. */
|
|
22482
|
-
status?: TransactionStatus$2;
|
|
22483
|
-
/** Whether there is a payment agreement that allows for future charges. */
|
|
22484
|
-
savedPaymentMethod?: boolean;
|
|
22485
|
-
/** Authorization details. */
|
|
22486
|
-
authorizationDetails?: AuthorizationDetails$2;
|
|
22487
|
-
}
|
|
22488
|
-
/** @oneof */
|
|
22489
|
-
interface RegularPaymentDetailsPaymentMethodDetailsOneOf$2 {
|
|
22490
|
-
/** Whether regular card used */
|
|
22491
|
-
creditCardDetails?: CreditCardPaymentMethodDetails$2;
|
|
22492
|
-
}
|
|
22493
|
-
declare enum TransactionStatus$2 {
|
|
22494
|
-
UNDEFINED = "UNDEFINED",
|
|
22495
|
-
APPROVED = "APPROVED",
|
|
22496
|
-
PENDING = "PENDING",
|
|
22497
|
-
PENDING_MERCHANT = "PENDING_MERCHANT",
|
|
22498
|
-
CANCELED = "CANCELED",
|
|
22499
|
-
DECLINED = "DECLINED",
|
|
22500
|
-
REFUNDED = "REFUNDED",
|
|
22501
|
-
PARTIALLY_REFUNDED = "PARTIALLY_REFUNDED",
|
|
22502
|
-
AUTHORIZED = "AUTHORIZED",
|
|
22503
|
-
VOIDED = "VOIDED"
|
|
22504
|
-
}
|
|
22505
|
-
interface CreditCardPaymentMethodDetails$2 {
|
|
22506
|
-
/** The last 4 digits of the card number. */
|
|
22507
|
-
lastFourDigits?: string | null;
|
|
22508
|
-
/** Card issuer's brand. */
|
|
22509
|
-
brand?: string | null;
|
|
22510
|
-
}
|
|
22511
|
-
interface AuthorizationDetails$2 {
|
|
22462
|
+
dateUpdated?: Date;
|
|
22512
22463
|
/**
|
|
22513
|
-
*
|
|
22464
|
+
* All "applications" of this meta site.
|
|
22465
|
+
*
|
|
22466
|
+
* In old MetaSiteDTO -- embeddedServices.
|
|
22467
|
+
*/
|
|
22468
|
+
apps?: App[];
|
|
22469
|
+
/** Namespace of meta site. */
|
|
22470
|
+
namespace?: Namespace;
|
|
22471
|
+
/**
|
|
22472
|
+
* Indicates whether https should be used for viewing a site.
|
|
22473
|
+
*
|
|
22474
|
+
* In old MetaSiteDTO -- flags.UseHttps.
|
|
22475
|
+
*/
|
|
22476
|
+
useHttps?: boolean;
|
|
22477
|
+
defaultSeoData?: SeoData;
|
|
22478
|
+
/**
|
|
22479
|
+
* Information about HTML application.
|
|
22480
|
+
*
|
|
22481
|
+
* In old MetaSiteDTO -- appplications.find(_.applicationType == HtmlWeb).
|
|
22482
|
+
*/
|
|
22483
|
+
htmlApp?: HtmlApplication;
|
|
22484
|
+
/** @deprecated */
|
|
22485
|
+
externalUriMappings?: ExternalUriMapping[];
|
|
22486
|
+
/** Indicates whether meta site was published. If true - site should be accessible for viewing. */
|
|
22487
|
+
published?: boolean;
|
|
22488
|
+
/**
|
|
22489
|
+
* The name of meta site.
|
|
22490
|
+
*
|
|
22491
|
+
* Matches this regular expression: [a-z0-9_\-]{4,20} (but for some legacy sites might be shorted/longer).
|
|
22492
|
+
*/
|
|
22493
|
+
name?: string;
|
|
22494
|
+
/**
|
|
22495
|
+
* Indicates whether this site is managed by ADI editor
|
|
22496
|
+
*
|
|
22497
|
+
* Values:
|
|
22498
|
+
* None - not managed.
|
|
22499
|
+
* Some(false) - site was created via ADI editor, but later on user switched to regular editor.
|
|
22500
|
+
* Some(true) - site was created and still is managed by ADI editor.
|
|
22501
|
+
*
|
|
22502
|
+
* In old MetaSiteDTO: embeddedService[embeddedServiceType=Onboarding].attributes.isInUse.
|
|
22503
|
+
*/
|
|
22504
|
+
adi?: boolean | null;
|
|
22505
|
+
/**
|
|
22506
|
+
* Indicates whether this meta site is template.
|
|
22507
|
+
*
|
|
22508
|
+
* In old MetaSiteDTO: documentType == Template.
|
|
22514
22509
|
* @readonly
|
|
22515
22510
|
*/
|
|
22516
|
-
|
|
22517
|
-
/** Date and time the payment was authorized in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
|
|
22518
|
-
authorizedDate?: Date;
|
|
22511
|
+
template?: boolean | null;
|
|
22519
22512
|
/**
|
|
22520
|
-
*
|
|
22521
|
-
*
|
|
22513
|
+
* Identifier of a template (meta site) from which this site was created.
|
|
22514
|
+
*
|
|
22515
|
+
* If it's empty it either means that site wasn't created from a template OR it's very old, so we didn't store
|
|
22516
|
+
* it back then.
|
|
22517
|
+
*
|
|
22518
|
+
* For example, if "site" was created from "template", then "template"'s id will be in origin_template_id.
|
|
22519
|
+
* When "site" is cloned, clone will also have "template"'s id in origin_instance_id.
|
|
22520
|
+
* @readonly
|
|
22522
22521
|
*/
|
|
22523
|
-
|
|
22524
|
-
/** Void associated with payment */
|
|
22525
|
-
void?: AuthorizationVoid$2;
|
|
22526
|
-
/** Scheduled action for this transaction */
|
|
22527
|
-
scheduledAction?: V1ScheduledAction;
|
|
22528
|
-
}
|
|
22529
|
-
interface AuthorizationCapture$2 {
|
|
22522
|
+
originTemplateId?: string | null;
|
|
22530
22523
|
/**
|
|
22531
|
-
*
|
|
22524
|
+
* Indicates meta site blocked from publishing and added additional filtering in listing API (MSS). READ_ONLY.
|
|
22532
22525
|
* @readonly
|
|
22533
22526
|
*/
|
|
22534
|
-
|
|
22535
|
-
/**
|
|
22536
|
-
|
|
22537
|
-
|
|
22538
|
-
|
|
22539
|
-
|
|
22540
|
-
|
|
22541
|
-
|
|
22542
|
-
|
|
22543
|
-
|
|
22544
|
-
|
|
22545
|
-
|
|
22546
|
-
|
|
22547
|
-
|
|
22548
|
-
|
|
22549
|
-
SUCCEEDED = "SUCCEEDED",
|
|
22550
|
-
/** The capture operation was failed */
|
|
22551
|
-
FAILED = "FAILED"
|
|
22552
|
-
}
|
|
22553
|
-
interface AuthorizationActionFailureDetails$2 {
|
|
22554
|
-
failureCode?: string;
|
|
22555
|
-
}
|
|
22556
|
-
interface AuthorizationVoid$2 {
|
|
22557
|
-
/** Status of this void action */
|
|
22558
|
-
status?: AuthorizationVoidStatus$2;
|
|
22559
|
-
/** Date and time the void was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
|
|
22560
|
-
voidedDate?: Date;
|
|
22561
|
-
/** In case of status is FAILED may contain failure details */
|
|
22562
|
-
failureDetails?: AuthorizationActionFailureDetails$2;
|
|
22563
|
-
/** Reason of void action */
|
|
22564
|
-
reason?: Reason$2;
|
|
22527
|
+
blocked?: boolean;
|
|
22528
|
+
/**
|
|
22529
|
+
* If true - default meta site routing (connected domains, free url, ML) is not used for this meta site.
|
|
22530
|
+
*
|
|
22531
|
+
* Meaning, that if `example.org` is connected to this meta site, `router-server` will return 404 for `example.org`
|
|
22532
|
+
* anyway.
|
|
22533
|
+
*
|
|
22534
|
+
* This flag is set for some sites that have custom mapping in Routes API / wix-pages-bo.
|
|
22535
|
+
*/
|
|
22536
|
+
dontUseDefaultRouting?: boolean;
|
|
22537
|
+
/**
|
|
22538
|
+
* Indicates the site is used as critical asset and as such is protected. You would be only able to provision applications to this meta site. READ_ONLY.
|
|
22539
|
+
* @readonly
|
|
22540
|
+
*/
|
|
22541
|
+
criticalAsset?: boolean;
|
|
22565
22542
|
}
|
|
22566
|
-
|
|
22567
|
-
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
22568
|
-
/** Whether void operation still in progress */
|
|
22569
|
-
PENDING = "PENDING",
|
|
22570
|
-
/** The void operation was succeeded */
|
|
22571
|
-
SUCCEEDED = "SUCCEEDED",
|
|
22572
|
-
/** The void operation was failed */
|
|
22573
|
-
FAILED = "FAILED"
|
|
22574
|
-
}
|
|
22575
|
-
/**
|
|
22576
|
-
* Reason the authorization was voided.
|
|
22577
|
-
*
|
|
22578
|
-
* + `MANUAL`: Authorization was voided by user.
|
|
22579
|
-
* + `SCHEDULED`: Authorization passed execution date.
|
|
22580
|
-
*/
|
|
22581
|
-
declare enum Reason$2 {
|
|
22582
|
-
UNKNOWN_REASON = "UNKNOWN_REASON",
|
|
22583
|
-
MANUAL = "MANUAL",
|
|
22584
|
-
SCHEDULED = "SCHEDULED"
|
|
22585
|
-
}
|
|
22586
|
-
interface V1ScheduledAction {
|
|
22587
|
-
/** type of the action */
|
|
22588
|
-
actionType?: ActionType$2;
|
|
22589
|
-
/** the date and time of the action */
|
|
22590
|
-
executionDate?: Date;
|
|
22591
|
-
}
|
|
22592
|
-
declare enum ActionType$2 {
|
|
22593
|
-
UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
|
|
22594
|
-
VOID = "VOID",
|
|
22595
|
-
CAPTURE = "CAPTURE"
|
|
22596
|
-
}
|
|
22597
|
-
interface GiftCardPaymentDetails$2 {
|
|
22598
|
-
/** Gift card payment ID. */
|
|
22599
|
-
giftCardPaymentId?: string;
|
|
22600
|
-
/** ID of the app that created the gift card. */
|
|
22601
|
-
appId?: string;
|
|
22543
|
+
interface App {
|
|
22602
22544
|
/**
|
|
22603
|
-
*
|
|
22604
|
-
*
|
|
22545
|
+
* Identifier of application type (application definition id).
|
|
22546
|
+
*
|
|
22547
|
+
* Can be both UUID and non-UUID, for example: SiteMembers, Onboarding, CloudSiteExtension etc.
|
|
22605
22548
|
*/
|
|
22606
|
-
|
|
22607
|
-
}
|
|
22608
|
-
interface MembershipPaymentDetails$2 {
|
|
22609
|
-
/** Membership ID. */
|
|
22610
|
-
membershipId?: string;
|
|
22611
|
-
/** ID of the line item this membership applies to. */
|
|
22612
|
-
lineItemId?: string;
|
|
22613
|
-
/** Payment status. */
|
|
22614
|
-
status?: MembershipPaymentStatus$2;
|
|
22615
|
-
/** Membership name. */
|
|
22616
|
-
name?: MembershipName$3;
|
|
22617
|
-
/** The transaction ID in the membership system. Can be used to void the transaction. */
|
|
22618
|
-
externalTransactionId?: string | null;
|
|
22549
|
+
appDefId?: string;
|
|
22619
22550
|
/**
|
|
22620
|
-
*
|
|
22621
|
-
*
|
|
22551
|
+
* Identifier of the instance (concrete application, installed on a site).
|
|
22552
|
+
*
|
|
22553
|
+
* Mostly UUID, but for some specific legacy cases might be something else.
|
|
22622
22554
|
*/
|
|
22623
|
-
|
|
22624
|
-
/** ID of the application providing this payment option. */
|
|
22625
|
-
providerAppId?: string;
|
|
22626
|
-
}
|
|
22627
|
-
declare enum MembershipPaymentStatus$2 {
|
|
22628
|
-
/** CHARGED - Payment was charged */
|
|
22629
|
-
CHARGED = "CHARGED",
|
|
22630
|
-
/** CHARGE_FAILED - The attempt to charge that payment have failed, for example due to lack of credits */
|
|
22631
|
-
CHARGE_FAILED = "CHARGE_FAILED"
|
|
22632
|
-
}
|
|
22633
|
-
interface MembershipName$3 {
|
|
22634
|
-
/** The name of this membership */
|
|
22635
|
-
original?: string;
|
|
22636
|
-
/** Optional - Translated name of this membership. Defaults to `original` when not provided. */
|
|
22637
|
-
translated?: string | null;
|
|
22638
|
-
}
|
|
22639
|
-
interface Refund$2 {
|
|
22555
|
+
instanceId?: string;
|
|
22640
22556
|
/**
|
|
22641
|
-
*
|
|
22557
|
+
* State of this app (see docs for state).
|
|
22642
22558
|
* @readonly
|
|
22643
22559
|
*/
|
|
22644
|
-
|
|
22645
|
-
/** List of transactions. */
|
|
22646
|
-
transactions?: RefundTransaction$2[];
|
|
22647
|
-
/** Refund business details. */
|
|
22648
|
-
details?: RefundDetails$2;
|
|
22649
|
-
/** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
|
|
22650
|
-
_createdDate?: Date;
|
|
22651
|
-
}
|
|
22652
|
-
interface RefundTransaction$2 {
|
|
22653
|
-
/** ID of the payment associated with this refund. */
|
|
22654
|
-
paymentId?: string;
|
|
22655
|
-
/** Refund amount. */
|
|
22656
|
-
amount?: Price$2;
|
|
22657
|
-
/** Refund status. */
|
|
22658
|
-
refundStatus?: RefundStatus$2;
|
|
22560
|
+
state?: State;
|
|
22659
22561
|
/**
|
|
22660
|
-
*
|
|
22661
|
-
*
|
|
22562
|
+
* Identifier of the originating application. For example, if this app was part of a template,
|
|
22563
|
+
* then an app will get instance_id of that app as origin instance id.
|
|
22564
|
+
*
|
|
22565
|
+
* If application was provisioned not from some template, it should be empty.
|
|
22566
|
+
*
|
|
22567
|
+
* Note, it could be == to instance_id (for old sites).
|
|
22662
22568
|
*/
|
|
22663
|
-
|
|
22664
|
-
/** ID of the refund in the payment provider's system. For example, at PayPal, Square, Stripe, etc. Not returned for external refunds. */
|
|
22665
|
-
providerRefundId?: string | null;
|
|
22666
|
-
/** Whether refund was made externally and manually on the payment provider's side. */
|
|
22667
|
-
externalRefund?: boolean;
|
|
22569
|
+
originInstanceId?: string;
|
|
22668
22570
|
}
|
|
22669
22571
|
/**
|
|
22670
|
-
*
|
|
22671
|
-
*
|
|
22672
|
-
* + `SUCCEEDED`: Refund transaction succeeded.
|
|
22673
|
-
* + `FAILED`: Refund transaction failed.
|
|
22674
|
-
* + `SCHEDULED`: Refund request acknowledged, and will be executed soon.
|
|
22675
|
-
* + `STARTED`: Refund was initiated on payment provider side.
|
|
22572
|
+
* Represents the actual state of the application on site. Do not confuse with the State in the old MetaSiteDTO,
|
|
22573
|
+
* which has less values and doesn't have 1-to-1 correspondence with this one (this one is exact and correct!)
|
|
22676
22574
|
*/
|
|
22677
|
-
declare enum
|
|
22678
|
-
|
|
22679
|
-
|
|
22680
|
-
|
|
22681
|
-
|
|
22682
|
-
|
|
22683
|
-
|
|
22684
|
-
|
|
22685
|
-
|
|
22686
|
-
|
|
22687
|
-
items?: RefundItem$2[];
|
|
22688
|
-
/** Whether the shipping fee was also refunded. */
|
|
22689
|
-
shippingIncluded?: boolean;
|
|
22690
|
-
/** Reason for the refund, provided by customer (optional). */
|
|
22691
|
-
reason?: string | null;
|
|
22692
|
-
}
|
|
22693
|
-
interface RefundItem$2 {
|
|
22694
|
-
/** Line item ID the refunded line item. */
|
|
22695
|
-
lineItemId?: string;
|
|
22696
|
-
/** Line item quantity refunded. */
|
|
22697
|
-
quantity?: number;
|
|
22698
|
-
}
|
|
22699
|
-
interface LineItemRefund$2 {
|
|
22700
|
-
}
|
|
22701
|
-
interface AdditionalFeeRefund$2 {
|
|
22702
|
-
}
|
|
22703
|
-
interface ShippingRefund$2 {
|
|
22704
|
-
}
|
|
22705
|
-
interface AggregatedRefundSummary$2 {
|
|
22706
|
-
}
|
|
22707
|
-
interface GetMetasiteDataRequest {
|
|
22708
|
-
/** meta site Id for data to retrieve */
|
|
22709
|
-
metasiteId?: string;
|
|
22710
|
-
}
|
|
22711
|
-
interface GetMetasiteDataResponse {
|
|
22712
|
-
/** meta site data */
|
|
22713
|
-
metasite?: MetaSite;
|
|
22714
|
-
/** is metasite added to new SDL population via population manager */
|
|
22715
|
-
isInNewPopulation?: boolean;
|
|
22716
|
-
/** metasite url */
|
|
22717
|
-
metasiteUrl?: string;
|
|
22718
|
-
/** owner data */
|
|
22719
|
-
userDataResponse?: UserDataResponse;
|
|
22575
|
+
declare enum State {
|
|
22576
|
+
UNKNOWN = "UNKNOWN",
|
|
22577
|
+
/** App is installed on a site. */
|
|
22578
|
+
ENABLED = "ENABLED",
|
|
22579
|
+
/** App is removed from a site (but we preserve it just in case). */
|
|
22580
|
+
DISABLED = "DISABLED",
|
|
22581
|
+
/** App is in "demo" mode, meaning that it's in read-only mode (it's in a template OR not installed yet). */
|
|
22582
|
+
TEMPLATE = "TEMPLATE",
|
|
22583
|
+
/** App is not installed, there is a user intention for it only (user will see the pimpl in the editor). */
|
|
22584
|
+
PENDING = "PENDING"
|
|
22720
22585
|
}
|
|
22721
|
-
|
|
22722
|
-
|
|
22723
|
-
|
|
22724
|
-
|
|
22725
|
-
|
|
22726
|
-
|
|
22727
|
-
|
|
22728
|
-
|
|
22729
|
-
|
|
22730
|
-
|
|
22731
|
-
|
|
22732
|
-
|
|
22733
|
-
|
|
22734
|
-
|
|
22586
|
+
declare enum Namespace {
|
|
22587
|
+
UNKNOWN_NAMESPACE = "UNKNOWN_NAMESPACE",
|
|
22588
|
+
/** Default namespace for UGC sites. MetaSites with this namespace will be shown in a user's site list by default. */
|
|
22589
|
+
WIX = "WIX",
|
|
22590
|
+
/** ShoutOut stand alone product. These are siteless (no actual Wix site, no HtmlWeb). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22591
|
+
SHOUT_OUT = "SHOUT_OUT",
|
|
22592
|
+
/** MetaSites created by the Albums product, they appear as part of the Albums app. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22593
|
+
ALBUMS = "ALBUMS",
|
|
22594
|
+
/** Part of the WixStores migration flow, a user tries to migrate and gets this site to view and if the user likes it then stores removes this namespace and deletes the old site with the old stores. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22595
|
+
WIX_STORES_TEST_DRIVE = "WIX_STORES_TEST_DRIVE",
|
|
22596
|
+
/** Hotels standalone (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22597
|
+
HOTELS = "HOTELS",
|
|
22598
|
+
/** Clubs siteless MetaSites, a club without a wix website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22599
|
+
CLUBS = "CLUBS",
|
|
22600
|
+
/** A partially created ADI website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22601
|
+
ONBOARDING_DRAFT = "ONBOARDING_DRAFT",
|
|
22602
|
+
/** AppBuilder for AppStudio / shmite (c). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22603
|
+
DEV_SITE = "DEV_SITE",
|
|
22604
|
+
/** LogoMaker websites offered to the user after logo purchase. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22605
|
+
LOGOS = "LOGOS",
|
|
22606
|
+
/** VideoMaker websites offered to the user after video purchase. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22607
|
+
VIDEO_MAKER = "VIDEO_MAKER",
|
|
22608
|
+
/** MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22609
|
+
PARTNER_DASHBOARD = "PARTNER_DASHBOARD",
|
|
22610
|
+
/** MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22611
|
+
DEV_CENTER_COMPANY = "DEV_CENTER_COMPANY",
|
|
22735
22612
|
/**
|
|
22736
|
-
*
|
|
22737
|
-
*
|
|
22738
|
-
* If passed within update request, it will be used for optimistic locking. In this case,
|
|
22739
|
-
* StaleStateException will be thrown if current version doesn't match.
|
|
22613
|
+
* A draft created by HTML editor on open. Upon "first save" it will be moved to be of WIX domain.
|
|
22740
22614
|
*
|
|
22741
|
-
*
|
|
22742
|
-
* @readonly
|
|
22743
|
-
*/
|
|
22744
|
-
version?: string;
|
|
22745
|
-
/**
|
|
22746
|
-
* Identifier of account that owns this meta site.
|
|
22747
|
-
* @readonly
|
|
22615
|
+
* Meta site with this namespace will *not* be shown in a user's site list by default.
|
|
22748
22616
|
*/
|
|
22749
|
-
|
|
22617
|
+
HTML_DRAFT = "HTML_DRAFT",
|
|
22750
22618
|
/**
|
|
22751
|
-
*
|
|
22752
|
-
*
|
|
22619
|
+
* the user-journey for Fitness users who want to start from managing their business instead of designing their website.
|
|
22620
|
+
* Will be accessible from Site List and will not have a website app.
|
|
22621
|
+
* Once the user attaches a site, the site will become a regular wixsite.
|
|
22753
22622
|
*/
|
|
22754
|
-
|
|
22623
|
+
SITELESS_BUSINESS = "SITELESS_BUSINESS",
|
|
22624
|
+
/** Belongs to "strategic products" company. Supports new product in the creator's economy space. */
|
|
22625
|
+
CREATOR_ECONOMY = "CREATOR_ECONOMY",
|
|
22626
|
+
/** It is to be used in the Business First efforts. */
|
|
22627
|
+
DASHBOARD_FIRST = "DASHBOARD_FIRST",
|
|
22628
|
+
/** Bookings business flow with no site. */
|
|
22629
|
+
ANYWHERE = "ANYWHERE",
|
|
22630
|
+
/** Namespace for Headless Backoffice with no editor */
|
|
22631
|
+
HEADLESS = "HEADLESS",
|
|
22755
22632
|
/**
|
|
22756
|
-
*
|
|
22757
|
-
*
|
|
22633
|
+
* Namespace for master site that will exist in parent account that will be referenced by subaccounts
|
|
22634
|
+
* The site will be used for account level CSM feature for enterprise
|
|
22758
22635
|
*/
|
|
22759
|
-
|
|
22636
|
+
ACCOUNT_MASTER_CMS = "ACCOUNT_MASTER_CMS",
|
|
22637
|
+
/** Rise.ai Siteless account management for Gift Cards and Store Credit. */
|
|
22638
|
+
RISE = "RISE",
|
|
22760
22639
|
/**
|
|
22761
|
-
*
|
|
22762
|
-
*
|
|
22763
|
-
*
|
|
22764
|
-
*/
|
|
22765
|
-
apps?: App[];
|
|
22766
|
-
/** Namespace of meta site. */
|
|
22767
|
-
namespace?: Namespace;
|
|
22768
|
-
/**
|
|
22769
|
-
* Indicates whether https should be used for viewing a site.
|
|
22770
|
-
*
|
|
22771
|
-
* In old MetaSiteDTO -- flags.UseHttps.
|
|
22772
|
-
*/
|
|
22773
|
-
useHttps?: boolean;
|
|
22774
|
-
defaultSeoData?: SeoData;
|
|
22775
|
-
/**
|
|
22776
|
-
* Information about HTML application.
|
|
22777
|
-
*
|
|
22778
|
-
* In old MetaSiteDTO -- appplications.find(_.applicationType == HtmlWeb).
|
|
22779
|
-
*/
|
|
22780
|
-
htmlApp?: HtmlApplication;
|
|
22781
|
-
/** @deprecated */
|
|
22782
|
-
externalUriMappings?: ExternalUriMapping[];
|
|
22783
|
-
/** Indicates whether meta site was published. If true - site should be accessible for viewing. */
|
|
22784
|
-
published?: boolean;
|
|
22785
|
-
/**
|
|
22786
|
-
* The name of meta site.
|
|
22787
|
-
*
|
|
22788
|
-
* Matches this regular expression: [a-z0-9_\-]{4,20} (but for some legacy sites might be shorted/longer).
|
|
22789
|
-
*/
|
|
22790
|
-
name?: string;
|
|
22791
|
-
/**
|
|
22792
|
-
* Indicates whether this site is managed by ADI editor
|
|
22793
|
-
*
|
|
22794
|
-
* Values:
|
|
22795
|
-
* None - not managed.
|
|
22796
|
-
* Some(false) - site was created via ADI editor, but later on user switched to regular editor.
|
|
22797
|
-
* Some(true) - site was created and still is managed by ADI editor.
|
|
22798
|
-
*
|
|
22799
|
-
* In old MetaSiteDTO: embeddedService[embeddedServiceType=Onboarding].attributes.isInUse.
|
|
22800
|
-
*/
|
|
22801
|
-
adi?: boolean | null;
|
|
22802
|
-
/**
|
|
22803
|
-
* Indicates whether this meta site is template.
|
|
22804
|
-
*
|
|
22805
|
-
* In old MetaSiteDTO: documentType == Template.
|
|
22806
|
-
* @readonly
|
|
22807
|
-
*/
|
|
22808
|
-
template?: boolean | null;
|
|
22809
|
-
/**
|
|
22810
|
-
* Identifier of a template (meta site) from which this site was created.
|
|
22811
|
-
*
|
|
22812
|
-
* If it's empty it either means that site wasn't created from a template OR it's very old, so we didn't store
|
|
22813
|
-
* it back then.
|
|
22814
|
-
*
|
|
22815
|
-
* For example, if "site" was created from "template", then "template"'s id will be in origin_template_id.
|
|
22816
|
-
* When "site" is cloned, clone will also have "template"'s id in origin_instance_id.
|
|
22817
|
-
* @readonly
|
|
22818
|
-
*/
|
|
22819
|
-
originTemplateId?: string | null;
|
|
22820
|
-
/**
|
|
22821
|
-
* Indicates meta site blocked from publishing and added additional filtering in listing API (MSS). READ_ONLY.
|
|
22822
|
-
* @readonly
|
|
22823
|
-
*/
|
|
22824
|
-
blocked?: boolean;
|
|
22825
|
-
/**
|
|
22826
|
-
* If true - default meta site routing (connected domains, free url, ML) is not used for this meta site.
|
|
22827
|
-
*
|
|
22828
|
-
* Meaning, that if `example.org` is connected to this meta site, `router-server` will return 404 for `example.org`
|
|
22829
|
-
* anyway.
|
|
22830
|
-
*
|
|
22831
|
-
* This flag is set for some sites that have custom mapping in Routes API / wix-pages-bo.
|
|
22832
|
-
*/
|
|
22833
|
-
dontUseDefaultRouting?: boolean;
|
|
22834
|
-
/**
|
|
22835
|
-
* Indicates the site is used as critical asset and as such is protected. You would be only able to provision applications to this meta site. READ_ONLY.
|
|
22836
|
-
* @readonly
|
|
22837
|
-
*/
|
|
22838
|
-
criticalAsset?: boolean;
|
|
22839
|
-
}
|
|
22840
|
-
interface App {
|
|
22841
|
-
/**
|
|
22842
|
-
* Identifier of application type (application definition id).
|
|
22843
|
-
*
|
|
22844
|
-
* Can be both UUID and non-UUID, for example: SiteMembers, Onboarding, CloudSiteExtension etc.
|
|
22845
|
-
*/
|
|
22846
|
-
appDefId?: string;
|
|
22847
|
-
/**
|
|
22848
|
-
* Identifier of the instance (concrete application, installed on a site).
|
|
22849
|
-
*
|
|
22850
|
-
* Mostly UUID, but for some specific legacy cases might be something else.
|
|
22851
|
-
*/
|
|
22852
|
-
instanceId?: string;
|
|
22853
|
-
/**
|
|
22854
|
-
* State of this app (see docs for state).
|
|
22855
|
-
* @readonly
|
|
22856
|
-
*/
|
|
22857
|
-
state?: State;
|
|
22858
|
-
/**
|
|
22859
|
-
* Identifier of the originating application. For example, if this app was part of a template,
|
|
22860
|
-
* then an app will get instance_id of that app as origin instance id.
|
|
22861
|
-
*
|
|
22862
|
-
* If application was provisioned not from some template, it should be empty.
|
|
22863
|
-
*
|
|
22864
|
-
* Note, it could be == to instance_id (for old sites).
|
|
22865
|
-
*/
|
|
22866
|
-
originInstanceId?: string;
|
|
22867
|
-
}
|
|
22868
|
-
/**
|
|
22869
|
-
* Represents the actual state of the application on site. Do not confuse with the State in the old MetaSiteDTO,
|
|
22870
|
-
* which has less values and doesn't have 1-to-1 correspondence with this one (this one is exact and correct!)
|
|
22871
|
-
*/
|
|
22872
|
-
declare enum State {
|
|
22873
|
-
UNKNOWN = "UNKNOWN",
|
|
22874
|
-
/** App is installed on a site. */
|
|
22875
|
-
ENABLED = "ENABLED",
|
|
22876
|
-
/** App is removed from a site (but we preserve it just in case). */
|
|
22877
|
-
DISABLED = "DISABLED",
|
|
22878
|
-
/** App is in "demo" mode, meaning that it's in read-only mode (it's in a template OR not installed yet). */
|
|
22879
|
-
TEMPLATE = "TEMPLATE",
|
|
22880
|
-
/** App is not installed, there is a user intention for it only (user will see the pimpl in the editor). */
|
|
22881
|
-
PENDING = "PENDING"
|
|
22882
|
-
}
|
|
22883
|
-
declare enum Namespace {
|
|
22884
|
-
UNKNOWN_NAMESPACE = "UNKNOWN_NAMESPACE",
|
|
22885
|
-
/** Default namespace for UGC sites. MetaSites with this namespace will be shown in a user's site list by default. */
|
|
22886
|
-
WIX = "WIX",
|
|
22887
|
-
/** ShoutOut stand alone product. These are siteless (no actual Wix site, no HtmlWeb). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22888
|
-
SHOUT_OUT = "SHOUT_OUT",
|
|
22889
|
-
/** MetaSites created by the Albums product, they appear as part of the Albums app. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22890
|
-
ALBUMS = "ALBUMS",
|
|
22891
|
-
/** Part of the WixStores migration flow, a user tries to migrate and gets this site to view and if the user likes it then stores removes this namespace and deletes the old site with the old stores. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22892
|
-
WIX_STORES_TEST_DRIVE = "WIX_STORES_TEST_DRIVE",
|
|
22893
|
-
/** Hotels standalone (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22894
|
-
HOTELS = "HOTELS",
|
|
22895
|
-
/** Clubs siteless MetaSites, a club without a wix website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22896
|
-
CLUBS = "CLUBS",
|
|
22897
|
-
/** A partially created ADI website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22898
|
-
ONBOARDING_DRAFT = "ONBOARDING_DRAFT",
|
|
22899
|
-
/** AppBuilder for AppStudio / shmite (c). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22900
|
-
DEV_SITE = "DEV_SITE",
|
|
22901
|
-
/** LogoMaker websites offered to the user after logo purchase. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22902
|
-
LOGOS = "LOGOS",
|
|
22903
|
-
/** VideoMaker websites offered to the user after video purchase. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22904
|
-
VIDEO_MAKER = "VIDEO_MAKER",
|
|
22905
|
-
/** MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22906
|
-
PARTNER_DASHBOARD = "PARTNER_DASHBOARD",
|
|
22907
|
-
/** MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
22908
|
-
DEV_CENTER_COMPANY = "DEV_CENTER_COMPANY",
|
|
22909
|
-
/**
|
|
22910
|
-
* A draft created by HTML editor on open. Upon "first save" it will be moved to be of WIX domain.
|
|
22911
|
-
*
|
|
22912
|
-
* Meta site with this namespace will *not* be shown in a user's site list by default.
|
|
22913
|
-
*/
|
|
22914
|
-
HTML_DRAFT = "HTML_DRAFT",
|
|
22915
|
-
/**
|
|
22916
|
-
* the user-journey for Fitness users who want to start from managing their business instead of designing their website.
|
|
22917
|
-
* Will be accessible from Site List and will not have a website app.
|
|
22918
|
-
* Once the user attaches a site, the site will become a regular wixsite.
|
|
22919
|
-
*/
|
|
22920
|
-
SITELESS_BUSINESS = "SITELESS_BUSINESS",
|
|
22921
|
-
/** Belongs to "strategic products" company. Supports new product in the creator's economy space. */
|
|
22922
|
-
CREATOR_ECONOMY = "CREATOR_ECONOMY",
|
|
22923
|
-
/** It is to be used in the Business First efforts. */
|
|
22924
|
-
DASHBOARD_FIRST = "DASHBOARD_FIRST",
|
|
22925
|
-
/** Bookings business flow with no site. */
|
|
22926
|
-
ANYWHERE = "ANYWHERE",
|
|
22927
|
-
/** Namespace for Headless Backoffice with no editor */
|
|
22928
|
-
HEADLESS = "HEADLESS",
|
|
22929
|
-
/**
|
|
22930
|
-
* Namespace for master site that will exist in parent account that will be referenced by subaccounts
|
|
22931
|
-
* The site will be used for account level CSM feature for enterprise
|
|
22932
|
-
*/
|
|
22933
|
-
ACCOUNT_MASTER_CMS = "ACCOUNT_MASTER_CMS",
|
|
22934
|
-
/** Rise.ai Siteless account management for Gift Cards and Store Credit. */
|
|
22935
|
-
RISE = "RISE",
|
|
22936
|
-
/**
|
|
22937
|
-
* As part of the branded app new funnel, users now can create a meta site that will be branded app first.
|
|
22938
|
-
* There's a blank site behind the scene but it's blank).
|
|
22939
|
-
* The Mobile company will be the owner of this namespace.
|
|
22640
|
+
* As part of the branded app new funnel, users now can create a meta site that will be branded app first.
|
|
22641
|
+
* There's a blank site behind the scene but it's blank).
|
|
22642
|
+
* The Mobile company will be the owner of this namespace.
|
|
22940
22643
|
*/
|
|
22941
22644
|
BRANDED_FIRST = "BRANDED_FIRST",
|
|
22942
22645
|
/** Nownia.com Siteless account management for Ai Scheduling Assistant. */
|
|
@@ -23042,58 +22745,344 @@ interface PlatformPaging {
|
|
|
23042
22745
|
/** Number of items to skip in the current sort order. */
|
|
23043
22746
|
offset?: number | null;
|
|
23044
22747
|
}
|
|
23045
|
-
interface CursorPaging$5 {
|
|
23046
|
-
/** Maximum number of items to return in the results. */
|
|
23047
|
-
limit?: number | null;
|
|
22748
|
+
interface CursorPaging$5 {
|
|
22749
|
+
/** Maximum number of items to return in the results. */
|
|
22750
|
+
limit?: number | null;
|
|
22751
|
+
/**
|
|
22752
|
+
* Pointer to the next or previous page in the list of results.
|
|
22753
|
+
*
|
|
22754
|
+
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
22755
|
+
* Not relevant for the first request.
|
|
22756
|
+
*/
|
|
22757
|
+
cursor?: string | null;
|
|
22758
|
+
}
|
|
22759
|
+
interface QueryOrdersForMetasiteResponse {
|
|
22760
|
+
/** found exisitng orders according to pagination and query provided. */
|
|
22761
|
+
orders?: Order$1[];
|
|
22762
|
+
/** Details on the paged set of results returned. */
|
|
22763
|
+
pagingMetadata?: PlatformPagingMetadata;
|
|
22764
|
+
}
|
|
22765
|
+
interface PlatformPagingMetadata {
|
|
22766
|
+
/** The number of items returned in this response. */
|
|
22767
|
+
count?: number | null;
|
|
22768
|
+
/** The offset which was requested. Returned if offset paging was used. */
|
|
22769
|
+
offset?: number | null;
|
|
22770
|
+
/** The total number of items that match the query. Returned if offset paging was used. */
|
|
22771
|
+
total?: number | null;
|
|
22772
|
+
/** Cursors to navigate through result pages. Returned if cursor paging was used. */
|
|
22773
|
+
cursors?: Cursors$5;
|
|
22774
|
+
}
|
|
22775
|
+
interface Cursors$5 {
|
|
22776
|
+
/** Cursor string pointing to the next page in the list of results. */
|
|
22777
|
+
next?: string | null;
|
|
22778
|
+
/** Cursor pointing to the previous page in the list of results. */
|
|
22779
|
+
prev?: string | null;
|
|
22780
|
+
}
|
|
22781
|
+
interface GetOrderForMetasiteRequest {
|
|
22782
|
+
/** meta site Id for EP order to retrieve */
|
|
22783
|
+
metasiteId?: string;
|
|
22784
|
+
/** Order Id for EP order to retrieve */
|
|
22785
|
+
orderId?: string;
|
|
22786
|
+
}
|
|
22787
|
+
interface GetOrderForMetasiteResponse {
|
|
22788
|
+
/** Existing EP order */
|
|
22789
|
+
order?: Order$1;
|
|
22790
|
+
}
|
|
22791
|
+
interface ListOrderTransactionsForMetasiteRequest {
|
|
22792
|
+
/** meta site Id for EP order transactions to retrieve */
|
|
22793
|
+
metasiteId?: string;
|
|
22794
|
+
/** Order Id for EP order transactions to retrieve */
|
|
22795
|
+
orderId?: string;
|
|
22796
|
+
}
|
|
22797
|
+
interface ListOrderTransactionsForMetasiteResponse {
|
|
22798
|
+
/** Order ID and its associated transactions. */
|
|
22799
|
+
orderTransactions?: OrderTransactions$2;
|
|
22800
|
+
}
|
|
22801
|
+
interface OrderTransactions$2 {
|
|
22802
|
+
/** Order ID. */
|
|
22803
|
+
orderId?: string;
|
|
22804
|
+
/** Record of payments made to the merchant. */
|
|
22805
|
+
payments?: Payment$2[];
|
|
22806
|
+
/** Record of refunds made to the buyer. */
|
|
22807
|
+
refunds?: Refund$2[];
|
|
22808
|
+
}
|
|
22809
|
+
interface Payment$2 extends PaymentPaymentDetailsOneOf$2 {
|
|
22810
|
+
/** Regular payment details. */
|
|
22811
|
+
regularPaymentDetails?: RegularPaymentDetails$2;
|
|
22812
|
+
/** Gift card payment details. */
|
|
22813
|
+
giftcardPaymentDetails?: GiftCardPaymentDetails$2;
|
|
22814
|
+
/**
|
|
22815
|
+
* Payment ID.
|
|
22816
|
+
* @readonly
|
|
22817
|
+
*/
|
|
22818
|
+
_id?: string | null;
|
|
22819
|
+
/** Date and time the payment was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
|
|
22820
|
+
_createdDate?: Date;
|
|
22821
|
+
/**
|
|
22822
|
+
* Date and time the payment was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
|
|
22823
|
+
* @readonly
|
|
22824
|
+
*/
|
|
22825
|
+
_updatedDate?: Date;
|
|
22826
|
+
/** Payment amount. */
|
|
22827
|
+
amount?: Price$2;
|
|
22828
|
+
/**
|
|
22829
|
+
* Whether refunds for this payment are disabled.
|
|
22830
|
+
* + `true`: This payment is not refundable.
|
|
22831
|
+
* + `false`: This payment may be refunded. However, this ultimately depends on the payment provider.
|
|
22832
|
+
*/
|
|
22833
|
+
refundDisabled?: boolean;
|
|
22834
|
+
}
|
|
22835
|
+
/** @oneof */
|
|
22836
|
+
interface PaymentPaymentDetailsOneOf$2 {
|
|
22837
|
+
/** Regular payment details. */
|
|
22838
|
+
regularPaymentDetails?: RegularPaymentDetails$2;
|
|
22839
|
+
/** Gift card payment details. */
|
|
22840
|
+
giftcardPaymentDetails?: GiftCardPaymentDetails$2;
|
|
22841
|
+
}
|
|
22842
|
+
interface RegularPaymentDetails$2 extends RegularPaymentDetailsPaymentMethodDetailsOneOf$2 {
|
|
22843
|
+
/** Whether regular card used */
|
|
22844
|
+
creditCardDetails?: CreditCardPaymentMethodDetails$2;
|
|
22845
|
+
/** Wix Payments order ID. */
|
|
22846
|
+
paymentOrderId?: string | null;
|
|
22847
|
+
/**
|
|
22848
|
+
* Payment gateway's transaction ID. This ID can be used with the Wix Payments [Transactions API](https://dev.wix.com/docs/rest/api-reference/wix-payments/transactions/introduction).
|
|
22849
|
+
* This field is only returned when the value of `offline_payment` is `false`.
|
|
22850
|
+
*/
|
|
22851
|
+
gatewayTransactionId?: string | null;
|
|
22852
|
+
/**
|
|
22853
|
+
* Payment method. Non-exhaustive list of supported values:
|
|
22854
|
+
* + `CreditCard`, `Alipay`, `AstropayCash`, `AstropayDBT`, `AstropayMBT`, `Bitcoin`, `BitPay`, `Cash`, `ConvenienceStore`, `EPay`, `Fake`, `Giropay`, `IDeal`, `InPerson`, `Klarna`, `MercadoPago`, `Netpay`, `NordeaSolo`, `Offline`, `PagSeguro`, `PayEasy`, `PayPal`, `Paysafecard`, `Paysafecash`, `PointOfSale`, `Poli`, `Privat24`, `Przelewy24`, `RapidTransfer`, `Sepa`, `Skrill`, `Sofort`, `Trustly`, `Neteller`, `Unionpay`, `UniPay`, `Yandex`
|
|
22855
|
+
*/
|
|
22856
|
+
paymentMethod?: string | null;
|
|
22857
|
+
/** Transaction ID in the payment provider's system. For example, at PayPal, Square, Stripe, etc. Not returned for offline payments. */
|
|
22858
|
+
providerTransactionId?: string | null;
|
|
22859
|
+
/** Whether the payment was made offline. For example, when using cash or when marked as paid in the Business Manager. */
|
|
22860
|
+
offlinePayment?: boolean;
|
|
22861
|
+
/** Payment status. */
|
|
22862
|
+
status?: TransactionStatus$2;
|
|
22863
|
+
/** Whether there is a payment agreement that allows for future charges. */
|
|
22864
|
+
savedPaymentMethod?: boolean;
|
|
22865
|
+
/** Authorization details. */
|
|
22866
|
+
authorizationDetails?: AuthorizationDetails$2;
|
|
22867
|
+
}
|
|
22868
|
+
/** @oneof */
|
|
22869
|
+
interface RegularPaymentDetailsPaymentMethodDetailsOneOf$2 {
|
|
22870
|
+
/** Whether regular card used */
|
|
22871
|
+
creditCardDetails?: CreditCardPaymentMethodDetails$2;
|
|
22872
|
+
}
|
|
22873
|
+
declare enum TransactionStatus$2 {
|
|
22874
|
+
UNDEFINED = "UNDEFINED",
|
|
22875
|
+
APPROVED = "APPROVED",
|
|
22876
|
+
PENDING = "PENDING",
|
|
22877
|
+
PENDING_MERCHANT = "PENDING_MERCHANT",
|
|
22878
|
+
CANCELED = "CANCELED",
|
|
22879
|
+
DECLINED = "DECLINED",
|
|
22880
|
+
REFUNDED = "REFUNDED",
|
|
22881
|
+
PARTIALLY_REFUNDED = "PARTIALLY_REFUNDED",
|
|
22882
|
+
AUTHORIZED = "AUTHORIZED",
|
|
22883
|
+
VOIDED = "VOIDED"
|
|
22884
|
+
}
|
|
22885
|
+
interface CreditCardPaymentMethodDetails$2 {
|
|
22886
|
+
/** The last 4 digits of the card number. */
|
|
22887
|
+
lastFourDigits?: string | null;
|
|
22888
|
+
/** Card issuer's brand. */
|
|
22889
|
+
brand?: string | null;
|
|
22890
|
+
}
|
|
22891
|
+
interface AuthorizationDetails$2 {
|
|
22892
|
+
/**
|
|
22893
|
+
* Whether the authorized payment is of a delayed capture.
|
|
22894
|
+
* @readonly
|
|
22895
|
+
*/
|
|
22896
|
+
delayedCapture?: boolean;
|
|
22897
|
+
/** Date and time the payment was authorized in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
|
|
22898
|
+
authorizedDate?: Date;
|
|
22899
|
+
/**
|
|
22900
|
+
* List of captures associated with payment
|
|
22901
|
+
* In case of failed it can be replaced with new one with PENDING or SUCCESS statuses
|
|
22902
|
+
*/
|
|
22903
|
+
captures?: AuthorizationCapture$2[];
|
|
22904
|
+
/** Void associated with payment */
|
|
22905
|
+
void?: AuthorizationVoid$2;
|
|
22906
|
+
/** Scheduled action for this transaction */
|
|
22907
|
+
scheduledAction?: V1ScheduledAction;
|
|
22908
|
+
}
|
|
22909
|
+
interface AuthorizationCapture$2 {
|
|
22910
|
+
/**
|
|
22911
|
+
* Capture ID.
|
|
22912
|
+
* @readonly
|
|
22913
|
+
*/
|
|
22914
|
+
_id?: string | null;
|
|
22915
|
+
/** Status of this capture action */
|
|
22916
|
+
status?: AuthorizationCaptureStatus$2;
|
|
22917
|
+
/** Amount of this capture */
|
|
22918
|
+
amount?: Price$2;
|
|
22919
|
+
/** Date and time the capture was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
|
|
22920
|
+
_createdDate?: Date;
|
|
22921
|
+
/** In case of status is FAILED may contain failure details */
|
|
22922
|
+
failureDetails?: AuthorizationActionFailureDetails$2;
|
|
22923
|
+
}
|
|
22924
|
+
declare enum AuthorizationCaptureStatus$2 {
|
|
22925
|
+
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
22926
|
+
/** Whether capture operation still in progress */
|
|
22927
|
+
PENDING = "PENDING",
|
|
22928
|
+
/** The capture operation was succeeded */
|
|
22929
|
+
SUCCEEDED = "SUCCEEDED",
|
|
22930
|
+
/** The capture operation was failed */
|
|
22931
|
+
FAILED = "FAILED"
|
|
22932
|
+
}
|
|
22933
|
+
interface AuthorizationActionFailureDetails$2 {
|
|
22934
|
+
failureCode?: string;
|
|
22935
|
+
}
|
|
22936
|
+
interface AuthorizationVoid$2 {
|
|
22937
|
+
/** Status of this void action */
|
|
22938
|
+
status?: AuthorizationVoidStatus$2;
|
|
22939
|
+
/** Date and time the void was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
|
|
22940
|
+
voidedDate?: Date;
|
|
22941
|
+
/** In case of status is FAILED may contain failure details */
|
|
22942
|
+
failureDetails?: AuthorizationActionFailureDetails$2;
|
|
22943
|
+
/** Reason of void action */
|
|
22944
|
+
reason?: Reason$2;
|
|
22945
|
+
}
|
|
22946
|
+
declare enum AuthorizationVoidStatus$2 {
|
|
22947
|
+
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
22948
|
+
/** Whether void operation still in progress */
|
|
22949
|
+
PENDING = "PENDING",
|
|
22950
|
+
/** The void operation was succeeded */
|
|
22951
|
+
SUCCEEDED = "SUCCEEDED",
|
|
22952
|
+
/** The void operation was failed */
|
|
22953
|
+
FAILED = "FAILED"
|
|
22954
|
+
}
|
|
22955
|
+
/**
|
|
22956
|
+
* Reason the authorization was voided.
|
|
22957
|
+
*
|
|
22958
|
+
* + `MANUAL`: Authorization was voided by user.
|
|
22959
|
+
* + `SCHEDULED`: Authorization passed execution date.
|
|
22960
|
+
*/
|
|
22961
|
+
declare enum Reason$2 {
|
|
22962
|
+
UNKNOWN_REASON = "UNKNOWN_REASON",
|
|
22963
|
+
MANUAL = "MANUAL",
|
|
22964
|
+
SCHEDULED = "SCHEDULED"
|
|
22965
|
+
}
|
|
22966
|
+
interface V1ScheduledAction {
|
|
22967
|
+
/** type of the action */
|
|
22968
|
+
actionType?: ActionType$2;
|
|
22969
|
+
/** the date and time of the action */
|
|
22970
|
+
executionDate?: Date;
|
|
22971
|
+
}
|
|
22972
|
+
declare enum ActionType$2 {
|
|
22973
|
+
UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
|
|
22974
|
+
VOID = "VOID",
|
|
22975
|
+
CAPTURE = "CAPTURE"
|
|
22976
|
+
}
|
|
22977
|
+
interface GiftCardPaymentDetails$2 {
|
|
22978
|
+
/** Gift card payment ID. */
|
|
22979
|
+
giftCardPaymentId?: string;
|
|
22980
|
+
/** ID of the app that created the gift card. */
|
|
22981
|
+
appId?: string;
|
|
22982
|
+
/**
|
|
22983
|
+
* Whether the gift card is voided.
|
|
22984
|
+
* @readonly
|
|
22985
|
+
*/
|
|
22986
|
+
voided?: boolean;
|
|
22987
|
+
}
|
|
22988
|
+
interface MembershipPaymentDetails$2 {
|
|
22989
|
+
/** Membership ID. */
|
|
22990
|
+
membershipId?: string;
|
|
22991
|
+
/** ID of the line item this membership applies to. */
|
|
22992
|
+
lineItemId?: string;
|
|
22993
|
+
/** Payment status. */
|
|
22994
|
+
status?: MembershipPaymentStatus$2;
|
|
22995
|
+
/** Membership name. */
|
|
22996
|
+
name?: MembershipName$3;
|
|
22997
|
+
/** The transaction ID in the membership system. Can be used to void the transaction. */
|
|
22998
|
+
externalTransactionId?: string | null;
|
|
22999
|
+
/**
|
|
23000
|
+
* Whether the membership is voided.
|
|
23001
|
+
* @readonly
|
|
23002
|
+
*/
|
|
23003
|
+
voided?: boolean;
|
|
23004
|
+
/** ID of the application providing this payment option. */
|
|
23005
|
+
providerAppId?: string;
|
|
23006
|
+
}
|
|
23007
|
+
declare enum MembershipPaymentStatus$2 {
|
|
23008
|
+
/** CHARGED - Payment was charged */
|
|
23009
|
+
CHARGED = "CHARGED",
|
|
23010
|
+
/** CHARGE_FAILED - The attempt to charge that payment have failed, for example due to lack of credits */
|
|
23011
|
+
CHARGE_FAILED = "CHARGE_FAILED"
|
|
23012
|
+
}
|
|
23013
|
+
interface MembershipName$3 {
|
|
23014
|
+
/** The name of this membership */
|
|
23015
|
+
original?: string;
|
|
23016
|
+
/** Optional - Translated name of this membership. Defaults to `original` when not provided. */
|
|
23017
|
+
translated?: string | null;
|
|
23018
|
+
}
|
|
23019
|
+
interface Refund$2 {
|
|
23020
|
+
/**
|
|
23021
|
+
* Refund ID.
|
|
23022
|
+
* @readonly
|
|
23023
|
+
*/
|
|
23024
|
+
_id?: string;
|
|
23025
|
+
/** List of transactions. */
|
|
23026
|
+
transactions?: RefundTransaction$2[];
|
|
23027
|
+
/** Refund business details. */
|
|
23028
|
+
details?: RefundDetails$2;
|
|
23029
|
+
/** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
|
|
23030
|
+
_createdDate?: Date;
|
|
23031
|
+
}
|
|
23032
|
+
interface RefundTransaction$2 {
|
|
23033
|
+
/** ID of the payment associated with this refund. */
|
|
23034
|
+
paymentId?: string;
|
|
23035
|
+
/** Refund amount. */
|
|
23036
|
+
amount?: Price$2;
|
|
23037
|
+
/** Refund status. */
|
|
23038
|
+
refundStatus?: RefundStatus$2;
|
|
23048
23039
|
/**
|
|
23049
|
-
*
|
|
23050
|
-
*
|
|
23051
|
-
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
23052
|
-
* Not relevant for the first request.
|
|
23040
|
+
* Payment gateway's refund ID. This ID can be used with the Wix Payments [Transactions API](https://dev.wix.com/docs/rest/api-reference/wix-payments/transactions/introduction).
|
|
23041
|
+
* This field is only returned when the value of `external_refund` is `false`.
|
|
23053
23042
|
*/
|
|
23054
|
-
|
|
23043
|
+
gatewayRefundId?: string | null;
|
|
23044
|
+
/** ID of the refund in the payment provider's system. For example, at PayPal, Square, Stripe, etc. Not returned for external refunds. */
|
|
23045
|
+
providerRefundId?: string | null;
|
|
23046
|
+
/** Whether refund was made externally and manually on the payment provider's side. */
|
|
23047
|
+
externalRefund?: boolean;
|
|
23055
23048
|
}
|
|
23056
|
-
|
|
23057
|
-
|
|
23058
|
-
|
|
23059
|
-
|
|
23060
|
-
|
|
23049
|
+
/**
|
|
23050
|
+
* Refund transaction status.
|
|
23051
|
+
* + `PENDING`: Refund was initiated on payment provider side. PENDING status was assigned by provider.
|
|
23052
|
+
* + `SUCCEEDED`: Refund transaction succeeded.
|
|
23053
|
+
* + `FAILED`: Refund transaction failed.
|
|
23054
|
+
* + `SCHEDULED`: Refund request acknowledged, and will be executed soon.
|
|
23055
|
+
* + `STARTED`: Refund was initiated on payment provider side.
|
|
23056
|
+
*/
|
|
23057
|
+
declare enum RefundStatus$2 {
|
|
23058
|
+
PENDING = "PENDING",
|
|
23059
|
+
SUCCEEDED = "SUCCEEDED",
|
|
23060
|
+
FAILED = "FAILED",
|
|
23061
|
+
SCHEDULED = "SCHEDULED",
|
|
23062
|
+
STARTED = "STARTED"
|
|
23061
23063
|
}
|
|
23062
|
-
|
|
23063
|
-
|
|
23064
|
-
|
|
23065
|
-
|
|
23066
|
-
|
|
23067
|
-
|
|
23068
|
-
|
|
23069
|
-
|
|
23070
|
-
cursors?: Cursors$5;
|
|
23064
|
+
/** Business model of a refund request */
|
|
23065
|
+
interface RefundDetails$2 {
|
|
23066
|
+
/** Order line item IDs and quantities that were refunded. */
|
|
23067
|
+
items?: RefundItem$2[];
|
|
23068
|
+
/** Whether the shipping fee was also refunded. */
|
|
23069
|
+
shippingIncluded?: boolean;
|
|
23070
|
+
/** Reason for the refund, provided by customer (optional). */
|
|
23071
|
+
reason?: string | null;
|
|
23071
23072
|
}
|
|
23072
|
-
interface
|
|
23073
|
-
/**
|
|
23074
|
-
|
|
23075
|
-
/**
|
|
23076
|
-
|
|
23073
|
+
interface RefundItem$2 {
|
|
23074
|
+
/** Line item ID the refunded line item. */
|
|
23075
|
+
lineItemId?: string;
|
|
23076
|
+
/** Line item quantity refunded. */
|
|
23077
|
+
quantity?: number;
|
|
23077
23078
|
}
|
|
23078
|
-
interface
|
|
23079
|
-
/** meta site Id for EP order to retrieve */
|
|
23080
|
-
metasiteId?: string;
|
|
23081
|
-
/** Order Id for EP order to retrieve */
|
|
23082
|
-
orderId?: string;
|
|
23079
|
+
interface LineItemRefund$2 {
|
|
23083
23080
|
}
|
|
23084
|
-
interface
|
|
23085
|
-
/** Existing EP order */
|
|
23086
|
-
order?: Order$1;
|
|
23081
|
+
interface AdditionalFeeRefund$2 {
|
|
23087
23082
|
}
|
|
23088
|
-
interface
|
|
23089
|
-
/** meta site Id for EP order transactions to retrieve */
|
|
23090
|
-
metasiteId?: string;
|
|
23091
|
-
/** Order Id for EP order transactions to retrieve */
|
|
23092
|
-
orderId?: string;
|
|
23083
|
+
interface ShippingRefund$2 {
|
|
23093
23084
|
}
|
|
23094
|
-
interface
|
|
23095
|
-
/** Order ID and its associated transactions. */
|
|
23096
|
-
orderTransactions?: OrderTransactions$2;
|
|
23085
|
+
interface AggregatedRefundSummary$2 {
|
|
23097
23086
|
}
|
|
23098
23087
|
interface UpsertRefundRequest {
|
|
23099
23088
|
/** Meta site ID. */
|
|
@@ -23113,76 +23102,6 @@ interface TestUrlAdditionalBindingsRequest {
|
|
|
23113
23102
|
interface TestUrlAdditionalBindingsResponse {
|
|
23114
23103
|
responseString?: string;
|
|
23115
23104
|
}
|
|
23116
|
-
interface DomainEvent$6 extends DomainEventBodyOneOf$6 {
|
|
23117
|
-
createdEvent?: EntityCreatedEvent$6;
|
|
23118
|
-
updatedEvent?: EntityUpdatedEvent$6;
|
|
23119
|
-
deletedEvent?: EntityDeletedEvent$6;
|
|
23120
|
-
actionEvent?: ActionEvent$6;
|
|
23121
|
-
/**
|
|
23122
|
-
* Unique event ID.
|
|
23123
|
-
* Allows clients to ignore duplicate webhooks.
|
|
23124
|
-
*/
|
|
23125
|
-
_id?: string;
|
|
23126
|
-
/**
|
|
23127
|
-
* Assumes actions are also always typed to an entity_type
|
|
23128
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
23129
|
-
*/
|
|
23130
|
-
entityFqdn?: string;
|
|
23131
|
-
/**
|
|
23132
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
23133
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
23134
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
23135
|
-
*/
|
|
23136
|
-
slug?: string;
|
|
23137
|
-
/** ID of the entity associated with the event. */
|
|
23138
|
-
entityId?: string;
|
|
23139
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
23140
|
-
eventTime?: Date;
|
|
23141
|
-
/**
|
|
23142
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
23143
|
-
* (for example, GDPR).
|
|
23144
|
-
*/
|
|
23145
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
23146
|
-
/** If present, indicates the action that triggered the event. */
|
|
23147
|
-
originatedFrom?: string | null;
|
|
23148
|
-
/**
|
|
23149
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
23150
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
23151
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
23152
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
23153
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
23154
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
23155
|
-
*/
|
|
23156
|
-
entityEventSequence?: string | null;
|
|
23157
|
-
}
|
|
23158
|
-
/** @oneof */
|
|
23159
|
-
interface DomainEventBodyOneOf$6 {
|
|
23160
|
-
createdEvent?: EntityCreatedEvent$6;
|
|
23161
|
-
updatedEvent?: EntityUpdatedEvent$6;
|
|
23162
|
-
deletedEvent?: EntityDeletedEvent$6;
|
|
23163
|
-
actionEvent?: ActionEvent$6;
|
|
23164
|
-
}
|
|
23165
|
-
interface EntityCreatedEvent$6 {
|
|
23166
|
-
entity?: string;
|
|
23167
|
-
}
|
|
23168
|
-
interface RestoreInfo$6 {
|
|
23169
|
-
deletedDate?: Date;
|
|
23170
|
-
}
|
|
23171
|
-
interface EntityUpdatedEvent$6 {
|
|
23172
|
-
/**
|
|
23173
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
23174
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
23175
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
23176
|
-
*/
|
|
23177
|
-
currentEntity?: string;
|
|
23178
|
-
}
|
|
23179
|
-
interface EntityDeletedEvent$6 {
|
|
23180
|
-
/** Entity that was deleted */
|
|
23181
|
-
deletedEntity?: string | null;
|
|
23182
|
-
}
|
|
23183
|
-
interface ActionEvent$6 {
|
|
23184
|
-
body?: string;
|
|
23185
|
-
}
|
|
23186
23105
|
interface MessageEnvelope$6 {
|
|
23187
23106
|
/** App instance ID. */
|
|
23188
23107
|
instanceId?: string | null;
|
|
@@ -23324,12 +23243,91 @@ interface VersionedDocumentId {
|
|
|
23324
23243
|
/** versioning mode to use instead of default */
|
|
23325
23244
|
versioningMode?: VersioningMode;
|
|
23326
23245
|
}
|
|
23246
|
+
/** Triggered when a payment is updated. */
|
|
23247
|
+
interface PaymentsUpdated$2 {
|
|
23248
|
+
/** Updated order transactions. */
|
|
23249
|
+
orderTransactions?: OrderTransactions$2;
|
|
23250
|
+
/** List of IDs of the updated payments. */
|
|
23251
|
+
paymentIds?: string[];
|
|
23252
|
+
/** List of IDs of the updated refunds. */
|
|
23253
|
+
refundIds?: string[];
|
|
23254
|
+
}
|
|
23327
23255
|
interface TriggerReindexRequest {
|
|
23328
23256
|
metasiteId?: string;
|
|
23329
23257
|
orderIds?: string[];
|
|
23330
23258
|
}
|
|
23331
23259
|
interface TriggerReindexResponse {
|
|
23332
23260
|
}
|
|
23261
|
+
interface DomainEvent$6 extends DomainEventBodyOneOf$6 {
|
|
23262
|
+
createdEvent?: EntityCreatedEvent$6;
|
|
23263
|
+
updatedEvent?: EntityUpdatedEvent$6;
|
|
23264
|
+
deletedEvent?: EntityDeletedEvent$6;
|
|
23265
|
+
actionEvent?: ActionEvent$6;
|
|
23266
|
+
/**
|
|
23267
|
+
* Unique event ID.
|
|
23268
|
+
* Allows clients to ignore duplicate webhooks.
|
|
23269
|
+
*/
|
|
23270
|
+
_id?: string;
|
|
23271
|
+
/**
|
|
23272
|
+
* Assumes actions are also always typed to an entity_type
|
|
23273
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
23274
|
+
*/
|
|
23275
|
+
entityFqdn?: string;
|
|
23276
|
+
/**
|
|
23277
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
23278
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
23279
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
23280
|
+
*/
|
|
23281
|
+
slug?: string;
|
|
23282
|
+
/** ID of the entity associated with the event. */
|
|
23283
|
+
entityId?: string;
|
|
23284
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
23285
|
+
eventTime?: Date;
|
|
23286
|
+
/**
|
|
23287
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
23288
|
+
* (for example, GDPR).
|
|
23289
|
+
*/
|
|
23290
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
23291
|
+
/** If present, indicates the action that triggered the event. */
|
|
23292
|
+
originatedFrom?: string | null;
|
|
23293
|
+
/**
|
|
23294
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
23295
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
23296
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
23297
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
23298
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
23299
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
23300
|
+
*/
|
|
23301
|
+
entityEventSequence?: string | null;
|
|
23302
|
+
}
|
|
23303
|
+
/** @oneof */
|
|
23304
|
+
interface DomainEventBodyOneOf$6 {
|
|
23305
|
+
createdEvent?: EntityCreatedEvent$6;
|
|
23306
|
+
updatedEvent?: EntityUpdatedEvent$6;
|
|
23307
|
+
deletedEvent?: EntityDeletedEvent$6;
|
|
23308
|
+
actionEvent?: ActionEvent$6;
|
|
23309
|
+
}
|
|
23310
|
+
interface EntityCreatedEvent$6 {
|
|
23311
|
+
entity?: string;
|
|
23312
|
+
}
|
|
23313
|
+
interface RestoreInfo$6 {
|
|
23314
|
+
deletedDate?: Date;
|
|
23315
|
+
}
|
|
23316
|
+
interface EntityUpdatedEvent$6 {
|
|
23317
|
+
/**
|
|
23318
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
23319
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
23320
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
23321
|
+
*/
|
|
23322
|
+
currentEntity?: string;
|
|
23323
|
+
}
|
|
23324
|
+
interface EntityDeletedEvent$6 {
|
|
23325
|
+
/** Entity that was deleted */
|
|
23326
|
+
deletedEntity?: string | null;
|
|
23327
|
+
}
|
|
23328
|
+
interface ActionEvent$6 {
|
|
23329
|
+
body?: string;
|
|
23330
|
+
}
|
|
23333
23331
|
interface Empty$4 {
|
|
23334
23332
|
}
|
|
23335
23333
|
interface BatchOfTriggerReindexOrderRequest {
|
|
@@ -24881,7 +24879,7 @@ interface V1RestockItem {
|
|
|
24881
24879
|
}
|
|
24882
24880
|
interface BulkUpdateOrderTagsRequest {
|
|
24883
24881
|
/** IDs of orders to update tags for. */
|
|
24884
|
-
orderIds
|
|
24882
|
+
orderIds: string[];
|
|
24885
24883
|
/** Tags to be added to orders */
|
|
24886
24884
|
assignTags?: Tags;
|
|
24887
24885
|
/** Tags to be removed from orders */
|
|
@@ -25869,6 +25867,13 @@ interface BulkUpdateOrdersResponseNonNullableFields {
|
|
|
25869
25867
|
interface CancelOrderResponseNonNullableFields {
|
|
25870
25868
|
order?: OrderNonNullableFields;
|
|
25871
25869
|
}
|
|
25870
|
+
interface BulkUpdateOrderTagsResultNonNullableFields {
|
|
25871
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
25872
|
+
}
|
|
25873
|
+
interface BulkUpdateOrderTagsResponseNonNullableFields {
|
|
25874
|
+
results: BulkUpdateOrderTagsResultNonNullableFields[];
|
|
25875
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
25876
|
+
}
|
|
25872
25877
|
interface BaseEventMetadata$5 {
|
|
25873
25878
|
/** App instance ID. */
|
|
25874
25879
|
instanceId?: string | null;
|
|
@@ -26090,6 +26095,12 @@ interface CancelOrderOptions {
|
|
|
26090
26095
|
/** Whether to restock all items in the order. This will only apply to products in the Wix Stores inventory. */
|
|
26091
26096
|
restockAllItems?: boolean;
|
|
26092
26097
|
}
|
|
26098
|
+
interface BulkUpdateOrderTagsOptions {
|
|
26099
|
+
/** Tags to be added to orders */
|
|
26100
|
+
assignTags?: Tags;
|
|
26101
|
+
/** Tags to be removed from orders */
|
|
26102
|
+
unassignTags?: Tags;
|
|
26103
|
+
}
|
|
26093
26104
|
|
|
26094
26105
|
declare function getPaymentCollectabilityStatus$1(httpClient: HttpClient): GetPaymentCollectabilityStatusSignature;
|
|
26095
26106
|
interface GetPaymentCollectabilityStatusSignature {
|
|
@@ -26247,6 +26258,15 @@ interface CancelOrderSignature {
|
|
|
26247
26258
|
*/
|
|
26248
26259
|
(_id: string, options?: CancelOrderOptions | undefined): Promise<CancelOrderResponse & CancelOrderResponseNonNullableFields>;
|
|
26249
26260
|
}
|
|
26261
|
+
declare function bulkUpdateOrderTags$1(httpClient: HttpClient): BulkUpdateOrderTagsSignature;
|
|
26262
|
+
interface BulkUpdateOrderTagsSignature {
|
|
26263
|
+
/**
|
|
26264
|
+
* Synchronously update tags on multiple orders, by list of order ids
|
|
26265
|
+
* A tag that appears both in the list of assign and unassign tags, will be assigned
|
|
26266
|
+
* @param - IDs of orders to update tags for.
|
|
26267
|
+
*/
|
|
26268
|
+
(orderIds: string[], options?: BulkUpdateOrderTagsOptions | undefined): Promise<BulkUpdateOrderTagsResponse & BulkUpdateOrderTagsResponseNonNullableFields>;
|
|
26269
|
+
}
|
|
26250
26270
|
declare const onOrderPaymentStatusUpdated$1: EventDefinition<OrderPaymentStatusUpdatedEnvelope, "wix.ecom.v1.order_payment_status_updated">;
|
|
26251
26271
|
declare const onOrderCreated$1: EventDefinition<OrderCreatedEnvelope, "wix.ecom.v1.order_created">;
|
|
26252
26272
|
declare const onOrderCanceled$1: EventDefinition<OrderCanceledEnvelope, "wix.ecom.v1.order_canceled">;
|
|
@@ -26263,6 +26283,7 @@ declare const createOrder: BuildRESTFunction<typeof createOrder$1> & typeof crea
|
|
|
26263
26283
|
declare const updateOrder: BuildRESTFunction<typeof updateOrder$1> & typeof updateOrder$1;
|
|
26264
26284
|
declare const bulkUpdateOrders: BuildRESTFunction<typeof bulkUpdateOrders$1> & typeof bulkUpdateOrders$1;
|
|
26265
26285
|
declare const cancelOrder: BuildRESTFunction<typeof cancelOrder$1> & typeof cancelOrder$1;
|
|
26286
|
+
declare const bulkUpdateOrderTags: BuildRESTFunction<typeof bulkUpdateOrderTags$1> & typeof bulkUpdateOrderTags$1;
|
|
26266
26287
|
|
|
26267
26288
|
type _publicOnOrderPaymentStatusUpdatedType = typeof onOrderPaymentStatusUpdated$1;
|
|
26268
26289
|
/**
|
|
@@ -26343,8 +26364,10 @@ type index_d$8_BulkUnArchiveOrdersByFilterRequest = BulkUnArchiveOrdersByFilterR
|
|
|
26343
26364
|
type index_d$8_BulkUnArchiveOrdersByFilterResponse = BulkUnArchiveOrdersByFilterResponse;
|
|
26344
26365
|
type index_d$8_BulkUnArchiveOrdersRequest = BulkUnArchiveOrdersRequest;
|
|
26345
26366
|
type index_d$8_BulkUnArchiveOrdersResponse = BulkUnArchiveOrdersResponse;
|
|
26367
|
+
type index_d$8_BulkUpdateOrderTagsOptions = BulkUpdateOrderTagsOptions;
|
|
26346
26368
|
type index_d$8_BulkUpdateOrderTagsRequest = BulkUpdateOrderTagsRequest;
|
|
26347
26369
|
type index_d$8_BulkUpdateOrderTagsResponse = BulkUpdateOrderTagsResponse;
|
|
26370
|
+
type index_d$8_BulkUpdateOrderTagsResponseNonNullableFields = BulkUpdateOrderTagsResponseNonNullableFields;
|
|
26348
26371
|
type index_d$8_BulkUpdateOrderTagsResult = BulkUpdateOrderTagsResult;
|
|
26349
26372
|
type index_d$8_BulkUpdateOrdersOptions = BulkUpdateOrdersOptions;
|
|
26350
26373
|
type index_d$8_BulkUpdateOrdersRequest = BulkUpdateOrdersRequest;
|
|
@@ -26695,6 +26718,7 @@ type index_d$8__publicOnOrderApprovedType = _publicOnOrderApprovedType;
|
|
|
26695
26718
|
type index_d$8__publicOnOrderCanceledType = _publicOnOrderCanceledType;
|
|
26696
26719
|
type index_d$8__publicOnOrderCreatedType = _publicOnOrderCreatedType;
|
|
26697
26720
|
type index_d$8__publicOnOrderPaymentStatusUpdatedType = _publicOnOrderPaymentStatusUpdatedType;
|
|
26721
|
+
declare const index_d$8_bulkUpdateOrderTags: typeof bulkUpdateOrderTags;
|
|
26698
26722
|
declare const index_d$8_bulkUpdateOrders: typeof bulkUpdateOrders;
|
|
26699
26723
|
declare const index_d$8_cancelOrder: typeof cancelOrder;
|
|
26700
26724
|
declare const index_d$8_captureAuthorizedPayments: typeof captureAuthorizedPayments;
|
|
@@ -26709,7 +26733,7 @@ declare const index_d$8_searchOrders: typeof searchOrders;
|
|
|
26709
26733
|
declare const index_d$8_updateOrder: typeof updateOrder;
|
|
26710
26734
|
declare const index_d$8_voidAuthorizedPayments: typeof voidAuthorizedPayments;
|
|
26711
26735
|
declare namespace index_d$8 {
|
|
26712
|
-
export { type ActionEvent$6 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type index_d$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type index_d$8_AddActivitiesRequest as AddActivitiesRequest, type index_d$8_AddActivitiesResponse as AddActivitiesResponse, type index_d$8_AddActivityRequest as AddActivityRequest, type index_d$8_AddActivityResponse as AddActivityResponse, type index_d$8_AddInternalActivityRequest as AddInternalActivityRequest, type index_d$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type index_d$8_AdditionalFeeDelta as AdditionalFeeDelta, type index_d$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$4 as Address, type index_d$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type index_d$8_AddressWithContact as AddressWithContact, type index_d$8_AggregateOrdersRequest as AggregateOrdersRequest, type index_d$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type index_d$8_ApiItemTaxFullDetails as ApiItemTaxFullDetails, type index_d$8_ApiTaxSummary as ApiTaxSummary, type index_d$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type index_d$8_AppliedDiscountDelta as AppliedDiscountDelta, type index_d$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type index_d$8_ArchiveOrderRequest as ArchiveOrderRequest, type index_d$8_ArchiveOrderResponse as ArchiveOrderResponse, index_d$8_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$2 as AuthorizationActionFailureDetails, type AuthorizationCapture$2 as AuthorizationCapture, AuthorizationCaptureStatus$2 as AuthorizationCaptureStatus, type AuthorizationDetails$2 as AuthorizationDetails, type AuthorizationVoid$2 as AuthorizationVoid, AuthorizationVoidStatus$2 as AuthorizationVoidStatus, type index_d$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$8_Balance as Balance, type index_d$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type index_d$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$8_BulkOrderResult as BulkOrderResult, type index_d$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type index_d$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type index_d$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type index_d$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type index_d$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type index_d$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$8_BuyerInfoUpdate as BuyerInfoUpdate, type CalculateRefundItemRequest$1 as CalculateRefundItemRequest, type CalculateRefundItemResponse$1 as CalculateRefundItemResponse, type CalculateRefundRequest$1 as CalculateRefundRequest, type CalculateRefundResponse$1 as CalculateRefundResponse, type index_d$8_CalculatedTax as CalculatedTax, type index_d$8_CalculatedTaxes as CalculatedTaxes, type index_d$8_Cancel as Cancel, type index_d$8_CancelOrderOptions as CancelOrderOptions, type index_d$8_CancelOrderRequest as CancelOrderRequest, type index_d$8_CancelOrderResponse as CancelOrderResponse, type index_d$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type index_d$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type index_d$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type index_d$8_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type index_d$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type index_d$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type index_d$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type index_d$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type index_d$8_ChargedBy as ChargedBy, type index_d$8_Color as Color, type index_d$8_CommitDeltasRequest as CommitDeltasRequest, type index_d$8_CommitDeltasResponse as CommitDeltasResponse, type index_d$8_CommittedDiffs as CommittedDiffs, type index_d$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type index_d$8_CommonAddress as CommonAddress, type index_d$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$8_Company as Company, type index_d$8_Complete as Complete, type index_d$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type index_d$8_CreateOrderRequest as CreateOrderRequest, type index_d$8_CreateOrderResponse as CreateOrderResponse, type index_d$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type index_d$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type index_d$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type index_d$8_CreatedBy as CreatedBy, type index_d$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type index_d$8_CursorSearch as CursorSearch, type index_d$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, index_d$8_CustomFieldGroup as CustomFieldGroup, type index_d$8_CustomFieldValue as CustomFieldValue, type index_d$8_Customer as Customer, type index_d$8_DecrementData as DecrementData, type index_d$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type index_d$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type index_d$8_DelayedCaptureSettings as DelayedCaptureSettings, type index_d$8_DeleteActivityRequest as DeleteActivityRequest, type index_d$8_DeleteActivityResponse as DeleteActivityResponse, type index_d$8_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type index_d$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, index_d$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type index_d$8_Deposit as Deposit, index_d$8_DepositType as DepositType, type index_d$8_DescriptionLine as DescriptionLine, type index_d$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$8_DescriptionLineName as DescriptionLineName, index_d$8_DescriptionLineType as DescriptionLineType, type index_d$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type index_d$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, index_d$8_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type index_d$8_DownloadLinkSent as DownloadLinkSent, type index_d$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type index_d$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type index_d$8_DraftOrderDiffs as DraftOrderDiffs, type index_d$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type index_d$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type index_d$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type index_d$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type index_d$8_Duration as Duration, index_d$8_DurationUnit as DurationUnit, type index_d$8_Email as Email, type index_d$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type index_d$8_ExternalUriMapping as ExternalUriMapping, type index_d$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type index_d$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type index_d$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type index_d$8_FullAddressContactDetails as FullAddressContactDetails, type index_d$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type index_d$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type index_d$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type index_d$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type index_d$8_GetOrderRequest as GetOrderRequest, type index_d$8_GetOrderResponse as GetOrderResponse, type index_d$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type index_d$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type index_d$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type index_d$8_GetShipmentsRequest as GetShipmentsRequest, type index_d$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type index_d$8_HtmlApplication as HtmlApplication, type index_d$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type index_d$8_InternalActivity as InternalActivity, type index_d$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type index_d$8_InternalDocument as InternalDocument, type index_d$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type index_d$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type index_d$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type index_d$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type index_d$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, index_d$8_InventoryAction as InventoryAction, type index_d$8_InventoryUpdateDetails as InventoryUpdateDetails, type index_d$8_InvoiceAdded as InvoiceAdded, type index_d$8_InvoiceDates as InvoiceDates, type index_d$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type index_d$8_InvoiceFields as InvoiceFields, type index_d$8_InvoiceSent as InvoiceSent, type index_d$8_InvoiceSentEvent as InvoiceSentEvent, index_d$8_InvoiceStatus as InvoiceStatus, type index_d$8_InvoicesPayment as InvoicesPayment, type index_d$8_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, type index_d$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type index_d$8_LineItemAmount as LineItemAmount, type index_d$8_LineItemChanges as LineItemChanges, type index_d$8_LineItemDelta as LineItemDelta, type index_d$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type index_d$8_LineItemExchangeData as LineItemExchangeData, type index_d$8_LineItemMetaData as LineItemMetaData, type index_d$8_LineItemPriceChange as LineItemPriceChange, type index_d$8_LineItemQuantityChange as LineItemQuantityChange, index_d$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type index_d$8_LineItemTax as LineItemTax, type index_d$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$8_LineItemTaxInfo as LineItemTaxInfo, type index_d$8_LineItemUpdate as LineItemUpdate, type index_d$8_LineItems as LineItems, type index_d$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type index_d$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type index_d$8_Locale as Locale, type index_d$8_LocationAndQuantity as LocationAndQuantity, type index_d$8_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$8_ManagedDiscount as ManagedDiscount, type index_d$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type index_d$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type index_d$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type index_d$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type index_d$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type index_d$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type index_d$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type index_d$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type index_d$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type index_d$8_MaskedOrder as MaskedOrder, type index_d$8_MaskedOrderLineItem as MaskedOrderLineItem, type index_d$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, MembershipPaymentStatus$2 as MembershipPaymentStatus, type index_d$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type index_d$8_MetaData as MetaData, type index_d$8_MetaSite as MetaSite, type index_d$8_MetaTag as MetaTag, index_d$8_Namespace as Namespace, type index_d$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, index_d$8_OrderApprovalStrategy as OrderApprovalStrategy, type index_d$8_OrderApproved as OrderApproved, type index_d$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type index_d$8_OrderCanceled as OrderCanceled, type index_d$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type index_d$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type index_d$8_OrderChange as OrderChange, type index_d$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$8_OrderCreateNotifications as OrderCreateNotifications, type index_d$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type index_d$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$8_OrderCreationSettings as OrderCreationSettings, type index_d$8_OrderDeltasCommitted as OrderDeltasCommitted, type index_d$8_OrderFulfilled as OrderFulfilled, type index_d$8_OrderItemsRestocked as OrderItemsRestocked, type index_d$8_OrderLineItem as OrderLineItem, type index_d$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type index_d$8_OrderNonNullableFields as OrderNonNullableFields, type index_d$8_OrderNotFulfilled as OrderNotFulfilled, type index_d$8_OrderPaid as OrderPaid, type index_d$8_OrderPartiallyPaid as OrderPartiallyPaid, type index_d$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type index_d$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, index_d$8_OrderStatus as OrderStatus, type index_d$8_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type index_d$8_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type index_d$8_PaymentCapture as PaymentCapture, index_d$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type index_d$8_PaymentRefundFailed as PaymentRefundFailed, type index_d$8_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type index_d$8_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$8_Payments as Payments, type PaymentsUpdated$2 as PaymentsUpdated, type index_d$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type index_d$8_PickupReadyEmailSent as PickupReadyEmailSent, index_d$8_Placement as Placement, type index_d$8_PlainTextValue as PlainTextValue, type index_d$8_PlatformPaging as PlatformPaging, type index_d$8_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$8_PlatformQuery as PlatformQuery, type index_d$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type index_d$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type index_d$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type index_d$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type index_d$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type index_d$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type index_d$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type index_d$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type index_d$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type index_d$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type index_d$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type index_d$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type index_d$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, index_d$8_PreviewEmailType as PreviewEmailType, type index_d$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type index_d$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type index_d$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type index_d$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type index_d$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type index_d$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type index_d$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type index_d$8_ProductName as ProductName, type index_d$8_PublicActivity as PublicActivity, type index_d$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type index_d$8_QueryOrderRequest as QueryOrderRequest, type index_d$8_QueryOrderResponse as QueryOrderResponse, type index_d$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type index_d$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type index_d$8_QuotesAddress as QuotesAddress, Reason$2 as Reason, type index_d$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type index_d$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type index_d$8_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type index_d$8_RefundInitiated as RefundInitiated, type RefundItem$2 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$2 as RefundStatus, type RefundTransaction$2 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type index_d$8_RefundedPayment as RefundedPayment, type index_d$8_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$8_RegularPaymentRefund as RegularPaymentRefund, type index_d$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type index_d$8_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$2 as ScheduledAction, type index_d$8_SearchOrdersOptions as SearchOrdersOptions, type index_d$8_SearchOrdersRequest as SearchOrdersRequest, type index_d$8_SearchOrdersResponse as SearchOrdersResponse, type index_d$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type index_d$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type index_d$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type index_d$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type index_d$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type index_d$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type index_d$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type index_d$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type index_d$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type index_d$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type index_d$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type index_d$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type index_d$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type index_d$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type index_d$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type index_d$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type index_d$8_ShippingAddressEdited as ShippingAddressEdited, type index_d$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type index_d$8_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$2 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, index_d$8_SourceType as SourceType, type index_d$8_StandardDetails as StandardDetails, index_d$8_State as State, type StreetAddress$3 as StreetAddress, type index_d$8_Subdivision as Subdivision, index_d$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type index_d$8_TagList as TagList, type index_d$8_Tags as Tags, type index_d$8_Task as Task, type index_d$8_TaskAction as TaskAction, type index_d$8_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type index_d$8_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type index_d$8_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type index_d$8_TotalPrice as TotalPrice, type index_d$8_TotalPriceChange as TotalPriceChange, type index_d$8_TrackingLinkAdded as TrackingLinkAdded, type index_d$8_TrackingNumberAdded as TrackingNumberAdded, type index_d$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type index_d$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type index_d$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type index_d$8_TriggerReindexRequest as TriggerReindexRequest, type index_d$8_TriggerReindexResponse as TriggerReindexResponse, type index_d$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type index_d$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type index_d$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type index_d$8_UpdateActivityRequest as UpdateActivityRequest, type index_d$8_UpdateActivityResponse as UpdateActivityResponse, type index_d$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type index_d$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type index_d$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type index_d$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type index_d$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type index_d$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type index_d$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type index_d$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type index_d$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type index_d$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type index_d$8_UpdateOrder as UpdateOrder, type index_d$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type index_d$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type index_d$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type index_d$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type index_d$8_UpdateOrderRequest as UpdateOrderRequest, type index_d$8_UpdateOrderResponse as UpdateOrderResponse, type index_d$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type index_d$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type index_d$8_UpsertRefundRequest as UpsertRefundRequest, type index_d$8_UpsertRefundResponse as UpsertRefundResponse, type index_d$8_UserDataResponse as UserDataResponse, type index_d$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type index_d$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type index_d$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type index_d$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type index_d$8_V1LineItemDelta as V1LineItemDelta, type index_d$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type index_d$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type index_d$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type index_d$8_V1RestockItem as V1RestockItem, type index_d$8_V1ScheduledAction as V1ScheduledAction, type index_d$8_V1ShippingInformation as V1ShippingInformation, type index_d$8_Value as Value, index_d$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type index_d$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type index_d$8_VersionedDocumentId as VersionedDocumentId, type index_d$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, index_d$8_VersioningMode as VersioningMode, type index_d$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type index_d$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type index_d$8_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, type index_d$8__publicOnOrderApprovedType as _publicOnOrderApprovedType, type index_d$8__publicOnOrderCanceledType as _publicOnOrderCanceledType, type index_d$8__publicOnOrderCreatedType as _publicOnOrderCreatedType, type index_d$8__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, index_d$8_bulkUpdateOrders as bulkUpdateOrders, index_d$8_cancelOrder as cancelOrder, index_d$8_captureAuthorizedPayments as captureAuthorizedPayments, index_d$8_createOrder as createOrder, index_d$8_getOrder as getOrder, index_d$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, index_d$8_onOrderApproved as onOrderApproved, index_d$8_onOrderCanceled as onOrderCanceled, index_d$8_onOrderCreated as onOrderCreated, index_d$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, index_d$8_searchOrders as searchOrders, index_d$8_updateOrder as updateOrder, index_d$8_voidAuthorizedPayments as voidAuthorizedPayments };
|
|
26736
|
+
export { type ActionEvent$6 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type index_d$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type index_d$8_AddActivitiesRequest as AddActivitiesRequest, type index_d$8_AddActivitiesResponse as AddActivitiesResponse, type index_d$8_AddActivityRequest as AddActivityRequest, type index_d$8_AddActivityResponse as AddActivityResponse, type index_d$8_AddInternalActivityRequest as AddInternalActivityRequest, type index_d$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type index_d$8_AdditionalFeeDelta as AdditionalFeeDelta, type index_d$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$4 as Address, type index_d$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type index_d$8_AddressWithContact as AddressWithContact, type index_d$8_AggregateOrdersRequest as AggregateOrdersRequest, type index_d$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type index_d$8_ApiItemTaxFullDetails as ApiItemTaxFullDetails, type index_d$8_ApiTaxSummary as ApiTaxSummary, type index_d$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type index_d$8_AppliedDiscountDelta as AppliedDiscountDelta, type index_d$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type index_d$8_ArchiveOrderRequest as ArchiveOrderRequest, type index_d$8_ArchiveOrderResponse as ArchiveOrderResponse, index_d$8_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$2 as AuthorizationActionFailureDetails, type AuthorizationCapture$2 as AuthorizationCapture, AuthorizationCaptureStatus$2 as AuthorizationCaptureStatus, type AuthorizationDetails$2 as AuthorizationDetails, type AuthorizationVoid$2 as AuthorizationVoid, AuthorizationVoidStatus$2 as AuthorizationVoidStatus, type index_d$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$8_Balance as Balance, type index_d$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type index_d$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type index_d$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type index_d$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type index_d$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type index_d$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type index_d$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type index_d$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type index_d$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type index_d$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type index_d$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type index_d$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type index_d$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type index_d$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type index_d$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type index_d$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type index_d$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type index_d$8_BulkOrderResult as BulkOrderResult, type index_d$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type index_d$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type index_d$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type index_d$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type index_d$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type index_d$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type index_d$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type index_d$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type index_d$8_BulkUpdateOrderTagsOptions as BulkUpdateOrderTagsOptions, type index_d$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type index_d$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type index_d$8_BulkUpdateOrderTagsResponseNonNullableFields as BulkUpdateOrderTagsResponseNonNullableFields, type index_d$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type index_d$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type index_d$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type index_d$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type index_d$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type index_d$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$8_BuyerInfoUpdate as BuyerInfoUpdate, type CalculateRefundItemRequest$1 as CalculateRefundItemRequest, type CalculateRefundItemResponse$1 as CalculateRefundItemResponse, type CalculateRefundRequest$1 as CalculateRefundRequest, type CalculateRefundResponse$1 as CalculateRefundResponse, type index_d$8_CalculatedTax as CalculatedTax, type index_d$8_CalculatedTaxes as CalculatedTaxes, type index_d$8_Cancel as Cancel, type index_d$8_CancelOrderOptions as CancelOrderOptions, type index_d$8_CancelOrderRequest as CancelOrderRequest, type index_d$8_CancelOrderResponse as CancelOrderResponse, type index_d$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type index_d$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type index_d$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type index_d$8_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type index_d$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type index_d$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type index_d$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type index_d$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type index_d$8_ChargedBy as ChargedBy, type index_d$8_Color as Color, type index_d$8_CommitDeltasRequest as CommitDeltasRequest, type index_d$8_CommitDeltasResponse as CommitDeltasResponse, type index_d$8_CommittedDiffs as CommittedDiffs, type index_d$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type index_d$8_CommonAddress as CommonAddress, type index_d$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type index_d$8_Company as Company, type index_d$8_Complete as Complete, type index_d$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type index_d$8_CreateOrderRequest as CreateOrderRequest, type index_d$8_CreateOrderResponse as CreateOrderResponse, type index_d$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type index_d$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type index_d$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type index_d$8_CreatedBy as CreatedBy, type index_d$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type index_d$8_CursorSearch as CursorSearch, type index_d$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, index_d$8_CustomFieldGroup as CustomFieldGroup, type index_d$8_CustomFieldValue as CustomFieldValue, type index_d$8_Customer as Customer, type index_d$8_DecrementData as DecrementData, type index_d$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type index_d$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type index_d$8_DelayedCaptureSettings as DelayedCaptureSettings, type index_d$8_DeleteActivityRequest as DeleteActivityRequest, type index_d$8_DeleteActivityResponse as DeleteActivityResponse, type index_d$8_DeleteByFilterOperation as DeleteByFilterOperation, type index_d$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type index_d$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, index_d$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type index_d$8_Deposit as Deposit, index_d$8_DepositType as DepositType, type index_d$8_DescriptionLine as DescriptionLine, type index_d$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$8_DescriptionLineName as DescriptionLineName, index_d$8_DescriptionLineType as DescriptionLineType, type index_d$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type index_d$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, index_d$8_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type index_d$8_DownloadLinkSent as DownloadLinkSent, type index_d$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type index_d$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type index_d$8_DraftOrderDiffs as DraftOrderDiffs, type index_d$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type index_d$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type index_d$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type index_d$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type index_d$8_Duration as Duration, index_d$8_DurationUnit as DurationUnit, type index_d$8_Email as Email, type index_d$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type index_d$8_ExternalUriMapping as ExternalUriMapping, type index_d$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type index_d$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type index_d$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type index_d$8_FullAddressContactDetails as FullAddressContactDetails, type index_d$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type index_d$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type index_d$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type index_d$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type index_d$8_GetOrderRequest as GetOrderRequest, type index_d$8_GetOrderResponse as GetOrderResponse, type index_d$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type index_d$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type index_d$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type index_d$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type index_d$8_GetShipmentsRequest as GetShipmentsRequest, type index_d$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type index_d$8_HtmlApplication as HtmlApplication, type index_d$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type index_d$8_InternalActivity as InternalActivity, type index_d$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type index_d$8_InternalDocument as InternalDocument, type index_d$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type index_d$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type index_d$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type index_d$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type index_d$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, index_d$8_InventoryAction as InventoryAction, type index_d$8_InventoryUpdateDetails as InventoryUpdateDetails, type index_d$8_InvoiceAdded as InvoiceAdded, type index_d$8_InvoiceDates as InvoiceDates, type index_d$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type index_d$8_InvoiceFields as InvoiceFields, type index_d$8_InvoiceSent as InvoiceSent, type index_d$8_InvoiceSentEvent as InvoiceSentEvent, index_d$8_InvoiceStatus as InvoiceStatus, type index_d$8_InvoicesPayment as InvoicesPayment, type index_d$8_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, type index_d$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type index_d$8_LineItemAmount as LineItemAmount, type index_d$8_LineItemChanges as LineItemChanges, type index_d$8_LineItemDelta as LineItemDelta, type index_d$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type index_d$8_LineItemExchangeData as LineItemExchangeData, type index_d$8_LineItemMetaData as LineItemMetaData, type index_d$8_LineItemPriceChange as LineItemPriceChange, type index_d$8_LineItemQuantityChange as LineItemQuantityChange, index_d$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type index_d$8_LineItemTax as LineItemTax, type index_d$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$8_LineItemTaxInfo as LineItemTaxInfo, type index_d$8_LineItemUpdate as LineItemUpdate, type index_d$8_LineItems as LineItems, type index_d$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type index_d$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type index_d$8_Locale as Locale, type index_d$8_LocationAndQuantity as LocationAndQuantity, type index_d$8_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$8_ManagedDiscount as ManagedDiscount, type index_d$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type index_d$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type index_d$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type index_d$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type index_d$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type index_d$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type index_d$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type index_d$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type index_d$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type index_d$8_MaskedOrder as MaskedOrder, type index_d$8_MaskedOrderLineItem as MaskedOrderLineItem, type index_d$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, MembershipPaymentStatus$2 as MembershipPaymentStatus, type index_d$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type index_d$8_MetaData as MetaData, type index_d$8_MetaSite as MetaSite, type index_d$8_MetaTag as MetaTag, index_d$8_Namespace as Namespace, type index_d$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, index_d$8_OrderApprovalStrategy as OrderApprovalStrategy, type index_d$8_OrderApproved as OrderApproved, type index_d$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type index_d$8_OrderCanceled as OrderCanceled, type index_d$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type index_d$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type index_d$8_OrderChange as OrderChange, type index_d$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$8_OrderCreateNotifications as OrderCreateNotifications, type index_d$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type index_d$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$8_OrderCreationSettings as OrderCreationSettings, type index_d$8_OrderDeltasCommitted as OrderDeltasCommitted, type index_d$8_OrderFulfilled as OrderFulfilled, type index_d$8_OrderItemsRestocked as OrderItemsRestocked, type index_d$8_OrderLineItem as OrderLineItem, type index_d$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type index_d$8_OrderNonNullableFields as OrderNonNullableFields, type index_d$8_OrderNotFulfilled as OrderNotFulfilled, type index_d$8_OrderPaid as OrderPaid, type index_d$8_OrderPartiallyPaid as OrderPartiallyPaid, type index_d$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type index_d$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, index_d$8_OrderStatus as OrderStatus, type index_d$8_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type index_d$8_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type index_d$8_PaymentCapture as PaymentCapture, index_d$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type index_d$8_PaymentRefundFailed as PaymentRefundFailed, type index_d$8_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type index_d$8_PaymentStatusUpdated as PaymentStatusUpdated, type index_d$8_Payments as Payments, type PaymentsUpdated$2 as PaymentsUpdated, type index_d$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type index_d$8_PickupReadyEmailSent as PickupReadyEmailSent, index_d$8_Placement as Placement, type index_d$8_PlainTextValue as PlainTextValue, type index_d$8_PlatformPaging as PlatformPaging, type index_d$8_PlatformPagingMetadata as PlatformPagingMetadata, type index_d$8_PlatformQuery as PlatformQuery, type index_d$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type index_d$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type index_d$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type index_d$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type index_d$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type index_d$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type index_d$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type index_d$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type index_d$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type index_d$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type index_d$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type index_d$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type index_d$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type index_d$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type index_d$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, index_d$8_PreviewEmailType as PreviewEmailType, type index_d$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type index_d$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type index_d$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type index_d$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type index_d$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type index_d$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type index_d$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type index_d$8_ProductName as ProductName, type index_d$8_PublicActivity as PublicActivity, type index_d$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type index_d$8_QueryOrderRequest as QueryOrderRequest, type index_d$8_QueryOrderResponse as QueryOrderResponse, type index_d$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type index_d$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type index_d$8_QuotesAddress as QuotesAddress, Reason$2 as Reason, type index_d$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type index_d$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type index_d$8_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type index_d$8_RefundInitiated as RefundInitiated, type RefundItem$2 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$2 as RefundStatus, type RefundTransaction$2 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type index_d$8_RefundedPayment as RefundedPayment, type index_d$8_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$8_RegularPaymentRefund as RegularPaymentRefund, type index_d$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type index_d$8_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$2 as ScheduledAction, type index_d$8_SearchOrdersOptions as SearchOrdersOptions, type index_d$8_SearchOrdersRequest as SearchOrdersRequest, type index_d$8_SearchOrdersResponse as SearchOrdersResponse, type index_d$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type index_d$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type index_d$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type index_d$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type index_d$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type index_d$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type index_d$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type index_d$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type index_d$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type index_d$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type index_d$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type index_d$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type index_d$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type index_d$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type index_d$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type index_d$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type index_d$8_ShippingAddressEdited as ShippingAddressEdited, type index_d$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type index_d$8_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$2 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, index_d$8_SourceType as SourceType, type index_d$8_StandardDetails as StandardDetails, index_d$8_State as State, type StreetAddress$3 as StreetAddress, type index_d$8_Subdivision as Subdivision, index_d$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type index_d$8_TagList as TagList, type index_d$8_Tags as Tags, type index_d$8_Task as Task, type index_d$8_TaskAction as TaskAction, type index_d$8_TaskActionActionOneOf as TaskActionActionOneOf, type index_d$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type index_d$8_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type index_d$8_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type index_d$8_TotalPrice as TotalPrice, type index_d$8_TotalPriceChange as TotalPriceChange, type index_d$8_TrackingLinkAdded as TrackingLinkAdded, type index_d$8_TrackingNumberAdded as TrackingNumberAdded, type index_d$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type index_d$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type index_d$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type index_d$8_TriggerReindexRequest as TriggerReindexRequest, type index_d$8_TriggerReindexResponse as TriggerReindexResponse, type index_d$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type index_d$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type index_d$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type index_d$8_UpdateActivityRequest as UpdateActivityRequest, type index_d$8_UpdateActivityResponse as UpdateActivityResponse, type index_d$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type index_d$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type index_d$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type index_d$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type index_d$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type index_d$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type index_d$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type index_d$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type index_d$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type index_d$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type index_d$8_UpdateOrder as UpdateOrder, type index_d$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type index_d$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type index_d$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type index_d$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type index_d$8_UpdateOrderRequest as UpdateOrderRequest, type index_d$8_UpdateOrderResponse as UpdateOrderResponse, type index_d$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type index_d$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type index_d$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type index_d$8_UpsertRefundRequest as UpsertRefundRequest, type index_d$8_UpsertRefundResponse as UpsertRefundResponse, type index_d$8_UserDataResponse as UserDataResponse, type index_d$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type index_d$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type index_d$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type index_d$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type index_d$8_V1LineItemDelta as V1LineItemDelta, type index_d$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type index_d$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type index_d$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type index_d$8_V1RestockItem as V1RestockItem, type index_d$8_V1ScheduledAction as V1ScheduledAction, type index_d$8_V1ShippingInformation as V1ShippingInformation, type index_d$8_Value as Value, index_d$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type index_d$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type index_d$8_VersionedDocumentId as VersionedDocumentId, type index_d$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, index_d$8_VersioningMode as VersioningMode, type index_d$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type index_d$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type index_d$8_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, type index_d$8__publicOnOrderApprovedType as _publicOnOrderApprovedType, type index_d$8__publicOnOrderCanceledType as _publicOnOrderCanceledType, type index_d$8__publicOnOrderCreatedType as _publicOnOrderCreatedType, type index_d$8__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, index_d$8_bulkUpdateOrderTags as bulkUpdateOrderTags, index_d$8_bulkUpdateOrders as bulkUpdateOrders, index_d$8_cancelOrder as cancelOrder, index_d$8_captureAuthorizedPayments as captureAuthorizedPayments, index_d$8_createOrder as createOrder, index_d$8_getOrder as getOrder, index_d$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, index_d$8_onOrderApproved as onOrderApproved, index_d$8_onOrderCanceled as onOrderCanceled, index_d$8_onOrderCreated as onOrderCreated, index_d$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, index_d$8_searchOrders as searchOrders, index_d$8_updateOrder as updateOrder, index_d$8_voidAuthorizedPayments as voidAuthorizedPayments };
|
|
26713
26737
|
}
|
|
26714
26738
|
|
|
26715
26739
|
interface OrderPaymentRequest {
|