@wix/ecom 1.0.721 → 1.0.723

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.
@@ -5653,7 +5653,7 @@ interface CalculationErrorsNonNullableFields$4 {
5653
5653
  membershipError?: DetailsNonNullableFields$4;
5654
5654
  discountsCalculationError?: DetailsNonNullableFields$4;
5655
5655
  }
5656
- interface MembershipNameNonNullableFields$4 {
5656
+ interface MembershipNameNonNullableFields$5 {
5657
5657
  original: string;
5658
5658
  }
5659
5659
  interface MembershipPaymentCreditsNonNullableFields$3 {
@@ -5663,7 +5663,7 @@ interface MembershipPaymentCreditsNonNullableFields$3 {
5663
5663
  interface MembershipNonNullableFields$3 {
5664
5664
  _id: string;
5665
5665
  appId: string;
5666
- name?: MembershipNameNonNullableFields$4;
5666
+ name?: MembershipNameNonNullableFields$5;
5667
5667
  lineItemIds: string[];
5668
5668
  credits?: MembershipPaymentCreditsNonNullableFields$3;
5669
5669
  }
@@ -8242,7 +8242,7 @@ interface CalculationErrorsNonNullableFields$3 {
8242
8242
  membershipError?: DetailsNonNullableFields$3;
8243
8243
  discountsCalculationError?: DetailsNonNullableFields$3;
8244
8244
  }
8245
- interface MembershipNameNonNullableFields$3 {
8245
+ interface MembershipNameNonNullableFields$4 {
8246
8246
  original: string;
8247
8247
  }
8248
8248
  interface MembershipPaymentCreditsNonNullableFields$2 {
@@ -8252,7 +8252,7 @@ interface MembershipPaymentCreditsNonNullableFields$2 {
8252
8252
  interface MembershipNonNullableFields$2 {
8253
8253
  _id: string;
8254
8254
  appId: string;
8255
- name?: MembershipNameNonNullableFields$3;
8255
+ name?: MembershipNameNonNullableFields$4;
8256
8256
  lineItemIds: string[];
8257
8257
  credits?: MembershipPaymentCreditsNonNullableFields$2;
8258
8258
  }
@@ -11264,7 +11264,7 @@ interface CreatedByNonNullableFields$2 {
11264
11264
  visitorId: string;
11265
11265
  appId: string;
11266
11266
  }
11267
- interface MembershipNameNonNullableFields$2 {
11267
+ interface MembershipNameNonNullableFields$3 {
11268
11268
  original: string;
11269
11269
  }
11270
11270
  interface MembershipPaymentCreditsNonNullableFields$1 {
@@ -11274,7 +11274,7 @@ interface MembershipPaymentCreditsNonNullableFields$1 {
11274
11274
  interface MembershipNonNullableFields$1 {
11275
11275
  _id: string;
11276
11276
  appId: string;
11277
- name?: MembershipNameNonNullableFields$2;
11277
+ name?: MembershipNameNonNullableFields$3;
11278
11278
  lineItemIds: string[];
11279
11279
  credits?: MembershipPaymentCreditsNonNullableFields$1;
11280
11280
  }
@@ -18411,6 +18411,11 @@ interface V1BalanceSummary {
18411
18411
  * @readonly
18412
18412
  */
18413
18413
  refunded?: Price$3;
18414
+ /**
18415
+ * Sum of all authorized payments
18416
+ * @readonly
18417
+ */
18418
+ authorized?: Price$3;
18414
18419
  }
18415
18420
  interface FulfillmentStatusesAggregate$1 {
18416
18421
  /** Unique string values based on Fulfillment entities statuses */
@@ -18523,7 +18528,7 @@ interface QueryDraftOrdersResponse {
18523
18528
  pagingMetadata?: CursorPagingMetadata$6;
18524
18529
  }
18525
18530
  interface CursorPagingMetadata$6 {
18526
- /** Number of items returned in the response. */
18531
+ /** Number of items returned in current page. */
18527
18532
  count?: number | null;
18528
18533
  /** Cursor strings that point to the next page, previous page, or both. */
18529
18534
  cursors?: Cursors$6;
@@ -22117,6 +22122,11 @@ interface BalanceSummary {
22117
22122
  * @readonly
22118
22123
  */
22119
22124
  refunded?: Price$2;
22125
+ /**
22126
+ * Sum of all authorized payments
22127
+ * @readonly
22128
+ */
22129
+ authorized?: Price$2;
22120
22130
  }
22121
22131
  /**
22122
22132
  * Order balance. Reflects amount left to be paid on order and is calculated dynamically. Can be negative per balance definition.
@@ -22268,6 +22278,8 @@ interface PaymentPaymentDetailsOneOf$2 {
22268
22278
  giftcardPaymentDetails?: GiftCardPaymentDetails$2;
22269
22279
  }
22270
22280
  interface RegularPaymentDetails$2 extends RegularPaymentDetailsPaymentMethodDetailsOneOf$2 {
22281
+ /** Whether regular card used */
22282
+ creditCardDetails?: CreditCardPaymentMethodDetails$2;
22271
22283
  /** Wix Payments order ID. */
22272
22284
  paymentOrderId?: string | null;
22273
22285
  /**
@@ -22288,9 +22300,13 @@ interface RegularPaymentDetails$2 extends RegularPaymentDetailsPaymentMethodDeta
22288
22300
  status?: TransactionStatus$2;
22289
22301
  /** Whether there is a payment agreement that allows for future charges. */
22290
22302
  savedPaymentMethod?: boolean;
22303
+ /** Authorization details. */
22304
+ authorizationDetails?: AuthorizationDetails$2;
22291
22305
  }
22292
22306
  /** @oneof */
22293
22307
  interface RegularPaymentDetailsPaymentMethodDetailsOneOf$2 {
22308
+ /** Whether regular card used */
22309
+ creditCardDetails?: CreditCardPaymentMethodDetails$2;
22294
22310
  }
22295
22311
  declare enum TransactionStatus$2 {
22296
22312
  UNDEFINED = "UNDEFINED",
@@ -22305,8 +22321,28 @@ declare enum TransactionStatus$2 {
22305
22321
  VOIDED = "VOIDED"
22306
22322
  }
22307
22323
  interface CreditCardPaymentMethodDetails$2 {
22324
+ /** The last 4 digits of the card number. */
22325
+ lastFourDigits?: string | null;
22326
+ /** Card issuer's brand. */
22327
+ brand?: string | null;
22308
22328
  }
22309
22329
  interface AuthorizationDetails$2 {
22330
+ /**
22331
+ * Whether the authorized payment is of a delayed capture.
22332
+ * @readonly
22333
+ */
22334
+ delayedCapture?: boolean;
22335
+ /** Date and time the payment was authorized in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
22336
+ authorizedDate?: Date;
22337
+ /**
22338
+ * List of captures associated with payment
22339
+ * In case of failed it can be replaced with new one with PENDING or SUCCESS statuses
22340
+ */
22341
+ captures?: AuthorizationCapture$2[];
22342
+ /** Void associated with payment */
22343
+ void?: AuthorizationVoid$2;
22344
+ /** Scheduled action for this transaction */
22345
+ scheduledAction?: ScheduledAction$2;
22310
22346
  }
22311
22347
  interface AuthorizationCapture$2 {
22312
22348
  /**
@@ -22314,6 +22350,14 @@ interface AuthorizationCapture$2 {
22314
22350
  * @readonly
22315
22351
  */
22316
22352
  _id?: string | null;
22353
+ /** Status of this capture action */
22354
+ status?: AuthorizationCaptureStatus$2;
22355
+ /** Amount of this capture */
22356
+ amount?: Price$2;
22357
+ /** Date and time the capture was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
22358
+ _createdDate?: Date;
22359
+ /** In case of status is FAILED may contain failure details */
22360
+ failureDetails?: AuthorizationActionFailureDetails$2;
22317
22361
  }
22318
22362
  declare enum AuthorizationCaptureStatus$2 {
22319
22363
  UNKNOWN_STATUS = "UNKNOWN_STATUS",
@@ -22325,8 +22369,17 @@ declare enum AuthorizationCaptureStatus$2 {
22325
22369
  FAILED = "FAILED"
22326
22370
  }
22327
22371
  interface AuthorizationActionFailureDetails$2 {
22372
+ failureCode?: string;
22328
22373
  }
22329
22374
  interface AuthorizationVoid$2 {
22375
+ /** Status of this void action */
22376
+ status?: AuthorizationVoidStatus$2;
22377
+ /** Date and time the void was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
22378
+ voidedDate?: Date;
22379
+ /** In case of status is FAILED may contain failure details */
22380
+ failureDetails?: AuthorizationActionFailureDetails$2;
22381
+ /** Reason of void action */
22382
+ reason?: Reason$2;
22330
22383
  }
22331
22384
  declare enum AuthorizationVoidStatus$2 {
22332
22385
  UNKNOWN_STATUS = "UNKNOWN_STATUS",
@@ -23229,6 +23282,11 @@ interface PreparePaymentCollectionRequest {
23229
23282
  * When parameter is absent, new payment gateway order will be created and used for payment collection.
23230
23283
  */
23231
23284
  paymentGatewayOrderId?: string | null;
23285
+ /**
23286
+ * Whether to delay capture of the payment.
23287
+ * Default: false
23288
+ */
23289
+ delayedCapture?: boolean;
23232
23290
  }
23233
23291
  interface RedirectUrls {
23234
23292
  /** URL to redirect buyer in case of approved (successful) transaction */
@@ -23556,9 +23614,9 @@ interface CalculateRefundItemResponse$1 {
23556
23614
  }
23557
23615
  interface VoidAuthorizedPaymentsRequest {
23558
23616
  /** Wix eCommerce order ID */
23559
- ecomOrderId?: string;
23617
+ ecomOrderId: string;
23560
23618
  /** Payment IDs */
23561
- paymentIds?: string[];
23619
+ paymentIds: string[];
23562
23620
  }
23563
23621
  interface VoidAuthorizedPaymentsResponse {
23564
23622
  /** All order's transactions after the void was triggered */
@@ -23566,9 +23624,9 @@ interface VoidAuthorizedPaymentsResponse {
23566
23624
  }
23567
23625
  interface CaptureAuthorizedPaymentsRequest {
23568
23626
  /** Wix eCommerce order ID */
23569
- ecomOrderId?: string;
23627
+ ecomOrderId: string;
23570
23628
  /** Capture payments information */
23571
- payments?: PaymentCapture[];
23629
+ payments: PaymentCapture[];
23572
23630
  }
23573
23631
  interface PaymentCapture {
23574
23632
  /** Payment ID */
@@ -23691,7 +23749,7 @@ interface SearchOrdersResponse {
23691
23749
  metadata?: CursorPagingMetadata$5;
23692
23750
  }
23693
23751
  interface CursorPagingMetadata$5 {
23694
- /** Number of items returned in the response. */
23752
+ /** Number of items returned in current page. */
23695
23753
  count?: number | null;
23696
23754
  /** Cursor strings that point to the next page, previous page, or both. */
23697
23755
  cursors?: Cursors$5;
@@ -25038,6 +25096,110 @@ interface GetPaymentCollectabilityStatusResponseNonNullableFields {
25038
25096
  amount?: PriceNonNullableFields$2;
25039
25097
  authorizationSupported: boolean;
25040
25098
  }
25099
+ interface AuthorizationActionFailureDetailsNonNullableFields$1 {
25100
+ failureCode: string;
25101
+ }
25102
+ interface AuthorizationCaptureNonNullableFields$1 {
25103
+ status: AuthorizationCaptureStatus$2;
25104
+ amount?: PriceNonNullableFields$2;
25105
+ failureDetails?: AuthorizationActionFailureDetailsNonNullableFields$1;
25106
+ }
25107
+ interface AuthorizationVoidNonNullableFields$1 {
25108
+ status: AuthorizationVoidStatus$2;
25109
+ failureDetails?: AuthorizationActionFailureDetailsNonNullableFields$1;
25110
+ reason: Reason$2;
25111
+ }
25112
+ interface ScheduledActionNonNullableFields$1 {
25113
+ actionType: ActionType$2;
25114
+ }
25115
+ interface AuthorizationDetailsNonNullableFields$1 {
25116
+ delayedCapture: boolean;
25117
+ captures: AuthorizationCaptureNonNullableFields$1[];
25118
+ void?: AuthorizationVoidNonNullableFields$1;
25119
+ scheduledAction?: ScheduledActionNonNullableFields$1;
25120
+ }
25121
+ interface RegularPaymentDetailsNonNullableFields$1 {
25122
+ offlinePayment: boolean;
25123
+ status: TransactionStatus$2;
25124
+ savedPaymentMethod: boolean;
25125
+ authorizationDetails?: AuthorizationDetailsNonNullableFields$1;
25126
+ }
25127
+ interface GiftCardPaymentDetailsNonNullableFields$1 {
25128
+ giftCardPaymentId: string;
25129
+ giftCardId: string;
25130
+ appId: string;
25131
+ voided: boolean;
25132
+ }
25133
+ interface MembershipNameNonNullableFields$2 {
25134
+ original: string;
25135
+ }
25136
+ interface MembershipPaymentDetailsNonNullableFields$1 {
25137
+ membershipId: string;
25138
+ lineItemId: string;
25139
+ status: MembershipPaymentStatus$2;
25140
+ name?: MembershipNameNonNullableFields$2;
25141
+ voided: boolean;
25142
+ providerAppId: string;
25143
+ }
25144
+ interface PaymentNonNullableFields$1 {
25145
+ regularPaymentDetails?: RegularPaymentDetailsNonNullableFields$1;
25146
+ giftcardPaymentDetails?: GiftCardPaymentDetailsNonNullableFields$1;
25147
+ membershipPaymentDetails?: MembershipPaymentDetailsNonNullableFields$1;
25148
+ amount?: PriceNonNullableFields$2;
25149
+ refundDisabled: boolean;
25150
+ }
25151
+ interface RefundTransactionNonNullableFields$1 {
25152
+ paymentId: string;
25153
+ amount?: PriceNonNullableFields$2;
25154
+ refundStatus: RefundStatus$2;
25155
+ externalRefund: boolean;
25156
+ }
25157
+ interface RefundItemNonNullableFields$1 {
25158
+ lineItemId: string;
25159
+ quantity: number;
25160
+ }
25161
+ interface LineItemRefundNonNullableFields$1 {
25162
+ lineItemId: string;
25163
+ quantity: number;
25164
+ }
25165
+ interface AdditionalFeeRefundNonNullableFields$1 {
25166
+ additionalFeeId: string;
25167
+ amount?: PriceNonNullableFields$2;
25168
+ }
25169
+ interface ShippingRefundNonNullableFields$1 {
25170
+ amount?: PriceNonNullableFields$2;
25171
+ }
25172
+ interface RefundDetailsNonNullableFields$1 {
25173
+ items: RefundItemNonNullableFields$1[];
25174
+ shippingIncluded: boolean;
25175
+ lineItems: LineItemRefundNonNullableFields$1[];
25176
+ additionalFees: AdditionalFeeRefundNonNullableFields$1[];
25177
+ shipping?: ShippingRefundNonNullableFields$1;
25178
+ }
25179
+ interface AggregatedRefundSummaryNonNullableFields$1 {
25180
+ requestedRefund?: PriceNonNullableFields$2;
25181
+ pendingRefund?: PriceNonNullableFields$2;
25182
+ refunded?: PriceNonNullableFields$2;
25183
+ failedRefundAmount?: PriceNonNullableFields$2;
25184
+ pending: boolean;
25185
+ }
25186
+ interface RefundNonNullableFields$1 {
25187
+ _id: string;
25188
+ transactions: RefundTransactionNonNullableFields$1[];
25189
+ details?: RefundDetailsNonNullableFields$1;
25190
+ summary?: AggregatedRefundSummaryNonNullableFields$1;
25191
+ }
25192
+ interface OrderTransactionsNonNullableFields$1 {
25193
+ orderId: string;
25194
+ payments: PaymentNonNullableFields$1[];
25195
+ refunds: RefundNonNullableFields$1[];
25196
+ }
25197
+ interface VoidAuthorizedPaymentsResponseNonNullableFields {
25198
+ orderTransactions?: OrderTransactionsNonNullableFields$1;
25199
+ }
25200
+ interface CaptureAuthorizedPaymentsResponseNonNullableFields {
25201
+ orderTransactions?: OrderTransactionsNonNullableFields$1;
25202
+ }
25041
25203
  interface ProductNameNonNullableFields {
25042
25204
  original: string;
25043
25205
  }
@@ -25685,6 +25847,26 @@ interface GetPaymentCollectabilityStatusSignature {
25685
25847
  */
25686
25848
  (ecomOrderId: string): Promise<GetPaymentCollectabilityStatusResponse & GetPaymentCollectabilityStatusResponseNonNullableFields>;
25687
25849
  }
25850
+ declare function voidAuthorizedPayments$1(httpClient: HttpClient): VoidAuthorizedPaymentsSignature;
25851
+ interface VoidAuthorizedPaymentsSignature {
25852
+ /**
25853
+ * Void authorized payments
25854
+ * Transaction statuses for related payments will be updated in async way
25855
+ * @param - Wix eCommerce order ID
25856
+ * @param - Payment IDs
25857
+ */
25858
+ (ecomOrderId: string, paymentIds: string[]): Promise<VoidAuthorizedPaymentsResponse & VoidAuthorizedPaymentsResponseNonNullableFields>;
25859
+ }
25860
+ declare function captureAuthorizedPayments$1(httpClient: HttpClient): CaptureAuthorizedPaymentsSignature;
25861
+ interface CaptureAuthorizedPaymentsSignature {
25862
+ /**
25863
+ * Capture authorized payments
25864
+ * Transaction statuses for related payments will be updated in async way
25865
+ * @param - Wix eCommerce order ID
25866
+ * @param - Capture payments information
25867
+ */
25868
+ (ecomOrderId: string, payments: PaymentCapture[]): Promise<CaptureAuthorizedPaymentsResponse & CaptureAuthorizedPaymentsResponseNonNullableFields>;
25869
+ }
25688
25870
  declare function getOrder$1(httpClient: HttpClient): GetOrderSignature;
25689
25871
  interface GetOrderSignature {
25690
25872
  /**
@@ -25819,6 +26001,8 @@ declare const onOrderApproved$1: EventDefinition<OrderApprovedEnvelope, "wix.eco
25819
26001
  declare function createEventModule$5<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
25820
26002
 
25821
26003
  declare const getPaymentCollectabilityStatus: BuildRESTFunction<typeof getPaymentCollectabilityStatus$1> & typeof getPaymentCollectabilityStatus$1;
26004
+ declare const voidAuthorizedPayments: BuildRESTFunction<typeof voidAuthorizedPayments$1> & typeof voidAuthorizedPayments$1;
26005
+ declare const captureAuthorizedPayments: BuildRESTFunction<typeof captureAuthorizedPayments$1> & typeof captureAuthorizedPayments$1;
25822
26006
  declare const getOrder: BuildRESTFunction<typeof getOrder$1> & typeof getOrder$1;
25823
26007
  declare const searchOrders: BuildRESTFunction<typeof searchOrders$1> & typeof searchOrders$1;
25824
26008
  declare const createOrder: BuildRESTFunction<typeof createOrder$1> & typeof createOrder$1;
@@ -25921,6 +26105,7 @@ type context$8_CancelOrderResponse = CancelOrderResponse;
25921
26105
  type context$8_CancelOrderResponseNonNullableFields = CancelOrderResponseNonNullableFields;
25922
26106
  type context$8_CaptureAuthorizedPaymentsRequest = CaptureAuthorizedPaymentsRequest;
25923
26107
  type context$8_CaptureAuthorizedPaymentsResponse = CaptureAuthorizedPaymentsResponse;
26108
+ type context$8_CaptureAuthorizedPaymentsResponseNonNullableFields = CaptureAuthorizedPaymentsResponseNonNullableFields;
25924
26109
  type context$8_ChargeMembershipsRequest = ChargeMembershipsRequest;
25925
26110
  type context$8_ChargeMembershipsResponse = ChargeMembershipsResponse;
25926
26111
  type context$8_ChargeSavedPaymentMethodRequest = ChargeSavedPaymentMethodRequest;
@@ -26238,12 +26423,14 @@ type context$8_VersioningMode = VersioningMode;
26238
26423
  declare const context$8_VersioningMode: typeof VersioningMode;
26239
26424
  type context$8_VoidAuthorizedPaymentsRequest = VoidAuthorizedPaymentsRequest;
26240
26425
  type context$8_VoidAuthorizedPaymentsResponse = VoidAuthorizedPaymentsResponse;
26426
+ type context$8_VoidAuthorizedPaymentsResponseNonNullableFields = VoidAuthorizedPaymentsResponseNonNullableFields;
26241
26427
  type context$8__publicOnOrderApprovedType = _publicOnOrderApprovedType;
26242
26428
  type context$8__publicOnOrderCanceledType = _publicOnOrderCanceledType;
26243
26429
  type context$8__publicOnOrderCreatedType = _publicOnOrderCreatedType;
26244
26430
  type context$8__publicOnOrderPaymentStatusUpdatedType = _publicOnOrderPaymentStatusUpdatedType;
26245
26431
  declare const context$8_bulkUpdateOrders: typeof bulkUpdateOrders;
26246
26432
  declare const context$8_cancelOrder: typeof cancelOrder;
26433
+ declare const context$8_captureAuthorizedPayments: typeof captureAuthorizedPayments;
26247
26434
  declare const context$8_createOrder: typeof createOrder;
26248
26435
  declare const context$8_getOrder: typeof getOrder;
26249
26436
  declare const context$8_getPaymentCollectabilityStatus: typeof getPaymentCollectabilityStatus;
@@ -26253,8 +26440,9 @@ declare const context$8_onOrderCreated: typeof onOrderCreated;
26253
26440
  declare const context$8_onOrderPaymentStatusUpdated: typeof onOrderPaymentStatusUpdated;
26254
26441
  declare const context$8_searchOrders: typeof searchOrders;
26255
26442
  declare const context$8_updateOrder: typeof updateOrder;
26443
+ declare const context$8_voidAuthorizedPayments: typeof voidAuthorizedPayments;
26256
26444
  declare namespace context$8 {
26257
- export { type ActionEvent$6 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type context$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type context$8_AddActivitiesRequest as AddActivitiesRequest, type context$8_AddActivitiesResponse as AddActivitiesResponse, type context$8_AddActivityRequest as AddActivityRequest, type context$8_AddActivityResponse as AddActivityResponse, type context$8_AddInternalActivityRequest as AddInternalActivityRequest, type context$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type context$8_AdditionalFeeDelta as AdditionalFeeDelta, type context$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$4 as Address, type context$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type context$8_AddressWithContact as AddressWithContact, type context$8_AggregateOrdersRequest as AggregateOrdersRequest, type context$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type context$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type context$8_AppliedDiscountDelta as AppliedDiscountDelta, type context$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type context$8_ArchiveOrderRequest as ArchiveOrderRequest, type context$8_ArchiveOrderResponse as ArchiveOrderResponse, context$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 context$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$8_Balance as Balance, type context$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type context$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type context$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type context$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type context$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type context$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type context$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type context$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type context$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type context$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type context$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type context$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type context$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type context$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type context$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type context$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type context$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type context$8_BulkOrderResult as BulkOrderResult, type context$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type context$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type context$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type context$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type context$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type context$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type context$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type context$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type context$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type context$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type context$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type context$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type context$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type context$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type context$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type context$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$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 context$8_CalculatedTax as CalculatedTax, type context$8_CalculatedTaxes as CalculatedTaxes, type context$8_Cancel as Cancel, type context$8_CancelOrderOptions as CancelOrderOptions, type context$8_CancelOrderRequest as CancelOrderRequest, type context$8_CancelOrderResponse as CancelOrderResponse, type context$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type context$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type context$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type context$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type context$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type context$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type context$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type context$8_ChargedBy as ChargedBy, type context$8_Color as Color, type context$8_CommitDeltasRequest as CommitDeltasRequest, type context$8_CommitDeltasResponse as CommitDeltasResponse, type context$8_CommittedDiffs as CommittedDiffs, type context$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type context$8_CommonAddress as CommonAddress, type context$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type context$8_Company as Company, type context$8_Complete as Complete, type context$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type context$8_CreateOrderRequest as CreateOrderRequest, type context$8_CreateOrderResponse as CreateOrderResponse, type context$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type context$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type context$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type context$8_CreatedBy as CreatedBy, type context$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type context$8_CursorSearch as CursorSearch, type context$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type context$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, context$8_CustomFieldGroup as CustomFieldGroup, type context$8_CustomFieldValue as CustomFieldValue, type context$8_Customer as Customer, type context$8_DecrementData as DecrementData, type context$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type context$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type context$8_DeleteActivityRequest as DeleteActivityRequest, type context$8_DeleteActivityResponse as DeleteActivityResponse, type context$8_DeleteByFilterOperation as DeleteByFilterOperation, type context$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type context$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, context$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type context$8_Deposit as Deposit, context$8_DepositType as DepositType, type context$8_DescriptionLine as DescriptionLine, type context$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$8_DescriptionLineName as DescriptionLineName, context$8_DescriptionLineType as DescriptionLineType, type context$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type context$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, context$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 context$8_DownloadLinkSent as DownloadLinkSent, type context$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type context$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type context$8_DraftOrderDiffs as DraftOrderDiffs, type context$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type context$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type context$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type context$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type context$8_Email as Email, type context$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 context$8_ExternalUriMapping as ExternalUriMapping, type context$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type context$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type context$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type context$8_FullAddressContactDetails as FullAddressContactDetails, type context$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type context$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type context$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type context$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type context$8_GetOrderRequest as GetOrderRequest, type context$8_GetOrderResponse as GetOrderResponse, type context$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type context$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type context$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type context$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type context$8_GetShipmentsRequest as GetShipmentsRequest, type context$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type context$8_HtmlApplication as HtmlApplication, type context$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type context$8_InternalActivity as InternalActivity, type context$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type context$8_InternalDocument as InternalDocument, type context$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type context$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type context$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type context$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type context$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, context$8_InventoryAction as InventoryAction, type context$8_InventoryUpdateDetails as InventoryUpdateDetails, type context$8_InvoiceAdded as InvoiceAdded, type context$8_InvoiceDates as InvoiceDates, type context$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type context$8_InvoiceFields as InvoiceFields, type context$8_InvoiceSent as InvoiceSent, type context$8_InvoiceSentEvent as InvoiceSentEvent, context$8_InvoiceStatus as InvoiceStatus, type context$8_InvoicesPayment as InvoicesPayment, type context$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 context$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type context$8_LineItemAmount as LineItemAmount, type context$8_LineItemChanges as LineItemChanges, type context$8_LineItemDelta as LineItemDelta, type context$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type context$8_LineItemExchangeData as LineItemExchangeData, type context$8_LineItemMetaData as LineItemMetaData, type context$8_LineItemPriceChange as LineItemPriceChange, type context$8_LineItemQuantityChange as LineItemQuantityChange, context$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type context$8_LineItemTax as LineItemTax, type context$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$8_LineItemTaxInfo as LineItemTaxInfo, type context$8_LineItemUpdate as LineItemUpdate, type context$8_LineItems as LineItems, type context$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type context$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type context$8_Locale as Locale, type context$8_LocationAndQuantity as LocationAndQuantity, type context$8_ManagedAdditionalFee as ManagedAdditionalFee, type context$8_ManagedDiscount as ManagedDiscount, type context$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type context$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type context$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type context$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type context$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type context$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type context$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type context$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type context$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type context$8_MaskedOrder as MaskedOrder, type context$8_MaskedOrderLineItem as MaskedOrderLineItem, type context$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, MembershipPaymentStatus$2 as MembershipPaymentStatus, type context$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type context$8_MetaData as MetaData, type context$8_MetaSite as MetaSite, type context$8_MetaTag as MetaTag, context$8_Namespace as Namespace, type context$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, context$8_OrderApprovalStrategy as OrderApprovalStrategy, type context$8_OrderApproved as OrderApproved, type context$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type context$8_OrderCanceled as OrderCanceled, type context$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type context$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type context$8_OrderChange as OrderChange, type context$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$8_OrderCreateNotifications as OrderCreateNotifications, type context$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type context$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$8_OrderCreationSettings as OrderCreationSettings, type context$8_OrderDeltasCommitted as OrderDeltasCommitted, type context$8_OrderFulfilled as OrderFulfilled, type context$8_OrderItemsRestocked as OrderItemsRestocked, type context$8_OrderLineItem as OrderLineItem, type context$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type context$8_OrderNonNullableFields as OrderNonNullableFields, type context$8_OrderNotFulfilled as OrderNotFulfilled, type context$8_OrderPaid as OrderPaid, type context$8_OrderPartiallyPaid as OrderPartiallyPaid, type context$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type context$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, context$8_OrderStatus as OrderStatus, type context$8_OrderTaxBreakdown as OrderTaxBreakdown, type context$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type context$8_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type context$8_PaymentCapture as PaymentCapture, context$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, PaymentStatus$1 as PaymentStatus, type context$8_PaymentStatusUpdated as PaymentStatusUpdated, type context$8_Payments as Payments, type PaymentsUpdated$2 as PaymentsUpdated, type context$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type context$8_PickupReadyEmailSent as PickupReadyEmailSent, context$8_Placement as Placement, type context$8_PlainTextValue as PlainTextValue, type context$8_PlatformPaging as PlatformPaging, type context$8_PlatformPagingMetadata as PlatformPagingMetadata, type context$8_PlatformQuery as PlatformQuery, type context$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type context$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type context$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type context$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type context$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type context$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type context$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type context$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type context$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type context$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type context$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type context$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type context$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type context$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type context$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, context$8_PreviewEmailType as PreviewEmailType, type context$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type context$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type context$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type context$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type context$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type context$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type context$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type context$8_ProductName as ProductName, type context$8_PublicActivity as PublicActivity, type context$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type context$8_QueryOrderRequest as QueryOrderRequest, type context$8_QueryOrderResponse as QueryOrderResponse, type context$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type context$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type context$8_QuotesAddress as QuotesAddress, Reason$2 as Reason, type context$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type context$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type context$8_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, 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 RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type context$8_SavedPaymentMethod as SavedPaymentMethod, type ScheduledAction$2 as ScheduledAction, type context$8_SearchOrdersOptions as SearchOrdersOptions, type context$8_SearchOrdersRequest as SearchOrdersRequest, type context$8_SearchOrdersResponse as SearchOrdersResponse, type context$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type context$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type context$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type context$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type context$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type context$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type context$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type context$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type context$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type context$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type context$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type context$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type context$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type context$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type context$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type context$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type context$8_ShippingAddressEdited as ShippingAddressEdited, type context$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type context$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, context$8_SourceType as SourceType, type context$8_StandardDetails as StandardDetails, context$8_State as State, type StreetAddress$3 as StreetAddress, type context$8_Subdivision as Subdivision, context$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type context$8_TagList as TagList, type context$8_Tags as Tags, type context$8_Task as Task, type context$8_TaskAction as TaskAction, type context$8_TaskActionActionOneOf as TaskActionActionOneOf, type context$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type context$8_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type context$8_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type context$8_TotalPrice as TotalPrice, type context$8_TotalPriceChange as TotalPriceChange, type context$8_TrackingLinkAdded as TrackingLinkAdded, type context$8_TrackingNumberAdded as TrackingNumberAdded, type context$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type context$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type context$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type context$8_TriggerReindexRequest as TriggerReindexRequest, type context$8_TriggerReindexResponse as TriggerReindexResponse, type context$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type context$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type context$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type context$8_UpdateActivityRequest as UpdateActivityRequest, type context$8_UpdateActivityResponse as UpdateActivityResponse, type context$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type context$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type context$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type context$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type context$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type context$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type context$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type context$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type context$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type context$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type context$8_UpdateOrder as UpdateOrder, type context$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type context$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type context$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type context$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type context$8_UpdateOrderRequest as UpdateOrderRequest, type context$8_UpdateOrderResponse as UpdateOrderResponse, type context$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type context$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type context$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type context$8_UpsertRefundRequest as UpsertRefundRequest, type context$8_UpsertRefundResponse as UpsertRefundResponse, type context$8_UserDataResponse as UserDataResponse, type context$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type context$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type context$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type context$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type context$8_V1LineItemDelta as V1LineItemDelta, type context$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type context$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type context$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type context$8_V1RestockItem as V1RestockItem, type context$8_V1ShippingInformation as V1ShippingInformation, type context$8_Value as Value, context$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type context$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type context$8_VersionedDocumentId as VersionedDocumentId, type context$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, context$8_VersioningMode as VersioningMode, type context$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type context$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, type context$8__publicOnOrderApprovedType as _publicOnOrderApprovedType, type context$8__publicOnOrderCanceledType as _publicOnOrderCanceledType, type context$8__publicOnOrderCreatedType as _publicOnOrderCreatedType, type context$8__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, context$8_bulkUpdateOrders as bulkUpdateOrders, context$8_cancelOrder as cancelOrder, context$8_createOrder as createOrder, context$8_getOrder as getOrder, context$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, context$8_onOrderApproved as onOrderApproved, context$8_onOrderCanceled as onOrderCanceled, context$8_onOrderCreated as onOrderCreated, context$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, context$8_searchOrders as searchOrders, context$8_updateOrder as updateOrder };
26445
+ export { type ActionEvent$6 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type context$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type context$8_AddActivitiesRequest as AddActivitiesRequest, type context$8_AddActivitiesResponse as AddActivitiesResponse, type context$8_AddActivityRequest as AddActivityRequest, type context$8_AddActivityResponse as AddActivityResponse, type context$8_AddInternalActivityRequest as AddInternalActivityRequest, type context$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type context$8_AdditionalFeeDelta as AdditionalFeeDelta, type context$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$4 as Address, type context$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type context$8_AddressWithContact as AddressWithContact, type context$8_AggregateOrdersRequest as AggregateOrdersRequest, type context$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type context$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type context$8_AppliedDiscountDelta as AppliedDiscountDelta, type context$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type context$8_ArchiveOrderRequest as ArchiveOrderRequest, type context$8_ArchiveOrderResponse as ArchiveOrderResponse, context$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 context$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$8_Balance as Balance, type context$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type context$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type context$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type context$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type context$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type context$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type context$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type context$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type context$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type context$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type context$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type context$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type context$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type context$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type context$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type context$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type context$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type context$8_BulkOrderResult as BulkOrderResult, type context$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type context$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type context$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type context$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type context$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type context$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type context$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type context$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type context$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type context$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type context$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type context$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type context$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type context$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type context$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type context$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$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 context$8_CalculatedTax as CalculatedTax, type context$8_CalculatedTaxes as CalculatedTaxes, type context$8_Cancel as Cancel, type context$8_CancelOrderOptions as CancelOrderOptions, type context$8_CancelOrderRequest as CancelOrderRequest, type context$8_CancelOrderResponse as CancelOrderResponse, type context$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type context$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type context$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type context$8_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type context$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type context$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type context$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type context$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type context$8_ChargedBy as ChargedBy, type context$8_Color as Color, type context$8_CommitDeltasRequest as CommitDeltasRequest, type context$8_CommitDeltasResponse as CommitDeltasResponse, type context$8_CommittedDiffs as CommittedDiffs, type context$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type context$8_CommonAddress as CommonAddress, type context$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type context$8_Company as Company, type context$8_Complete as Complete, type context$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type context$8_CreateOrderRequest as CreateOrderRequest, type context$8_CreateOrderResponse as CreateOrderResponse, type context$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type context$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type context$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type context$8_CreatedBy as CreatedBy, type context$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type context$8_CursorSearch as CursorSearch, type context$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type context$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, context$8_CustomFieldGroup as CustomFieldGroup, type context$8_CustomFieldValue as CustomFieldValue, type context$8_Customer as Customer, type context$8_DecrementData as DecrementData, type context$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type context$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type context$8_DeleteActivityRequest as DeleteActivityRequest, type context$8_DeleteActivityResponse as DeleteActivityResponse, type context$8_DeleteByFilterOperation as DeleteByFilterOperation, type context$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type context$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, context$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type context$8_Deposit as Deposit, context$8_DepositType as DepositType, type context$8_DescriptionLine as DescriptionLine, type context$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$8_DescriptionLineName as DescriptionLineName, context$8_DescriptionLineType as DescriptionLineType, type context$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type context$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, context$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 context$8_DownloadLinkSent as DownloadLinkSent, type context$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type context$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type context$8_DraftOrderDiffs as DraftOrderDiffs, type context$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type context$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type context$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type context$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type context$8_Email as Email, type context$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 context$8_ExternalUriMapping as ExternalUriMapping, type context$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type context$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type context$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type context$8_FullAddressContactDetails as FullAddressContactDetails, type context$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type context$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type context$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type context$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type context$8_GetOrderRequest as GetOrderRequest, type context$8_GetOrderResponse as GetOrderResponse, type context$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type context$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type context$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type context$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type context$8_GetShipmentsRequest as GetShipmentsRequest, type context$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type context$8_HtmlApplication as HtmlApplication, type context$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type context$8_InternalActivity as InternalActivity, type context$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type context$8_InternalDocument as InternalDocument, type context$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type context$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type context$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type context$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type context$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, context$8_InventoryAction as InventoryAction, type context$8_InventoryUpdateDetails as InventoryUpdateDetails, type context$8_InvoiceAdded as InvoiceAdded, type context$8_InvoiceDates as InvoiceDates, type context$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type context$8_InvoiceFields as InvoiceFields, type context$8_InvoiceSent as InvoiceSent, type context$8_InvoiceSentEvent as InvoiceSentEvent, context$8_InvoiceStatus as InvoiceStatus, type context$8_InvoicesPayment as InvoicesPayment, type context$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 context$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type context$8_LineItemAmount as LineItemAmount, type context$8_LineItemChanges as LineItemChanges, type context$8_LineItemDelta as LineItemDelta, type context$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type context$8_LineItemExchangeData as LineItemExchangeData, type context$8_LineItemMetaData as LineItemMetaData, type context$8_LineItemPriceChange as LineItemPriceChange, type context$8_LineItemQuantityChange as LineItemQuantityChange, context$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type context$8_LineItemTax as LineItemTax, type context$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$8_LineItemTaxInfo as LineItemTaxInfo, type context$8_LineItemUpdate as LineItemUpdate, type context$8_LineItems as LineItems, type context$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type context$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type context$8_Locale as Locale, type context$8_LocationAndQuantity as LocationAndQuantity, type context$8_ManagedAdditionalFee as ManagedAdditionalFee, type context$8_ManagedDiscount as ManagedDiscount, type context$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type context$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type context$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type context$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type context$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type context$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type context$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type context$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type context$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type context$8_MaskedOrder as MaskedOrder, type context$8_MaskedOrderLineItem as MaskedOrderLineItem, type context$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, MembershipPaymentStatus$2 as MembershipPaymentStatus, type context$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type context$8_MetaData as MetaData, type context$8_MetaSite as MetaSite, type context$8_MetaTag as MetaTag, context$8_Namespace as Namespace, type context$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, context$8_OrderApprovalStrategy as OrderApprovalStrategy, type context$8_OrderApproved as OrderApproved, type context$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type context$8_OrderCanceled as OrderCanceled, type context$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type context$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type context$8_OrderChange as OrderChange, type context$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$8_OrderCreateNotifications as OrderCreateNotifications, type context$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type context$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$8_OrderCreationSettings as OrderCreationSettings, type context$8_OrderDeltasCommitted as OrderDeltasCommitted, type context$8_OrderFulfilled as OrderFulfilled, type context$8_OrderItemsRestocked as OrderItemsRestocked, type context$8_OrderLineItem as OrderLineItem, type context$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type context$8_OrderNonNullableFields as OrderNonNullableFields, type context$8_OrderNotFulfilled as OrderNotFulfilled, type context$8_OrderPaid as OrderPaid, type context$8_OrderPartiallyPaid as OrderPartiallyPaid, type context$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type context$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, context$8_OrderStatus as OrderStatus, type context$8_OrderTaxBreakdown as OrderTaxBreakdown, type context$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type context$8_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type context$8_PaymentCapture as PaymentCapture, context$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, PaymentStatus$1 as PaymentStatus, type context$8_PaymentStatusUpdated as PaymentStatusUpdated, type context$8_Payments as Payments, type PaymentsUpdated$2 as PaymentsUpdated, type context$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type context$8_PickupReadyEmailSent as PickupReadyEmailSent, context$8_Placement as Placement, type context$8_PlainTextValue as PlainTextValue, type context$8_PlatformPaging as PlatformPaging, type context$8_PlatformPagingMetadata as PlatformPagingMetadata, type context$8_PlatformQuery as PlatformQuery, type context$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type context$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type context$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type context$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type context$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type context$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type context$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type context$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type context$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type context$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type context$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type context$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type context$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type context$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type context$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, context$8_PreviewEmailType as PreviewEmailType, type context$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type context$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type context$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type context$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type context$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type context$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type context$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type context$8_ProductName as ProductName, type context$8_PublicActivity as PublicActivity, type context$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type context$8_QueryOrderRequest as QueryOrderRequest, type context$8_QueryOrderResponse as QueryOrderResponse, type context$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type context$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type context$8_QuotesAddress as QuotesAddress, Reason$2 as Reason, type context$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type context$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type context$8_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, 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 RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type context$8_SavedPaymentMethod as SavedPaymentMethod, type ScheduledAction$2 as ScheduledAction, type context$8_SearchOrdersOptions as SearchOrdersOptions, type context$8_SearchOrdersRequest as SearchOrdersRequest, type context$8_SearchOrdersResponse as SearchOrdersResponse, type context$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type context$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type context$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type context$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type context$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type context$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type context$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type context$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type context$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type context$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type context$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type context$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type context$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type context$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type context$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type context$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type context$8_ShippingAddressEdited as ShippingAddressEdited, type context$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type context$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, context$8_SourceType as SourceType, type context$8_StandardDetails as StandardDetails, context$8_State as State, type StreetAddress$3 as StreetAddress, type context$8_Subdivision as Subdivision, context$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type context$8_TagList as TagList, type context$8_Tags as Tags, type context$8_Task as Task, type context$8_TaskAction as TaskAction, type context$8_TaskActionActionOneOf as TaskActionActionOneOf, type context$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type context$8_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type context$8_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type context$8_TotalPrice as TotalPrice, type context$8_TotalPriceChange as TotalPriceChange, type context$8_TrackingLinkAdded as TrackingLinkAdded, type context$8_TrackingNumberAdded as TrackingNumberAdded, type context$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type context$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type context$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type context$8_TriggerReindexRequest as TriggerReindexRequest, type context$8_TriggerReindexResponse as TriggerReindexResponse, type context$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type context$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type context$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type context$8_UpdateActivityRequest as UpdateActivityRequest, type context$8_UpdateActivityResponse as UpdateActivityResponse, type context$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type context$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type context$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type context$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type context$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type context$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type context$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type context$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type context$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type context$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type context$8_UpdateOrder as UpdateOrder, type context$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type context$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type context$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type context$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type context$8_UpdateOrderRequest as UpdateOrderRequest, type context$8_UpdateOrderResponse as UpdateOrderResponse, type context$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type context$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type context$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type context$8_UpsertRefundRequest as UpsertRefundRequest, type context$8_UpsertRefundResponse as UpsertRefundResponse, type context$8_UserDataResponse as UserDataResponse, type context$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type context$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type context$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type context$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type context$8_V1LineItemDelta as V1LineItemDelta, type context$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type context$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type context$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type context$8_V1RestockItem as V1RestockItem, type context$8_V1ShippingInformation as V1ShippingInformation, type context$8_Value as Value, context$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type context$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type context$8_VersionedDocumentId as VersionedDocumentId, type context$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, context$8_VersioningMode as VersioningMode, type context$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type context$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type context$8_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, type context$8__publicOnOrderApprovedType as _publicOnOrderApprovedType, type context$8__publicOnOrderCanceledType as _publicOnOrderCanceledType, type context$8__publicOnOrderCreatedType as _publicOnOrderCreatedType, type context$8__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, context$8_bulkUpdateOrders as bulkUpdateOrders, context$8_cancelOrder as cancelOrder, context$8_captureAuthorizedPayments as captureAuthorizedPayments, context$8_createOrder as createOrder, context$8_getOrder as getOrder, context$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, context$8_onOrderApproved as onOrderApproved, context$8_onOrderCanceled as onOrderCanceled, context$8_onOrderCreated as onOrderCreated, context$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, context$8_searchOrders as searchOrders, context$8_updateOrder as updateOrder, context$8_voidAuthorizedPayments as voidAuthorizedPayments };
26258
26446
  }
26259
26447
 
26260
26448
  interface OrderPaymentRequest {
@@ -26396,6 +26584,8 @@ interface PaymentPaymentDetailsOneOf$1 {
26396
26584
  giftcardPaymentDetails?: GiftCardPaymentDetails$1;
26397
26585
  }
26398
26586
  interface RegularPaymentDetails$1 extends RegularPaymentDetailsPaymentMethodDetailsOneOf$1 {
26587
+ /** Whether regular card used */
26588
+ creditCardDetails?: CreditCardPaymentMethodDetails$1;
26399
26589
  /** Wix Payments order ID. */
26400
26590
  paymentOrderId?: string | null;
26401
26591
  /**
@@ -26416,9 +26606,13 @@ interface RegularPaymentDetails$1 extends RegularPaymentDetailsPaymentMethodDeta
26416
26606
  status?: TransactionStatus$1;
26417
26607
  /** Whether there is a payment agreement that allows for future charges. */
26418
26608
  savedPaymentMethod?: boolean;
26609
+ /** Authorization details. */
26610
+ authorizationDetails?: AuthorizationDetails$1;
26419
26611
  }
26420
26612
  /** @oneof */
26421
26613
  interface RegularPaymentDetailsPaymentMethodDetailsOneOf$1 {
26614
+ /** Whether regular card used */
26615
+ creditCardDetails?: CreditCardPaymentMethodDetails$1;
26422
26616
  }
26423
26617
  declare enum TransactionStatus$1 {
26424
26618
  UNDEFINED = "UNDEFINED",
@@ -26433,8 +26627,28 @@ declare enum TransactionStatus$1 {
26433
26627
  VOIDED = "VOIDED"
26434
26628
  }
26435
26629
  interface CreditCardPaymentMethodDetails$1 {
26630
+ /** The last 4 digits of the card number. */
26631
+ lastFourDigits?: string | null;
26632
+ /** Card issuer's brand. */
26633
+ brand?: string | null;
26436
26634
  }
26437
26635
  interface AuthorizationDetails$1 {
26636
+ /**
26637
+ * Whether the authorized payment is of a delayed capture.
26638
+ * @readonly
26639
+ */
26640
+ delayedCapture?: boolean;
26641
+ /** Date and time the payment was authorized in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
26642
+ authorizedDate?: Date;
26643
+ /**
26644
+ * List of captures associated with payment
26645
+ * In case of failed it can be replaced with new one with PENDING or SUCCESS statuses
26646
+ */
26647
+ captures?: AuthorizationCapture$1[];
26648
+ /** Void associated with payment */
26649
+ void?: AuthorizationVoid$1;
26650
+ /** Scheduled action for this transaction */
26651
+ scheduledAction?: ScheduledAction$1;
26438
26652
  }
26439
26653
  interface AuthorizationCapture$1 {
26440
26654
  /**
@@ -26442,6 +26656,14 @@ interface AuthorizationCapture$1 {
26442
26656
  * @readonly
26443
26657
  */
26444
26658
  _id?: string | null;
26659
+ /** Status of this capture action */
26660
+ status?: AuthorizationCaptureStatus$1;
26661
+ /** Amount of this capture */
26662
+ amount?: Price$1;
26663
+ /** Date and time the capture was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
26664
+ _createdDate?: Date;
26665
+ /** In case of status is FAILED may contain failure details */
26666
+ failureDetails?: AuthorizationActionFailureDetails$1;
26445
26667
  }
26446
26668
  declare enum AuthorizationCaptureStatus$1 {
26447
26669
  UNKNOWN_STATUS = "UNKNOWN_STATUS",
@@ -26453,8 +26675,17 @@ declare enum AuthorizationCaptureStatus$1 {
26453
26675
  FAILED = "FAILED"
26454
26676
  }
26455
26677
  interface AuthorizationActionFailureDetails$1 {
26678
+ failureCode?: string;
26456
26679
  }
26457
26680
  interface AuthorizationVoid$1 {
26681
+ /** Status of this void action */
26682
+ status?: AuthorizationVoidStatus$1;
26683
+ /** Date and time the void was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
26684
+ voidedDate?: Date;
26685
+ /** In case of status is FAILED may contain failure details */
26686
+ failureDetails?: AuthorizationActionFailureDetails$1;
26687
+ /** Reason of void action */
26688
+ reason?: Reason$1;
26458
26689
  }
26459
26690
  declare enum AuthorizationVoidStatus$1 {
26460
26691
  UNKNOWN_STATUS = "UNKNOWN_STATUS",
@@ -27180,6 +27411,8 @@ interface PaymentPaymentDetailsOneOf {
27180
27411
  giftcardPaymentDetails?: GiftCardPaymentDetails;
27181
27412
  }
27182
27413
  interface RegularPaymentDetails extends RegularPaymentDetailsPaymentMethodDetailsOneOf {
27414
+ /** Whether regular card used */
27415
+ creditCardDetails?: CreditCardPaymentMethodDetails;
27183
27416
  /** Wix Payments order ID. */
27184
27417
  paymentOrderId?: string | null;
27185
27418
  /**
@@ -27200,9 +27433,13 @@ interface RegularPaymentDetails extends RegularPaymentDetailsPaymentMethodDetail
27200
27433
  status?: TransactionStatus;
27201
27434
  /** Whether there is a payment agreement that allows for future charges. */
27202
27435
  savedPaymentMethod?: boolean;
27436
+ /** Authorization details. */
27437
+ authorizationDetails?: AuthorizationDetails;
27203
27438
  }
27204
27439
  /** @oneof */
27205
27440
  interface RegularPaymentDetailsPaymentMethodDetailsOneOf {
27441
+ /** Whether regular card used */
27442
+ creditCardDetails?: CreditCardPaymentMethodDetails;
27206
27443
  }
27207
27444
  declare enum TransactionStatus {
27208
27445
  UNDEFINED = "UNDEFINED",
@@ -27217,8 +27454,28 @@ declare enum TransactionStatus {
27217
27454
  VOIDED = "VOIDED"
27218
27455
  }
27219
27456
  interface CreditCardPaymentMethodDetails {
27457
+ /** The last 4 digits of the card number. */
27458
+ lastFourDigits?: string | null;
27459
+ /** Card issuer's brand. */
27460
+ brand?: string | null;
27220
27461
  }
27221
27462
  interface AuthorizationDetails {
27463
+ /**
27464
+ * Whether the authorized payment is of a delayed capture.
27465
+ * @readonly
27466
+ */
27467
+ delayedCapture?: boolean;
27468
+ /** Date and time the payment was authorized in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
27469
+ authorizedDate?: Date;
27470
+ /**
27471
+ * List of captures associated with payment
27472
+ * In case of failed it can be replaced with new one with PENDING or SUCCESS statuses
27473
+ */
27474
+ captures?: AuthorizationCapture[];
27475
+ /** Void associated with payment */
27476
+ void?: AuthorizationVoid;
27477
+ /** Scheduled action for this transaction */
27478
+ scheduledAction?: ScheduledAction;
27222
27479
  }
27223
27480
  interface AuthorizationCapture {
27224
27481
  /**
@@ -27226,6 +27483,14 @@ interface AuthorizationCapture {
27226
27483
  * @readonly
27227
27484
  */
27228
27485
  _id?: string | null;
27486
+ /** Status of this capture action */
27487
+ status?: AuthorizationCaptureStatus;
27488
+ /** Amount of this capture */
27489
+ amount?: Price;
27490
+ /** Date and time the capture was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
27491
+ _createdDate?: Date;
27492
+ /** In case of status is FAILED may contain failure details */
27493
+ failureDetails?: AuthorizationActionFailureDetails;
27229
27494
  }
27230
27495
  declare enum AuthorizationCaptureStatus {
27231
27496
  UNKNOWN_STATUS = "UNKNOWN_STATUS",
@@ -27246,8 +27511,17 @@ interface Price {
27246
27511
  formattedAmount?: string;
27247
27512
  }
27248
27513
  interface AuthorizationActionFailureDetails {
27514
+ failureCode?: string;
27249
27515
  }
27250
27516
  interface AuthorizationVoid {
27517
+ /** Status of this void action */
27518
+ status?: AuthorizationVoidStatus;
27519
+ /** Date and time the void was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
27520
+ voidedDate?: Date;
27521
+ /** In case of status is FAILED may contain failure details */
27522
+ failureDetails?: AuthorizationActionFailureDetails;
27523
+ /** Reason of void action */
27524
+ reason?: Reason;
27251
27525
  }
27252
27526
  declare enum AuthorizationVoidStatus {
27253
27527
  UNKNOWN_STATUS = "UNKNOWN_STATUS",