@wix/auto_sdk_ecom_order-transactions 1.0.76 → 1.0.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +0 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +21 -14
- package/build/cjs/index.typings.js +0 -6
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +21 -14
- package/build/cjs/meta.js +0 -6
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +0 -6
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +21 -14
- package/build/es/index.typings.mjs +0 -6
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +21 -14
- package/build/es/meta.mjs +0 -6
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +0 -6
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +27 -14
- package/build/internal/cjs/index.typings.js +0 -6
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +21 -14
- package/build/internal/cjs/meta.js +0 -6
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +0 -6
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +27 -14
- package/build/internal/es/index.typings.mjs +0 -6
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +21 -14
- package/build/internal/es/meta.mjs +0 -6
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -186,7 +186,6 @@ interface AuthorizationCapture {
|
|
|
186
186
|
failureDetails?: AuthorizationActionFailureDetails;
|
|
187
187
|
}
|
|
188
188
|
declare enum AuthorizationCaptureStatus {
|
|
189
|
-
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
190
189
|
/** Capture operation still in progress. */
|
|
191
190
|
PENDING = "PENDING",
|
|
192
191
|
/** Capture operation succeeded. */
|
|
@@ -195,7 +194,7 @@ declare enum AuthorizationCaptureStatus {
|
|
|
195
194
|
FAILED = "FAILED"
|
|
196
195
|
}
|
|
197
196
|
/** @enumType */
|
|
198
|
-
type AuthorizationCaptureStatusWithLiterals = AuthorizationCaptureStatus | '
|
|
197
|
+
type AuthorizationCaptureStatusWithLiterals = AuthorizationCaptureStatus | 'PENDING' | 'SUCCEEDED' | 'FAILED';
|
|
199
198
|
interface Price {
|
|
200
199
|
/**
|
|
201
200
|
* Amount.
|
|
@@ -223,7 +222,6 @@ interface AuthorizationVoid {
|
|
|
223
222
|
reason?: ReasonWithLiterals;
|
|
224
223
|
}
|
|
225
224
|
declare enum AuthorizationVoidStatus {
|
|
226
|
-
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
227
225
|
/** Void operation still in progress. */
|
|
228
226
|
PENDING = "PENDING",
|
|
229
227
|
/** Void operation succeeded. */
|
|
@@ -232,17 +230,16 @@ declare enum AuthorizationVoidStatus {
|
|
|
232
230
|
FAILED = "FAILED"
|
|
233
231
|
}
|
|
234
232
|
/** @enumType */
|
|
235
|
-
type AuthorizationVoidStatusWithLiterals = AuthorizationVoidStatus | '
|
|
233
|
+
type AuthorizationVoidStatusWithLiterals = AuthorizationVoidStatus | 'PENDING' | 'SUCCEEDED' | 'FAILED';
|
|
236
234
|
/** Reason the authorization was voided. */
|
|
237
235
|
declare enum Reason {
|
|
238
|
-
UNKNOWN_REASON = "UNKNOWN_REASON",
|
|
239
236
|
/** Authorization was voided by user. */
|
|
240
237
|
MANUAL = "MANUAL",
|
|
241
238
|
/** Authorization passed execution date. */
|
|
242
239
|
SCHEDULED = "SCHEDULED"
|
|
243
240
|
}
|
|
244
241
|
/** @enumType */
|
|
245
|
-
type ReasonWithLiterals = Reason | '
|
|
242
|
+
type ReasonWithLiterals = Reason | 'MANUAL' | 'SCHEDULED';
|
|
246
243
|
interface ScheduledAction {
|
|
247
244
|
/** Type of the action. */
|
|
248
245
|
actionType?: ActionTypeWithLiterals;
|
|
@@ -250,12 +247,11 @@ interface ScheduledAction {
|
|
|
250
247
|
executionDate?: Date | null;
|
|
251
248
|
}
|
|
252
249
|
declare enum ActionType {
|
|
253
|
-
UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
|
|
254
250
|
VOID = "VOID",
|
|
255
251
|
CAPTURE = "CAPTURE"
|
|
256
252
|
}
|
|
257
253
|
/** @enumType */
|
|
258
|
-
type ActionTypeWithLiterals = ActionType | '
|
|
254
|
+
type ActionTypeWithLiterals = ActionType | 'VOID' | 'CAPTURE';
|
|
259
255
|
interface Chargeback {
|
|
260
256
|
/**
|
|
261
257
|
* Chargeback ID.
|
|
@@ -301,14 +297,13 @@ interface Chargeback {
|
|
|
301
297
|
externalId?: string | null;
|
|
302
298
|
}
|
|
303
299
|
declare enum ChargebackStatus {
|
|
304
|
-
UNSPECIFIED = "UNSPECIFIED",
|
|
305
300
|
/** Chargeback was approved. */
|
|
306
301
|
APPROVED = "APPROVED",
|
|
307
302
|
/** Chargeback was reversed. */
|
|
308
303
|
REVERSED = "REVERSED"
|
|
309
304
|
}
|
|
310
305
|
/** @enumType */
|
|
311
|
-
type ChargebackStatusWithLiterals = ChargebackStatus | '
|
|
306
|
+
type ChargebackStatusWithLiterals = ChargebackStatus | 'APPROVED' | 'REVERSED';
|
|
312
307
|
interface PaymentMethodName {
|
|
313
308
|
/**
|
|
314
309
|
* Translated payment method name in buyer language.
|
|
@@ -358,8 +353,6 @@ interface UserDefinedPaymentMethodNameKindOneOf {
|
|
|
358
353
|
}
|
|
359
354
|
/** Predefined payment method types for offline/manual payments. */
|
|
360
355
|
declare enum PredefinedPaymentMethod {
|
|
361
|
-
/** Unknown payment method type. */
|
|
362
|
-
UNKNOWN_PREDEFINED_PAYMENT_METHOD = "UNKNOWN_PREDEFINED_PAYMENT_METHOD",
|
|
363
356
|
/** Cash payment. */
|
|
364
357
|
CASH = "CASH",
|
|
365
358
|
/** Bank transfer. */
|
|
@@ -368,7 +361,7 @@ declare enum PredefinedPaymentMethod {
|
|
|
368
361
|
CHECK = "CHECK"
|
|
369
362
|
}
|
|
370
363
|
/** @enumType */
|
|
371
|
-
type PredefinedPaymentMethodWithLiterals = PredefinedPaymentMethod | '
|
|
364
|
+
type PredefinedPaymentMethodWithLiterals = PredefinedPaymentMethod | 'CASH' | 'BANK_TRANSFER' | 'CHECK';
|
|
372
365
|
interface GiftCardPaymentDetails {
|
|
373
366
|
/**
|
|
374
367
|
* Gift card payment ID.
|
|
@@ -765,6 +758,20 @@ interface RestockItem {
|
|
|
765
758
|
*/
|
|
766
759
|
quantity?: number;
|
|
767
760
|
}
|
|
761
|
+
/** Quantity of items restocked at a specific location. */
|
|
762
|
+
interface RestockLocation {
|
|
763
|
+
/**
|
|
764
|
+
* ID of the location where items were restocked.
|
|
765
|
+
* @format GUID
|
|
766
|
+
*/
|
|
767
|
+
locationId?: string;
|
|
768
|
+
/**
|
|
769
|
+
* Number of items restocked at this location.
|
|
770
|
+
* @min 1
|
|
771
|
+
* @max 100000
|
|
772
|
+
*/
|
|
773
|
+
quantity?: number;
|
|
774
|
+
}
|
|
768
775
|
interface RefundCompleted {
|
|
769
776
|
/**
|
|
770
777
|
* Order ID.
|
|
@@ -1627,4 +1634,4 @@ declare function updatePayments(): __PublicMethodMetaInfo<'POST', {
|
|
|
1627
1634
|
orderId: string;
|
|
1628
1635
|
}, UpdatePaymentsRequest$1, UpdatePaymentsRequest, UpdatePaymentsResponse$1, UpdatePaymentsResponse>;
|
|
1629
1636
|
|
|
1630
|
-
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, 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, 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 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 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, 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, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type WixReceiptInfo as WixReceiptInfoOriginal, type __PublicMethodMetaInfo, addPayments, bulkUpdatePaymentStatuses, listTransactionsForMultipleOrders, listTransactionsForSingleOrder, updatePaymentStatus, updatePayments, updateRefundTransaction };
|
|
1637
|
+
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, 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, 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 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 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, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type WixReceiptInfo as WixReceiptInfoOriginal, type __PublicMethodMetaInfo, addPayments, bulkUpdatePaymentStatuses, listTransactionsForMultipleOrders, listTransactionsForSingleOrder, updatePaymentStatus, updatePayments, updateRefundTransaction };
|
|
@@ -494,39 +494,33 @@ var TransactionStatus = /* @__PURE__ */ ((TransactionStatus2) => {
|
|
|
494
494
|
return TransactionStatus2;
|
|
495
495
|
})(TransactionStatus || {});
|
|
496
496
|
var AuthorizationCaptureStatus = /* @__PURE__ */ ((AuthorizationCaptureStatus2) => {
|
|
497
|
-
AuthorizationCaptureStatus2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
|
|
498
497
|
AuthorizationCaptureStatus2["PENDING"] = "PENDING";
|
|
499
498
|
AuthorizationCaptureStatus2["SUCCEEDED"] = "SUCCEEDED";
|
|
500
499
|
AuthorizationCaptureStatus2["FAILED"] = "FAILED";
|
|
501
500
|
return AuthorizationCaptureStatus2;
|
|
502
501
|
})(AuthorizationCaptureStatus || {});
|
|
503
502
|
var AuthorizationVoidStatus = /* @__PURE__ */ ((AuthorizationVoidStatus2) => {
|
|
504
|
-
AuthorizationVoidStatus2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
|
|
505
503
|
AuthorizationVoidStatus2["PENDING"] = "PENDING";
|
|
506
504
|
AuthorizationVoidStatus2["SUCCEEDED"] = "SUCCEEDED";
|
|
507
505
|
AuthorizationVoidStatus2["FAILED"] = "FAILED";
|
|
508
506
|
return AuthorizationVoidStatus2;
|
|
509
507
|
})(AuthorizationVoidStatus || {});
|
|
510
508
|
var Reason = /* @__PURE__ */ ((Reason2) => {
|
|
511
|
-
Reason2["UNKNOWN_REASON"] = "UNKNOWN_REASON";
|
|
512
509
|
Reason2["MANUAL"] = "MANUAL";
|
|
513
510
|
Reason2["SCHEDULED"] = "SCHEDULED";
|
|
514
511
|
return Reason2;
|
|
515
512
|
})(Reason || {});
|
|
516
513
|
var ActionType = /* @__PURE__ */ ((ActionType2) => {
|
|
517
|
-
ActionType2["UNKNOWN_ACTION_TYPE"] = "UNKNOWN_ACTION_TYPE";
|
|
518
514
|
ActionType2["VOID"] = "VOID";
|
|
519
515
|
ActionType2["CAPTURE"] = "CAPTURE";
|
|
520
516
|
return ActionType2;
|
|
521
517
|
})(ActionType || {});
|
|
522
518
|
var ChargebackStatus = /* @__PURE__ */ ((ChargebackStatus2) => {
|
|
523
|
-
ChargebackStatus2["UNSPECIFIED"] = "UNSPECIFIED";
|
|
524
519
|
ChargebackStatus2["APPROVED"] = "APPROVED";
|
|
525
520
|
ChargebackStatus2["REVERSED"] = "REVERSED";
|
|
526
521
|
return ChargebackStatus2;
|
|
527
522
|
})(ChargebackStatus || {});
|
|
528
523
|
var PredefinedPaymentMethod = /* @__PURE__ */ ((PredefinedPaymentMethod2) => {
|
|
529
|
-
PredefinedPaymentMethod2["UNKNOWN_PREDEFINED_PAYMENT_METHOD"] = "UNKNOWN_PREDEFINED_PAYMENT_METHOD";
|
|
530
524
|
PredefinedPaymentMethod2["CASH"] = "CASH";
|
|
531
525
|
PredefinedPaymentMethod2["BANK_TRANSFER"] = "BANK_TRANSFER";
|
|
532
526
|
PredefinedPaymentMethod2["CHECK"] = "CHECK";
|