@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.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +0 -6
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +21 -14
  5. package/build/cjs/index.typings.js +0 -6
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +21 -14
  8. package/build/cjs/meta.js +0 -6
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +0 -6
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +21 -14
  14. package/build/es/index.typings.mjs +0 -6
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +21 -14
  17. package/build/es/meta.mjs +0 -6
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +0 -6
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +27 -14
  23. package/build/internal/cjs/index.typings.js +0 -6
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +21 -14
  26. package/build/internal/cjs/meta.js +0 -6
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +0 -6
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +27 -14
  32. package/build/internal/es/index.typings.mjs +0 -6
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +21 -14
  35. package/build/internal/es/meta.mjs +0 -6
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. 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 | 'UNKNOWN_STATUS' | 'PENDING' | 'SUCCEEDED' | 'FAILED';
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 | 'UNKNOWN_STATUS' | 'PENDING' | 'SUCCEEDED' | 'FAILED';
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 | 'UNKNOWN_REASON' | 'MANUAL' | 'SCHEDULED';
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 | 'UNKNOWN_ACTION_TYPE' | 'VOID' | 'CAPTURE';
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 | 'UNSPECIFIED' | 'APPROVED' | 'REVERSED';
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 | 'UNKNOWN_PREDEFINED_PAYMENT_METHOD' | 'CASH' | 'BANK_TRANSFER' | 'CHECK';
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 };
package/build/cjs/meta.js CHANGED
@@ -541,39 +541,33 @@ var TransactionStatus = /* @__PURE__ */ ((TransactionStatus2) => {
541
541
  return TransactionStatus2;
542
542
  })(TransactionStatus || {});
543
543
  var AuthorizationCaptureStatus = /* @__PURE__ */ ((AuthorizationCaptureStatus2) => {
544
- AuthorizationCaptureStatus2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
545
544
  AuthorizationCaptureStatus2["PENDING"] = "PENDING";
546
545
  AuthorizationCaptureStatus2["SUCCEEDED"] = "SUCCEEDED";
547
546
  AuthorizationCaptureStatus2["FAILED"] = "FAILED";
548
547
  return AuthorizationCaptureStatus2;
549
548
  })(AuthorizationCaptureStatus || {});
550
549
  var AuthorizationVoidStatus = /* @__PURE__ */ ((AuthorizationVoidStatus2) => {
551
- AuthorizationVoidStatus2["UNKNOWN_STATUS"] = "UNKNOWN_STATUS";
552
550
  AuthorizationVoidStatus2["PENDING"] = "PENDING";
553
551
  AuthorizationVoidStatus2["SUCCEEDED"] = "SUCCEEDED";
554
552
  AuthorizationVoidStatus2["FAILED"] = "FAILED";
555
553
  return AuthorizationVoidStatus2;
556
554
  })(AuthorizationVoidStatus || {});
557
555
  var Reason = /* @__PURE__ */ ((Reason2) => {
558
- Reason2["UNKNOWN_REASON"] = "UNKNOWN_REASON";
559
556
  Reason2["MANUAL"] = "MANUAL";
560
557
  Reason2["SCHEDULED"] = "SCHEDULED";
561
558
  return Reason2;
562
559
  })(Reason || {});
563
560
  var ActionType = /* @__PURE__ */ ((ActionType2) => {
564
- ActionType2["UNKNOWN_ACTION_TYPE"] = "UNKNOWN_ACTION_TYPE";
565
561
  ActionType2["VOID"] = "VOID";
566
562
  ActionType2["CAPTURE"] = "CAPTURE";
567
563
  return ActionType2;
568
564
  })(ActionType || {});
569
565
  var ChargebackStatus = /* @__PURE__ */ ((ChargebackStatus2) => {
570
- ChargebackStatus2["UNSPECIFIED"] = "UNSPECIFIED";
571
566
  ChargebackStatus2["APPROVED"] = "APPROVED";
572
567
  ChargebackStatus2["REVERSED"] = "REVERSED";
573
568
  return ChargebackStatus2;
574
569
  })(ChargebackStatus || {});
575
570
  var PredefinedPaymentMethod = /* @__PURE__ */ ((PredefinedPaymentMethod2) => {
576
- PredefinedPaymentMethod2["UNKNOWN_PREDEFINED_PAYMENT_METHOD"] = "UNKNOWN_PREDEFINED_PAYMENT_METHOD";
577
571
  PredefinedPaymentMethod2["CASH"] = "CASH";
578
572
  PredefinedPaymentMethod2["BANK_TRANSFER"] = "BANK_TRANSFER";
579
573
  PredefinedPaymentMethod2["CHECK"] = "CHECK";