@wix/ecom 1.0.838 → 1.0.840
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.
|
|
3
|
+
"version": "1.0.840",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
"@wix/ecom_additional-fees": "1.0.35",
|
|
27
27
|
"@wix/ecom_back-in-stock-notifications": "1.0.61",
|
|
28
28
|
"@wix/ecom_back-in-stock-settings": "1.0.44",
|
|
29
|
-
"@wix/ecom_cart": "1.0.
|
|
29
|
+
"@wix/ecom_cart": "1.0.105",
|
|
30
30
|
"@wix/ecom_checkout": "1.0.112",
|
|
31
31
|
"@wix/ecom_checkout-content": "1.0.15",
|
|
32
32
|
"@wix/ecom_checkout-settings": "1.0.60",
|
|
33
33
|
"@wix/ecom_checkout-templates": "1.0.110",
|
|
34
34
|
"@wix/ecom_currencies": "1.0.45",
|
|
35
|
-
"@wix/ecom_current-cart": "1.0.
|
|
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
38
|
"@wix/ecom_delivery-solutions": "1.0.11",
|
|
@@ -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.
|
|
51
|
-
"@wix/ecom_orders": "1.0.
|
|
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": "
|
|
90
|
+
"falconPackageHash": "546f154b25574333e9b95ea240ecbadc7149416aaddca9784de99376"
|
|
91
91
|
}
|
|
@@ -5654,6 +5654,11 @@ interface LineItem$6 {
|
|
|
5654
5654
|
* @readonly
|
|
5655
5655
|
*/
|
|
5656
5656
|
taxGroupId?: string | null;
|
|
5657
|
+
/**
|
|
5658
|
+
* Whether the line item is a custom line item. Custom line items don't trigger the Catalog service plugin.
|
|
5659
|
+
* @readonly
|
|
5660
|
+
*/
|
|
5661
|
+
customLineItem?: boolean;
|
|
5657
5662
|
/**
|
|
5658
5663
|
* Item payment policy that requires customer consent to complete purchase. The payment policy will be displayed on the checkout page.
|
|
5659
5664
|
* @readonly
|
|
@@ -6895,7 +6900,8 @@ declare enum RuleType$6 {
|
|
|
6895
6900
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
6896
6901
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
6897
6902
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
6898
|
-
EXACT_LENGTH = "EXACT_LENGTH"
|
|
6903
|
+
EXACT_LENGTH = "EXACT_LENGTH",
|
|
6904
|
+
EXACT_SIZE = "EXACT_SIZE"
|
|
6899
6905
|
}
|
|
6900
6906
|
interface FieldViolation$6 {
|
|
6901
6907
|
field?: string;
|
|
@@ -8401,6 +8407,11 @@ interface LineItem$5 {
|
|
|
8401
8407
|
* @readonly
|
|
8402
8408
|
*/
|
|
8403
8409
|
taxGroupId?: string | null;
|
|
8410
|
+
/**
|
|
8411
|
+
* Whether the line item is a custom line item. Custom line items don't trigger the Catalog service plugin.
|
|
8412
|
+
* @readonly
|
|
8413
|
+
*/
|
|
8414
|
+
customLineItem?: boolean;
|
|
8404
8415
|
/**
|
|
8405
8416
|
* Item payment policy that requires customer consent to complete purchase. The payment policy will be displayed on the checkout page.
|
|
8406
8417
|
* @readonly
|
|
@@ -9642,7 +9653,8 @@ declare enum RuleType$5 {
|
|
|
9642
9653
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
9643
9654
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
9644
9655
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
9645
|
-
EXACT_LENGTH = "EXACT_LENGTH"
|
|
9656
|
+
EXACT_LENGTH = "EXACT_LENGTH",
|
|
9657
|
+
EXACT_SIZE = "EXACT_SIZE"
|
|
9646
9658
|
}
|
|
9647
9659
|
interface FieldViolation$5 {
|
|
9648
9660
|
field?: string;
|
|
@@ -26191,7 +26203,10 @@ interface Refund$1 {
|
|
|
26191
26203
|
transactions?: RefundTransaction$1[];
|
|
26192
26204
|
/** Refund business details. */
|
|
26193
26205
|
details?: RefundDetails$1;
|
|
26194
|
-
/**
|
|
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
|
+
*/
|
|
26195
26210
|
_createdDate?: Date | null;
|
|
26196
26211
|
}
|
|
26197
26212
|
interface RefundTransaction$1 {
|
|
@@ -30860,7 +30875,10 @@ interface Refund {
|
|
|
30860
30875
|
transactions?: RefundTransaction[];
|
|
30861
30876
|
/** Refund business details. */
|
|
30862
30877
|
details?: RefundDetails;
|
|
30863
|
-
/**
|
|
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
|
+
*/
|
|
30864
30882
|
_createdDate?: Date | null;
|
|
30865
30883
|
}
|
|
30866
30884
|
interface RefundTransaction {
|
|
@@ -31869,6 +31887,18 @@ interface BulkActionMetadata {
|
|
|
31869
31887
|
/** Number of failures without details because detailed failure threshold was exceeded. */
|
|
31870
31888
|
undetailedFailures?: number;
|
|
31871
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
|
+
}
|
|
31872
31902
|
interface UpdateRefundTransactionRequest {
|
|
31873
31903
|
}
|
|
31874
31904
|
interface UpdateRefundTransactionResponse {
|
|
@@ -32617,6 +32647,8 @@ type context$a_UpdatePaymentStatusResponse = UpdatePaymentStatusResponse;
|
|
|
32617
32647
|
type context$a_UpdatePaymentStatusResponseNonNullableFields = UpdatePaymentStatusResponseNonNullableFields;
|
|
32618
32648
|
type context$a_UpdatePaymentsRequest = UpdatePaymentsRequest;
|
|
32619
32649
|
type context$a_UpdatePaymentsResponse = UpdatePaymentsResponse;
|
|
32650
|
+
type context$a_UpdateRefundRequest = UpdateRefundRequest;
|
|
32651
|
+
type context$a_UpdateRefundResponse = UpdateRefundResponse;
|
|
32620
32652
|
type context$a_UpdateRefundTransactionRequest = UpdateRefundTransactionRequest;
|
|
32621
32653
|
type context$a_UpdateRefundTransactionResponse = UpdateRefundTransactionResponse;
|
|
32622
32654
|
type context$a_V2InvoiceInfo = V2InvoiceInfo;
|
|
@@ -32627,7 +32659,7 @@ declare const context$a_listTransactionsForMultipleOrders: typeof listTransactio
|
|
|
32627
32659
|
declare const context$a_listTransactionsForSingleOrder: typeof listTransactionsForSingleOrder;
|
|
32628
32660
|
declare const context$a_updatePaymentStatus: typeof updatePaymentStatus;
|
|
32629
32661
|
declare namespace context$a {
|
|
32630
|
-
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 };
|
|
32631
32663
|
}
|
|
32632
32664
|
|
|
32633
32665
|
interface OrdersSettings {
|
|
@@ -5654,6 +5654,11 @@ interface LineItem$6 {
|
|
|
5654
5654
|
* @readonly
|
|
5655
5655
|
*/
|
|
5656
5656
|
taxGroupId?: string | null;
|
|
5657
|
+
/**
|
|
5658
|
+
* Whether the line item is a custom line item. Custom line items don't trigger the Catalog service plugin.
|
|
5659
|
+
* @readonly
|
|
5660
|
+
*/
|
|
5661
|
+
customLineItem?: boolean;
|
|
5657
5662
|
/**
|
|
5658
5663
|
* Item payment policy that requires customer consent to complete purchase. The payment policy will be displayed on the checkout page.
|
|
5659
5664
|
* @readonly
|
|
@@ -6895,7 +6900,8 @@ declare enum RuleType$6 {
|
|
|
6895
6900
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
6896
6901
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
6897
6902
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
6898
|
-
EXACT_LENGTH = "EXACT_LENGTH"
|
|
6903
|
+
EXACT_LENGTH = "EXACT_LENGTH",
|
|
6904
|
+
EXACT_SIZE = "EXACT_SIZE"
|
|
6899
6905
|
}
|
|
6900
6906
|
interface FieldViolation$6 {
|
|
6901
6907
|
field?: string;
|
|
@@ -8401,6 +8407,11 @@ interface LineItem$5 {
|
|
|
8401
8407
|
* @readonly
|
|
8402
8408
|
*/
|
|
8403
8409
|
taxGroupId?: string | null;
|
|
8410
|
+
/**
|
|
8411
|
+
* Whether the line item is a custom line item. Custom line items don't trigger the Catalog service plugin.
|
|
8412
|
+
* @readonly
|
|
8413
|
+
*/
|
|
8414
|
+
customLineItem?: boolean;
|
|
8404
8415
|
/**
|
|
8405
8416
|
* Item payment policy that requires customer consent to complete purchase. The payment policy will be displayed on the checkout page.
|
|
8406
8417
|
* @readonly
|
|
@@ -9642,7 +9653,8 @@ declare enum RuleType$5 {
|
|
|
9642
9653
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
9643
9654
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
9644
9655
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
9645
|
-
EXACT_LENGTH = "EXACT_LENGTH"
|
|
9656
|
+
EXACT_LENGTH = "EXACT_LENGTH",
|
|
9657
|
+
EXACT_SIZE = "EXACT_SIZE"
|
|
9646
9658
|
}
|
|
9647
9659
|
interface FieldViolation$5 {
|
|
9648
9660
|
field?: string;
|
|
@@ -26191,7 +26203,10 @@ interface Refund$1 {
|
|
|
26191
26203
|
transactions?: RefundTransaction$1[];
|
|
26192
26204
|
/** Refund business details. */
|
|
26193
26205
|
details?: RefundDetails$1;
|
|
26194
|
-
/**
|
|
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
|
+
*/
|
|
26195
26210
|
_createdDate?: Date | null;
|
|
26196
26211
|
}
|
|
26197
26212
|
interface RefundTransaction$1 {
|
|
@@ -30860,7 +30875,10 @@ interface Refund {
|
|
|
30860
30875
|
transactions?: RefundTransaction[];
|
|
30861
30876
|
/** Refund business details. */
|
|
30862
30877
|
details?: RefundDetails;
|
|
30863
|
-
/**
|
|
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
|
+
*/
|
|
30864
30882
|
_createdDate?: Date | null;
|
|
30865
30883
|
}
|
|
30866
30884
|
interface RefundTransaction {
|
|
@@ -31869,6 +31887,18 @@ interface BulkActionMetadata {
|
|
|
31869
31887
|
/** Number of failures without details because detailed failure threshold was exceeded. */
|
|
31870
31888
|
undetailedFailures?: number;
|
|
31871
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
|
+
}
|
|
31872
31902
|
interface UpdateRefundTransactionRequest {
|
|
31873
31903
|
}
|
|
31874
31904
|
interface UpdateRefundTransactionResponse {
|
|
@@ -32617,6 +32647,8 @@ type index_d$a_UpdatePaymentStatusResponse = UpdatePaymentStatusResponse;
|
|
|
32617
32647
|
type index_d$a_UpdatePaymentStatusResponseNonNullableFields = UpdatePaymentStatusResponseNonNullableFields;
|
|
32618
32648
|
type index_d$a_UpdatePaymentsRequest = UpdatePaymentsRequest;
|
|
32619
32649
|
type index_d$a_UpdatePaymentsResponse = UpdatePaymentsResponse;
|
|
32650
|
+
type index_d$a_UpdateRefundRequest = UpdateRefundRequest;
|
|
32651
|
+
type index_d$a_UpdateRefundResponse = UpdateRefundResponse;
|
|
32620
32652
|
type index_d$a_UpdateRefundTransactionRequest = UpdateRefundTransactionRequest;
|
|
32621
32653
|
type index_d$a_UpdateRefundTransactionResponse = UpdateRefundTransactionResponse;
|
|
32622
32654
|
type index_d$a_V2InvoiceInfo = V2InvoiceInfo;
|
|
@@ -32627,7 +32659,7 @@ declare const index_d$a_listTransactionsForMultipleOrders: typeof listTransactio
|
|
|
32627
32659
|
declare const index_d$a_listTransactionsForSingleOrder: typeof listTransactionsForSingleOrder;
|
|
32628
32660
|
declare const index_d$a_updatePaymentStatus: typeof updatePaymentStatus;
|
|
32629
32661
|
declare namespace index_d$a {
|
|
32630
|
-
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 };
|
|
32631
32663
|
}
|
|
32632
32664
|
|
|
32633
32665
|
interface OrdersSettings {
|
|
@@ -5541,6 +5541,11 @@ interface LineItem$7 {
|
|
|
5541
5541
|
* @readonly
|
|
5542
5542
|
*/
|
|
5543
5543
|
taxGroupId?: string | null;
|
|
5544
|
+
/**
|
|
5545
|
+
* Whether the line item is a custom line item. Custom line items don't trigger the Catalog service plugin.
|
|
5546
|
+
* @readonly
|
|
5547
|
+
*/
|
|
5548
|
+
customLineItem?: boolean;
|
|
5544
5549
|
/**
|
|
5545
5550
|
* Item payment policy that requires customer consent to complete purchase. The payment policy will be displayed on the checkout page.
|
|
5546
5551
|
* @readonly
|
|
@@ -6629,7 +6634,8 @@ declare enum RuleType$b {
|
|
|
6629
6634
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
6630
6635
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
6631
6636
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
6632
|
-
EXACT_LENGTH = "EXACT_LENGTH"
|
|
6637
|
+
EXACT_LENGTH = "EXACT_LENGTH",
|
|
6638
|
+
EXACT_SIZE = "EXACT_SIZE"
|
|
6633
6639
|
}
|
|
6634
6640
|
interface FieldViolation$b {
|
|
6635
6641
|
field?: string;
|
|
@@ -7573,6 +7579,11 @@ interface LineItem$6 {
|
|
|
7573
7579
|
* @readonly
|
|
7574
7580
|
*/
|
|
7575
7581
|
taxGroupId?: string | null;
|
|
7582
|
+
/**
|
|
7583
|
+
* Whether the line item is a custom line item. Custom line items don't trigger the Catalog service plugin.
|
|
7584
|
+
* @readonly
|
|
7585
|
+
*/
|
|
7586
|
+
customLineItem?: boolean;
|
|
7576
7587
|
/**
|
|
7577
7588
|
* Item payment policy that requires customer consent to complete purchase. The payment policy will be displayed on the checkout page.
|
|
7578
7589
|
* @readonly
|
|
@@ -8602,7 +8613,8 @@ declare enum RuleType$a {
|
|
|
8602
8613
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
8603
8614
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
8604
8615
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
8605
|
-
EXACT_LENGTH = "EXACT_LENGTH"
|
|
8616
|
+
EXACT_LENGTH = "EXACT_LENGTH",
|
|
8617
|
+
EXACT_SIZE = "EXACT_SIZE"
|
|
8606
8618
|
}
|
|
8607
8619
|
interface FieldViolation$a {
|
|
8608
8620
|
field?: string;
|
|
@@ -9585,6 +9597,11 @@ interface LineItem$5 {
|
|
|
9585
9597
|
* @readonly
|
|
9586
9598
|
*/
|
|
9587
9599
|
taxGroupId?: string | null;
|
|
9600
|
+
/**
|
|
9601
|
+
* Whether the line item is a custom line item. Custom line items don't trigger the Catalog service plugin.
|
|
9602
|
+
* @readonly
|
|
9603
|
+
*/
|
|
9604
|
+
customLineItem?: boolean;
|
|
9588
9605
|
/**
|
|
9589
9606
|
* Item payment policy that requires customer consent to complete purchase. The payment policy will be displayed on the checkout page.
|
|
9590
9607
|
* @readonly
|
|
@@ -10690,7 +10707,8 @@ declare enum RuleType$9 {
|
|
|
10690
10707
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
10691
10708
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
10692
10709
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
10693
|
-
EXACT_LENGTH = "EXACT_LENGTH"
|
|
10710
|
+
EXACT_LENGTH = "EXACT_LENGTH",
|
|
10711
|
+
EXACT_SIZE = "EXACT_SIZE"
|
|
10694
10712
|
}
|
|
10695
10713
|
interface FieldViolation$9 {
|
|
10696
10714
|
field?: string;
|
|
@@ -11577,6 +11595,11 @@ interface LineItem$4 {
|
|
|
11577
11595
|
* @readonly
|
|
11578
11596
|
*/
|
|
11579
11597
|
taxGroupId?: string | null;
|
|
11598
|
+
/**
|
|
11599
|
+
* Whether the line item is a custom line item. Custom line items don't trigger the Catalog service plugin.
|
|
11600
|
+
* @readonly
|
|
11601
|
+
*/
|
|
11602
|
+
customLineItem?: boolean;
|
|
11580
11603
|
/**
|
|
11581
11604
|
* Item payment policy that requires customer consent to complete purchase. The payment policy will be displayed on the checkout page.
|
|
11582
11605
|
* @readonly
|
|
@@ -12623,7 +12646,8 @@ declare enum RuleType$8 {
|
|
|
12623
12646
|
REQUIRED_FIELD = "REQUIRED_FIELD",
|
|
12624
12647
|
FIELD_NOT_ALLOWED = "FIELD_NOT_ALLOWED",
|
|
12625
12648
|
ONE_OF_ALIGNMENT = "ONE_OF_ALIGNMENT",
|
|
12626
|
-
EXACT_LENGTH = "EXACT_LENGTH"
|
|
12649
|
+
EXACT_LENGTH = "EXACT_LENGTH",
|
|
12650
|
+
EXACT_SIZE = "EXACT_SIZE"
|
|
12627
12651
|
}
|
|
12628
12652
|
interface FieldViolation$8 {
|
|
12629
12653
|
field?: string;
|
|
@@ -29143,7 +29167,10 @@ interface Refund$3 {
|
|
|
29143
29167
|
transactions?: RefundTransaction$3[];
|
|
29144
29168
|
/** Refund business details. */
|
|
29145
29169
|
details?: RefundDetails$3;
|
|
29146
|
-
/**
|
|
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
|
+
*/
|
|
29147
29174
|
createdDate?: Date | null;
|
|
29148
29175
|
}
|
|
29149
29176
|
interface RefundTransaction$3 {
|
|
@@ -31415,7 +31442,10 @@ interface Refund$2 {
|
|
|
31415
31442
|
transactions?: RefundTransaction$2[];
|
|
31416
31443
|
/** Refund business details. */
|
|
31417
31444
|
details?: RefundDetails$2;
|
|
31418
|
-
/**
|
|
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
|
+
*/
|
|
31419
31449
|
_createdDate?: Date | null;
|
|
31420
31450
|
}
|
|
31421
31451
|
interface RefundTransaction$2 {
|
|
@@ -33151,7 +33181,10 @@ interface Refund$1 {
|
|
|
33151
33181
|
transactions?: RefundTransaction$1[];
|
|
33152
33182
|
/** Refund business details. */
|
|
33153
33183
|
details?: RefundDetails$1;
|
|
33154
|
-
/**
|
|
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
|
+
*/
|
|
33155
33188
|
createdDate?: Date | null;
|
|
33156
33189
|
}
|
|
33157
33190
|
interface RefundTransaction$1 {
|
|
@@ -33646,7 +33679,10 @@ interface Refund {
|
|
|
33646
33679
|
transactions?: RefundTransaction[];
|
|
33647
33680
|
/** Refund business details. */
|
|
33648
33681
|
details?: RefundDetails;
|
|
33649
|
-
/**
|
|
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
|
+
*/
|
|
33650
33686
|
_createdDate?: Date | null;
|
|
33651
33687
|
}
|
|
33652
33688
|
interface RefundTransaction {
|