@wix/ecom 1.0.759 → 1.0.761

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.
@@ -19018,6 +19018,12 @@ interface CarrierError$3 {
19018
19018
  /** Error details. */
19019
19019
  error?: Details$3;
19020
19020
  }
19021
+ interface CreateEmptyDraftOrderRequest$1 {
19022
+ }
19023
+ interface CreateEmptyDraftOrderResponse$1 {
19024
+ /** The draft order details calculated with latest content */
19025
+ calculatedDraftOrder?: CalculatedDraftOrder$1;
19026
+ }
19021
19027
  interface AddLineItemsToDraftOrderRequest$1 {
19022
19028
  /** The draft order id */
19023
19029
  draftOrderId: string;
@@ -19226,6 +19232,22 @@ interface DeleteCustomAdditionalFeesResponse$1 {
19226
19232
  /** The draft order details calculated with latest content */
19227
19233
  calculatedDraftOrder?: CalculatedDraftOrder$1;
19228
19234
  }
19235
+ interface SetShippingInfoRequest$1 {
19236
+ }
19237
+ interface SetShippingInfoResponse$1 {
19238
+ }
19239
+ interface SetBuyerInfoRequest$1 {
19240
+ }
19241
+ interface SetBuyerInfoResponse$1 {
19242
+ }
19243
+ interface SetRecipientInfoRequest$1 {
19244
+ }
19245
+ interface SetRecipientInfoResponse$1 {
19246
+ }
19247
+ interface SetBillingInfoRequest$1 {
19248
+ }
19249
+ interface SetBillingInfoResponse$1 {
19250
+ }
19229
19251
  interface GetDraftOrderRequest$1 {
19230
19252
  /** The draft order id */
19231
19253
  draftOrderId: string;
@@ -19534,7 +19556,8 @@ declare enum ActivityType$3 {
19534
19556
  AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
19535
19557
  REFUND_INITIATED = "REFUND_INITIATED",
19536
19558
  PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
19537
- PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
19559
+ PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
19560
+ REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT"
19538
19561
  }
19539
19562
  declare enum AttributionSource$3 {
19540
19563
  UNSPECIFIED = "UNSPECIFIED",
@@ -19625,6 +19648,10 @@ interface V1BalanceSummary$1 {
19625
19648
  */
19626
19649
  authorized?: Price$7;
19627
19650
  }
19651
+ interface CreateOrderFromDraftRequest$1 {
19652
+ }
19653
+ interface CreateOrderFromDraftResponse$1 {
19654
+ }
19628
19655
  interface DeleteDraftOrderRequest$1 {
19629
19656
  /** The draft order id */
19630
19657
  draftOrderId: string;
@@ -20081,6 +20108,9 @@ interface CalculatedDraftOrderNonNullableFields$1 {
20081
20108
  interface CreateDraftOrderResponseNonNullableFields$1 {
20082
20109
  calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
20083
20110
  }
20111
+ interface CreateEmptyDraftOrderResponseNonNullableFields$1 {
20112
+ calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
20113
+ }
20084
20114
  interface AddLineItemsToDraftOrderResponseNonNullableFields$1 {
20085
20115
  calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
20086
20116
  }
@@ -20105,6 +20135,18 @@ interface CreateCustomAdditionalFeesResponseNonNullableFields$1 {
20105
20135
  interface DeleteCustomAdditionalFeesResponseNonNullableFields$1 {
20106
20136
  calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
20107
20137
  }
20138
+ interface SetShippingInfoResponseNonNullableFields$1 {
20139
+ calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
20140
+ }
20141
+ interface SetBuyerInfoResponseNonNullableFields$1 {
20142
+ calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
20143
+ }
20144
+ interface SetRecipientInfoResponseNonNullableFields$1 {
20145
+ calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
20146
+ }
20147
+ interface SetBillingInfoResponseNonNullableFields$1 {
20148
+ calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
20149
+ }
20108
20150
  interface GetDraftOrderResponseNonNullableFields$1 {
20109
20151
  calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields$1;
20110
20152
  }
@@ -20240,6 +20282,9 @@ interface PaymentRefundFailedNonNullableFields$3 {
20240
20282
  refundId: string;
20241
20283
  payment?: RefundedPaymentNonNullableFields$3;
20242
20284
  }
20285
+ interface RefundedAsStoreCreditNonNullableFields$3 {
20286
+ amount?: PriceNonNullableFields$7;
20287
+ }
20243
20288
  interface ActivityNonNullableFields$3 {
20244
20289
  customActivity?: CustomActivityNonNullableFields$3;
20245
20290
  merchantComment?: MerchantCommentNonNullableFields$3;
@@ -20254,6 +20299,7 @@ interface ActivityNonNullableFields$3 {
20254
20299
  refundInitiated?: RefundInitiatedNonNullableFields$3;
20255
20300
  paymentRefunded?: PaymentRefundedNonNullableFields$3;
20256
20301
  paymentRefundFailed?: PaymentRefundFailedNonNullableFields$3;
20302
+ refundedAsStoreCredit?: RefundedAsStoreCreditNonNullableFields$3;
20257
20303
  type: ActivityType$3;
20258
20304
  }
20259
20305
  interface V1CreatedByNonNullableFields$1 {
@@ -20313,6 +20359,10 @@ interface CommitDraftOrderResponseNonNullableFields$1 {
20313
20359
  committedDraftOrder?: DraftOrderNonNullableFields$1;
20314
20360
  orderAfterCommit?: OrderNonNullableFields$3;
20315
20361
  }
20362
+ interface CreateOrderFromDraftResponseNonNullableFields$1 {
20363
+ committedDraftOrder?: DraftOrderNonNullableFields$1;
20364
+ createdOrder?: OrderNonNullableFields$3;
20365
+ }
20316
20366
  interface QueryDraftOrdersResponseNonNullableFields$1 {
20317
20367
  draftOrders: DraftOrderNonNullableFields$1[];
20318
20368
  }
@@ -21525,6 +21575,12 @@ interface CarrierError$2 {
21525
21575
  /** Error details. */
21526
21576
  error?: Details$2;
21527
21577
  }
21578
+ interface CreateEmptyDraftOrderRequest {
21579
+ }
21580
+ interface CreateEmptyDraftOrderResponse {
21581
+ /** The draft order details calculated with latest content */
21582
+ calculatedDraftOrder?: CalculatedDraftOrder;
21583
+ }
21528
21584
  interface AddLineItemsToDraftOrderRequest {
21529
21585
  /** The draft order id */
21530
21586
  draftOrderId: string;
@@ -21727,6 +21783,22 @@ interface DeleteCustomAdditionalFeesResponse {
21727
21783
  /** The draft order details calculated with latest content */
21728
21784
  calculatedDraftOrder?: CalculatedDraftOrder;
21729
21785
  }
21786
+ interface SetShippingInfoRequest {
21787
+ }
21788
+ interface SetShippingInfoResponse {
21789
+ }
21790
+ interface SetBuyerInfoRequest {
21791
+ }
21792
+ interface SetBuyerInfoResponse {
21793
+ }
21794
+ interface SetRecipientInfoRequest {
21795
+ }
21796
+ interface SetRecipientInfoResponse {
21797
+ }
21798
+ interface SetBillingInfoRequest {
21799
+ }
21800
+ interface SetBillingInfoResponse {
21801
+ }
21730
21802
  interface GetDraftOrderRequest {
21731
21803
  /** The draft order id */
21732
21804
  draftOrderId: string;
@@ -22035,7 +22107,8 @@ declare enum ActivityType$2 {
22035
22107
  AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
22036
22108
  REFUND_INITIATED = "REFUND_INITIATED",
22037
22109
  PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
22038
- PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
22110
+ PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
22111
+ REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT"
22039
22112
  }
22040
22113
  declare enum AttributionSource$2 {
22041
22114
  UNSPECIFIED = "UNSPECIFIED",
@@ -22126,6 +22199,10 @@ interface V1BalanceSummary {
22126
22199
  */
22127
22200
  authorized?: Price$6;
22128
22201
  }
22202
+ interface CreateOrderFromDraftRequest {
22203
+ }
22204
+ interface CreateOrderFromDraftResponse {
22205
+ }
22129
22206
  interface DeleteDraftOrderRequest {
22130
22207
  /** The draft order id */
22131
22208
  draftOrderId: string;
@@ -22576,6 +22653,9 @@ interface CalculatedDraftOrderNonNullableFields {
22576
22653
  interface CreateDraftOrderResponseNonNullableFields {
22577
22654
  calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
22578
22655
  }
22656
+ interface CreateEmptyDraftOrderResponseNonNullableFields {
22657
+ calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
22658
+ }
22579
22659
  interface AddLineItemsToDraftOrderResponseNonNullableFields {
22580
22660
  calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
22581
22661
  }
@@ -22600,6 +22680,18 @@ interface CreateCustomAdditionalFeesResponseNonNullableFields {
22600
22680
  interface DeleteCustomAdditionalFeesResponseNonNullableFields {
22601
22681
  calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
22602
22682
  }
22683
+ interface SetShippingInfoResponseNonNullableFields {
22684
+ calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
22685
+ }
22686
+ interface SetBuyerInfoResponseNonNullableFields {
22687
+ calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
22688
+ }
22689
+ interface SetRecipientInfoResponseNonNullableFields {
22690
+ calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
22691
+ }
22692
+ interface SetBillingInfoResponseNonNullableFields {
22693
+ calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
22694
+ }
22603
22695
  interface GetDraftOrderResponseNonNullableFields {
22604
22696
  calculatedDraftOrder?: CalculatedDraftOrderNonNullableFields;
22605
22697
  }
@@ -22735,6 +22827,9 @@ interface PaymentRefundFailedNonNullableFields$2 {
22735
22827
  refundId: string;
22736
22828
  payment?: RefundedPaymentNonNullableFields$2;
22737
22829
  }
22830
+ interface RefundedAsStoreCreditNonNullableFields$2 {
22831
+ amount?: PriceNonNullableFields$6;
22832
+ }
22738
22833
  interface ActivityNonNullableFields$2 {
22739
22834
  customActivity?: CustomActivityNonNullableFields$2;
22740
22835
  merchantComment?: MerchantCommentNonNullableFields$2;
@@ -22749,6 +22844,7 @@ interface ActivityNonNullableFields$2 {
22749
22844
  refundInitiated?: RefundInitiatedNonNullableFields$2;
22750
22845
  paymentRefunded?: PaymentRefundedNonNullableFields$2;
22751
22846
  paymentRefundFailed?: PaymentRefundFailedNonNullableFields$2;
22847
+ refundedAsStoreCredit?: RefundedAsStoreCreditNonNullableFields$2;
22752
22848
  type: ActivityType$2;
22753
22849
  }
22754
22850
  interface V1CreatedByNonNullableFields {
@@ -22808,6 +22904,10 @@ interface CommitDraftOrderResponseNonNullableFields {
22808
22904
  committedDraftOrder?: DraftOrderNonNullableFields;
22809
22905
  orderAfterCommit?: OrderNonNullableFields$2;
22810
22906
  }
22907
+ interface CreateOrderFromDraftResponseNonNullableFields {
22908
+ committedDraftOrder?: DraftOrderNonNullableFields;
22909
+ createdOrder?: OrderNonNullableFields$2;
22910
+ }
22811
22911
  interface QueryDraftOrdersResponseNonNullableFields {
22812
22912
  draftOrders: DraftOrderNonNullableFields[];
22813
22913
  }
@@ -22825,6 +22925,7 @@ type __PublicMethodMetaInfo$c<K = string, M = unknown, T = unknown, S = unknown,
22825
22925
  declare function createDraftOrder(): __PublicMethodMetaInfo$c<'POST', {
22826
22926
  orderId: string;
22827
22927
  }, CreateDraftOrderRequest, CreateDraftOrderRequest$1, CreateDraftOrderResponse & CreateDraftOrderResponseNonNullableFields, CreateDraftOrderResponse$1 & CreateDraftOrderResponseNonNullableFields$1>;
22928
+ declare function createEmptyDraftOrder(): __PublicMethodMetaInfo$c<'POST', {}, CreateEmptyDraftOrderRequest, CreateEmptyDraftOrderRequest$1, CreateEmptyDraftOrderResponse & CreateEmptyDraftOrderResponseNonNullableFields, CreateEmptyDraftOrderResponse$1 & CreateEmptyDraftOrderResponseNonNullableFields$1>;
22828
22929
  declare function addLineItemsToDraftOrder(): __PublicMethodMetaInfo$c<'POST', {
22829
22930
  draftOrderId: string;
22830
22931
  }, AddLineItemsToDraftOrderRequest, AddLineItemsToDraftOrderRequest$1, AddLineItemsToDraftOrderResponse & AddLineItemsToDraftOrderResponseNonNullableFields, AddLineItemsToDraftOrderResponse$1 & AddLineItemsToDraftOrderResponseNonNullableFields$1>;
@@ -22849,6 +22950,10 @@ declare function createCustomAdditionalFees(): __PublicMethodMetaInfo$c<'POST',
22849
22950
  declare function deleteCustomAdditionalFees(): __PublicMethodMetaInfo$c<'POST', {
22850
22951
  draftOrderId: string;
22851
22952
  }, DeleteCustomAdditionalFeesRequest, DeleteCustomAdditionalFeesRequest$1, DeleteCustomAdditionalFeesResponse & DeleteCustomAdditionalFeesResponseNonNullableFields, DeleteCustomAdditionalFeesResponse$1 & DeleteCustomAdditionalFeesResponseNonNullableFields$1>;
22953
+ declare function setShippingInfo(): __PublicMethodMetaInfo$c<'PUT', {}, SetShippingInfoRequest, SetShippingInfoRequest$1, SetShippingInfoResponse & SetShippingInfoResponseNonNullableFields, SetShippingInfoResponse$1 & SetShippingInfoResponseNonNullableFields$1>;
22954
+ declare function setBuyerInfo(): __PublicMethodMetaInfo$c<'PUT', {}, SetBuyerInfoRequest, SetBuyerInfoRequest$1, SetBuyerInfoResponse & SetBuyerInfoResponseNonNullableFields, SetBuyerInfoResponse$1 & SetBuyerInfoResponseNonNullableFields$1>;
22955
+ declare function setRecipientInfo(): __PublicMethodMetaInfo$c<'PUT', {}, SetRecipientInfoRequest, SetRecipientInfoRequest$1, SetRecipientInfoResponse & SetRecipientInfoResponseNonNullableFields, SetRecipientInfoResponse$1 & SetRecipientInfoResponseNonNullableFields$1>;
22956
+ declare function setBillingInfo(): __PublicMethodMetaInfo$c<'PUT', {}, SetBillingInfoRequest, SetBillingInfoRequest$1, SetBillingInfoResponse & SetBillingInfoResponseNonNullableFields, SetBillingInfoResponse$1 & SetBillingInfoResponseNonNullableFields$1>;
22852
22957
  declare function getDraftOrder(): __PublicMethodMetaInfo$c<'GET', {
22853
22958
  draftOrderId: string;
22854
22959
  }, GetDraftOrderRequest, GetDraftOrderRequest$1, GetDraftOrderResponse & GetDraftOrderResponseNonNullableFields, GetDraftOrderResponse$1 & GetDraftOrderResponseNonNullableFields$1>;
@@ -22858,6 +22963,9 @@ declare function getOrderDraftabilityStatus(): __PublicMethodMetaInfo$c<'GET', {
22858
22963
  declare function commitDraftOrder(): __PublicMethodMetaInfo$c<'POST', {
22859
22964
  draftOrderId: string;
22860
22965
  }, CommitDraftOrderRequest, CommitDraftOrderRequest$1, CommitDraftOrderResponse & CommitDraftOrderResponseNonNullableFields, CommitDraftOrderResponse$1 & CommitDraftOrderResponseNonNullableFields$1>;
22966
+ declare function createOrderFromDraft(): __PublicMethodMetaInfo$c<'POST', {
22967
+ draftOrderId: string;
22968
+ }, CreateOrderFromDraftRequest, CreateOrderFromDraftRequest$1, CreateOrderFromDraftResponse & CreateOrderFromDraftResponseNonNullableFields, CreateOrderFromDraftResponse$1 & CreateOrderFromDraftResponseNonNullableFields$1>;
22861
22969
  declare function deleteDraftOrder(): __PublicMethodMetaInfo$c<'DELETE', {
22862
22970
  draftOrderId: string;
22863
22971
  }, DeleteDraftOrderRequest, DeleteDraftOrderRequest$1, DeleteDraftOrderResponse, DeleteDraftOrderResponse$1>;
@@ -22868,6 +22976,8 @@ declare const meta$c_commitDraftOrder: typeof commitDraftOrder;
22868
22976
  declare const meta$c_createCustomAdditionalFees: typeof createCustomAdditionalFees;
22869
22977
  declare const meta$c_createCustomDiscounts: typeof createCustomDiscounts;
22870
22978
  declare const meta$c_createDraftOrder: typeof createDraftOrder;
22979
+ declare const meta$c_createEmptyDraftOrder: typeof createEmptyDraftOrder;
22980
+ declare const meta$c_createOrderFromDraft: typeof createOrderFromDraft;
22871
22981
  declare const meta$c_deleteCustomAdditionalFees: typeof deleteCustomAdditionalFees;
22872
22982
  declare const meta$c_deleteCustomDiscounts: typeof deleteCustomDiscounts;
22873
22983
  declare const meta$c_deleteDraftOrder: typeof deleteDraftOrder;
@@ -22875,10 +22985,14 @@ declare const meta$c_getDraftOrder: typeof getDraftOrder;
22875
22985
  declare const meta$c_getOrderDraftabilityStatus: typeof getOrderDraftabilityStatus;
22876
22986
  declare const meta$c_queryDraftOrders: typeof queryDraftOrders;
22877
22987
  declare const meta$c_setAdditionalFees: typeof setAdditionalFees;
22988
+ declare const meta$c_setBillingInfo: typeof setBillingInfo;
22989
+ declare const meta$c_setBuyerInfo: typeof setBuyerInfo;
22878
22990
  declare const meta$c_setDiscounts: typeof setDiscounts;
22991
+ declare const meta$c_setRecipientInfo: typeof setRecipientInfo;
22992
+ declare const meta$c_setShippingInfo: typeof setShippingInfo;
22879
22993
  declare const meta$c_updateLineItems: typeof updateLineItems;
22880
22994
  declare namespace meta$c {
22881
- export { type __PublicMethodMetaInfo$c as __PublicMethodMetaInfo, meta$c_addLineItemsToDraftOrder as addLineItemsToDraftOrder, meta$c_commitDraftOrder as commitDraftOrder, meta$c_createCustomAdditionalFees as createCustomAdditionalFees, meta$c_createCustomDiscounts as createCustomDiscounts, meta$c_createDraftOrder as createDraftOrder, meta$c_deleteCustomAdditionalFees as deleteCustomAdditionalFees, meta$c_deleteCustomDiscounts as deleteCustomDiscounts, meta$c_deleteDraftOrder as deleteDraftOrder, meta$c_getDraftOrder as getDraftOrder, meta$c_getOrderDraftabilityStatus as getOrderDraftabilityStatus, meta$c_queryDraftOrders as queryDraftOrders, meta$c_setAdditionalFees as setAdditionalFees, meta$c_setDiscounts as setDiscounts, meta$c_updateLineItems as updateLineItems };
22995
+ export { type __PublicMethodMetaInfo$c as __PublicMethodMetaInfo, meta$c_addLineItemsToDraftOrder as addLineItemsToDraftOrder, meta$c_commitDraftOrder as commitDraftOrder, meta$c_createCustomAdditionalFees as createCustomAdditionalFees, meta$c_createCustomDiscounts as createCustomDiscounts, meta$c_createDraftOrder as createDraftOrder, meta$c_createEmptyDraftOrder as createEmptyDraftOrder, meta$c_createOrderFromDraft as createOrderFromDraft, meta$c_deleteCustomAdditionalFees as deleteCustomAdditionalFees, meta$c_deleteCustomDiscounts as deleteCustomDiscounts, meta$c_deleteDraftOrder as deleteDraftOrder, meta$c_getDraftOrder as getDraftOrder, meta$c_getOrderDraftabilityStatus as getOrderDraftabilityStatus, meta$c_queryDraftOrders as queryDraftOrders, meta$c_setAdditionalFees as setAdditionalFees, meta$c_setBillingInfo as setBillingInfo, meta$c_setBuyerInfo as setBuyerInfo, meta$c_setDiscounts as setDiscounts, meta$c_setRecipientInfo as setRecipientInfo, meta$c_setShippingInfo as setShippingInfo, meta$c_updateLineItems as updateLineItems };
22882
22996
  }
22883
22997
 
22884
22998
  interface OrderWithFulfillments$1 {
@@ -25197,7 +25311,8 @@ declare enum ActivityType$1 {
25197
25311
  AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
25198
25312
  REFUND_INITIATED = "REFUND_INITIATED",
25199
25313
  PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
25200
- PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
25314
+ PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
25315
+ REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT"
25201
25316
  }
25202
25317
  declare enum AttributionSource$1 {
25203
25318
  UNSPECIFIED = "UNSPECIFIED",
@@ -26368,6 +26483,9 @@ interface PaymentRefundFailedNonNullableFields$1 {
26368
26483
  refundId: string;
26369
26484
  payment?: RefundedPaymentNonNullableFields$1;
26370
26485
  }
26486
+ interface RefundedAsStoreCreditNonNullableFields$1 {
26487
+ amount?: PriceNonNullableFields$5;
26488
+ }
26371
26489
  interface ActivityNonNullableFields$1 {
26372
26490
  customActivity?: CustomActivityNonNullableFields$1;
26373
26491
  merchantComment?: MerchantCommentNonNullableFields$1;
@@ -26382,6 +26500,7 @@ interface ActivityNonNullableFields$1 {
26382
26500
  refundInitiated?: RefundInitiatedNonNullableFields$1;
26383
26501
  paymentRefunded?: PaymentRefundedNonNullableFields$1;
26384
26502
  paymentRefundFailed?: PaymentRefundFailedNonNullableFields$1;
26503
+ refundedAsStoreCredit?: RefundedAsStoreCreditNonNullableFields$1;
26385
26504
  type: ActivityType$1;
26386
26505
  }
26387
26506
  interface CreatedByNonNullableFields$1 {
@@ -27434,7 +27553,8 @@ declare enum ActivityType {
27434
27553
  AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
27435
27554
  REFUND_INITIATED = "REFUND_INITIATED",
27436
27555
  PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
27437
- PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
27556
+ PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
27557
+ REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT"
27438
27558
  }
27439
27559
  declare enum AttributionSource {
27440
27560
  UNSPECIFIED = "UNSPECIFIED",
@@ -28599,6 +28719,9 @@ interface PaymentRefundFailedNonNullableFields {
28599
28719
  refundId: string;
28600
28720
  payment?: RefundedPaymentNonNullableFields;
28601
28721
  }
28722
+ interface RefundedAsStoreCreditNonNullableFields {
28723
+ amount?: PriceNonNullableFields$4;
28724
+ }
28602
28725
  interface ActivityNonNullableFields {
28603
28726
  customActivity?: CustomActivityNonNullableFields;
28604
28727
  merchantComment?: MerchantCommentNonNullableFields;
@@ -28613,6 +28736,7 @@ interface ActivityNonNullableFields {
28613
28736
  refundInitiated?: RefundInitiatedNonNullableFields;
28614
28737
  paymentRefunded?: PaymentRefundedNonNullableFields;
28615
28738
  paymentRefundFailed?: PaymentRefundFailedNonNullableFields;
28739
+ refundedAsStoreCredit?: RefundedAsStoreCreditNonNullableFields;
28616
28740
  type: ActivityType;
28617
28741
  }
28618
28742
  interface CreatedByNonNullableFields {
@@ -1732,6 +1732,85 @@ interface IdentificationDataIdOneOf$2 {
1732
1732
  appId?: string;
1733
1733
  }
1734
1734
 
1735
+ declare class CouponLimitPerCustomerExceededWixError extends Error {
1736
+ /** @hidden */
1737
+ httpCode: number;
1738
+ /** @hidden */
1739
+ statusCode: string;
1740
+ /** @hidden */
1741
+ applicationCode: string;
1742
+ /** @hidden */
1743
+ name: string;
1744
+ constructor();
1745
+ /** @hidden */
1746
+ static readonly __type = "wix_spi_error";
1747
+ }
1748
+ declare class CouponIsDisabledWixError extends Error {
1749
+ /** @hidden */
1750
+ httpCode: number;
1751
+ /** @hidden */
1752
+ statusCode: string;
1753
+ /** @hidden */
1754
+ applicationCode: string;
1755
+ /** @hidden */
1756
+ name: string;
1757
+ constructor();
1758
+ /** @hidden */
1759
+ static readonly __type = "wix_spi_error";
1760
+ }
1761
+ declare class CouponUsageExceededWixError extends Error {
1762
+ /** @hidden */
1763
+ httpCode: number;
1764
+ /** @hidden */
1765
+ statusCode: string;
1766
+ /** @hidden */
1767
+ applicationCode: string;
1768
+ /** @hidden */
1769
+ name: string;
1770
+ constructor();
1771
+ /** @hidden */
1772
+ static readonly __type = "wix_spi_error";
1773
+ }
1774
+ declare class CouponHasExpiredWixError extends Error {
1775
+ /** @hidden */
1776
+ httpCode: number;
1777
+ /** @hidden */
1778
+ statusCode: string;
1779
+ /** @hidden */
1780
+ applicationCode: string;
1781
+ /** @hidden */
1782
+ name: string;
1783
+ constructor();
1784
+ /** @hidden */
1785
+ static readonly __type = "wix_spi_error";
1786
+ }
1787
+ declare class CouponIsNotActiveYetWixError extends Error {
1788
+ /** @hidden */
1789
+ httpCode: number;
1790
+ /** @hidden */
1791
+ statusCode: string;
1792
+ /** @hidden */
1793
+ applicationCode: string;
1794
+ /** @hidden */
1795
+ name: string;
1796
+ constructor();
1797
+ /** @hidden */
1798
+ static readonly __type = "wix_spi_error";
1799
+ }
1800
+ declare class CouponDoesNotExistWixError extends Error {
1801
+ /** @hidden */
1802
+ httpCode: number;
1803
+ /** @hidden */
1804
+ statusCode: string;
1805
+ /** @hidden */
1806
+ applicationCode: string;
1807
+ /** @hidden */
1808
+ name: string;
1809
+ constructor();
1810
+ /** @hidden */
1811
+ static readonly __type = "wix_spi_error";
1812
+ }
1813
+
1735
1814
  interface GetEligibleDiscountsEnvelope {
1736
1815
  request: GetEligibleDiscountsRequest;
1737
1816
  metadata: Context$2;
@@ -1750,7 +1829,19 @@ type _publicProvideHandlersType$2 = typeof provideHandlers$5;
1750
1829
  declare const provideHandlers$4: ReturnType<typeof createServicePluginModule$2<_publicProvideHandlersType>>;
1751
1830
 
1752
1831
  type context$2_BaseDiscounts = BaseDiscounts;
1832
+ type context$2_CouponDoesNotExistWixError = CouponDoesNotExistWixError;
1833
+ declare const context$2_CouponDoesNotExistWixError: typeof CouponDoesNotExistWixError;
1834
+ type context$2_CouponHasExpiredWixError = CouponHasExpiredWixError;
1835
+ declare const context$2_CouponHasExpiredWixError: typeof CouponHasExpiredWixError;
1836
+ type context$2_CouponIsDisabledWixError = CouponIsDisabledWixError;
1837
+ declare const context$2_CouponIsDisabledWixError: typeof CouponIsDisabledWixError;
1838
+ type context$2_CouponIsNotActiveYetWixError = CouponIsNotActiveYetWixError;
1839
+ declare const context$2_CouponIsNotActiveYetWixError: typeof CouponIsNotActiveYetWixError;
1840
+ type context$2_CouponLimitPerCustomerExceededWixError = CouponLimitPerCustomerExceededWixError;
1841
+ declare const context$2_CouponLimitPerCustomerExceededWixError: typeof CouponLimitPerCustomerExceededWixError;
1753
1842
  type context$2_CouponOptions = CouponOptions;
1843
+ type context$2_CouponUsageExceededWixError = CouponUsageExceededWixError;
1844
+ declare const context$2_CouponUsageExceededWixError: typeof CouponUsageExceededWixError;
1754
1845
  type context$2_Discount = Discount;
1755
1846
  type context$2_DiscountDiscountScopesOneOf = DiscountDiscountScopesOneOf;
1756
1847
  type context$2_DiscountDiscountTypeOneOf = DiscountDiscountTypeOneOf;
@@ -1769,7 +1860,7 @@ declare const context$2_TargetType: typeof TargetType;
1769
1860
  type context$2_Type = Type;
1770
1861
  declare const context$2_Type: typeof Type;
1771
1862
  declare namespace context$2 {
1772
- export { type context$2_BaseDiscounts as BaseDiscounts, type CatalogReference$2 as CatalogReference, type Context$2 as Context, type context$2_CouponOptions as CouponOptions, type context$2_Discount as Discount, type context$2_DiscountDiscountScopesOneOf as DiscountDiscountScopesOneOf, type context$2_DiscountDiscountTypeOneOf as DiscountDiscountTypeOneOf, type context$2_DiscountName as DiscountName, type context$2_DiscountRate as DiscountRate, type context$2_DiscountRateRateOneOf as DiscountRateRateOneOf, context$2_DiscountSource as DiscountSource, type context$2_DiscountsSPIConfig as DiscountsSPIConfig, type context$2_GetEligibleDiscountsRequest as GetEligibleDiscountsRequest, type context$2_GetEligibleDiscountsResponse as GetEligibleDiscountsResponse, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type LineItem$2 as LineItem, type context$2_LineItemRate as LineItemRate, type context$2_LineItemsDiscounts as LineItemsDiscounts, context$2_TargetType as TargetType, context$2_Type as Type, type _publicProvideHandlersType$2 as _publicProvideHandlersType, provideHandlers$4 as provideHandlers, provideHandlers$5 as publicProvideHandlers };
1863
+ export { type context$2_BaseDiscounts as BaseDiscounts, type CatalogReference$2 as CatalogReference, type Context$2 as Context, context$2_CouponDoesNotExistWixError as CouponDoesNotExistWixError, context$2_CouponHasExpiredWixError as CouponHasExpiredWixError, context$2_CouponIsDisabledWixError as CouponIsDisabledWixError, context$2_CouponIsNotActiveYetWixError as CouponIsNotActiveYetWixError, context$2_CouponLimitPerCustomerExceededWixError as CouponLimitPerCustomerExceededWixError, type context$2_CouponOptions as CouponOptions, context$2_CouponUsageExceededWixError as CouponUsageExceededWixError, type context$2_Discount as Discount, type context$2_DiscountDiscountScopesOneOf as DiscountDiscountScopesOneOf, type context$2_DiscountDiscountTypeOneOf as DiscountDiscountTypeOneOf, type context$2_DiscountName as DiscountName, type context$2_DiscountRate as DiscountRate, type context$2_DiscountRateRateOneOf as DiscountRateRateOneOf, context$2_DiscountSource as DiscountSource, type context$2_DiscountsSPIConfig as DiscountsSPIConfig, type context$2_GetEligibleDiscountsRequest as GetEligibleDiscountsRequest, type context$2_GetEligibleDiscountsResponse as GetEligibleDiscountsResponse, type IdentificationData$2 as IdentificationData, type IdentificationDataIdOneOf$2 as IdentificationDataIdOneOf, IdentityType$2 as IdentityType, type LineItem$2 as LineItem, type context$2_LineItemRate as LineItemRate, type context$2_LineItemsDiscounts as LineItemsDiscounts, context$2_TargetType as TargetType, context$2_Type as Type, type _publicProvideHandlersType$2 as _publicProvideHandlersType, provideHandlers$4 as provideHandlers, provideHandlers$5 as publicProvideHandlers };
1773
1864
  }
1774
1865
 
1775
1866
  interface GetPaymentSettingsRequest {
@@ -2926,6 +3017,12 @@ interface PaymentRefundFailed {
2926
3017
  /** Details about the failed payment refund. */
2927
3018
  payment?: RefundedPayment;
2928
3019
  }
3020
+ interface RefundedAsStoreCredit {
3021
+ /** Refund amount */
3022
+ amount?: Price;
3023
+ /** Reason for refund */
3024
+ reason?: string | null;
3025
+ }
2929
3026
  declare enum ActivityType {
2930
3027
  ORDER_REFUNDED = "ORDER_REFUNDED",
2931
3028
  ORDER_PLACED = "ORDER_PLACED",
@@ -2957,7 +3054,8 @@ declare enum ActivityType {
2957
3054
  AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
2958
3055
  REFUND_INITIATED = "REFUND_INITIATED",
2959
3056
  PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
2960
- PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED"
3057
+ PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
3058
+ REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT"
2961
3059
  }
2962
3060
  declare enum AttributionSource {
2963
3061
  UNSPECIFIED = "UNSPECIFIED",
@@ -4606,6 +4704,7 @@ type context$1_PriceDescription = PriceDescription;
4606
4704
  type context$1_RateType = RateType;
4607
4705
  declare const context$1_RateType: typeof RateType;
4608
4706
  type context$1_RefundInitiated = RefundInitiated;
4707
+ type context$1_RefundedAsStoreCredit = RefundedAsStoreCredit;
4609
4708
  type context$1_RefundedPayment = RefundedPayment;
4610
4709
  type context$1_RefundedPaymentKindOneOf = RefundedPaymentKindOneOf;
4611
4710
  type context$1_RegularPaymentRefund = RegularPaymentRefund;
@@ -4663,7 +4762,7 @@ type context$1_V1SubscriptionSettings = V1SubscriptionSettings;
4663
4762
  type context$1_V1TaxSummary = V1TaxSummary;
4664
4763
  type context$1_ValidationError = ValidationError;
4665
4764
  declare namespace context$1 {
4666
- export { type context$1_Activity as Activity, type context$1_ActivityContentOneOf as ActivityContentOneOf, context$1_ActivityType as ActivityType, type context$1_AdditionalFee as AdditionalFee, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type context$1_AggregatedTaxBreakdown as AggregatedTaxBreakdown, type context$1_ApiAddressWithContact as ApiAddressWithContact, type context$1_ApplicationError as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, context$1_AppliedDiscountDiscountType as AppliedDiscountDiscountType, context$1_AttributionSource as AttributionSource, type context$1_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$1_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$1_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$1_AutoTaxFallbackCalculationDetails as AutoTaxFallbackCalculationDetails, type context$1_Balance as Balance, type context$1_BalanceSummary as BalanceSummary, type context$1_BuyerInfo as BuyerInfo, type context$1_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$1_CalculationErrors as CalculationErrors, type context$1_CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOf, type context$1_CarrierError as CarrierError, type context$1_CarrierErrors as CarrierErrors, type context$1_CarrierServiceOption as CarrierServiceOption, type context$1_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$1 as CatalogReference, type context$1_ChannelInfo as ChannelInfo, context$1_ChannelType as ChannelType, context$1_ChargeType as ChargeType, type context$1_Checkout as Checkout, type context$1_Color as Color, type Context$1 as Context, type context$1_ConversionInfo as ConversionInfo, type Coupon$1 as Coupon, type context$1_CreatedBy as CreatedBy, type context$1_CreatedByIdOneOf as CreatedByIdOneOf, type context$1_CustomActivity as CustomActivity, type context$1_CustomContentReference as CustomContentReference, type CustomField$1 as CustomField, type context$1_CustomSettings as CustomSettings, type context$1_DeliveryLogistics as DeliveryLogistics, type context$1_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type context$1_DeliveryTimeSlot as DeliveryTimeSlot, type Description$1 as Description, type context$1_DescriptionLine as DescriptionLine, type context$1_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$1_DescriptionLineName as DescriptionLineName, context$1_DescriptionLineType as DescriptionLineType, type context$1_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type context$1_Details as Details, type context$1_DetailsKindOneOf as DetailsKindOneOf, type context$1_DigitalFile as DigitalFile, context$1_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type context$1_DraftOrderChangesApplied as DraftOrderChangesApplied, type ExtendedFields$1 as ExtendedFields, type ExternalReference$1 as ExternalReference, context$1_FallbackReason as FallbackReason, type context$1_FieldViolation as FieldViolation, context$1_FileType as FileType, context$1_FulfillmentStatus as FulfillmentStatus, type context$1_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$1_GetPaymentSettingsForCheckoutRequest as GetPaymentSettingsForCheckoutRequest, type context$1_GetPaymentSettingsForCheckoutResponse as GetPaymentSettingsForCheckoutResponse, type context$1_GetPaymentSettingsRequest as GetPaymentSettingsRequest, type context$1_GetPaymentSettingsResponse as GetPaymentSettingsResponse, type GiftCard$1 as GiftCard, type context$1_Group as Group, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type context$1_InvalidMembership as InvalidMembership, type context$1_ItemAvailabilityInfo as ItemAvailabilityInfo, context$1_ItemAvailabilityStatus as ItemAvailabilityStatus, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, JurisdictionType$1 as JurisdictionType, type LineItem$1 as LineItem, type context$1_LineItemAmount as LineItemAmount, type context$1_LineItemChanges as LineItemChanges, type context$1_LineItemDiscount as LineItemDiscount, type context$1_LineItemExchangeData as LineItemExchangeData, type context$1_LineItemPriceChange as LineItemPriceChange, type context$1_LineItemQuantityChange as LineItemQuantityChange, context$1_LineItemQuantityChangeType as LineItemQuantityChangeType, type context$1_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$1_LineItemTaxInfo as LineItemTaxInfo, type context$1_LocationAndQuantity as LocationAndQuantity, type context$1_ManagedAdditionalFee as ManagedAdditionalFee, type context$1_ManagedDiscount as ManagedDiscount, type context$1_ManagedLineItem as ManagedLineItem, context$1_ManualCalculationReason as ManualCalculationReason, type context$1_Membership as Membership, type context$1_MembershipName as MembershipName, type context$1_MembershipOptions as MembershipOptions, type context$1_MembershipPaymentCredits as MembershipPaymentCredits, type context$1_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$1_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MultiCurrencyPrice$1 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type context$1_NewExchangeOrderCreated as NewExchangeOrderCreated, type context$1_Order as Order, type context$1_OrderChange as OrderChange, type context$1_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$1_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$1_OrderLineItem as OrderLineItem, type context$1_OrderRefunded as OrderRefunded, context$1_OrderStatus as OrderStatus, type context$1_OrderTaxBreakdown as OrderTaxBreakdown, type context$1_OrderTaxInfo as OrderTaxInfo, type Other$1 as Other, type context$1_OtherCharge as OtherCharge, context$1_PaymentOption as PaymentOption, context$1_PaymentOptionType as PaymentOptionType, type context$1_PaymentRefundFailed as PaymentRefundFailed, type context$1_PaymentRefunded as PaymentRefunded, type context$1_PaymentSettings as PaymentSettings, type context$1_PaymentSettingsSPIConfig as PaymentSettingsSPIConfig, context$1_PaymentStatus as PaymentStatus, type PhysicalProperties$1 as PhysicalProperties, type context$1_PickupAddress as PickupAddress, type context$1_PickupDetails as PickupDetails, context$1_PickupDetailsPickupMethod as PickupDetailsPickupMethod, context$1_PickupMethod as PickupMethod, type context$1_PlainTextValue as PlainTextValue, type context$1_Price as Price, type context$1_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type ProductName$1 as ProductName, context$1_RateType as RateType, type context$1_RefundInitiated as RefundInitiated, type context$1_RefundedPayment as RefundedPayment, type context$1_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type context$1_RegularPaymentRefund as RegularPaymentRefund, context$1_RuleType as RuleType, type context$1_SavedPaymentMethod as SavedPaymentMethod, type context$1_Scope as Scope, type context$1_SecuredMedia as SecuredMedia, type SelectedCarrierServiceOption$1 as SelectedCarrierServiceOption, type context$1_SelectedCarrierServiceOptionOtherCharge as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$1 as SelectedCarrierServiceOptionPrices, type context$1_SelectedMembership as SelectedMembership, type context$1_SelectedMemberships as SelectedMemberships, type context$1_ServiceProperties as ServiceProperties, Severity$1 as Severity, type ShippingInfo$1 as ShippingInfo, type context$1_ShippingInformation as ShippingInformation, type context$1_ShippingInformationChange as ShippingInformationChange, type context$1_ShippingOption as ShippingOption, type context$1_ShippingPrice as ShippingPrice, type context$1_ShippingRegion as ShippingRegion, type StreetAddress$1 as StreetAddress, SubscriptionFrequency$1 as SubscriptionFrequency, type context$1_SubscriptionInfo as SubscriptionInfo, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type context$1_SystemError as SystemError, type context$1_TagList as TagList, type context$1_Tags as Tags, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type context$1_TaxCalculationDetails as TaxCalculationDetails, type context$1_TaxCalculationDetailsCalculationDetailsOneOf as TaxCalculationDetailsCalculationDetailsOneOf, type context$1_TaxRateBreakdown as TaxRateBreakdown, type context$1_TaxSummary as TaxSummary, type context$1_TaxableAddress as TaxableAddress, type context$1_TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOf, context$1_TaxableAddressType as TaxableAddressType, type Title$1 as Title, type context$1_TotalPriceChange as TotalPriceChange, type context$1_TranslatedValue as TranslatedValue, type context$1_V1AdditionalFee as V1AdditionalFee, type context$1_V1AppliedDiscount as V1AppliedDiscount, type context$1_V1AppliedDiscountDiscountSourceOneOf as V1AppliedDiscountDiscountSourceOneOf, type context$1_V1BuyerInfo as V1BuyerInfo, type context$1_V1BuyerInfoIdOneOf as V1BuyerInfoIdOneOf, type context$1_V1Coupon as V1Coupon, type context$1_V1CreatedBy as V1CreatedBy, type context$1_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type context$1_V1DeliveryLogistics as V1DeliveryLogistics, type context$1_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type context$1_V1DiscountRule as V1DiscountRule, type context$1_V1DiscountRuleName as V1DiscountRuleName, type context$1_V1ItemTaxFullDetails as V1ItemTaxFullDetails, context$1_V1JurisdictionType as V1JurisdictionType, type context$1_V1LineItemDiscount as V1LineItemDiscount, type context$1_V1MerchantDiscount as V1MerchantDiscount, type context$1_V1PickupDetails as V1PickupDetails, type context$1_V1PriceSummary as V1PriceSummary, type context$1_V1ShippingInformation as V1ShippingInformation, type context$1_V1ShippingPrice as V1ShippingPrice, type context$1_V1ShippingRegion as V1ShippingRegion, type context$1_V1SubscriptionSettings as V1SubscriptionSettings, type context$1_V1TaxSummary as V1TaxSummary, type context$1_ValidationError as ValidationError, type VatId$1 as VatId, VatType$1 as VatType, type Violation$1 as Violation, WeightUnit$1 as WeightUnit, type _publicProvideHandlersType$1 as _publicProvideHandlersType, provideHandlers$2 as provideHandlers, provideHandlers$3 as publicProvideHandlers };
4765
+ export { type context$1_Activity as Activity, type context$1_ActivityContentOneOf as ActivityContentOneOf, context$1_ActivityType as ActivityType, type context$1_AdditionalFee as AdditionalFee, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type context$1_AggregatedTaxBreakdown as AggregatedTaxBreakdown, type context$1_ApiAddressWithContact as ApiAddressWithContact, type context$1_ApplicationError as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, context$1_AppliedDiscountDiscountType as AppliedDiscountDiscountType, context$1_AttributionSource as AttributionSource, type context$1_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$1_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$1_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$1_AutoTaxFallbackCalculationDetails as AutoTaxFallbackCalculationDetails, type context$1_Balance as Balance, type context$1_BalanceSummary as BalanceSummary, type context$1_BuyerInfo as BuyerInfo, type context$1_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$1_CalculationErrors as CalculationErrors, type context$1_CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOf, type context$1_CarrierError as CarrierError, type context$1_CarrierErrors as CarrierErrors, type context$1_CarrierServiceOption as CarrierServiceOption, type context$1_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$1 as CatalogReference, type context$1_ChannelInfo as ChannelInfo, context$1_ChannelType as ChannelType, context$1_ChargeType as ChargeType, type context$1_Checkout as Checkout, type context$1_Color as Color, type Context$1 as Context, type context$1_ConversionInfo as ConversionInfo, type Coupon$1 as Coupon, type context$1_CreatedBy as CreatedBy, type context$1_CreatedByIdOneOf as CreatedByIdOneOf, type context$1_CustomActivity as CustomActivity, type context$1_CustomContentReference as CustomContentReference, type CustomField$1 as CustomField, type context$1_CustomSettings as CustomSettings, type context$1_DeliveryLogistics as DeliveryLogistics, type context$1_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type context$1_DeliveryTimeSlot as DeliveryTimeSlot, type Description$1 as Description, type context$1_DescriptionLine as DescriptionLine, type context$1_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$1_DescriptionLineName as DescriptionLineName, context$1_DescriptionLineType as DescriptionLineType, type context$1_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type context$1_Details as Details, type context$1_DetailsKindOneOf as DetailsKindOneOf, type context$1_DigitalFile as DigitalFile, context$1_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type context$1_DraftOrderChangesApplied as DraftOrderChangesApplied, type ExtendedFields$1 as ExtendedFields, type ExternalReference$1 as ExternalReference, context$1_FallbackReason as FallbackReason, type context$1_FieldViolation as FieldViolation, context$1_FileType as FileType, context$1_FulfillmentStatus as FulfillmentStatus, type context$1_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$1_GetPaymentSettingsForCheckoutRequest as GetPaymentSettingsForCheckoutRequest, type context$1_GetPaymentSettingsForCheckoutResponse as GetPaymentSettingsForCheckoutResponse, type context$1_GetPaymentSettingsRequest as GetPaymentSettingsRequest, type context$1_GetPaymentSettingsResponse as GetPaymentSettingsResponse, type GiftCard$1 as GiftCard, type context$1_Group as Group, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type context$1_InvalidMembership as InvalidMembership, type context$1_ItemAvailabilityInfo as ItemAvailabilityInfo, context$1_ItemAvailabilityStatus as ItemAvailabilityStatus, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, JurisdictionType$1 as JurisdictionType, type LineItem$1 as LineItem, type context$1_LineItemAmount as LineItemAmount, type context$1_LineItemChanges as LineItemChanges, type context$1_LineItemDiscount as LineItemDiscount, type context$1_LineItemExchangeData as LineItemExchangeData, type context$1_LineItemPriceChange as LineItemPriceChange, type context$1_LineItemQuantityChange as LineItemQuantityChange, context$1_LineItemQuantityChangeType as LineItemQuantityChangeType, type context$1_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$1_LineItemTaxInfo as LineItemTaxInfo, type context$1_LocationAndQuantity as LocationAndQuantity, type context$1_ManagedAdditionalFee as ManagedAdditionalFee, type context$1_ManagedDiscount as ManagedDiscount, type context$1_ManagedLineItem as ManagedLineItem, context$1_ManualCalculationReason as ManualCalculationReason, type context$1_Membership as Membership, type context$1_MembershipName as MembershipName, type context$1_MembershipOptions as MembershipOptions, type context$1_MembershipPaymentCredits as MembershipPaymentCredits, type context$1_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$1_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MultiCurrencyPrice$1 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type context$1_NewExchangeOrderCreated as NewExchangeOrderCreated, type context$1_Order as Order, type context$1_OrderChange as OrderChange, type context$1_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$1_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$1_OrderLineItem as OrderLineItem, type context$1_OrderRefunded as OrderRefunded, context$1_OrderStatus as OrderStatus, type context$1_OrderTaxBreakdown as OrderTaxBreakdown, type context$1_OrderTaxInfo as OrderTaxInfo, type Other$1 as Other, type context$1_OtherCharge as OtherCharge, context$1_PaymentOption as PaymentOption, context$1_PaymentOptionType as PaymentOptionType, type context$1_PaymentRefundFailed as PaymentRefundFailed, type context$1_PaymentRefunded as PaymentRefunded, type context$1_PaymentSettings as PaymentSettings, type context$1_PaymentSettingsSPIConfig as PaymentSettingsSPIConfig, context$1_PaymentStatus as PaymentStatus, type PhysicalProperties$1 as PhysicalProperties, type context$1_PickupAddress as PickupAddress, type context$1_PickupDetails as PickupDetails, context$1_PickupDetailsPickupMethod as PickupDetailsPickupMethod, context$1_PickupMethod as PickupMethod, type context$1_PlainTextValue as PlainTextValue, type context$1_Price as Price, type context$1_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type ProductName$1 as ProductName, context$1_RateType as RateType, type context$1_RefundInitiated as RefundInitiated, type context$1_RefundedAsStoreCredit as RefundedAsStoreCredit, type context$1_RefundedPayment as RefundedPayment, type context$1_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type context$1_RegularPaymentRefund as RegularPaymentRefund, context$1_RuleType as RuleType, type context$1_SavedPaymentMethod as SavedPaymentMethod, type context$1_Scope as Scope, type context$1_SecuredMedia as SecuredMedia, type SelectedCarrierServiceOption$1 as SelectedCarrierServiceOption, type context$1_SelectedCarrierServiceOptionOtherCharge as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$1 as SelectedCarrierServiceOptionPrices, type context$1_SelectedMembership as SelectedMembership, type context$1_SelectedMemberships as SelectedMemberships, type context$1_ServiceProperties as ServiceProperties, Severity$1 as Severity, type ShippingInfo$1 as ShippingInfo, type context$1_ShippingInformation as ShippingInformation, type context$1_ShippingInformationChange as ShippingInformationChange, type context$1_ShippingOption as ShippingOption, type context$1_ShippingPrice as ShippingPrice, type context$1_ShippingRegion as ShippingRegion, type StreetAddress$1 as StreetAddress, SubscriptionFrequency$1 as SubscriptionFrequency, type context$1_SubscriptionInfo as SubscriptionInfo, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type context$1_SystemError as SystemError, type context$1_TagList as TagList, type context$1_Tags as Tags, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type context$1_TaxCalculationDetails as TaxCalculationDetails, type context$1_TaxCalculationDetailsCalculationDetailsOneOf as TaxCalculationDetailsCalculationDetailsOneOf, type context$1_TaxRateBreakdown as TaxRateBreakdown, type context$1_TaxSummary as TaxSummary, type context$1_TaxableAddress as TaxableAddress, type context$1_TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOf, context$1_TaxableAddressType as TaxableAddressType, type Title$1 as Title, type context$1_TotalPriceChange as TotalPriceChange, type context$1_TranslatedValue as TranslatedValue, type context$1_V1AdditionalFee as V1AdditionalFee, type context$1_V1AppliedDiscount as V1AppliedDiscount, type context$1_V1AppliedDiscountDiscountSourceOneOf as V1AppliedDiscountDiscountSourceOneOf, type context$1_V1BuyerInfo as V1BuyerInfo, type context$1_V1BuyerInfoIdOneOf as V1BuyerInfoIdOneOf, type context$1_V1Coupon as V1Coupon, type context$1_V1CreatedBy as V1CreatedBy, type context$1_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type context$1_V1DeliveryLogistics as V1DeliveryLogistics, type context$1_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type context$1_V1DiscountRule as V1DiscountRule, type context$1_V1DiscountRuleName as V1DiscountRuleName, type context$1_V1ItemTaxFullDetails as V1ItemTaxFullDetails, context$1_V1JurisdictionType as V1JurisdictionType, type context$1_V1LineItemDiscount as V1LineItemDiscount, type context$1_V1MerchantDiscount as V1MerchantDiscount, type context$1_V1PickupDetails as V1PickupDetails, type context$1_V1PriceSummary as V1PriceSummary, type context$1_V1ShippingInformation as V1ShippingInformation, type context$1_V1ShippingPrice as V1ShippingPrice, type context$1_V1ShippingRegion as V1ShippingRegion, type context$1_V1SubscriptionSettings as V1SubscriptionSettings, type context$1_V1TaxSummary as V1TaxSummary, type context$1_ValidationError as ValidationError, type VatId$1 as VatId, VatType$1 as VatType, type Violation$1 as Violation, WeightUnit$1 as WeightUnit, type _publicProvideHandlersType$1 as _publicProvideHandlersType, provideHandlers$2 as provideHandlers, provideHandlers$3 as publicProvideHandlers };
4667
4766
  }
4668
4767
 
4669
4768
  interface GetValidationViolationsRequest {