@wix/ecom 1.0.674 → 1.0.675

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/ecom",
3
- "version": "1.0.674",
3
+ "version": "1.0.675",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -34,12 +34,12 @@
34
34
  "@wix/ecom_discount-rules": "1.0.43",
35
35
  "@wix/ecom_order-fulfillments": "1.0.37",
36
36
  "@wix/ecom_order-invoices": "1.0.31",
37
- "@wix/ecom_order-transactions": "1.0.49",
37
+ "@wix/ecom_order-transactions": "1.0.50",
38
38
  "@wix/ecom_orders": "1.0.84",
39
39
  "@wix/ecom_orders-settings": "1.0.37",
40
40
  "@wix/ecom_payment-settings": "1.0.20",
41
41
  "@wix/ecom_recommendations": "1.0.32",
42
- "@wix/ecom_shipping-rates": "1.0.27",
42
+ "@wix/ecom_shipping-rates": "1.0.28",
43
43
  "@wix/ecom_shippo-configurations": "1.0.5",
44
44
  "@wix/ecom_validations": "1.0.16"
45
45
  },
@@ -65,5 +65,5 @@
65
65
  "fqdn": ""
66
66
  }
67
67
  },
68
- "falconPackageHash": "9644bfc90c575e2299ddda5e8c563395565b503dca4ad92d1ece0c82"
68
+ "falconPackageHash": "8da9443f9f219760ad897a25361c181958c3f2b625f857181d2f69a0"
69
69
  }
@@ -20659,6 +20659,17 @@ declare enum AuthorizationVoidStatus {
20659
20659
  /** The void operation was failed */
20660
20660
  FAILED = "FAILED"
20661
20661
  }
20662
+ interface ScheduledAction {
20663
+ /** type of the action */
20664
+ actionType?: ScheduledActionType;
20665
+ /** the date and time of the action */
20666
+ executionDate?: Date;
20667
+ }
20668
+ declare enum ScheduledActionType {
20669
+ NONE = "NONE",
20670
+ VOID = "VOID",
20671
+ CAPTURE = "CAPTURE"
20672
+ }
20662
20673
  interface GiftCardPaymentDetails {
20663
20674
  /** Gift card payment ID. */
20664
20675
  giftCardPaymentId?: string;
@@ -21998,7 +22009,7 @@ interface DomainEvent$2 extends DomainEventBodyOneOf$2 {
21998
22009
  slug?: string;
21999
22010
  /** ID of the entity associated with the event. */
22000
22011
  entityId?: string;
22001
- /** Event timestamp. */
22012
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
22002
22013
  eventTime?: Date;
22003
22014
  /**
22004
22015
  * Whether the event was triggered as a result of a privacy regulation application
@@ -22101,10 +22112,14 @@ interface AuthorizationVoidNonNullableFields {
22101
22112
  status: AuthorizationVoidStatus;
22102
22113
  failureDetails?: AuthorizationActionFailureDetailsNonNullableFields;
22103
22114
  }
22115
+ interface ScheduledActionNonNullableFields {
22116
+ actionType: ScheduledActionType;
22117
+ }
22104
22118
  interface AuthorizationDetailsNonNullableFields {
22105
22119
  delayedCapture: boolean;
22106
22120
  captures: AuthorizationCaptureNonNullableFields[];
22107
22121
  void?: AuthorizationVoidNonNullableFields;
22122
+ scheduledAction?: ScheduledActionNonNullableFields;
22108
22123
  }
22109
22124
  interface RegularPaymentDetailsNonNullableFields {
22110
22125
  offlinePayment: boolean;
@@ -22230,7 +22245,7 @@ interface EventMetadata$2 extends BaseEventMetadata$2 {
22230
22245
  slug?: string;
22231
22246
  /** ID of the entity associated with the event. */
22232
22247
  entityId?: string;
22233
- /** Event timestamp. */
22248
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
22234
22249
  eventTime?: Date;
22235
22250
  /**
22236
22251
  * Whether the event was triggered as a result of a privacy regulation application
@@ -22413,6 +22428,9 @@ type index_d$3_RestockInfo = RestockInfo;
22413
22428
  type index_d$3_RestockItem = RestockItem;
22414
22429
  type index_d$3_RestockType = RestockType;
22415
22430
  declare const index_d$3_RestockType: typeof RestockType;
22431
+ type index_d$3_ScheduledAction = ScheduledAction;
22432
+ type index_d$3_ScheduledActionType = ScheduledActionType;
22433
+ declare const index_d$3_ScheduledActionType: typeof ScheduledActionType;
22416
22434
  type index_d$3_SearchOrderTransactionsRequest = SearchOrderTransactionsRequest;
22417
22435
  type index_d$3_SearchOrderTransactionsResponse = SearchOrderTransactionsResponse;
22418
22436
  type index_d$3_ShipmentDetails = ShipmentDetails;
@@ -22453,7 +22471,7 @@ declare const index_d$3_listTransactionsForSingleOrder: typeof listTransactionsF
22453
22471
  declare const index_d$3_onOrderTransactionsUpdated: typeof onOrderTransactionsUpdated;
22454
22472
  declare const index_d$3_updatePaymentStatus: typeof updatePaymentStatus;
22455
22473
  declare namespace index_d$3 {
22456
- export { type ActionEvent$2 as ActionEvent, type index_d$3_Activity as Activity, index_d$3_ActivityType as ActivityType, type index_d$3_AddInvoiceToOrderRequest as AddInvoiceToOrderRequest, type index_d$3_AddInvoiceToOrderResponse as AddInvoiceToOrderResponse, type index_d$3_AddPaymentsRequest as AddPaymentsRequest, type index_d$3_AddPaymentsResponse as AddPaymentsResponse, type index_d$3_AddPaymentsResponseNonNullableFields as AddPaymentsResponseNonNullableFields, type index_d$3_AddRefundRequest as AddRefundRequest, type index_d$3_AddRefundResponse as AddRefundResponse, type Address$1 as Address, type index_d$3_AddressAddressLine1OptionsOneOf as AddressAddressLine1OptionsOneOf, type index_d$3_AggregatedRefundSummary as AggregatedRefundSummary, type index_d$3_ApplicationError as ApplicationError, type index_d$3_AppliedCoupon as AppliedCoupon, type index_d$3_AuthorizationActionFailureDetails as AuthorizationActionFailureDetails, type index_d$3_AuthorizationCapture as AuthorizationCapture, index_d$3_AuthorizationCaptureStatus as AuthorizationCaptureStatus, type index_d$3_AuthorizationDetails as AuthorizationDetails, type index_d$3_AuthorizationVoid as AuthorizationVoid, index_d$3_AuthorizationVoidStatus as AuthorizationVoidStatus, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$3_BillingInfo as BillingInfo, type index_d$3_BulkActionMetadata as BulkActionMetadata, type index_d$3_BulkGenerateInvoicesRequest as BulkGenerateInvoicesRequest, type index_d$3_BulkGenerateInvoicesResponse as BulkGenerateInvoicesResponse, type index_d$3_BulkInvoiceResult as BulkInvoiceResult, type index_d$3_BulkPaymentResult as BulkPaymentResult, type index_d$3_BulkUpdatePaymentStatusesOptions as BulkUpdatePaymentStatusesOptions, type index_d$3_BulkUpdatePaymentStatusesRequest as BulkUpdatePaymentStatusesRequest, type index_d$3_BulkUpdatePaymentStatusesResponse as BulkUpdatePaymentStatusesResponse, type index_d$3_BulkUpdatePaymentStatusesResponseNonNullableFields as BulkUpdatePaymentStatusesResponseNonNullableFields, type index_d$3_BuyerDetails as BuyerDetails, type index_d$3_BuyerInfo as BuyerInfo, type index_d$3_CalculateRefundItemRequest as CalculateRefundItemRequest, type index_d$3_CalculateRefundItemResponse as CalculateRefundItemResponse, type index_d$3_CalculateRefundRequest as CalculateRefundRequest, type index_d$3_CalculateRefundResponse as CalculateRefundResponse, type index_d$3_ChannelInfo as ChannelInfo, index_d$3_ChannelType as ChannelType, type index_d$3_CreditCardPaymentMethodDetails as CreditCardPaymentMethodDetails, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type index_d$3_CursorSearch as CursorSearch, type index_d$3_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$1 as Cursors, type index_d$3_CustomField as CustomField, type index_d$3_CustomTextFieldSelection as CustomTextFieldSelection, type index_d$3_DiffmatokyPayload as DiffmatokyPayload, type index_d$3_DigitalFile as DigitalFile, type index_d$3_Discount as Discount, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$3_EnteredBy as EnteredBy, index_d$3_EnteredByIdentityType as EnteredByIdentityType, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type index_d$3_ErrorInformation as ErrorInformation, type EventMetadata$2 as EventMetadata, type index_d$3_Fulfillment as Fulfillment, type index_d$3_FulfillmentLineItem as FulfillmentLineItem, index_d$3_FulfillmentStatus as FulfillmentStatus, type index_d$3_FulfillmentTrackingInfo as FulfillmentTrackingInfo, type index_d$3_FullName as FullName, type index_d$3_GenerateInvoiceRequest as GenerateInvoiceRequest, type index_d$3_GenerateInvoiceResponse as GenerateInvoiceResponse, type index_d$3_GetRefundabilityStatusRequest as GetRefundabilityStatusRequest, type index_d$3_GetRefundabilityStatusResponse as GetRefundabilityStatusResponse, type index_d$3_GiftCard as GiftCard, type index_d$3_GiftCardPaymentDetails as GiftCardPaymentDetails, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, index_d$3_IdentityType as IdentityType, type index_d$3_IndexingMessage as IndexingMessage, type index_d$3_InvoiceForOrder as InvoiceForOrder, type index_d$3_InvoiceInfo as InvoiceInfo, index_d$3_InvoiceSource as InvoiceSource, type index_d$3_InvoicesForOrder as InvoicesForOrder, type index_d$3_ItemMetadata as ItemMetadata, type index_d$3_LineItem as LineItem, type index_d$3_LineItemPriceData as LineItemPriceData, index_d$3_LineItemType as LineItemType, type index_d$3_ListInvoicesForMultipleOrdersRequest as ListInvoicesForMultipleOrdersRequest, type index_d$3_ListInvoicesForMultipleOrdersResponse as ListInvoicesForMultipleOrdersResponse, type index_d$3_ListInvoicesForSingleOrderRequest as ListInvoicesForSingleOrderRequest, type index_d$3_ListInvoicesForSingleOrderResponse as ListInvoicesForSingleOrderResponse, type index_d$3_ListTransactionsForMultipleOrdersRequest as ListTransactionsForMultipleOrdersRequest, type index_d$3_ListTransactionsForMultipleOrdersResponse as ListTransactionsForMultipleOrdersResponse, type index_d$3_ListTransactionsForMultipleOrdersResponseNonNullableFields as ListTransactionsForMultipleOrdersResponseNonNullableFields, type index_d$3_ListTransactionsForSingleOrderRequest as ListTransactionsForSingleOrderRequest, type index_d$3_ListTransactionsForSingleOrderResponse as ListTransactionsForSingleOrderResponse, type index_d$3_ListTransactionsForSingleOrderResponseNonNullableFields as ListTransactionsForSingleOrderResponseNonNullableFields, index_d$3_ManuallyRefundableReason as ManuallyRefundableReason, type index_d$3_MediaItem as MediaItem, index_d$3_MediaItemType as MediaItemType, type index_d$3_MembershipName as MembershipName, type index_d$3_MembershipPaymentDetails as MembershipPaymentDetails, index_d$3_MembershipPaymentStatus as MembershipPaymentStatus, type MessageEnvelope$2 as MessageEnvelope, index_d$3_NonRefundableReason as NonRefundableReason, type index_d$3_OptionSelection as OptionSelection, type index_d$3_Order as Order, type index_d$3_OrderRefunded as OrderRefunded, type index_d$3_OrderTransactions as OrderTransactions, type index_d$3_OrderTransactionsUpdatedEnvelope as OrderTransactionsUpdatedEnvelope, type index_d$3_Payment as Payment, type index_d$3_PaymentAndOrderId as PaymentAndOrderId, type index_d$3_PaymentPaymentDetailsOneOf as PaymentPaymentDetailsOneOf, type index_d$3_PaymentRefund as PaymentRefund, index_d$3_PaymentStatus as PaymentStatus, type index_d$3_PaymentsUpdated as PaymentsUpdated, type index_d$3_PickupAddress as PickupAddress, type index_d$3_PickupDetails as PickupDetails, type index_d$3_Price as Price, type index_d$3_Refund as Refund, type index_d$3_RefundCreated as RefundCreated, type index_d$3_RefundDetails as RefundDetails, type index_d$3_RefundItem as RefundItem, type index_d$3_RefundSideEffects as RefundSideEffects, index_d$3_RefundStatus as RefundStatus, type index_d$3_RefundTransaction as RefundTransaction, type index_d$3_Refundability as Refundability, type index_d$3_RefundabilityAdditionalRefundabilityInfoOneOf as RefundabilityAdditionalRefundabilityInfoOneOf, index_d$3_RefundableStatus as RefundableStatus, type index_d$3_RegularPaymentDetails as RegularPaymentDetails, type index_d$3_RegularPaymentDetailsPaymentMethodDetailsOneOf as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$3_RestockInfo as RestockInfo, type index_d$3_RestockItem as RestockItem, index_d$3_RestockType as RestockType, type RestoreInfo$2 as RestoreInfo, type index_d$3_SearchOrderTransactionsRequest as SearchOrderTransactionsRequest, type index_d$3_SearchOrderTransactionsResponse as SearchOrderTransactionsResponse, type index_d$3_ShipmentDetails as ShipmentDetails, type index_d$3_ShippingInfo as ShippingInfo, type index_d$3_ShippingInfoDetailsOneOf as ShippingInfoDetailsOneOf, type index_d$3_ShippingPriceData as ShippingPriceData, type index_d$3_SnapshotMessage as SnapshotMessage, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type index_d$3_Street as Street, index_d$3_SubscriptionFrequency as SubscriptionFrequency, type index_d$3_SubscriptionInfo as SubscriptionInfo, type index_d$3_SubscriptionOptionInfo as SubscriptionOptionInfo, type index_d$3_SubscriptionSettings as SubscriptionSettings, type index_d$3_Totals as Totals, type index_d$3_TrackingInfo as TrackingInfo, index_d$3_TransactionStatus as TransactionStatus, type index_d$3_TriggerRefundRequest as TriggerRefundRequest, type index_d$3_TriggerRefundResponse as TriggerRefundResponse, type index_d$3_UpdatePaymentStatusIdentifiers as UpdatePaymentStatusIdentifiers, type index_d$3_UpdatePaymentStatusOptions as UpdatePaymentStatusOptions, type index_d$3_UpdatePaymentStatusRequest as UpdatePaymentStatusRequest, type index_d$3_UpdatePaymentStatusResponse as UpdatePaymentStatusResponse, type index_d$3_UpdatePaymentStatusResponseNonNullableFields as UpdatePaymentStatusResponseNonNullableFields, type index_d$3_UpdateRefundTransactionRequest as UpdateRefundTransactionRequest, type index_d$3_UpdateRefundTransactionResponse as UpdateRefundTransactionResponse, type index_d$3_V2InvoiceInfo as V2InvoiceInfo, type index_d$3_V2Refund as V2Refund, type index_d$3_VatId as VatId, index_d$3_VatType as VatType, WebhookIdentityType$2 as WebhookIdentityType, index_d$3_WeightUnit as WeightUnit, index_d$3_addPayments as addPayments, index_d$3_bulkUpdatePaymentStatuses as bulkUpdatePaymentStatuses, index_d$3_listTransactionsForMultipleOrders as listTransactionsForMultipleOrders, index_d$3_listTransactionsForSingleOrder as listTransactionsForSingleOrder, index_d$3_onOrderTransactionsUpdated as onOrderTransactionsUpdated, index_d$3_updatePaymentStatus as updatePaymentStatus };
22474
+ export { type ActionEvent$2 as ActionEvent, type index_d$3_Activity as Activity, index_d$3_ActivityType as ActivityType, type index_d$3_AddInvoiceToOrderRequest as AddInvoiceToOrderRequest, type index_d$3_AddInvoiceToOrderResponse as AddInvoiceToOrderResponse, type index_d$3_AddPaymentsRequest as AddPaymentsRequest, type index_d$3_AddPaymentsResponse as AddPaymentsResponse, type index_d$3_AddPaymentsResponseNonNullableFields as AddPaymentsResponseNonNullableFields, type index_d$3_AddRefundRequest as AddRefundRequest, type index_d$3_AddRefundResponse as AddRefundResponse, type Address$1 as Address, type index_d$3_AddressAddressLine1OptionsOneOf as AddressAddressLine1OptionsOneOf, type index_d$3_AggregatedRefundSummary as AggregatedRefundSummary, type index_d$3_ApplicationError as ApplicationError, type index_d$3_AppliedCoupon as AppliedCoupon, type index_d$3_AuthorizationActionFailureDetails as AuthorizationActionFailureDetails, type index_d$3_AuthorizationCapture as AuthorizationCapture, index_d$3_AuthorizationCaptureStatus as AuthorizationCaptureStatus, type index_d$3_AuthorizationDetails as AuthorizationDetails, type index_d$3_AuthorizationVoid as AuthorizationVoid, index_d$3_AuthorizationVoidStatus as AuthorizationVoidStatus, type BaseEventMetadata$2 as BaseEventMetadata, type index_d$3_BillingInfo as BillingInfo, type index_d$3_BulkActionMetadata as BulkActionMetadata, type index_d$3_BulkGenerateInvoicesRequest as BulkGenerateInvoicesRequest, type index_d$3_BulkGenerateInvoicesResponse as BulkGenerateInvoicesResponse, type index_d$3_BulkInvoiceResult as BulkInvoiceResult, type index_d$3_BulkPaymentResult as BulkPaymentResult, type index_d$3_BulkUpdatePaymentStatusesOptions as BulkUpdatePaymentStatusesOptions, type index_d$3_BulkUpdatePaymentStatusesRequest as BulkUpdatePaymentStatusesRequest, type index_d$3_BulkUpdatePaymentStatusesResponse as BulkUpdatePaymentStatusesResponse, type index_d$3_BulkUpdatePaymentStatusesResponseNonNullableFields as BulkUpdatePaymentStatusesResponseNonNullableFields, type index_d$3_BuyerDetails as BuyerDetails, type index_d$3_BuyerInfo as BuyerInfo, type index_d$3_CalculateRefundItemRequest as CalculateRefundItemRequest, type index_d$3_CalculateRefundItemResponse as CalculateRefundItemResponse, type index_d$3_CalculateRefundRequest as CalculateRefundRequest, type index_d$3_CalculateRefundResponse as CalculateRefundResponse, type index_d$3_ChannelInfo as ChannelInfo, index_d$3_ChannelType as ChannelType, type index_d$3_CreditCardPaymentMethodDetails as CreditCardPaymentMethodDetails, type CursorPaging$1 as CursorPaging, type CursorPagingMetadata$1 as CursorPagingMetadata, type index_d$3_CursorSearch as CursorSearch, type index_d$3_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$1 as Cursors, type index_d$3_CustomField as CustomField, type index_d$3_CustomTextFieldSelection as CustomTextFieldSelection, type index_d$3_DiffmatokyPayload as DiffmatokyPayload, type index_d$3_DigitalFile as DigitalFile, type index_d$3_Discount as Discount, type DomainEvent$2 as DomainEvent, type DomainEventBodyOneOf$2 as DomainEventBodyOneOf, type index_d$3_EnteredBy as EnteredBy, index_d$3_EnteredByIdentityType as EnteredByIdentityType, type EntityCreatedEvent$2 as EntityCreatedEvent, type EntityDeletedEvent$2 as EntityDeletedEvent, type EntityUpdatedEvent$2 as EntityUpdatedEvent, type index_d$3_ErrorInformation as ErrorInformation, type EventMetadata$2 as EventMetadata, type index_d$3_Fulfillment as Fulfillment, type index_d$3_FulfillmentLineItem as FulfillmentLineItem, index_d$3_FulfillmentStatus as FulfillmentStatus, type index_d$3_FulfillmentTrackingInfo as FulfillmentTrackingInfo, type index_d$3_FullName as FullName, type index_d$3_GenerateInvoiceRequest as GenerateInvoiceRequest, type index_d$3_GenerateInvoiceResponse as GenerateInvoiceResponse, type index_d$3_GetRefundabilityStatusRequest as GetRefundabilityStatusRequest, type index_d$3_GetRefundabilityStatusResponse as GetRefundabilityStatusResponse, type index_d$3_GiftCard as GiftCard, type index_d$3_GiftCardPaymentDetails as GiftCardPaymentDetails, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, index_d$3_IdentityType as IdentityType, type index_d$3_IndexingMessage as IndexingMessage, type index_d$3_InvoiceForOrder as InvoiceForOrder, type index_d$3_InvoiceInfo as InvoiceInfo, index_d$3_InvoiceSource as InvoiceSource, type index_d$3_InvoicesForOrder as InvoicesForOrder, type index_d$3_ItemMetadata as ItemMetadata, type index_d$3_LineItem as LineItem, type index_d$3_LineItemPriceData as LineItemPriceData, index_d$3_LineItemType as LineItemType, type index_d$3_ListInvoicesForMultipleOrdersRequest as ListInvoicesForMultipleOrdersRequest, type index_d$3_ListInvoicesForMultipleOrdersResponse as ListInvoicesForMultipleOrdersResponse, type index_d$3_ListInvoicesForSingleOrderRequest as ListInvoicesForSingleOrderRequest, type index_d$3_ListInvoicesForSingleOrderResponse as ListInvoicesForSingleOrderResponse, type index_d$3_ListTransactionsForMultipleOrdersRequest as ListTransactionsForMultipleOrdersRequest, type index_d$3_ListTransactionsForMultipleOrdersResponse as ListTransactionsForMultipleOrdersResponse, type index_d$3_ListTransactionsForMultipleOrdersResponseNonNullableFields as ListTransactionsForMultipleOrdersResponseNonNullableFields, type index_d$3_ListTransactionsForSingleOrderRequest as ListTransactionsForSingleOrderRequest, type index_d$3_ListTransactionsForSingleOrderResponse as ListTransactionsForSingleOrderResponse, type index_d$3_ListTransactionsForSingleOrderResponseNonNullableFields as ListTransactionsForSingleOrderResponseNonNullableFields, index_d$3_ManuallyRefundableReason as ManuallyRefundableReason, type index_d$3_MediaItem as MediaItem, index_d$3_MediaItemType as MediaItemType, type index_d$3_MembershipName as MembershipName, type index_d$3_MembershipPaymentDetails as MembershipPaymentDetails, index_d$3_MembershipPaymentStatus as MembershipPaymentStatus, type MessageEnvelope$2 as MessageEnvelope, index_d$3_NonRefundableReason as NonRefundableReason, type index_d$3_OptionSelection as OptionSelection, type index_d$3_Order as Order, type index_d$3_OrderRefunded as OrderRefunded, type index_d$3_OrderTransactions as OrderTransactions, type index_d$3_OrderTransactionsUpdatedEnvelope as OrderTransactionsUpdatedEnvelope, type index_d$3_Payment as Payment, type index_d$3_PaymentAndOrderId as PaymentAndOrderId, type index_d$3_PaymentPaymentDetailsOneOf as PaymentPaymentDetailsOneOf, type index_d$3_PaymentRefund as PaymentRefund, index_d$3_PaymentStatus as PaymentStatus, type index_d$3_PaymentsUpdated as PaymentsUpdated, type index_d$3_PickupAddress as PickupAddress, type index_d$3_PickupDetails as PickupDetails, type index_d$3_Price as Price, type index_d$3_Refund as Refund, type index_d$3_RefundCreated as RefundCreated, type index_d$3_RefundDetails as RefundDetails, type index_d$3_RefundItem as RefundItem, type index_d$3_RefundSideEffects as RefundSideEffects, index_d$3_RefundStatus as RefundStatus, type index_d$3_RefundTransaction as RefundTransaction, type index_d$3_Refundability as Refundability, type index_d$3_RefundabilityAdditionalRefundabilityInfoOneOf as RefundabilityAdditionalRefundabilityInfoOneOf, index_d$3_RefundableStatus as RefundableStatus, type index_d$3_RegularPaymentDetails as RegularPaymentDetails, type index_d$3_RegularPaymentDetailsPaymentMethodDetailsOneOf as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$3_RestockInfo as RestockInfo, type index_d$3_RestockItem as RestockItem, index_d$3_RestockType as RestockType, type RestoreInfo$2 as RestoreInfo, type index_d$3_ScheduledAction as ScheduledAction, index_d$3_ScheduledActionType as ScheduledActionType, type index_d$3_SearchOrderTransactionsRequest as SearchOrderTransactionsRequest, type index_d$3_SearchOrderTransactionsResponse as SearchOrderTransactionsResponse, type index_d$3_ShipmentDetails as ShipmentDetails, type index_d$3_ShippingInfo as ShippingInfo, type index_d$3_ShippingInfoDetailsOneOf as ShippingInfoDetailsOneOf, type index_d$3_ShippingPriceData as ShippingPriceData, type index_d$3_SnapshotMessage as SnapshotMessage, SortOrder$1 as SortOrder, type Sorting$1 as Sorting, type index_d$3_Street as Street, index_d$3_SubscriptionFrequency as SubscriptionFrequency, type index_d$3_SubscriptionInfo as SubscriptionInfo, type index_d$3_SubscriptionOptionInfo as SubscriptionOptionInfo, type index_d$3_SubscriptionSettings as SubscriptionSettings, type index_d$3_Totals as Totals, type index_d$3_TrackingInfo as TrackingInfo, index_d$3_TransactionStatus as TransactionStatus, type index_d$3_TriggerRefundRequest as TriggerRefundRequest, type index_d$3_TriggerRefundResponse as TriggerRefundResponse, type index_d$3_UpdatePaymentStatusIdentifiers as UpdatePaymentStatusIdentifiers, type index_d$3_UpdatePaymentStatusOptions as UpdatePaymentStatusOptions, type index_d$3_UpdatePaymentStatusRequest as UpdatePaymentStatusRequest, type index_d$3_UpdatePaymentStatusResponse as UpdatePaymentStatusResponse, type index_d$3_UpdatePaymentStatusResponseNonNullableFields as UpdatePaymentStatusResponseNonNullableFields, type index_d$3_UpdateRefundTransactionRequest as UpdateRefundTransactionRequest, type index_d$3_UpdateRefundTransactionResponse as UpdateRefundTransactionResponse, type index_d$3_V2InvoiceInfo as V2InvoiceInfo, type index_d$3_V2Refund as V2Refund, type index_d$3_VatId as VatId, index_d$3_VatType as VatType, WebhookIdentityType$2 as WebhookIdentityType, index_d$3_WeightUnit as WeightUnit, index_d$3_addPayments as addPayments, index_d$3_bulkUpdatePaymentStatuses as bulkUpdatePaymentStatuses, index_d$3_listTransactionsForMultipleOrders as listTransactionsForMultipleOrders, index_d$3_listTransactionsForSingleOrder as listTransactionsForSingleOrder, index_d$3_onOrderTransactionsUpdated as onOrderTransactionsUpdated, index_d$3_updatePaymentStatus as updatePaymentStatus };
22457
22475
  }
22458
22476
 
22459
22477
  interface OrdersSettings {
@@ -19845,6 +19845,11 @@ declare enum AuthorizationVoidStatus$1 {
19845
19845
  /** The void operation was failed */
19846
19846
  FAILED = "FAILED"
19847
19847
  }
19848
+ declare enum ScheduledActionType$1 {
19849
+ NONE = "NONE",
19850
+ VOID = "VOID",
19851
+ CAPTURE = "CAPTURE"
19852
+ }
19848
19853
  interface GiftCardPaymentDetails$1 {
19849
19854
  /** Gift card payment ID. */
19850
19855
  giftCardPaymentId?: string;
@@ -20023,10 +20028,14 @@ interface AuthorizationVoidNonNullableFields$1 {
20023
20028
  status: AuthorizationVoidStatus$1;
20024
20029
  failureDetails?: AuthorizationActionFailureDetailsNonNullableFields$1;
20025
20030
  }
20031
+ interface ScheduledActionNonNullableFields$1 {
20032
+ actionType: ScheduledActionType$1;
20033
+ }
20026
20034
  interface AuthorizationDetailsNonNullableFields$1 {
20027
20035
  delayedCapture: boolean;
20028
20036
  captures: AuthorizationCaptureNonNullableFields$1[];
20029
20037
  void?: AuthorizationVoidNonNullableFields$1;
20038
+ scheduledAction?: ScheduledActionNonNullableFields$1;
20030
20039
  }
20031
20040
  interface RegularPaymentDetailsNonNullableFields$1 {
20032
20041
  offlinePayment: boolean;
@@ -20229,6 +20238,11 @@ declare enum AuthorizationVoidStatus {
20229
20238
  /** The void operation was failed */
20230
20239
  FAILED = "FAILED"
20231
20240
  }
20241
+ declare enum ScheduledActionType {
20242
+ NONE = "NONE",
20243
+ VOID = "VOID",
20244
+ CAPTURE = "CAPTURE"
20245
+ }
20232
20246
  interface GiftCardPaymentDetails {
20233
20247
  /** Gift card payment ID. */
20234
20248
  giftCardPaymentId?: string;
@@ -20407,10 +20421,14 @@ interface AuthorizationVoidNonNullableFields {
20407
20421
  status: AuthorizationVoidStatus;
20408
20422
  failureDetails?: AuthorizationActionFailureDetailsNonNullableFields;
20409
20423
  }
20424
+ interface ScheduledActionNonNullableFields {
20425
+ actionType: ScheduledActionType;
20426
+ }
20410
20427
  interface AuthorizationDetailsNonNullableFields {
20411
20428
  delayedCapture: boolean;
20412
20429
  captures: AuthorizationCaptureNonNullableFields[];
20413
20430
  void?: AuthorizationVoidNonNullableFields;
20431
+ scheduledAction?: ScheduledActionNonNullableFields;
20414
20432
  }
20415
20433
  interface RegularPaymentDetailsNonNullableFields {
20416
20434
  offlinePayment: boolean;
@@ -423,6 +423,9 @@ interface IdentificationDataIdOneOf$4 {
423
423
  appId?: string;
424
424
  }
425
425
 
426
+ /**
427
+ * Postal Code was missing from request
428
+ */
426
429
  declare class MissingPostalCodeWixError extends Error {
427
430
  /** @hidden */
428
431
  httpCode: number;
@@ -441,6 +444,9 @@ declare class MissingPostalCodeWixError extends Error {
441
444
  /** @hidden */
442
445
  static readonly __type = "wix_spi_error";
443
446
  }
447
+ /**
448
+ * Postal Code was invalid in request
449
+ */
444
450
  declare class InvalidPostalCodeWixError extends Error {
445
451
  /** @hidden */
446
452
  httpCode: number;
@@ -459,6 +465,9 @@ declare class InvalidPostalCodeWixError extends Error {
459
465
  /** @hidden */
460
466
  static readonly __type = "wix_spi_error";
461
467
  }
468
+ /**
469
+ * The provided address was incomplete
470
+ */
462
471
  declare class InvalidAddressWixError extends Error {
463
472
  /** @hidden */
464
473
  httpCode: number;
@@ -477,6 +486,9 @@ declare class InvalidAddressWixError extends Error {
477
486
  /** @hidden */
478
487
  static readonly __type = "wix_spi_error";
479
488
  }
489
+ /**
490
+ * The provided address was incomplete
491
+ */
480
492
  declare class GenericShippingRatesWixError extends Error {
481
493
  /** @hidden */
482
494
  httpCode: number;
@@ -459,6 +459,9 @@ declare const provideHandlers$4: ServicePluginDefinition<{
459
459
  getShippingRates(payload: GetShippingRatesEnvelope): GetShippingRatesResponse | Promise<GetShippingRatesResponse>;
460
460
  }>;
461
461
 
462
+ /**
463
+ * Postal Code was missing from request
464
+ */
462
465
  declare class MissingPostalCodeWixError extends Error {
463
466
  /** @hidden */
464
467
  httpCode: number;
@@ -477,6 +480,9 @@ declare class MissingPostalCodeWixError extends Error {
477
480
  /** @hidden */
478
481
  static readonly __type = "wix_spi_error";
479
482
  }
483
+ /**
484
+ * Postal Code was invalid in request
485
+ */
480
486
  declare class InvalidPostalCodeWixError extends Error {
481
487
  /** @hidden */
482
488
  httpCode: number;
@@ -495,6 +501,9 @@ declare class InvalidPostalCodeWixError extends Error {
495
501
  /** @hidden */
496
502
  static readonly __type = "wix_spi_error";
497
503
  }
504
+ /**
505
+ * The provided address was incomplete
506
+ */
498
507
  declare class InvalidAddressWixError extends Error {
499
508
  /** @hidden */
500
509
  httpCode: number;
@@ -513,6 +522,9 @@ declare class InvalidAddressWixError extends Error {
513
522
  /** @hidden */
514
523
  static readonly __type = "wix_spi_error";
515
524
  }
525
+ /**
526
+ * The provided address was incomplete
527
+ */
516
528
  declare class GenericShippingRatesWixError extends Error {
517
529
  /** @hidden */
518
530
  httpCode: number;