@wix/ecom 1.0.839 → 1.0.841

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.839",
3
+ "version": "1.0.841",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -35,7 +35,7 @@
35
35
  "@wix/ecom_current-cart": "1.0.105",
36
36
  "@wix/ecom_custom-triggers": "1.0.31",
37
37
  "@wix/ecom_delivery-profile": "1.0.29",
38
- "@wix/ecom_delivery-solutions": "1.0.11",
38
+ "@wix/ecom_delivery-solutions": "1.0.12",
39
39
  "@wix/ecom_discount-rules": "1.0.62",
40
40
  "@wix/ecom_discounts": "1.0.14",
41
41
  "@wix/ecom_discounts-custom-trigger": "1.0.17",
@@ -47,8 +47,8 @@
47
47
  "@wix/ecom_order-fulfillments": "1.0.55",
48
48
  "@wix/ecom_order-invoices": "1.0.48",
49
49
  "@wix/ecom_order-payment-requests": "1.0.20",
50
- "@wix/ecom_order-transactions": "1.0.77",
51
- "@wix/ecom_orders": "1.0.146",
50
+ "@wix/ecom_order-transactions": "1.0.78",
51
+ "@wix/ecom_orders": "1.0.147",
52
52
  "@wix/ecom_orders-settings": "1.0.54",
53
53
  "@wix/ecom_payment-settings": "1.0.77",
54
54
  "@wix/ecom_pickup-locations": "1.0.18",
@@ -87,5 +87,5 @@
87
87
  "fqdn": ""
88
88
  }
89
89
  },
90
- "falconPackageHash": "c8e9b459917bbbb5dedd2c48cd9871932ea327ad5005593fc6582a8e"
90
+ "falconPackageHash": "37779f5255b4a3e0deb0ea1c8da0be2251958195bc6b7d03df53cd88"
91
91
  }
@@ -26203,7 +26203,10 @@ interface Refund$1 {
26203
26203
  transactions?: RefundTransaction$1[];
26204
26204
  /** Refund business details. */
26205
26205
  details?: RefundDetails$1;
26206
- /** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
26206
+ /**
26207
+ * Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided.
26208
+ * @readonly
26209
+ */
26207
26210
  _createdDate?: Date | null;
26208
26211
  }
26209
26212
  interface RefundTransaction$1 {
@@ -30872,7 +30875,10 @@ interface Refund {
30872
30875
  transactions?: RefundTransaction[];
30873
30876
  /** Refund business details. */
30874
30877
  details?: RefundDetails;
30875
- /** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
30878
+ /**
30879
+ * Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided.
30880
+ * @readonly
30881
+ */
30876
30882
  _createdDate?: Date | null;
30877
30883
  }
30878
30884
  interface RefundTransaction {
@@ -31881,6 +31887,18 @@ interface BulkActionMetadata {
31881
31887
  /** Number of failures without details because detailed failure threshold was exceeded. */
31882
31888
  undetailedFailures?: number;
31883
31889
  }
31890
+ interface UpdateRefundRequest {
31891
+ /** Order ID. */
31892
+ orderId?: string;
31893
+ /** Refund with updated field values. */
31894
+ refund?: Refund;
31895
+ }
31896
+ interface UpdateRefundResponse {
31897
+ /** Refund after update. */
31898
+ refund?: Refund;
31899
+ /** Order transactions after update. */
31900
+ orderTransactions?: OrderTransactions;
31901
+ }
31884
31902
  interface UpdateRefundTransactionRequest {
31885
31903
  }
31886
31904
  interface UpdateRefundTransactionResponse {
@@ -32629,6 +32647,8 @@ type context$a_UpdatePaymentStatusResponse = UpdatePaymentStatusResponse;
32629
32647
  type context$a_UpdatePaymentStatusResponseNonNullableFields = UpdatePaymentStatusResponseNonNullableFields;
32630
32648
  type context$a_UpdatePaymentsRequest = UpdatePaymentsRequest;
32631
32649
  type context$a_UpdatePaymentsResponse = UpdatePaymentsResponse;
32650
+ type context$a_UpdateRefundRequest = UpdateRefundRequest;
32651
+ type context$a_UpdateRefundResponse = UpdateRefundResponse;
32632
32652
  type context$a_UpdateRefundTransactionRequest = UpdateRefundTransactionRequest;
32633
32653
  type context$a_UpdateRefundTransactionResponse = UpdateRefundTransactionResponse;
32634
32654
  type context$a_V2InvoiceInfo = V2InvoiceInfo;
@@ -32639,7 +32659,7 @@ declare const context$a_listTransactionsForMultipleOrders: typeof listTransactio
32639
32659
  declare const context$a_listTransactionsForSingleOrder: typeof listTransactionsForSingleOrder;
32640
32660
  declare const context$a_updatePaymentStatus: typeof updatePaymentStatus;
32641
32661
  declare namespace context$a {
32642
- export { type ActionEvent$7 as ActionEvent, context$a_ActionType as ActionType, type context$a_Activity as Activity, context$a_ActivityType as ActivityType, type context$a_AddInvoiceToOrderRequest as AddInvoiceToOrderRequest, type context$a_AddInvoiceToOrderResponse as AddInvoiceToOrderResponse, type context$a_AddPaymentsRequest as AddPaymentsRequest, type context$a_AddPaymentsResponse as AddPaymentsResponse, type context$a_AddPaymentsResponseNonNullableFields as AddPaymentsResponseNonNullableFields, type context$a_AddRefundRequest as AddRefundRequest, type context$a_AddRefundResponse as AddRefundResponse, type context$a_AdditionalFeeRefund as AdditionalFeeRefund, type Address$4 as Address, type context$a_AddressAddressLine1OptionsOneOf as AddressAddressLine1OptionsOneOf, type context$a_AggregatedRefundSummary as AggregatedRefundSummary, type ApplicationError$3 as ApplicationError, type context$a_AppliedCoupon as AppliedCoupon, type context$a_AuthorizationActionFailureDetails as AuthorizationActionFailureDetails, type context$a_AuthorizationCapture as AuthorizationCapture, context$a_AuthorizationCaptureStatus as AuthorizationCaptureStatus, type context$a_AuthorizationDetails as AuthorizationDetails, type context$a_AuthorizationVoid as AuthorizationVoid, context$a_AuthorizationVoidStatus as AuthorizationVoidStatus, type context$a_BillingInfo as BillingInfo, type context$a_BulkActionMetadata as BulkActionMetadata, type context$a_BulkGenerateInvoicesRequest as BulkGenerateInvoicesRequest, type context$a_BulkGenerateInvoicesResponse as BulkGenerateInvoicesResponse, type context$a_BulkInvoiceResult as BulkInvoiceResult, type context$a_BulkPaymentResult as BulkPaymentResult, type context$a_BulkUpdatePaymentStatusesOptions as BulkUpdatePaymentStatusesOptions, type context$a_BulkUpdatePaymentStatusesRequest as BulkUpdatePaymentStatusesRequest, type context$a_BulkUpdatePaymentStatusesResponse as BulkUpdatePaymentStatusesResponse, type context$a_BulkUpdatePaymentStatusesResponseNonNullableFields as BulkUpdatePaymentStatusesResponseNonNullableFields, type context$a_BuyerDetails as BuyerDetails, type context$a_BuyerInfo as BuyerInfo, type context$a_CalculateRefundItemRequest as CalculateRefundItemRequest, type context$a_CalculateRefundItemResponse as CalculateRefundItemResponse, type context$a_CalculateRefundRequest as CalculateRefundRequest, type context$a_CalculateRefundResponse as CalculateRefundResponse, type context$a_ChannelInfo as ChannelInfo, context$a_ChannelType as ChannelType, type context$a_CreditCardPaymentMethodDetails as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$4 as CursorPagingMetadata, type CursorQuery$3 as CursorQuery, type CursorQueryPagingMethodOneOf$3 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type context$a_CustomField as CustomField, type context$a_CustomTextFieldSelection as CustomTextFieldSelection, type DiffmatokyPayload$1 as DiffmatokyPayload, type context$a_DigitalFile as DigitalFile, type context$a_Discount as Discount, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type context$a_EnteredBy as EnteredBy, context$a_EnteredByIdentityType as EnteredByIdentityType, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type ErrorInformation$1 as ErrorInformation, type context$a_Fulfillment as Fulfillment, type context$a_FulfillmentLineItem as FulfillmentLineItem, context$a_FulfillmentStatus as FulfillmentStatus, type context$a_FulfillmentTrackingInfo as FulfillmentTrackingInfo, type context$a_FullName as FullName, type context$a_GenerateInvoiceRequest as GenerateInvoiceRequest, type context$a_GenerateInvoiceResponse as GenerateInvoiceResponse, type context$a_GetRefundabilityStatusRequest as GetRefundabilityStatusRequest, type context$a_GetRefundabilityStatusResponse as GetRefundabilityStatusResponse, type GiftCard$1 as GiftCard, type context$a_GiftCardPaymentDetails as GiftCardPaymentDetails, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type context$a_IndexingMessage as IndexingMessage, type context$a_InvoiceForOrder as InvoiceForOrder, type context$a_InvoiceInfo as InvoiceInfo, context$a_InvoiceSource as InvoiceSource, type context$a_InvoicesForOrder as InvoicesForOrder, type context$a_ItemMetadata as ItemMetadata, type LineItem$1 as LineItem, type context$a_LineItemPriceData as LineItemPriceData, type context$a_LineItemRefund as LineItemRefund, context$a_LineItemType as LineItemType, type context$a_ListInvoicesForMultipleOrdersRequest as ListInvoicesForMultipleOrdersRequest, type context$a_ListInvoicesForMultipleOrdersResponse as ListInvoicesForMultipleOrdersResponse, type context$a_ListInvoicesForSingleOrderRequest as ListInvoicesForSingleOrderRequest, type context$a_ListInvoicesForSingleOrderResponse as ListInvoicesForSingleOrderResponse, type context$a_ListTransactionsForMultipleOrdersRequest as ListTransactionsForMultipleOrdersRequest, type context$a_ListTransactionsForMultipleOrdersResponse as ListTransactionsForMultipleOrdersResponse, type context$a_ListTransactionsForMultipleOrdersResponseNonNullableFields as ListTransactionsForMultipleOrdersResponseNonNullableFields, type context$a_ListTransactionsForSingleOrderRequest as ListTransactionsForSingleOrderRequest, type context$a_ListTransactionsForSingleOrderResponse as ListTransactionsForSingleOrderResponse, type context$a_ListTransactionsForSingleOrderResponseNonNullableFields as ListTransactionsForSingleOrderResponseNonNullableFields, context$a_ManuallyRefundableReason as ManuallyRefundableReason, type context$a_MaskedPayment as MaskedPayment, type context$a_MediaItem as MediaItem, context$a_MediaItemType as MediaItemType, type MembershipName$1 as MembershipName, type context$a_MembershipPaymentDetails as MembershipPaymentDetails, context$a_MembershipPaymentStatus as MembershipPaymentStatus, type MessageEnvelope$6 as MessageEnvelope, context$a_NonRefundableReason as NonRefundableReason, type context$a_OptionSelection as OptionSelection, type context$a_Order as Order, type context$a_OrderRefunded as OrderRefunded, type context$a_OrderTransactions as OrderTransactions, type context$a_Payment as Payment, type context$a_PaymentAndOrderId as PaymentAndOrderId, type context$a_PaymentPaymentDetailsOneOf as PaymentPaymentDetailsOneOf, type context$a_PaymentRefund as PaymentRefund, context$a_PaymentStatus as PaymentStatus, type context$a_PaymentsUpdated as PaymentsUpdated, type context$a_PickupAddress as PickupAddress, type PickupDetails$2 as PickupDetails, type Price$1 as Price, type context$a_QueryOrderTransactionsRequest as QueryOrderTransactionsRequest, type context$a_QueryOrderTransactionsResponse as QueryOrderTransactionsResponse, context$a_Reason as Reason, type context$a_Refund as Refund, type context$a_RefundCompleted as RefundCompleted, type context$a_RefundDetails as RefundDetails, type context$a_RefundItem as RefundItem, type context$a_RefundSideEffects as RefundSideEffects, context$a_RefundStatus as RefundStatus, type context$a_RefundTransaction as RefundTransaction, type context$a_Refundability as Refundability, type context$a_RefundabilityAdditionalRefundabilityInfoOneOf as RefundabilityAdditionalRefundabilityInfoOneOf, context$a_RefundableStatus as RefundableStatus, type context$a_RegularPaymentDetails as RegularPaymentDetails, type context$a_RegularPaymentDetailsPaymentMethodDetailsOneOf as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$a_RestockInfo as RestockInfo, type context$a_RestockItem as RestockItem, context$a_RestockType as RestockType, type RestoreInfo$7 as RestoreInfo, type context$a_ScheduledAction as ScheduledAction, type context$a_ShipmentDetails as ShipmentDetails, type context$a_ShippingInfo as ShippingInfo, type context$a_ShippingInfoDetailsOneOf as ShippingInfoDetailsOneOf, type context$a_ShippingPriceData as ShippingPriceData, type context$a_ShippingRefund as ShippingRefund, type context$a_SnapshotMessage as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type context$a_Street as Street, SubscriptionFrequency$1 as SubscriptionFrequency, type context$a_SubscriptionInfo as SubscriptionInfo, type context$a_SubscriptionOptionInfo as SubscriptionOptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type context$a_Totals as Totals, type context$a_TrackingInfo as TrackingInfo, context$a_TransactionStatus as TransactionStatus, type context$a_TriggerRefundRequest as TriggerRefundRequest, type context$a_TriggerRefundResponse as TriggerRefundResponse, type context$a_UpdatePaymentStatusIdentifiers as UpdatePaymentStatusIdentifiers, type context$a_UpdatePaymentStatusOptions as UpdatePaymentStatusOptions, type context$a_UpdatePaymentStatusRequest as UpdatePaymentStatusRequest, type context$a_UpdatePaymentStatusResponse as UpdatePaymentStatusResponse, type context$a_UpdatePaymentStatusResponseNonNullableFields as UpdatePaymentStatusResponseNonNullableFields, type context$a_UpdatePaymentsRequest as UpdatePaymentsRequest, type context$a_UpdatePaymentsResponse as UpdatePaymentsResponse, type context$a_UpdateRefundTransactionRequest as UpdateRefundTransactionRequest, type context$a_UpdateRefundTransactionResponse as UpdateRefundTransactionResponse, type context$a_V2InvoiceInfo as V2InvoiceInfo, type context$a_V2Refund as V2Refund, type VatId$1 as VatId, VatType$1 as VatType, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, context$a_addPayments as addPayments, context$a_bulkUpdatePaymentStatuses as bulkUpdatePaymentStatuses, context$a_listTransactionsForMultipleOrders as listTransactionsForMultipleOrders, context$a_listTransactionsForSingleOrder as listTransactionsForSingleOrder, context$a_updatePaymentStatus as updatePaymentStatus };
32662
+ export { type ActionEvent$7 as ActionEvent, context$a_ActionType as ActionType, type context$a_Activity as Activity, context$a_ActivityType as ActivityType, type context$a_AddInvoiceToOrderRequest as AddInvoiceToOrderRequest, type context$a_AddInvoiceToOrderResponse as AddInvoiceToOrderResponse, type context$a_AddPaymentsRequest as AddPaymentsRequest, type context$a_AddPaymentsResponse as AddPaymentsResponse, type context$a_AddPaymentsResponseNonNullableFields as AddPaymentsResponseNonNullableFields, type context$a_AddRefundRequest as AddRefundRequest, type context$a_AddRefundResponse as AddRefundResponse, type context$a_AdditionalFeeRefund as AdditionalFeeRefund, type Address$4 as Address, type context$a_AddressAddressLine1OptionsOneOf as AddressAddressLine1OptionsOneOf, type context$a_AggregatedRefundSummary as AggregatedRefundSummary, type ApplicationError$3 as ApplicationError, type context$a_AppliedCoupon as AppliedCoupon, type context$a_AuthorizationActionFailureDetails as AuthorizationActionFailureDetails, type context$a_AuthorizationCapture as AuthorizationCapture, context$a_AuthorizationCaptureStatus as AuthorizationCaptureStatus, type context$a_AuthorizationDetails as AuthorizationDetails, type context$a_AuthorizationVoid as AuthorizationVoid, context$a_AuthorizationVoidStatus as AuthorizationVoidStatus, type context$a_BillingInfo as BillingInfo, type context$a_BulkActionMetadata as BulkActionMetadata, type context$a_BulkGenerateInvoicesRequest as BulkGenerateInvoicesRequest, type context$a_BulkGenerateInvoicesResponse as BulkGenerateInvoicesResponse, type context$a_BulkInvoiceResult as BulkInvoiceResult, type context$a_BulkPaymentResult as BulkPaymentResult, type context$a_BulkUpdatePaymentStatusesOptions as BulkUpdatePaymentStatusesOptions, type context$a_BulkUpdatePaymentStatusesRequest as BulkUpdatePaymentStatusesRequest, type context$a_BulkUpdatePaymentStatusesResponse as BulkUpdatePaymentStatusesResponse, type context$a_BulkUpdatePaymentStatusesResponseNonNullableFields as BulkUpdatePaymentStatusesResponseNonNullableFields, type context$a_BuyerDetails as BuyerDetails, type context$a_BuyerInfo as BuyerInfo, type context$a_CalculateRefundItemRequest as CalculateRefundItemRequest, type context$a_CalculateRefundItemResponse as CalculateRefundItemResponse, type context$a_CalculateRefundRequest as CalculateRefundRequest, type context$a_CalculateRefundResponse as CalculateRefundResponse, type context$a_ChannelInfo as ChannelInfo, context$a_ChannelType as ChannelType, type context$a_CreditCardPaymentMethodDetails as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$4 as CursorPagingMetadata, type CursorQuery$3 as CursorQuery, type CursorQueryPagingMethodOneOf$3 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type context$a_CustomField as CustomField, type context$a_CustomTextFieldSelection as CustomTextFieldSelection, type DiffmatokyPayload$1 as DiffmatokyPayload, type context$a_DigitalFile as DigitalFile, type context$a_Discount as Discount, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type context$a_EnteredBy as EnteredBy, context$a_EnteredByIdentityType as EnteredByIdentityType, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type ErrorInformation$1 as ErrorInformation, type context$a_Fulfillment as Fulfillment, type context$a_FulfillmentLineItem as FulfillmentLineItem, context$a_FulfillmentStatus as FulfillmentStatus, type context$a_FulfillmentTrackingInfo as FulfillmentTrackingInfo, type context$a_FullName as FullName, type context$a_GenerateInvoiceRequest as GenerateInvoiceRequest, type context$a_GenerateInvoiceResponse as GenerateInvoiceResponse, type context$a_GetRefundabilityStatusRequest as GetRefundabilityStatusRequest, type context$a_GetRefundabilityStatusResponse as GetRefundabilityStatusResponse, type GiftCard$1 as GiftCard, type context$a_GiftCardPaymentDetails as GiftCardPaymentDetails, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type context$a_IndexingMessage as IndexingMessage, type context$a_InvoiceForOrder as InvoiceForOrder, type context$a_InvoiceInfo as InvoiceInfo, context$a_InvoiceSource as InvoiceSource, type context$a_InvoicesForOrder as InvoicesForOrder, type context$a_ItemMetadata as ItemMetadata, type LineItem$1 as LineItem, type context$a_LineItemPriceData as LineItemPriceData, type context$a_LineItemRefund as LineItemRefund, context$a_LineItemType as LineItemType, type context$a_ListInvoicesForMultipleOrdersRequest as ListInvoicesForMultipleOrdersRequest, type context$a_ListInvoicesForMultipleOrdersResponse as ListInvoicesForMultipleOrdersResponse, type context$a_ListInvoicesForSingleOrderRequest as ListInvoicesForSingleOrderRequest, type context$a_ListInvoicesForSingleOrderResponse as ListInvoicesForSingleOrderResponse, type context$a_ListTransactionsForMultipleOrdersRequest as ListTransactionsForMultipleOrdersRequest, type context$a_ListTransactionsForMultipleOrdersResponse as ListTransactionsForMultipleOrdersResponse, type context$a_ListTransactionsForMultipleOrdersResponseNonNullableFields as ListTransactionsForMultipleOrdersResponseNonNullableFields, type context$a_ListTransactionsForSingleOrderRequest as ListTransactionsForSingleOrderRequest, type context$a_ListTransactionsForSingleOrderResponse as ListTransactionsForSingleOrderResponse, type context$a_ListTransactionsForSingleOrderResponseNonNullableFields as ListTransactionsForSingleOrderResponseNonNullableFields, context$a_ManuallyRefundableReason as ManuallyRefundableReason, type context$a_MaskedPayment as MaskedPayment, type context$a_MediaItem as MediaItem, context$a_MediaItemType as MediaItemType, type MembershipName$1 as MembershipName, type context$a_MembershipPaymentDetails as MembershipPaymentDetails, context$a_MembershipPaymentStatus as MembershipPaymentStatus, type MessageEnvelope$6 as MessageEnvelope, context$a_NonRefundableReason as NonRefundableReason, type context$a_OptionSelection as OptionSelection, type context$a_Order as Order, type context$a_OrderRefunded as OrderRefunded, type context$a_OrderTransactions as OrderTransactions, type context$a_Payment as Payment, type context$a_PaymentAndOrderId as PaymentAndOrderId, type context$a_PaymentPaymentDetailsOneOf as PaymentPaymentDetailsOneOf, type context$a_PaymentRefund as PaymentRefund, context$a_PaymentStatus as PaymentStatus, type context$a_PaymentsUpdated as PaymentsUpdated, type context$a_PickupAddress as PickupAddress, type PickupDetails$2 as PickupDetails, type Price$1 as Price, type context$a_QueryOrderTransactionsRequest as QueryOrderTransactionsRequest, type context$a_QueryOrderTransactionsResponse as QueryOrderTransactionsResponse, context$a_Reason as Reason, type context$a_Refund as Refund, type context$a_RefundCompleted as RefundCompleted, type context$a_RefundDetails as RefundDetails, type context$a_RefundItem as RefundItem, type context$a_RefundSideEffects as RefundSideEffects, context$a_RefundStatus as RefundStatus, type context$a_RefundTransaction as RefundTransaction, type context$a_Refundability as Refundability, type context$a_RefundabilityAdditionalRefundabilityInfoOneOf as RefundabilityAdditionalRefundabilityInfoOneOf, context$a_RefundableStatus as RefundableStatus, type context$a_RegularPaymentDetails as RegularPaymentDetails, type context$a_RegularPaymentDetailsPaymentMethodDetailsOneOf as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$a_RestockInfo as RestockInfo, type context$a_RestockItem as RestockItem, context$a_RestockType as RestockType, type RestoreInfo$7 as RestoreInfo, type context$a_ScheduledAction as ScheduledAction, type context$a_ShipmentDetails as ShipmentDetails, type context$a_ShippingInfo as ShippingInfo, type context$a_ShippingInfoDetailsOneOf as ShippingInfoDetailsOneOf, type context$a_ShippingPriceData as ShippingPriceData, type context$a_ShippingRefund as ShippingRefund, type context$a_SnapshotMessage as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type context$a_Street as Street, SubscriptionFrequency$1 as SubscriptionFrequency, type context$a_SubscriptionInfo as SubscriptionInfo, type context$a_SubscriptionOptionInfo as SubscriptionOptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type context$a_Totals as Totals, type context$a_TrackingInfo as TrackingInfo, context$a_TransactionStatus as TransactionStatus, type context$a_TriggerRefundRequest as TriggerRefundRequest, type context$a_TriggerRefundResponse as TriggerRefundResponse, type context$a_UpdatePaymentStatusIdentifiers as UpdatePaymentStatusIdentifiers, type context$a_UpdatePaymentStatusOptions as UpdatePaymentStatusOptions, type context$a_UpdatePaymentStatusRequest as UpdatePaymentStatusRequest, type context$a_UpdatePaymentStatusResponse as UpdatePaymentStatusResponse, type context$a_UpdatePaymentStatusResponseNonNullableFields as UpdatePaymentStatusResponseNonNullableFields, type context$a_UpdatePaymentsRequest as UpdatePaymentsRequest, type context$a_UpdatePaymentsResponse as UpdatePaymentsResponse, type context$a_UpdateRefundRequest as UpdateRefundRequest, type context$a_UpdateRefundResponse as UpdateRefundResponse, type context$a_UpdateRefundTransactionRequest as UpdateRefundTransactionRequest, type context$a_UpdateRefundTransactionResponse as UpdateRefundTransactionResponse, type context$a_V2InvoiceInfo as V2InvoiceInfo, type context$a_V2Refund as V2Refund, type VatId$1 as VatId, VatType$1 as VatType, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, context$a_addPayments as addPayments, context$a_bulkUpdatePaymentStatuses as bulkUpdatePaymentStatuses, context$a_listTransactionsForMultipleOrders as listTransactionsForMultipleOrders, context$a_listTransactionsForSingleOrder as listTransactionsForSingleOrder, context$a_updatePaymentStatus as updatePaymentStatus };
32643
32663
  }
32644
32664
 
32645
32665
  interface OrdersSettings {
@@ -36927,7 +36947,9 @@ declare enum RuleType {
36927
36947
  INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
36928
36948
  REQUIRED_FIELD = "REQUIRED_FIELD",
36929
36949
  FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
36930
- ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
36950
+ ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
36951
+ EXACT_LENGTH = "EXACT_LENGTH",
36952
+ EXACT_SIZE = "EXACT_SIZE"
36931
36953
  }
36932
36954
  interface FieldViolation {
36933
36955
  field?: string;
@@ -26203,7 +26203,10 @@ interface Refund$1 {
26203
26203
  transactions?: RefundTransaction$1[];
26204
26204
  /** Refund business details. */
26205
26205
  details?: RefundDetails$1;
26206
- /** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
26206
+ /**
26207
+ * Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided.
26208
+ * @readonly
26209
+ */
26207
26210
  _createdDate?: Date | null;
26208
26211
  }
26209
26212
  interface RefundTransaction$1 {
@@ -30872,7 +30875,10 @@ interface Refund {
30872
30875
  transactions?: RefundTransaction[];
30873
30876
  /** Refund business details. */
30874
30877
  details?: RefundDetails;
30875
- /** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
30878
+ /**
30879
+ * Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided.
30880
+ * @readonly
30881
+ */
30876
30882
  _createdDate?: Date | null;
30877
30883
  }
30878
30884
  interface RefundTransaction {
@@ -31881,6 +31887,18 @@ interface BulkActionMetadata {
31881
31887
  /** Number of failures without details because detailed failure threshold was exceeded. */
31882
31888
  undetailedFailures?: number;
31883
31889
  }
31890
+ interface UpdateRefundRequest {
31891
+ /** Order ID. */
31892
+ orderId?: string;
31893
+ /** Refund with updated field values. */
31894
+ refund?: Refund;
31895
+ }
31896
+ interface UpdateRefundResponse {
31897
+ /** Refund after update. */
31898
+ refund?: Refund;
31899
+ /** Order transactions after update. */
31900
+ orderTransactions?: OrderTransactions;
31901
+ }
31884
31902
  interface UpdateRefundTransactionRequest {
31885
31903
  }
31886
31904
  interface UpdateRefundTransactionResponse {
@@ -32629,6 +32647,8 @@ type index_d$a_UpdatePaymentStatusResponse = UpdatePaymentStatusResponse;
32629
32647
  type index_d$a_UpdatePaymentStatusResponseNonNullableFields = UpdatePaymentStatusResponseNonNullableFields;
32630
32648
  type index_d$a_UpdatePaymentsRequest = UpdatePaymentsRequest;
32631
32649
  type index_d$a_UpdatePaymentsResponse = UpdatePaymentsResponse;
32650
+ type index_d$a_UpdateRefundRequest = UpdateRefundRequest;
32651
+ type index_d$a_UpdateRefundResponse = UpdateRefundResponse;
32632
32652
  type index_d$a_UpdateRefundTransactionRequest = UpdateRefundTransactionRequest;
32633
32653
  type index_d$a_UpdateRefundTransactionResponse = UpdateRefundTransactionResponse;
32634
32654
  type index_d$a_V2InvoiceInfo = V2InvoiceInfo;
@@ -32639,7 +32659,7 @@ declare const index_d$a_listTransactionsForMultipleOrders: typeof listTransactio
32639
32659
  declare const index_d$a_listTransactionsForSingleOrder: typeof listTransactionsForSingleOrder;
32640
32660
  declare const index_d$a_updatePaymentStatus: typeof updatePaymentStatus;
32641
32661
  declare namespace index_d$a {
32642
- export { type ActionEvent$7 as ActionEvent, index_d$a_ActionType as ActionType, type index_d$a_Activity as Activity, index_d$a_ActivityType as ActivityType, type index_d$a_AddInvoiceToOrderRequest as AddInvoiceToOrderRequest, type index_d$a_AddInvoiceToOrderResponse as AddInvoiceToOrderResponse, type index_d$a_AddPaymentsRequest as AddPaymentsRequest, type index_d$a_AddPaymentsResponse as AddPaymentsResponse, type index_d$a_AddPaymentsResponseNonNullableFields as AddPaymentsResponseNonNullableFields, type index_d$a_AddRefundRequest as AddRefundRequest, type index_d$a_AddRefundResponse as AddRefundResponse, type index_d$a_AdditionalFeeRefund as AdditionalFeeRefund, type Address$4 as Address, type index_d$a_AddressAddressLine1OptionsOneOf as AddressAddressLine1OptionsOneOf, type index_d$a_AggregatedRefundSummary as AggregatedRefundSummary, type ApplicationError$3 as ApplicationError, type index_d$a_AppliedCoupon as AppliedCoupon, type index_d$a_AuthorizationActionFailureDetails as AuthorizationActionFailureDetails, type index_d$a_AuthorizationCapture as AuthorizationCapture, index_d$a_AuthorizationCaptureStatus as AuthorizationCaptureStatus, type index_d$a_AuthorizationDetails as AuthorizationDetails, type index_d$a_AuthorizationVoid as AuthorizationVoid, index_d$a_AuthorizationVoidStatus as AuthorizationVoidStatus, type index_d$a_BillingInfo as BillingInfo, type index_d$a_BulkActionMetadata as BulkActionMetadata, type index_d$a_BulkGenerateInvoicesRequest as BulkGenerateInvoicesRequest, type index_d$a_BulkGenerateInvoicesResponse as BulkGenerateInvoicesResponse, type index_d$a_BulkInvoiceResult as BulkInvoiceResult, type index_d$a_BulkPaymentResult as BulkPaymentResult, type index_d$a_BulkUpdatePaymentStatusesOptions as BulkUpdatePaymentStatusesOptions, type index_d$a_BulkUpdatePaymentStatusesRequest as BulkUpdatePaymentStatusesRequest, type index_d$a_BulkUpdatePaymentStatusesResponse as BulkUpdatePaymentStatusesResponse, type index_d$a_BulkUpdatePaymentStatusesResponseNonNullableFields as BulkUpdatePaymentStatusesResponseNonNullableFields, type index_d$a_BuyerDetails as BuyerDetails, type index_d$a_BuyerInfo as BuyerInfo, type index_d$a_CalculateRefundItemRequest as CalculateRefundItemRequest, type index_d$a_CalculateRefundItemResponse as CalculateRefundItemResponse, type index_d$a_CalculateRefundRequest as CalculateRefundRequest, type index_d$a_CalculateRefundResponse as CalculateRefundResponse, type index_d$a_ChannelInfo as ChannelInfo, index_d$a_ChannelType as ChannelType, type index_d$a_CreditCardPaymentMethodDetails as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$4 as CursorPagingMetadata, type CursorQuery$3 as CursorQuery, type CursorQueryPagingMethodOneOf$3 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$a_CustomField as CustomField, type index_d$a_CustomTextFieldSelection as CustomTextFieldSelection, type DiffmatokyPayload$1 as DiffmatokyPayload, type index_d$a_DigitalFile as DigitalFile, type index_d$a_Discount as Discount, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type index_d$a_EnteredBy as EnteredBy, index_d$a_EnteredByIdentityType as EnteredByIdentityType, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type ErrorInformation$1 as ErrorInformation, type index_d$a_Fulfillment as Fulfillment, type index_d$a_FulfillmentLineItem as FulfillmentLineItem, index_d$a_FulfillmentStatus as FulfillmentStatus, type index_d$a_FulfillmentTrackingInfo as FulfillmentTrackingInfo, type index_d$a_FullName as FullName, type index_d$a_GenerateInvoiceRequest as GenerateInvoiceRequest, type index_d$a_GenerateInvoiceResponse as GenerateInvoiceResponse, type index_d$a_GetRefundabilityStatusRequest as GetRefundabilityStatusRequest, type index_d$a_GetRefundabilityStatusResponse as GetRefundabilityStatusResponse, type GiftCard$1 as GiftCard, type index_d$a_GiftCardPaymentDetails as GiftCardPaymentDetails, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type index_d$a_IndexingMessage as IndexingMessage, type index_d$a_InvoiceForOrder as InvoiceForOrder, type index_d$a_InvoiceInfo as InvoiceInfo, index_d$a_InvoiceSource as InvoiceSource, type index_d$a_InvoicesForOrder as InvoicesForOrder, type index_d$a_ItemMetadata as ItemMetadata, type LineItem$1 as LineItem, type index_d$a_LineItemPriceData as LineItemPriceData, type index_d$a_LineItemRefund as LineItemRefund, index_d$a_LineItemType as LineItemType, type index_d$a_ListInvoicesForMultipleOrdersRequest as ListInvoicesForMultipleOrdersRequest, type index_d$a_ListInvoicesForMultipleOrdersResponse as ListInvoicesForMultipleOrdersResponse, type index_d$a_ListInvoicesForSingleOrderRequest as ListInvoicesForSingleOrderRequest, type index_d$a_ListInvoicesForSingleOrderResponse as ListInvoicesForSingleOrderResponse, type index_d$a_ListTransactionsForMultipleOrdersRequest as ListTransactionsForMultipleOrdersRequest, type index_d$a_ListTransactionsForMultipleOrdersResponse as ListTransactionsForMultipleOrdersResponse, type index_d$a_ListTransactionsForMultipleOrdersResponseNonNullableFields as ListTransactionsForMultipleOrdersResponseNonNullableFields, type index_d$a_ListTransactionsForSingleOrderRequest as ListTransactionsForSingleOrderRequest, type index_d$a_ListTransactionsForSingleOrderResponse as ListTransactionsForSingleOrderResponse, type index_d$a_ListTransactionsForSingleOrderResponseNonNullableFields as ListTransactionsForSingleOrderResponseNonNullableFields, index_d$a_ManuallyRefundableReason as ManuallyRefundableReason, type index_d$a_MaskedPayment as MaskedPayment, type index_d$a_MediaItem as MediaItem, index_d$a_MediaItemType as MediaItemType, type MembershipName$1 as MembershipName, type index_d$a_MembershipPaymentDetails as MembershipPaymentDetails, index_d$a_MembershipPaymentStatus as MembershipPaymentStatus, type MessageEnvelope$6 as MessageEnvelope, index_d$a_NonRefundableReason as NonRefundableReason, type index_d$a_OptionSelection as OptionSelection, type index_d$a_Order as Order, type index_d$a_OrderRefunded as OrderRefunded, type index_d$a_OrderTransactions as OrderTransactions, type index_d$a_Payment as Payment, type index_d$a_PaymentAndOrderId as PaymentAndOrderId, type index_d$a_PaymentPaymentDetailsOneOf as PaymentPaymentDetailsOneOf, type index_d$a_PaymentRefund as PaymentRefund, index_d$a_PaymentStatus as PaymentStatus, type index_d$a_PaymentsUpdated as PaymentsUpdated, type index_d$a_PickupAddress as PickupAddress, type PickupDetails$2 as PickupDetails, type Price$1 as Price, type index_d$a_QueryOrderTransactionsRequest as QueryOrderTransactionsRequest, type index_d$a_QueryOrderTransactionsResponse as QueryOrderTransactionsResponse, index_d$a_Reason as Reason, type index_d$a_Refund as Refund, type index_d$a_RefundCompleted as RefundCompleted, type index_d$a_RefundDetails as RefundDetails, type index_d$a_RefundItem as RefundItem, type index_d$a_RefundSideEffects as RefundSideEffects, index_d$a_RefundStatus as RefundStatus, type index_d$a_RefundTransaction as RefundTransaction, type index_d$a_Refundability as Refundability, type index_d$a_RefundabilityAdditionalRefundabilityInfoOneOf as RefundabilityAdditionalRefundabilityInfoOneOf, index_d$a_RefundableStatus as RefundableStatus, type index_d$a_RegularPaymentDetails as RegularPaymentDetails, type index_d$a_RegularPaymentDetailsPaymentMethodDetailsOneOf as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$a_RestockInfo as RestockInfo, type index_d$a_RestockItem as RestockItem, index_d$a_RestockType as RestockType, type RestoreInfo$7 as RestoreInfo, type index_d$a_ScheduledAction as ScheduledAction, type index_d$a_ShipmentDetails as ShipmentDetails, type index_d$a_ShippingInfo as ShippingInfo, type index_d$a_ShippingInfoDetailsOneOf as ShippingInfoDetailsOneOf, type index_d$a_ShippingPriceData as ShippingPriceData, type index_d$a_ShippingRefund as ShippingRefund, type index_d$a_SnapshotMessage as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type index_d$a_Street as Street, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$a_SubscriptionInfo as SubscriptionInfo, type index_d$a_SubscriptionOptionInfo as SubscriptionOptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type index_d$a_Totals as Totals, type index_d$a_TrackingInfo as TrackingInfo, index_d$a_TransactionStatus as TransactionStatus, type index_d$a_TriggerRefundRequest as TriggerRefundRequest, type index_d$a_TriggerRefundResponse as TriggerRefundResponse, type index_d$a_UpdatePaymentStatusIdentifiers as UpdatePaymentStatusIdentifiers, type index_d$a_UpdatePaymentStatusOptions as UpdatePaymentStatusOptions, type index_d$a_UpdatePaymentStatusRequest as UpdatePaymentStatusRequest, type index_d$a_UpdatePaymentStatusResponse as UpdatePaymentStatusResponse, type index_d$a_UpdatePaymentStatusResponseNonNullableFields as UpdatePaymentStatusResponseNonNullableFields, type index_d$a_UpdatePaymentsRequest as UpdatePaymentsRequest, type index_d$a_UpdatePaymentsResponse as UpdatePaymentsResponse, type index_d$a_UpdateRefundTransactionRequest as UpdateRefundTransactionRequest, type index_d$a_UpdateRefundTransactionResponse as UpdateRefundTransactionResponse, type index_d$a_V2InvoiceInfo as V2InvoiceInfo, type index_d$a_V2Refund as V2Refund, type VatId$1 as VatId, VatType$1 as VatType, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, index_d$a_addPayments as addPayments, index_d$a_bulkUpdatePaymentStatuses as bulkUpdatePaymentStatuses, index_d$a_listTransactionsForMultipleOrders as listTransactionsForMultipleOrders, index_d$a_listTransactionsForSingleOrder as listTransactionsForSingleOrder, index_d$a_updatePaymentStatus as updatePaymentStatus };
32662
+ export { type ActionEvent$7 as ActionEvent, index_d$a_ActionType as ActionType, type index_d$a_Activity as Activity, index_d$a_ActivityType as ActivityType, type index_d$a_AddInvoiceToOrderRequest as AddInvoiceToOrderRequest, type index_d$a_AddInvoiceToOrderResponse as AddInvoiceToOrderResponse, type index_d$a_AddPaymentsRequest as AddPaymentsRequest, type index_d$a_AddPaymentsResponse as AddPaymentsResponse, type index_d$a_AddPaymentsResponseNonNullableFields as AddPaymentsResponseNonNullableFields, type index_d$a_AddRefundRequest as AddRefundRequest, type index_d$a_AddRefundResponse as AddRefundResponse, type index_d$a_AdditionalFeeRefund as AdditionalFeeRefund, type Address$4 as Address, type index_d$a_AddressAddressLine1OptionsOneOf as AddressAddressLine1OptionsOneOf, type index_d$a_AggregatedRefundSummary as AggregatedRefundSummary, type ApplicationError$3 as ApplicationError, type index_d$a_AppliedCoupon as AppliedCoupon, type index_d$a_AuthorizationActionFailureDetails as AuthorizationActionFailureDetails, type index_d$a_AuthorizationCapture as AuthorizationCapture, index_d$a_AuthorizationCaptureStatus as AuthorizationCaptureStatus, type index_d$a_AuthorizationDetails as AuthorizationDetails, type index_d$a_AuthorizationVoid as AuthorizationVoid, index_d$a_AuthorizationVoidStatus as AuthorizationVoidStatus, type index_d$a_BillingInfo as BillingInfo, type index_d$a_BulkActionMetadata as BulkActionMetadata, type index_d$a_BulkGenerateInvoicesRequest as BulkGenerateInvoicesRequest, type index_d$a_BulkGenerateInvoicesResponse as BulkGenerateInvoicesResponse, type index_d$a_BulkInvoiceResult as BulkInvoiceResult, type index_d$a_BulkPaymentResult as BulkPaymentResult, type index_d$a_BulkUpdatePaymentStatusesOptions as BulkUpdatePaymentStatusesOptions, type index_d$a_BulkUpdatePaymentStatusesRequest as BulkUpdatePaymentStatusesRequest, type index_d$a_BulkUpdatePaymentStatusesResponse as BulkUpdatePaymentStatusesResponse, type index_d$a_BulkUpdatePaymentStatusesResponseNonNullableFields as BulkUpdatePaymentStatusesResponseNonNullableFields, type index_d$a_BuyerDetails as BuyerDetails, type index_d$a_BuyerInfo as BuyerInfo, type index_d$a_CalculateRefundItemRequest as CalculateRefundItemRequest, type index_d$a_CalculateRefundItemResponse as CalculateRefundItemResponse, type index_d$a_CalculateRefundRequest as CalculateRefundRequest, type index_d$a_CalculateRefundResponse as CalculateRefundResponse, type index_d$a_ChannelInfo as ChannelInfo, index_d$a_ChannelType as ChannelType, type index_d$a_CreditCardPaymentMethodDetails as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$4 as CursorPagingMetadata, type CursorQuery$3 as CursorQuery, type CursorQueryPagingMethodOneOf$3 as CursorQueryPagingMethodOneOf, type Cursors$5 as Cursors, type index_d$a_CustomField as CustomField, type index_d$a_CustomTextFieldSelection as CustomTextFieldSelection, type DiffmatokyPayload$1 as DiffmatokyPayload, type index_d$a_DigitalFile as DigitalFile, type index_d$a_Discount as Discount, type DomainEvent$7 as DomainEvent, type DomainEventBodyOneOf$7 as DomainEventBodyOneOf, type index_d$a_EnteredBy as EnteredBy, index_d$a_EnteredByIdentityType as EnteredByIdentityType, type EntityCreatedEvent$7 as EntityCreatedEvent, type EntityDeletedEvent$7 as EntityDeletedEvent, type EntityUpdatedEvent$7 as EntityUpdatedEvent, type ErrorInformation$1 as ErrorInformation, type index_d$a_Fulfillment as Fulfillment, type index_d$a_FulfillmentLineItem as FulfillmentLineItem, index_d$a_FulfillmentStatus as FulfillmentStatus, type index_d$a_FulfillmentTrackingInfo as FulfillmentTrackingInfo, type index_d$a_FullName as FullName, type index_d$a_GenerateInvoiceRequest as GenerateInvoiceRequest, type index_d$a_GenerateInvoiceResponse as GenerateInvoiceResponse, type index_d$a_GetRefundabilityStatusRequest as GetRefundabilityStatusRequest, type index_d$a_GetRefundabilityStatusResponse as GetRefundabilityStatusResponse, type GiftCard$1 as GiftCard, type index_d$a_GiftCardPaymentDetails as GiftCardPaymentDetails, type IdentificationData$7 as IdentificationData, type IdentificationDataIdOneOf$7 as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type index_d$a_IndexingMessage as IndexingMessage, type index_d$a_InvoiceForOrder as InvoiceForOrder, type index_d$a_InvoiceInfo as InvoiceInfo, index_d$a_InvoiceSource as InvoiceSource, type index_d$a_InvoicesForOrder as InvoicesForOrder, type index_d$a_ItemMetadata as ItemMetadata, type LineItem$1 as LineItem, type index_d$a_LineItemPriceData as LineItemPriceData, type index_d$a_LineItemRefund as LineItemRefund, index_d$a_LineItemType as LineItemType, type index_d$a_ListInvoicesForMultipleOrdersRequest as ListInvoicesForMultipleOrdersRequest, type index_d$a_ListInvoicesForMultipleOrdersResponse as ListInvoicesForMultipleOrdersResponse, type index_d$a_ListInvoicesForSingleOrderRequest as ListInvoicesForSingleOrderRequest, type index_d$a_ListInvoicesForSingleOrderResponse as ListInvoicesForSingleOrderResponse, type index_d$a_ListTransactionsForMultipleOrdersRequest as ListTransactionsForMultipleOrdersRequest, type index_d$a_ListTransactionsForMultipleOrdersResponse as ListTransactionsForMultipleOrdersResponse, type index_d$a_ListTransactionsForMultipleOrdersResponseNonNullableFields as ListTransactionsForMultipleOrdersResponseNonNullableFields, type index_d$a_ListTransactionsForSingleOrderRequest as ListTransactionsForSingleOrderRequest, type index_d$a_ListTransactionsForSingleOrderResponse as ListTransactionsForSingleOrderResponse, type index_d$a_ListTransactionsForSingleOrderResponseNonNullableFields as ListTransactionsForSingleOrderResponseNonNullableFields, index_d$a_ManuallyRefundableReason as ManuallyRefundableReason, type index_d$a_MaskedPayment as MaskedPayment, type index_d$a_MediaItem as MediaItem, index_d$a_MediaItemType as MediaItemType, type MembershipName$1 as MembershipName, type index_d$a_MembershipPaymentDetails as MembershipPaymentDetails, index_d$a_MembershipPaymentStatus as MembershipPaymentStatus, type MessageEnvelope$6 as MessageEnvelope, index_d$a_NonRefundableReason as NonRefundableReason, type index_d$a_OptionSelection as OptionSelection, type index_d$a_Order as Order, type index_d$a_OrderRefunded as OrderRefunded, type index_d$a_OrderTransactions as OrderTransactions, type index_d$a_Payment as Payment, type index_d$a_PaymentAndOrderId as PaymentAndOrderId, type index_d$a_PaymentPaymentDetailsOneOf as PaymentPaymentDetailsOneOf, type index_d$a_PaymentRefund as PaymentRefund, index_d$a_PaymentStatus as PaymentStatus, type index_d$a_PaymentsUpdated as PaymentsUpdated, type index_d$a_PickupAddress as PickupAddress, type PickupDetails$2 as PickupDetails, type Price$1 as Price, type index_d$a_QueryOrderTransactionsRequest as QueryOrderTransactionsRequest, type index_d$a_QueryOrderTransactionsResponse as QueryOrderTransactionsResponse, index_d$a_Reason as Reason, type index_d$a_Refund as Refund, type index_d$a_RefundCompleted as RefundCompleted, type index_d$a_RefundDetails as RefundDetails, type index_d$a_RefundItem as RefundItem, type index_d$a_RefundSideEffects as RefundSideEffects, index_d$a_RefundStatus as RefundStatus, type index_d$a_RefundTransaction as RefundTransaction, type index_d$a_Refundability as Refundability, type index_d$a_RefundabilityAdditionalRefundabilityInfoOneOf as RefundabilityAdditionalRefundabilityInfoOneOf, index_d$a_RefundableStatus as RefundableStatus, type index_d$a_RegularPaymentDetails as RegularPaymentDetails, type index_d$a_RegularPaymentDetailsPaymentMethodDetailsOneOf as RegularPaymentDetailsPaymentMethodDetailsOneOf, type index_d$a_RestockInfo as RestockInfo, type index_d$a_RestockItem as RestockItem, index_d$a_RestockType as RestockType, type RestoreInfo$7 as RestoreInfo, type index_d$a_ScheduledAction as ScheduledAction, type index_d$a_ShipmentDetails as ShipmentDetails, type index_d$a_ShippingInfo as ShippingInfo, type index_d$a_ShippingInfoDetailsOneOf as ShippingInfoDetailsOneOf, type index_d$a_ShippingPriceData as ShippingPriceData, type index_d$a_ShippingRefund as ShippingRefund, type index_d$a_SnapshotMessage as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type index_d$a_Street as Street, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$a_SubscriptionInfo as SubscriptionInfo, type index_d$a_SubscriptionOptionInfo as SubscriptionOptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type index_d$a_Totals as Totals, type index_d$a_TrackingInfo as TrackingInfo, index_d$a_TransactionStatus as TransactionStatus, type index_d$a_TriggerRefundRequest as TriggerRefundRequest, type index_d$a_TriggerRefundResponse as TriggerRefundResponse, type index_d$a_UpdatePaymentStatusIdentifiers as UpdatePaymentStatusIdentifiers, type index_d$a_UpdatePaymentStatusOptions as UpdatePaymentStatusOptions, type index_d$a_UpdatePaymentStatusRequest as UpdatePaymentStatusRequest, type index_d$a_UpdatePaymentStatusResponse as UpdatePaymentStatusResponse, type index_d$a_UpdatePaymentStatusResponseNonNullableFields as UpdatePaymentStatusResponseNonNullableFields, type index_d$a_UpdatePaymentsRequest as UpdatePaymentsRequest, type index_d$a_UpdatePaymentsResponse as UpdatePaymentsResponse, type index_d$a_UpdateRefundRequest as UpdateRefundRequest, type index_d$a_UpdateRefundResponse as UpdateRefundResponse, type index_d$a_UpdateRefundTransactionRequest as UpdateRefundTransactionRequest, type index_d$a_UpdateRefundTransactionResponse as UpdateRefundTransactionResponse, type index_d$a_V2InvoiceInfo as V2InvoiceInfo, type index_d$a_V2Refund as V2Refund, type VatId$1 as VatId, VatType$1 as VatType, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, index_d$a_addPayments as addPayments, index_d$a_bulkUpdatePaymentStatuses as bulkUpdatePaymentStatuses, index_d$a_listTransactionsForMultipleOrders as listTransactionsForMultipleOrders, index_d$a_listTransactionsForSingleOrder as listTransactionsForSingleOrder, index_d$a_updatePaymentStatus as updatePaymentStatus };
32643
32663
  }
32644
32664
 
32645
32665
  interface OrdersSettings {
@@ -36927,7 +36947,9 @@ declare enum RuleType {
36927
36947
  INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
36928
36948
  REQUIRED_FIELD = "REQUIRED_FIELD",
36929
36949
  FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
36930
- ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
36950
+ ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
36951
+ EXACT_LENGTH = "EXACT_LENGTH",
36952
+ EXACT_SIZE = "EXACT_SIZE"
36931
36953
  }
36932
36954
  interface FieldViolation {
36933
36955
  field?: string;
@@ -29167,7 +29167,10 @@ interface Refund$3 {
29167
29167
  transactions?: RefundTransaction$3[];
29168
29168
  /** Refund business details. */
29169
29169
  details?: RefundDetails$3;
29170
- /** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
29170
+ /**
29171
+ * Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided.
29172
+ * @readonly
29173
+ */
29171
29174
  createdDate?: Date | null;
29172
29175
  }
29173
29176
  interface RefundTransaction$3 {
@@ -31439,7 +31442,10 @@ interface Refund$2 {
31439
31442
  transactions?: RefundTransaction$2[];
31440
31443
  /** Refund business details. */
31441
31444
  details?: RefundDetails$2;
31442
- /** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
31445
+ /**
31446
+ * Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided.
31447
+ * @readonly
31448
+ */
31443
31449
  _createdDate?: Date | null;
31444
31450
  }
31445
31451
  interface RefundTransaction$2 {
@@ -33175,7 +33181,10 @@ interface Refund$1 {
33175
33181
  transactions?: RefundTransaction$1[];
33176
33182
  /** Refund business details. */
33177
33183
  details?: RefundDetails$1;
33178
- /** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
33184
+ /**
33185
+ * Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided.
33186
+ * @readonly
33187
+ */
33179
33188
  createdDate?: Date | null;
33180
33189
  }
33181
33190
  interface RefundTransaction$1 {
@@ -33670,7 +33679,10 @@ interface Refund {
33670
33679
  transactions?: RefundTransaction[];
33671
33680
  /** Refund business details. */
33672
33681
  details?: RefundDetails;
33673
- /** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
33682
+ /**
33683
+ * Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided.
33684
+ * @readonly
33685
+ */
33674
33686
  _createdDate?: Date | null;
33675
33687
  }
33676
33688
  interface RefundTransaction {
@@ -38722,7 +38734,9 @@ declare enum RuleType$1 {
38722
38734
  INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
38723
38735
  REQUIRED_FIELD = "REQUIRED_FIELD",
38724
38736
  FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
38725
- ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
38737
+ ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
38738
+ EXACT_LENGTH = "EXACT_LENGTH",
38739
+ EXACT_SIZE = "EXACT_SIZE"
38726
38740
  }
38727
38741
  interface FieldViolation$1 {
38728
38742
  field?: string;
@@ -39141,7 +39155,9 @@ declare enum RuleType {
39141
39155
  INVALID_ENUM_VALUE = "INVALID_ENUM_VALUE",
39142
39156
  REQUIRED_FIELD = "REQUIRED_FIELD",
39143
39157
  FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
39144
- ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT"
39158
+ ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
39159
+ EXACT_LENGTH = "EXACT_LENGTH",
39160
+ EXACT_SIZE = "EXACT_SIZE"
39145
39161
  }
39146
39162
  interface FieldViolation {
39147
39163
  field?: string;