@wix/auto_sdk_ecom_order-transactions 1.0.96 → 1.0.98
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +4 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +27 -10
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +24 -7
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +60 -0
- package/build/cjs/schemas.js +96 -0
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/index.d.mts +4 -4
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +27 -10
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +24 -7
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +60 -0
- package/build/es/schemas.mjs +96 -0
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +4 -4
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +14 -16
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +24 -7
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/cjs/schemas.d.ts +60 -0
- package/build/internal/cjs/schemas.js +96 -0
- package/build/internal/cjs/schemas.js.map +1 -1
- package/build/internal/es/index.d.mts +4 -4
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +14 -16
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +24 -7
- package/build/internal/es/meta.mjs.map +1 -1
- package/build/internal/es/schemas.d.mts +60 -0
- package/build/internal/es/schemas.mjs +96 -0
- package/build/internal/es/schemas.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -23,7 +23,7 @@ interface OrderTransactions {
|
|
|
23
23
|
*/
|
|
24
24
|
refunds?: Refund[];
|
|
25
25
|
}
|
|
26
|
-
interface Payment extends PaymentPaymentDetailsOneOf, PaymentReceiptInfoOneOf {
|
|
26
|
+
interface Payment extends PaymentPaymentDetailsOneOf, PaymentReceiptInfoOneOf, PaymentStatusDetailsOneOf {
|
|
27
27
|
/** Regular payment details. */
|
|
28
28
|
regularPaymentDetails?: RegularPaymentDetails;
|
|
29
29
|
/** Gift card payment details. */
|
|
@@ -49,6 +49,8 @@ interface Payment extends PaymentPaymentDetailsOneOf, PaymentReceiptInfoOneOf {
|
|
|
49
49
|
* + `false`: This payment may be refunded. However, this ultimately depends on the payment provider.
|
|
50
50
|
*/
|
|
51
51
|
refundDisabled?: boolean;
|
|
52
|
+
/** Details about cash rounding applied to this payment, when relevant. */
|
|
53
|
+
cashRounding?: CashRoundingDetails;
|
|
52
54
|
}
|
|
53
55
|
/** @oneof */
|
|
54
56
|
interface PaymentPaymentDetailsOneOf {
|
|
@@ -60,6 +62,9 @@ interface PaymentPaymentDetailsOneOf {
|
|
|
60
62
|
/** @oneof */
|
|
61
63
|
interface PaymentReceiptInfoOneOf {
|
|
62
64
|
}
|
|
65
|
+
/** @oneof */
|
|
66
|
+
interface PaymentStatusDetailsOneOf {
|
|
67
|
+
}
|
|
63
68
|
interface RegularPaymentDetails extends RegularPaymentDetailsPaymentMethodDetailsOneOf {
|
|
64
69
|
/** Credit card details. */
|
|
65
70
|
creditCardDetails?: CreditCardPaymentMethodDetails;
|
|
@@ -481,6 +486,18 @@ interface ExternalReceiptInfo {
|
|
|
481
486
|
displayNumber?: string | null;
|
|
482
487
|
}
|
|
483
488
|
interface CashRoundingDetails {
|
|
489
|
+
/**
|
|
490
|
+
* Payment amount before cash rounding was applied.
|
|
491
|
+
* When provided, balance and status calculations use this value instead of `amount`
|
|
492
|
+
* to prevent false overpayment or underpayment due to rounding.
|
|
493
|
+
*/
|
|
494
|
+
unroundedAmount?: Price;
|
|
495
|
+
/**
|
|
496
|
+
* The difference between 'amount' and 'unroundedAmount' (amount minus unroundedAmount).
|
|
497
|
+
* A positive value indicates the price was rounded up; a negative value indicates a round-down.
|
|
498
|
+
* @readonly
|
|
499
|
+
*/
|
|
500
|
+
roundingAdjustment?: CashRounding;
|
|
484
501
|
}
|
|
485
502
|
interface CashRounding {
|
|
486
503
|
/**
|
|
@@ -507,11 +524,6 @@ declare enum PaymentStatus {
|
|
|
507
524
|
}
|
|
508
525
|
/** @enumType */
|
|
509
526
|
type PaymentStatusWithLiterals = PaymentStatus | 'APPROVED' | 'PENDING' | 'PENDING_MERCHANT' | 'CANCELED' | 'DECLINED' | 'REFUNDED' | 'PARTIALLY_REFUNDED' | 'AUTHORIZED' | 'VOIDED';
|
|
510
|
-
interface PaymentStatusDetails extends PaymentStatusDetailsStatusDetailsOneOf {
|
|
511
|
-
}
|
|
512
|
-
/** @oneof */
|
|
513
|
-
interface PaymentStatusDetailsStatusDetailsOneOf {
|
|
514
|
-
}
|
|
515
527
|
interface CanceledStatusDetails {
|
|
516
528
|
reason?: CanceledReasonWithLiterals;
|
|
517
529
|
}
|
|
@@ -549,6 +561,11 @@ declare enum VoidedReason {
|
|
|
549
561
|
}
|
|
550
562
|
/** @enumType */
|
|
551
563
|
type VoidedReasonWithLiterals = VoidedReason | 'MERCHANT_REQUEST' | 'OTHER_PAYMENT_FAILURE';
|
|
564
|
+
interface PaymentStatusDetails extends PaymentStatusDetailsStatusDetailsOneOf {
|
|
565
|
+
}
|
|
566
|
+
/** @oneof */
|
|
567
|
+
interface PaymentStatusDetailsStatusDetailsOneOf {
|
|
568
|
+
}
|
|
552
569
|
interface Refund {
|
|
553
570
|
/**
|
|
554
571
|
* Refund ID.
|
|
@@ -1700,4 +1717,4 @@ declare function updatePayments(): __PublicMethodMetaInfo<'POST', {
|
|
|
1700
1717
|
orderId: string;
|
|
1701
1718
|
}, UpdatePaymentsRequest$1, UpdatePaymentsRequest, UpdatePaymentsResponse$1, UpdatePaymentsResponse>;
|
|
1702
1719
|
|
|
1703
|
-
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, ActionType as ActionTypeOriginal, type ActionTypeWithLiterals as ActionTypeWithLiteralsOriginal, type AddChargebackRequest as AddChargebackRequestOriginal, type AddChargebackResponse as AddChargebackResponseOriginal, type AddInvoiceToOrderRequest as AddInvoiceToOrderRequestOriginal, type AddInvoiceToOrderResponse as AddInvoiceToOrderResponseOriginal, type AddPaymentsRequest as AddPaymentsRequestOriginal, type AddPaymentsResponse as AddPaymentsResponseOriginal, type AddRefundRequest as AddRefundRequestOriginal, type AddRefundResponse as AddRefundResponseOriginal, type AdditionalFeeRefund as AdditionalFeeRefundOriginal, type AggregatedRefundSummary as AggregatedRefundSummaryOriginal, type ApplicationError as ApplicationErrorOriginal, type AuthorizationActionFailureDetails as AuthorizationActionFailureDetailsOriginal, type AuthorizationCapture as AuthorizationCaptureOriginal, AuthorizationCaptureStatus as AuthorizationCaptureStatusOriginal, type AuthorizationCaptureStatusWithLiterals as AuthorizationCaptureStatusWithLiteralsOriginal, type AuthorizationDetails as AuthorizationDetailsOriginal, type AuthorizationVoid as AuthorizationVoidOriginal, AuthorizationVoidStatus as AuthorizationVoidStatusOriginal, type AuthorizationVoidStatusWithLiterals as AuthorizationVoidStatusWithLiteralsOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkGenerateInvoicesRequest as BulkGenerateInvoicesRequestOriginal, type BulkGenerateInvoicesResponse as BulkGenerateInvoicesResponseOriginal, type BulkInvoiceResult as BulkInvoiceResultOriginal, type BulkPaymentResult as BulkPaymentResultOriginal, type BulkUpdatePaymentStatusesRequest as BulkUpdatePaymentStatusesRequestOriginal, type BulkUpdatePaymentStatusesResponse as BulkUpdatePaymentStatusesResponseOriginal, type CalculateRefundItemRequest as CalculateRefundItemRequestOriginal, type CalculateRefundItemResponse as CalculateRefundItemResponseOriginal, type CalculateRefundRequest as CalculateRefundRequestOriginal, type CalculateRefundResponse as CalculateRefundResponseOriginal, CanceledReason as CanceledReasonOriginal, type CanceledReasonWithLiterals as CanceledReasonWithLiteralsOriginal, type CanceledStatusDetails as CanceledStatusDetailsOriginal, type CashRoundingDetails as CashRoundingDetailsOriginal, type CashRounding as CashRoundingOriginal, type ChargebackApproved as ChargebackApprovedOriginal, type Chargeback as ChargebackOriginal, type ChargebackReversed as ChargebackReversedOriginal, ChargebackStatus as ChargebackStatusOriginal, type ChargebackStatusWithLiterals as ChargebackStatusWithLiteralsOriginal, type CreditCardPaymentMethodDetails as CreditCardPaymentMethodDetailsOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, DeclinedReason as DeclinedReasonOriginal, type DeclinedReasonWithLiterals as DeclinedReasonWithLiteralsOriginal, type DeclinedStatusDetails as DeclinedStatusDetailsOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExternalReceiptInfo as ExternalReceiptInfoOriginal, type FutureMembershipDetails as FutureMembershipDetailsOriginal, type GenerateInvoiceRequest as GenerateInvoiceRequestOriginal, type GenerateInvoiceResponse as GenerateInvoiceResponseOriginal, type GetRefundabilityStatusRequest as GetRefundabilityStatusRequestOriginal, type GetRefundabilityStatusResponse as GetRefundabilityStatusResponseOriginal, type GiftCardPaymentDetails as GiftCardPaymentDetailsOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type InvoiceForOrder as InvoiceForOrderOriginal, type InvoiceInfo as InvoiceInfoOriginal, type InvoicesForOrder as InvoicesForOrderOriginal, type ItemMetadata as ItemMetadataOriginal, type LineItemRefund as LineItemRefundOriginal, type LineItemRefundSummary as LineItemRefundSummaryOriginal, type ListInvoicesForMultipleOrdersRequest as ListInvoicesForMultipleOrdersRequestOriginal, type ListInvoicesForMultipleOrdersResponse as ListInvoicesForMultipleOrdersResponseOriginal, type ListInvoicesForSingleOrderRequest as ListInvoicesForSingleOrderRequestOriginal, type ListInvoicesForSingleOrderResponse as ListInvoicesForSingleOrderResponseOriginal, type ListTransactionsForMultipleOrdersRequest as ListTransactionsForMultipleOrdersRequestOriginal, type ListTransactionsForMultipleOrdersResponse as ListTransactionsForMultipleOrdersResponseOriginal, type ListTransactionsForSingleOrderRequest as ListTransactionsForSingleOrderRequestOriginal, type ListTransactionsForSingleOrderResponse as ListTransactionsForSingleOrderResponseOriginal, ManuallyRefundableReason as ManuallyRefundableReasonOriginal, type ManuallyRefundableReasonWithLiterals as ManuallyRefundableReasonWithLiteralsOriginal, type MaskedPayment as MaskedPaymentOriginal, type MembershipName as MembershipNameOriginal, type MembershipPaymentDetails as MembershipPaymentDetailsOriginal, MembershipPaymentStatus as MembershipPaymentStatusOriginal, type MembershipPaymentStatusWithLiterals as MembershipPaymentStatusWithLiteralsOriginal, type MessageEnvelope as MessageEnvelopeOriginal, NonRefundableReason as NonRefundableReasonOriginal, type NonRefundableReasonWithLiterals as NonRefundableReasonWithLiteralsOriginal, type OrderTransactions as OrderTransactionsOriginal, type PaymentAndOrderId as PaymentAndOrderIdOriginal, type PaymentDetailsUpdated as PaymentDetailsUpdatedOriginal, type PaymentMethodName as PaymentMethodNameOriginal, type Payment as PaymentOriginal, type PaymentPaymentDetailsOneOf as PaymentPaymentDetailsOneOfOriginal, type PaymentReceiptInfoOneOf as PaymentReceiptInfoOneOfOriginal, type PaymentRefund as PaymentRefundOriginal, type PaymentStatusDetails as PaymentStatusDetailsOriginal, type PaymentStatusDetailsStatusDetailsOneOf as PaymentStatusDetailsStatusDetailsOneOfOriginal, PaymentStatus as PaymentStatusOriginal, type PaymentStatusWithLiterals as PaymentStatusWithLiteralsOriginal, type PaymentsUpdated as PaymentsUpdatedOriginal, PredefinedPaymentMethod as PredefinedPaymentMethodOriginal, type PredefinedPaymentMethodWithLiterals as PredefinedPaymentMethodWithLiteralsOriginal, type Price as PriceOriginal, type QueryOrderTransactionsRequest as QueryOrderTransactionsRequestOriginal, type QueryOrderTransactionsResponse as QueryOrderTransactionsResponseOriginal, Reason as ReasonOriginal, type ReasonWithLiterals as ReasonWithLiteralsOriginal, type RefundCompleted as RefundCompletedOriginal, type RefundCreated as RefundCreatedOriginal, type RefundDetails as RefundDetailsOriginal, type RefundItem as RefundItemOriginal, type RefundItemsBreakdown as RefundItemsBreakdownOriginal, type Refund as RefundOriginal, type RefundSideEffects as RefundSideEffectsOriginal, type RefundStatusInfo as RefundStatusInfoOriginal, RefundStatus as RefundStatusOriginal, type RefundStatusWithLiterals as RefundStatusWithLiteralsOriginal, type RefundTransaction as RefundTransactionOriginal, type RefundabilityAdditionalRefundabilityInfoOneOf as RefundabilityAdditionalRefundabilityInfoOneOfOriginal, type Refundability as RefundabilityOriginal, RefundableStatus as RefundableStatusOriginal, type RefundableStatusWithLiterals as RefundableStatusWithLiteralsOriginal, type RegularPaymentDetails as RegularPaymentDetailsOriginal, type RegularPaymentDetailsPaymentMethodDetailsOneOf as RegularPaymentDetailsPaymentMethodDetailsOneOfOriginal, type RestockInfo as RestockInfoOriginal, type RestockItem as RestockItemOriginal, type RestockLocation as RestockLocationOriginal, RestockType as RestockTypeOriginal, type RestockTypeWithLiterals as RestockTypeWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type ReverseChargebackRequest as ReverseChargebackRequestOriginal, type ReverseChargebackResponse as ReverseChargebackResponseOriginal, type ScheduledAction as ScheduledActionOriginal, type ShippingRefund as ShippingRefundOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, TransactionStatus as TransactionStatusOriginal, type TransactionStatusWithLiterals as TransactionStatusWithLiteralsOriginal, type TriggerRefundRequest as TriggerRefundRequestOriginal, type TriggerRefundResponse as TriggerRefundResponseOriginal, type UpdatePaymentStatusRequest as UpdatePaymentStatusRequestOriginal, type UpdatePaymentStatusResponse as UpdatePaymentStatusResponseOriginal, type UpdatePaymentsApplicationErrors as UpdatePaymentsApplicationErrorsOriginal, type UpdatePaymentsRequest as UpdatePaymentsRequestOriginal, type UpdatePaymentsResponse as UpdatePaymentsResponseOriginal, type UpdateRefundRequest as UpdateRefundRequestOriginal, type UpdateRefundResponse as UpdateRefundResponseOriginal, type UpdateRefundTransactionApplicationErrors as UpdateRefundTransactionApplicationErrorsOriginal, type UpdateRefundTransactionRequest as UpdateRefundTransactionRequestOriginal, type UpdateRefundTransactionResponse as UpdateRefundTransactionResponseOriginal, type UserDefinedPaymentMethodNameKindOneOf as UserDefinedPaymentMethodNameKindOneOfOriginal, type UserDefinedPaymentMethodName as UserDefinedPaymentMethodNameOriginal, VoidedReason as VoidedReasonOriginal, type VoidedReasonWithLiterals as VoidedReasonWithLiteralsOriginal, type VoidedStatusDetails as VoidedStatusDetailsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type WixReceiptInfo as WixReceiptInfoOriginal, type __PublicMethodMetaInfo, addPayments, bulkUpdatePaymentStatuses, listTransactionsForMultipleOrders, listTransactionsForSingleOrder, updatePaymentStatus, updatePayments, updateRefundTransaction };
|
|
1720
|
+
export { type AccountInfo as AccountInfoOriginal, type ActionEvent as ActionEventOriginal, ActionType as ActionTypeOriginal, type ActionTypeWithLiterals as ActionTypeWithLiteralsOriginal, type AddChargebackRequest as AddChargebackRequestOriginal, type AddChargebackResponse as AddChargebackResponseOriginal, type AddInvoiceToOrderRequest as AddInvoiceToOrderRequestOriginal, type AddInvoiceToOrderResponse as AddInvoiceToOrderResponseOriginal, type AddPaymentsRequest as AddPaymentsRequestOriginal, type AddPaymentsResponse as AddPaymentsResponseOriginal, type AddRefundRequest as AddRefundRequestOriginal, type AddRefundResponse as AddRefundResponseOriginal, type AdditionalFeeRefund as AdditionalFeeRefundOriginal, type AggregatedRefundSummary as AggregatedRefundSummaryOriginal, type ApplicationError as ApplicationErrorOriginal, type AuthorizationActionFailureDetails as AuthorizationActionFailureDetailsOriginal, type AuthorizationCapture as AuthorizationCaptureOriginal, AuthorizationCaptureStatus as AuthorizationCaptureStatusOriginal, type AuthorizationCaptureStatusWithLiterals as AuthorizationCaptureStatusWithLiteralsOriginal, type AuthorizationDetails as AuthorizationDetailsOriginal, type AuthorizationVoid as AuthorizationVoidOriginal, AuthorizationVoidStatus as AuthorizationVoidStatusOriginal, type AuthorizationVoidStatusWithLiterals as AuthorizationVoidStatusWithLiteralsOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkGenerateInvoicesRequest as BulkGenerateInvoicesRequestOriginal, type BulkGenerateInvoicesResponse as BulkGenerateInvoicesResponseOriginal, type BulkInvoiceResult as BulkInvoiceResultOriginal, type BulkPaymentResult as BulkPaymentResultOriginal, type BulkUpdatePaymentStatusesRequest as BulkUpdatePaymentStatusesRequestOriginal, type BulkUpdatePaymentStatusesResponse as BulkUpdatePaymentStatusesResponseOriginal, type CalculateRefundItemRequest as CalculateRefundItemRequestOriginal, type CalculateRefundItemResponse as CalculateRefundItemResponseOriginal, type CalculateRefundRequest as CalculateRefundRequestOriginal, type CalculateRefundResponse as CalculateRefundResponseOriginal, CanceledReason as CanceledReasonOriginal, type CanceledReasonWithLiterals as CanceledReasonWithLiteralsOriginal, type CanceledStatusDetails as CanceledStatusDetailsOriginal, type CashRoundingDetails as CashRoundingDetailsOriginal, type CashRounding as CashRoundingOriginal, type ChargebackApproved as ChargebackApprovedOriginal, type Chargeback as ChargebackOriginal, type ChargebackReversed as ChargebackReversedOriginal, ChargebackStatus as ChargebackStatusOriginal, type ChargebackStatusWithLiterals as ChargebackStatusWithLiteralsOriginal, type CreditCardPaymentMethodDetails as CreditCardPaymentMethodDetailsOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, DeclinedReason as DeclinedReasonOriginal, type DeclinedReasonWithLiterals as DeclinedReasonWithLiteralsOriginal, type DeclinedStatusDetails as DeclinedStatusDetailsOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type ExternalReceiptInfo as ExternalReceiptInfoOriginal, type FutureMembershipDetails as FutureMembershipDetailsOriginal, type GenerateInvoiceRequest as GenerateInvoiceRequestOriginal, type GenerateInvoiceResponse as GenerateInvoiceResponseOriginal, type GetRefundabilityStatusRequest as GetRefundabilityStatusRequestOriginal, type GetRefundabilityStatusResponse as GetRefundabilityStatusResponseOriginal, type GiftCardPaymentDetails as GiftCardPaymentDetailsOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type InvoiceForOrder as InvoiceForOrderOriginal, type InvoiceInfo as InvoiceInfoOriginal, type InvoicesForOrder as InvoicesForOrderOriginal, type ItemMetadata as ItemMetadataOriginal, type LineItemRefund as LineItemRefundOriginal, type LineItemRefundSummary as LineItemRefundSummaryOriginal, type ListInvoicesForMultipleOrdersRequest as ListInvoicesForMultipleOrdersRequestOriginal, type ListInvoicesForMultipleOrdersResponse as ListInvoicesForMultipleOrdersResponseOriginal, type ListInvoicesForSingleOrderRequest as ListInvoicesForSingleOrderRequestOriginal, type ListInvoicesForSingleOrderResponse as ListInvoicesForSingleOrderResponseOriginal, type ListTransactionsForMultipleOrdersRequest as ListTransactionsForMultipleOrdersRequestOriginal, type ListTransactionsForMultipleOrdersResponse as ListTransactionsForMultipleOrdersResponseOriginal, type ListTransactionsForSingleOrderRequest as ListTransactionsForSingleOrderRequestOriginal, type ListTransactionsForSingleOrderResponse as ListTransactionsForSingleOrderResponseOriginal, ManuallyRefundableReason as ManuallyRefundableReasonOriginal, type ManuallyRefundableReasonWithLiterals as ManuallyRefundableReasonWithLiteralsOriginal, type MaskedPayment as MaskedPaymentOriginal, type MembershipName as MembershipNameOriginal, type MembershipPaymentDetails as MembershipPaymentDetailsOriginal, MembershipPaymentStatus as MembershipPaymentStatusOriginal, type MembershipPaymentStatusWithLiterals as MembershipPaymentStatusWithLiteralsOriginal, type MessageEnvelope as MessageEnvelopeOriginal, NonRefundableReason as NonRefundableReasonOriginal, type NonRefundableReasonWithLiterals as NonRefundableReasonWithLiteralsOriginal, type OrderTransactions as OrderTransactionsOriginal, type PaymentAndOrderId as PaymentAndOrderIdOriginal, type PaymentDetailsUpdated as PaymentDetailsUpdatedOriginal, type PaymentMethodName as PaymentMethodNameOriginal, type Payment as PaymentOriginal, type PaymentPaymentDetailsOneOf as PaymentPaymentDetailsOneOfOriginal, type PaymentReceiptInfoOneOf as PaymentReceiptInfoOneOfOriginal, type PaymentRefund as PaymentRefundOriginal, type PaymentStatusDetailsOneOf as PaymentStatusDetailsOneOfOriginal, type PaymentStatusDetails as PaymentStatusDetailsOriginal, type PaymentStatusDetailsStatusDetailsOneOf as PaymentStatusDetailsStatusDetailsOneOfOriginal, PaymentStatus as PaymentStatusOriginal, type PaymentStatusWithLiterals as PaymentStatusWithLiteralsOriginal, type PaymentsUpdated as PaymentsUpdatedOriginal, PredefinedPaymentMethod as PredefinedPaymentMethodOriginal, type PredefinedPaymentMethodWithLiterals as PredefinedPaymentMethodWithLiteralsOriginal, type Price as PriceOriginal, type QueryOrderTransactionsRequest as QueryOrderTransactionsRequestOriginal, type QueryOrderTransactionsResponse as QueryOrderTransactionsResponseOriginal, Reason as ReasonOriginal, type ReasonWithLiterals as ReasonWithLiteralsOriginal, type RefundCompleted as RefundCompletedOriginal, type RefundCreated as RefundCreatedOriginal, type RefundDetails as RefundDetailsOriginal, type RefundItem as RefundItemOriginal, type RefundItemsBreakdown as RefundItemsBreakdownOriginal, type Refund as RefundOriginal, type RefundSideEffects as RefundSideEffectsOriginal, type RefundStatusInfo as RefundStatusInfoOriginal, RefundStatus as RefundStatusOriginal, type RefundStatusWithLiterals as RefundStatusWithLiteralsOriginal, type RefundTransaction as RefundTransactionOriginal, type RefundabilityAdditionalRefundabilityInfoOneOf as RefundabilityAdditionalRefundabilityInfoOneOfOriginal, type Refundability as RefundabilityOriginal, RefundableStatus as RefundableStatusOriginal, type RefundableStatusWithLiterals as RefundableStatusWithLiteralsOriginal, type RegularPaymentDetails as RegularPaymentDetailsOriginal, type RegularPaymentDetailsPaymentMethodDetailsOneOf as RegularPaymentDetailsPaymentMethodDetailsOneOfOriginal, type RestockInfo as RestockInfoOriginal, type RestockItem as RestockItemOriginal, type RestockLocation as RestockLocationOriginal, RestockType as RestockTypeOriginal, type RestockTypeWithLiterals as RestockTypeWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type ReverseChargebackRequest as ReverseChargebackRequestOriginal, type ReverseChargebackResponse as ReverseChargebackResponseOriginal, type ScheduledAction as ScheduledActionOriginal, type ShippingRefund as ShippingRefundOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, TransactionStatus as TransactionStatusOriginal, type TransactionStatusWithLiterals as TransactionStatusWithLiteralsOriginal, type TriggerRefundRequest as TriggerRefundRequestOriginal, type TriggerRefundResponse as TriggerRefundResponseOriginal, type UpdatePaymentStatusRequest as UpdatePaymentStatusRequestOriginal, type UpdatePaymentStatusResponse as UpdatePaymentStatusResponseOriginal, type UpdatePaymentsApplicationErrors as UpdatePaymentsApplicationErrorsOriginal, type UpdatePaymentsRequest as UpdatePaymentsRequestOriginal, type UpdatePaymentsResponse as UpdatePaymentsResponseOriginal, type UpdateRefundRequest as UpdateRefundRequestOriginal, type UpdateRefundResponse as UpdateRefundResponseOriginal, type UpdateRefundTransactionApplicationErrors as UpdateRefundTransactionApplicationErrorsOriginal, type UpdateRefundTransactionRequest as UpdateRefundTransactionRequestOriginal, type UpdateRefundTransactionResponse as UpdateRefundTransactionResponseOriginal, type UserDefinedPaymentMethodNameKindOneOf as UserDefinedPaymentMethodNameKindOneOfOriginal, type UserDefinedPaymentMethodName as UserDefinedPaymentMethodNameOriginal, VoidedReason as VoidedReasonOriginal, type VoidedReasonWithLiterals as VoidedReasonWithLiteralsOriginal, type VoidedStatusDetails as VoidedStatusDetailsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type WixReceiptInfo as WixReceiptInfoOriginal, type __PublicMethodMetaInfo, addPayments, bulkUpdatePaymentStatuses, listTransactionsForMultipleOrders, listTransactionsForSingleOrder, updatePaymentStatus, updatePayments, updateRefundTransaction };
|