@wix/auto_sdk_ecom_order-transactions 1.0.17 → 1.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (17) hide show
  1. package/build/cjs/src/ecom-v1-order-transactions-order-transactions.types.d.ts +89 -47
  2. package/build/cjs/src/ecom-v1-order-transactions-order-transactions.types.js.map +1 -1
  3. package/build/cjs/src/ecom-v1-order-transactions-order-transactions.universal.d.ts +91 -49
  4. package/build/cjs/src/ecom-v1-order-transactions-order-transactions.universal.js.map +1 -1
  5. package/build/es/src/ecom-v1-order-transactions-order-transactions.types.d.ts +89 -47
  6. package/build/es/src/ecom-v1-order-transactions-order-transactions.types.js.map +1 -1
  7. package/build/es/src/ecom-v1-order-transactions-order-transactions.universal.d.ts +91 -49
  8. package/build/es/src/ecom-v1-order-transactions-order-transactions.universal.js.map +1 -1
  9. package/build/internal/cjs/src/ecom-v1-order-transactions-order-transactions.types.d.ts +89 -47
  10. package/build/internal/cjs/src/ecom-v1-order-transactions-order-transactions.types.js.map +1 -1
  11. package/build/internal/cjs/src/ecom-v1-order-transactions-order-transactions.universal.d.ts +91 -49
  12. package/build/internal/cjs/src/ecom-v1-order-transactions-order-transactions.universal.js.map +1 -1
  13. package/build/internal/es/src/ecom-v1-order-transactions-order-transactions.types.d.ts +89 -47
  14. package/build/internal/es/src/ecom-v1-order-transactions-order-transactions.types.js.map +1 -1
  15. package/build/internal/es/src/ecom-v1-order-transactions-order-transactions.universal.d.ts +91 -49
  16. package/build/internal/es/src/ecom-v1-order-transactions-order-transactions.universal.js.map +1 -1
  17. package/package.json +2 -2
@@ -80,7 +80,7 @@ export interface RegularPaymentDetails extends RegularPaymentDetailsPaymentMetho
80
80
  /** Whether the payment was made offline. For example, when using cash or when marked as paid in the Business Manager. */
81
81
  offlinePayment?: boolean;
82
82
  /** Payment status. */
83
- status?: TransactionStatus;
83
+ status?: TransactionStatusWithLiterals;
84
84
  /**
85
85
  * Whether there is a payment agreement that allows for future charges.
86
86
  * @immutable
@@ -106,6 +106,8 @@ export declare enum TransactionStatus {
106
106
  AUTHORIZED = "AUTHORIZED",
107
107
  VOIDED = "VOIDED"
108
108
  }
109
+ /** @enumType */
110
+ export type TransactionStatusWithLiterals = TransactionStatus | 'UNDEFINED' | 'APPROVED' | 'PENDING' | 'PENDING_MERCHANT' | 'CANCELED' | 'DECLINED' | 'REFUNDED' | 'PARTIALLY_REFUNDED' | 'AUTHORIZED' | 'VOIDED';
109
111
  export interface CreditCardPaymentMethodDetails {
110
112
  /**
111
113
  * The last 4 digits of the card number.
@@ -145,7 +147,7 @@ export interface AuthorizationCapture {
145
147
  */
146
148
  id?: string | null;
147
149
  /** Status of this capture action */
148
- status?: AuthorizationCaptureStatus;
150
+ status?: AuthorizationCaptureStatusWithLiterals;
149
151
  /**
150
152
  * Amount of this capture
151
153
  * @immutable
@@ -165,6 +167,8 @@ export declare enum AuthorizationCaptureStatus {
165
167
  /** Capture operation failed. */
166
168
  FAILED = "FAILED"
167
169
  }
170
+ /** @enumType */
171
+ export type AuthorizationCaptureStatusWithLiterals = AuthorizationCaptureStatus | 'UNKNOWN_STATUS' | 'PENDING' | 'SUCCEEDED' | 'FAILED';
168
172
  export interface Price {
169
173
  /**
170
174
  * Amount.
@@ -183,13 +187,13 @@ export interface AuthorizationActionFailureDetails {
183
187
  }
184
188
  export interface AuthorizationVoid {
185
189
  /** Status of this void action */
186
- status?: AuthorizationVoidStatus;
190
+ status?: AuthorizationVoidStatusWithLiterals;
187
191
  /** Date and time the void was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
188
192
  voidedDate?: Date | null;
189
193
  /** In case of status is FAILED may contain failure details */
190
194
  failureDetails?: AuthorizationActionFailureDetails;
191
195
  /** Reason of void action */
192
- reason?: Reason;
196
+ reason?: ReasonWithLiterals;
193
197
  }
194
198
  export declare enum AuthorizationVoidStatus {
195
199
  UNKNOWN_STATUS = "UNKNOWN_STATUS",
@@ -200,6 +204,8 @@ export declare enum AuthorizationVoidStatus {
200
204
  /** Void operation failed. */
201
205
  FAILED = "FAILED"
202
206
  }
207
+ /** @enumType */
208
+ export type AuthorizationVoidStatusWithLiterals = AuthorizationVoidStatus | 'UNKNOWN_STATUS' | 'PENDING' | 'SUCCEEDED' | 'FAILED';
203
209
  /** Reason the authorization was voided. */
204
210
  export declare enum Reason {
205
211
  UNKNOWN_REASON = "UNKNOWN_REASON",
@@ -208,9 +214,11 @@ export declare enum Reason {
208
214
  /** Authorization passed execution date. */
209
215
  SCHEDULED = "SCHEDULED"
210
216
  }
217
+ /** @enumType */
218
+ export type ReasonWithLiterals = Reason | 'UNKNOWN_REASON' | 'MANUAL' | 'SCHEDULED';
211
219
  export interface ScheduledAction {
212
220
  /** Type of the action. */
213
- actionType?: ActionType;
221
+ actionType?: ActionTypeWithLiterals;
214
222
  /** The date and time of the action. */
215
223
  executionDate?: Date | null;
216
224
  }
@@ -219,6 +227,8 @@ export declare enum ActionType {
219
227
  VOID = "VOID",
220
228
  CAPTURE = "CAPTURE"
221
229
  }
230
+ /** @enumType */
231
+ export type ActionTypeWithLiterals = ActionType | 'UNKNOWN_ACTION_TYPE' | 'VOID' | 'CAPTURE';
222
232
  export interface GiftCardPaymentDetails {
223
233
  /**
224
234
  * Gift card payment ID.
@@ -251,7 +261,7 @@ export interface MembershipPaymentDetails {
251
261
  */
252
262
  lineItemId?: string;
253
263
  /** Payment status. */
254
- status?: MembershipPaymentStatus;
264
+ status?: MembershipPaymentStatusWithLiterals;
255
265
  /** Membership name. */
256
266
  name?: MembershipName;
257
267
  /**
@@ -277,6 +287,8 @@ export declare enum MembershipPaymentStatus {
277
287
  /** The attempt to charge the payment failed, for example, due to lack of credits. */
278
288
  CHARGE_FAILED = "CHARGE_FAILED"
279
289
  }
290
+ /** @enumType */
291
+ export type MembershipPaymentStatusWithLiterals = MembershipPaymentStatus | 'CHARGED' | 'CHARGE_FAILED';
280
292
  export interface MembershipName {
281
293
  /**
282
294
  * Membership name.
@@ -366,7 +378,7 @@ export interface RefundTransaction {
366
378
  */
367
379
  amount?: Price;
368
380
  /** Refund status. */
369
- refundStatus?: RefundStatus;
381
+ refundStatus?: RefundStatusWithLiterals;
370
382
  /** Optional details of current refund status. */
371
383
  refundStatusInfo?: RefundStatusInfo;
372
384
  /**
@@ -396,6 +408,8 @@ export declare enum RefundStatus {
396
408
  /** Refund was initiated on payment provider side. */
397
409
  STARTED = "STARTED"
398
410
  }
411
+ /** @enumType */
412
+ export type RefundStatusWithLiterals = RefundStatus | 'PENDING' | 'SUCCEEDED' | 'FAILED' | 'SCHEDULED' | 'STARTED';
399
413
  export interface RefundStatusInfo {
400
414
  /**
401
415
  * Reason code for the refund's current status.
@@ -574,7 +588,7 @@ export interface Order {
574
588
  */
575
589
  currency?: string | null;
576
590
  /** Weight unit used in this store. */
577
- weightUnit?: WeightUnit;
591
+ weightUnit?: WeightUnitWithLiterals;
578
592
  /** Totals for order's line items. */
579
593
  totals?: Totals;
580
594
  /** Billing information. */
@@ -598,12 +612,12 @@ export interface Order {
598
612
  */
599
613
  archived?: boolean;
600
614
  /** Current status of the payment. */
601
- paymentStatus?: PaymentStatus;
615
+ paymentStatus?: PaymentStatusWithLiterals;
602
616
  /**
603
617
  * Order's current fulfillment status (whether the order received a tracking number or was delivered/picked up).
604
618
  * @readonly
605
619
  */
606
- fulfillmentStatus?: FulfillmentStatus;
620
+ fulfillmentStatus?: FulfillmentStatusWithLiterals;
607
621
  /**
608
622
  * Line items ordered.
609
623
  * @minSize 1
@@ -675,9 +689,9 @@ export interface BuyerInfo {
675
689
  * @readonly
676
690
  * @deprecated
677
691
  */
678
- type?: IdentityType;
692
+ type?: IdentityTypeWithLiterals;
679
693
  /** Customer type */
680
- identityType?: IdentityType;
694
+ identityType?: IdentityTypeWithLiterals;
681
695
  /**
682
696
  * Customer's first name
683
697
  * @readonly
@@ -706,6 +720,8 @@ export declare enum IdentityType {
706
720
  /** Contact */
707
721
  CONTACT = "CONTACT"
708
722
  }
723
+ /** @enumType */
724
+ export type IdentityTypeWithLiterals = IdentityType | 'UNSPECIFIED_IDENTITY_TYPE' | 'MEMBER' | 'CONTACT';
709
725
  export declare enum WeightUnit {
710
726
  /** Weight unit can't be classified due to an error. */
711
727
  UNSPECIFIED_WEIGHT_UNIT = "UNSPECIFIED_WEIGHT_UNIT",
@@ -714,6 +730,8 @@ export declare enum WeightUnit {
714
730
  /** Pounds. */
715
731
  LB = "LB"
716
732
  }
733
+ /** @enumType */
734
+ export type WeightUnitWithLiterals = WeightUnit | 'UNSPECIFIED_WEIGHT_UNIT' | 'KG' | 'LB';
717
735
  export interface Totals {
718
736
  /**
719
737
  * Subtotal of all the line items, before tax.
@@ -892,7 +910,7 @@ export interface VatId {
892
910
  * + `CPF`: For individual tax payers.
893
911
  * + `CNPJ`: For corporations.
894
912
  */
895
- type?: VatType;
913
+ type?: VatTypeWithLiterals;
896
914
  }
897
915
  /** Brazilian tax info types */
898
916
  export declare enum VatType {
@@ -903,6 +921,8 @@ export declare enum VatType {
903
921
  /** CNPJ - for corporations */
904
922
  CNPJ = "CNPJ"
905
923
  }
924
+ /** @enumType */
925
+ export type VatTypeWithLiterals = VatType | 'UNSPECIFIED_TAX_TYPE' | 'CPF' | 'CNPJ';
906
926
  export interface ShippingInfo extends ShippingInfoDetailsOneOf {
907
927
  /** Shipment details (when this object describes shipment). */
908
928
  shipmentDetails?: ShipmentDetails;
@@ -1065,6 +1085,8 @@ export declare enum PaymentStatus {
1065
1085
  /** At least one payment was received and approved, covering less than total price amount */
1066
1086
  PARTIALLY_PAID = "PARTIALLY_PAID"
1067
1087
  }
1088
+ /** @enumType */
1089
+ export type PaymentStatusWithLiterals = PaymentStatus | 'UNSPECIFIED_PAYMENT_STATUS' | 'PENDING' | 'NOT_PAID' | 'PAID' | 'PARTIALLY_REFUNDED' | 'FULLY_REFUNDED' | 'PARTIALLY_PAID';
1068
1090
  export declare enum FulfillmentStatus {
1069
1091
  /** None of the order items are fulfilled */
1070
1092
  NOT_FULFILLED = "NOT_FULFILLED",
@@ -1078,6 +1100,8 @@ export declare enum FulfillmentStatus {
1078
1100
  /** Some, but not all of the order items are fulfilled */
1079
1101
  PARTIALLY_FULFILLED = "PARTIALLY_FULFILLED"
1080
1102
  }
1103
+ /** @enumType */
1104
+ export type FulfillmentStatusWithLiterals = FulfillmentStatus | 'NOT_FULFILLED' | 'FULFILLED' | 'CANCELED' | 'PARTIALLY_FULFILLED';
1081
1105
  export interface LineItem {
1082
1106
  /**
1083
1107
  * Line item ID (auto-generated, stable within this order only)
@@ -1118,7 +1142,7 @@ export interface LineItem {
1118
1142
  */
1119
1143
  totalPrice?: string | null;
1120
1144
  /** Line item type (may be extended) */
1121
- lineItemType?: LineItemType;
1145
+ lineItemType?: LineItemTypeWithLiterals;
1122
1146
  /**
1123
1147
  * Line item options ordered
1124
1148
  * @maxSize 500
@@ -1187,6 +1211,8 @@ export declare enum LineItemType {
1187
1211
  /** Custom item price */
1188
1212
  CUSTOM_AMOUNT_ITEM = "CUSTOM_AMOUNT_ITEM"
1189
1213
  }
1214
+ /** @enumType */
1215
+ export type LineItemTypeWithLiterals = LineItemType | 'UNSPECIFIED_LINE_ITEM_TYPE' | 'PHYSICAL' | 'DIGITAL' | 'CUSTOM_AMOUNT_ITEM';
1190
1216
  export interface OptionSelection {
1191
1217
  /**
1192
1218
  * Option name
@@ -1216,7 +1242,7 @@ export interface MediaItem {
1216
1242
  * Media type
1217
1243
  * @readonly
1218
1244
  */
1219
- mediaType?: MediaItemType;
1245
+ mediaType?: MediaItemTypeWithLiterals;
1220
1246
  /**
1221
1247
  * Media URL
1222
1248
  * @format WEB_URL
@@ -1254,6 +1280,8 @@ export declare enum MediaItemType {
1254
1280
  /** Image item type */
1255
1281
  IMAGE = "IMAGE"
1256
1282
  }
1283
+ /** @enumType */
1284
+ export type MediaItemTypeWithLiterals = MediaItemType | 'UNSPECIFIED_MEDIA_TYPE_ITEM' | 'IMAGE';
1257
1285
  export interface LineItemPriceData {
1258
1286
  /** Whether tax is included in the price set for this line item */
1259
1287
  taxIncludedInPrice?: boolean;
@@ -1282,7 +1310,7 @@ export interface Activity {
1282
1310
  * Activity item type
1283
1311
  * @readonly
1284
1312
  */
1285
- type?: ActivityType;
1313
+ type?: ActivityTypeWithLiterals;
1286
1314
  /**
1287
1315
  * Activity item author
1288
1316
  * @maxLength 50
@@ -1341,6 +1369,8 @@ export declare enum ActivityType {
1341
1369
  /** Order partially paid. During the checkout for orders with deposit items. */
1342
1370
  ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID"
1343
1371
  }
1372
+ /** @enumType */
1373
+ export type ActivityTypeWithLiterals = ActivityType | 'UNSPECIFIED_ORDER_HISTORY_ITEM_TYPE' | 'MERCHANT_COMMENT' | 'ORDER_PLACED' | 'ORDER_PAID' | 'ORDER_FULFILLED' | 'ORDER_NOT_FULFILLED' | 'DOWNLOAD_LINK_SENT' | 'PICKUP_READY_EMAIL_SENT' | 'TRACKING_NUMBER_ADDED' | 'TRACKING_NUMBER_EDITED' | 'TRACKING_LINK_WAS_SET' | 'SHIPPING_CONFIRMATION_EMAIL_SENT' | 'INVOICE_WAS_SET' | 'INVOICE_WAS_REMOVED' | 'INVOICE_WAS_SENT' | 'FULFILLER_EMAIL_SENT' | 'SHIPPING_ADDRESS_EDITED' | 'EMAIL_EDITED' | 'ORDER_PARTIALLY_PAID';
1344
1374
  export interface V2InvoiceInfo {
1345
1375
  /**
1346
1376
  * Invoice ID
@@ -1348,7 +1378,7 @@ export interface V2InvoiceInfo {
1348
1378
  */
1349
1379
  id?: string;
1350
1380
  /** Invoice source */
1351
- source?: InvoiceSource;
1381
+ source?: InvoiceSourceWithLiterals;
1352
1382
  }
1353
1383
  export declare enum InvoiceSource {
1354
1384
  /** Invoice source can't be classified, due to an error */
@@ -1356,6 +1386,8 @@ export declare enum InvoiceSource {
1356
1386
  /** Invoice created using the Invoices API */
1357
1387
  WIX = "WIX"
1358
1388
  }
1389
+ /** @enumType */
1390
+ export type InvoiceSourceWithLiterals = InvoiceSource | 'UNSPECIFIED_INVOICE_SOURCE' | 'WIX';
1359
1391
  export interface Fulfillment {
1360
1392
  /**
1361
1393
  * Fulfillment ID (auto generated upon fulfillment creation).
@@ -1468,7 +1500,7 @@ export interface CustomField {
1468
1500
  }
1469
1501
  export interface ChannelInfo {
1470
1502
  /** Sales channel that submitted the order */
1471
- type?: ChannelType;
1503
+ type?: ChannelTypeWithLiterals;
1472
1504
  /**
1473
1505
  * Reference to an order ID from an external system, as defined in channelInfo (e.g., eBay or Amazon)
1474
1506
  * @maxLength 100
@@ -1498,10 +1530,12 @@ export declare enum ChannelType {
1498
1530
  TIKTOK = "TIKTOK",
1499
1531
  FAIRE_COM = "FAIRE_COM"
1500
1532
  }
1533
+ /** @enumType */
1534
+ export type ChannelTypeWithLiterals = ChannelType | 'UNSPECIFIED' | 'WEB' | 'POS' | 'EBAY' | 'AMAZON' | 'OTHER_PLATFORM' | 'WIX_APP_STORE' | 'WIX_INVOICES' | 'BACKOFFICE_MERCHANT' | 'WISH' | 'CLASS_PASS' | 'GLOBAL_E' | 'FACEBOOK' | 'ETSY' | 'TIKTOK' | 'FAIRE_COM';
1501
1535
  export interface EnteredBy {
1502
1536
  /** @format GUID */
1503
1537
  id?: string;
1504
- identityType?: EnteredByIdentityType;
1538
+ identityType?: EnteredByIdentityTypeWithLiterals;
1505
1539
  }
1506
1540
  export declare enum EnteredByIdentityType {
1507
1541
  USER = "USER",
@@ -1509,6 +1543,8 @@ export declare enum EnteredByIdentityType {
1509
1543
  CONTACT = "CONTACT",
1510
1544
  APP = "APP"
1511
1545
  }
1546
+ /** @enumType */
1547
+ export type EnteredByIdentityTypeWithLiterals = EnteredByIdentityType | 'USER' | 'MEMBER' | 'CONTACT' | 'APP';
1512
1548
  export interface SubscriptionInfo {
1513
1549
  /**
1514
1550
  * Subscription ID.
@@ -1527,7 +1563,7 @@ export interface SubscriptionInfo {
1527
1563
  }
1528
1564
  export interface SubscriptionSettings {
1529
1565
  /** Frequency of recurring payment. */
1530
- frequency?: SubscriptionFrequency;
1566
+ frequency?: SubscriptionFrequencyWithLiterals;
1531
1567
  /** Whether subscription is renewed automatically at the end of each period. */
1532
1568
  autoRenewal?: boolean;
1533
1569
  /**
@@ -1545,6 +1581,8 @@ export declare enum SubscriptionFrequency {
1545
1581
  MONTH = "MONTH",
1546
1582
  YEAR = "YEAR"
1547
1583
  }
1584
+ /** @enumType */
1585
+ export type SubscriptionFrequencyWithLiterals = SubscriptionFrequency | 'UNDEFINED' | 'DAY' | 'WEEK' | 'MONTH' | 'YEAR';
1548
1586
  export interface SubscriptionOptionInfo {
1549
1587
  /**
1550
1588
  * Subscription option title.
@@ -1651,7 +1689,7 @@ export interface RefundCreated {
1651
1689
  }
1652
1690
  export interface RestockInfo {
1653
1691
  /** Restock type. */
1654
- type?: RestockType;
1692
+ type?: RestockTypeWithLiterals;
1655
1693
  /**
1656
1694
  * Restocked line items and quantities. Only relevant for `{"type": "SOME_ITEMS"}`.
1657
1695
  * @maxSize 300
@@ -1663,6 +1701,8 @@ export declare enum RestockType {
1663
1701
  ALL_ITEMS = "ALL_ITEMS",
1664
1702
  SOME_ITEMS = "SOME_ITEMS"
1665
1703
  }
1704
+ /** @enumType */
1705
+ export type RestockTypeWithLiterals = RestockType | 'NO_ITEMS' | 'ALL_ITEMS' | 'SOME_ITEMS';
1666
1706
  export interface RestockItem {
1667
1707
  /**
1668
1708
  * ID of the line item being restocked.
@@ -1776,7 +1816,7 @@ export interface UpdatePaymentStatusRequest {
1776
1816
  */
1777
1817
  paymentId: string;
1778
1818
  /** Payment status. */
1779
- status?: TransactionStatus;
1819
+ status?: TransactionStatusWithLiterals;
1780
1820
  }
1781
1821
  export interface UpdatePaymentStatusResponse {
1782
1822
  /** Order ID and its associated transactions after update. */
@@ -1792,7 +1832,7 @@ export interface BulkUpdatePaymentStatusesRequest {
1792
1832
  /** Whether to return the full payment entity (`results.item`) in the response. */
1793
1833
  returnFullEntity?: boolean;
1794
1834
  /** Payment status. */
1795
- status?: TransactionStatus;
1835
+ status?: TransactionStatusWithLiterals;
1796
1836
  }
1797
1837
  export interface PaymentAndOrderId {
1798
1838
  /**
@@ -1895,7 +1935,7 @@ export interface Sorting {
1895
1935
  */
1896
1936
  fieldName?: string;
1897
1937
  /** Sort order. */
1898
- order?: SortOrder;
1938
+ order?: SortOrderWithLiterals;
1899
1939
  }
1900
1940
  export declare enum SortOrder {
1901
1941
  /** Ascending order. */
@@ -1903,6 +1943,8 @@ export declare enum SortOrder {
1903
1943
  /** Descending order. */
1904
1944
  DESC = "DESC"
1905
1945
  }
1946
+ /** @enumType */
1947
+ export type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
1906
1948
  export interface CursorPaging {
1907
1949
  /**
1908
1950
  * Maximum number of items to return in the results.
@@ -2077,22 +2119,22 @@ export interface GetRefundabilityStatusResponse {
2077
2119
  }
2078
2120
  export interface Refundability extends RefundabilityAdditionalRefundabilityInfoOneOf {
2079
2121
  /** Reason why payment is not refundable. */
2080
- nonRefundableReason?: NonRefundableReason;
2122
+ nonRefundableReason?: NonRefundableReasonWithLiterals;
2081
2123
  /** Reason why payment is only refundable manually. */
2082
- manuallyRefundableReason?: ManuallyRefundableReason;
2124
+ manuallyRefundableReason?: ManuallyRefundableReasonWithLiterals;
2083
2125
  /** Payment ID. */
2084
2126
  paymentId?: string;
2085
2127
  /** Payment refundability status. */
2086
- refundabilityStatus?: RefundableStatus;
2128
+ refundabilityStatus?: RefundableStatusWithLiterals;
2087
2129
  /** Link to payment provider dashboard. */
2088
2130
  providerLink?: string | null;
2089
2131
  }
2090
2132
  /** @oneof */
2091
2133
  export interface RefundabilityAdditionalRefundabilityInfoOneOf {
2092
2134
  /** Reason why payment is not refundable. */
2093
- nonRefundableReason?: NonRefundableReason;
2135
+ nonRefundableReason?: NonRefundableReasonWithLiterals;
2094
2136
  /** Reason why payment is only refundable manually. */
2095
- manuallyRefundableReason?: ManuallyRefundableReason;
2137
+ manuallyRefundableReason?: ManuallyRefundableReasonWithLiterals;
2096
2138
  }
2097
2139
  export declare enum RefundableStatus {
2098
2140
  /** Not refundable. */
@@ -2102,6 +2144,8 @@ export declare enum RefundableStatus {
2102
2144
  /** Refundable. */
2103
2145
  REFUNDABLE = "REFUNDABLE"
2104
2146
  }
2147
+ /** @enumType */
2148
+ export type RefundableStatusWithLiterals = RefundableStatus | 'NOT_REFUNDABLE' | 'MANUAL' | 'REFUNDABLE';
2105
2149
  export declare enum NonRefundableReason {
2106
2150
  /** No reason. */
2107
2151
  NONE = "NONE",
@@ -2128,6 +2172,8 @@ export declare enum NonRefundableReason {
2128
2172
  /** Action forbidden. */
2129
2173
  FORBIDDEN = "FORBIDDEN"
2130
2174
  }
2175
+ /** @enumType */
2176
+ export type NonRefundableReasonWithLiterals = NonRefundableReason | 'NONE' | 'ALREADY_REFUNDED' | 'PROVIDER_IS_DOWN' | 'INTERNAL_ERROR' | 'NOT_PAID' | 'ACCESS_DENIED' | 'ZERO_PRICE' | 'DISABLED_BY_PROVIDER' | 'PARTIALLY_PAID' | 'DEPOSIT_ONLINE_ITEM' | 'PENDING_REFUND' | 'FORBIDDEN';
2131
2177
  export declare enum ManuallyRefundableReason {
2132
2178
  /** Payment expired. */
2133
2179
  EXPIRED = "EXPIRED",
@@ -2140,6 +2186,8 @@ export declare enum ManuallyRefundableReason {
2140
2186
  /** Refund requires interaction with card reader. */
2141
2187
  REQUIRES_CARD_READER = "REQUIRES_CARD_READER"
2142
2188
  }
2189
+ /** @enumType */
2190
+ export type ManuallyRefundableReasonWithLiterals = ManuallyRefundableReason | 'EXPIRED' | 'NOT_SUPPORTED' | 'NOT_FOUND' | 'OFFLINE' | 'REQUIRES_CARD_READER';
2143
2191
  export interface ListInvoicesForSingleOrderRequest {
2144
2192
  /**
2145
2193
  * Order ID.
@@ -2242,25 +2290,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
2242
2290
  updatedEvent?: EntityUpdatedEvent;
2243
2291
  deletedEvent?: EntityDeletedEvent;
2244
2292
  actionEvent?: ActionEvent;
2245
- /**
2246
- * Unique event ID.
2247
- * Allows clients to ignore duplicate webhooks.
2248
- */
2293
+ /** Event ID. With this ID you can easily spot duplicated events and ignore them. */
2249
2294
  id?: string;
2250
2295
  /**
2251
- * Assumes actions are also always typed to an entity_type
2252
- * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
2296
+ * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
2297
+ * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
2253
2298
  */
2254
2299
  entityFqdn?: string;
2255
2300
  /**
2256
- * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
2257
- * This is although the created/updated/deleted notion is duplication of the oneof types
2258
- * Example: created/updated/deleted/started/completed/email_opened
2301
+ * Event action name, placed at the top level to make it easier for users to dispatch messages.
2302
+ * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
2259
2303
  */
2260
2304
  slug?: string;
2261
2305
  /** ID of the entity associated with the event. */
2262
2306
  entityId?: string;
2263
- /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
2307
+ /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
2264
2308
  eventTime?: Date | null;
2265
2309
  /**
2266
2310
  * Whether the event was triggered as a result of a privacy regulation application
@@ -2270,12 +2314,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
2270
2314
  /** If present, indicates the action that triggered the event. */
2271
2315
  originatedFrom?: string | null;
2272
2316
  /**
2273
- * A sequence number defining the order of updates to the underlying entity.
2274
- * For example, given that some entity was updated at 16:00 and than again at 16:01,
2275
- * it is guaranteed that the sequence number of the second update is strictly higher than the first.
2276
- * As the consumer, you can use this value to ensure that you handle messages in the correct order.
2277
- * To do so, you will need to persist this number on your end, and compare the sequence number from the
2278
- * message against the one you have stored. Given that the stored number is higher, you should ignore the message.
2317
+ * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
2318
+ * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
2279
2319
  */
2280
2320
  entityEventSequence?: string | null;
2281
2321
  }
@@ -2303,7 +2343,7 @@ export interface EntityUpdatedEvent {
2303
2343
  currentEntityAsJson?: string;
2304
2344
  }
2305
2345
  export interface EntityDeletedEvent {
2306
- /** Entity that was deleted */
2346
+ /** Entity that was deleted. */
2307
2347
  deletedEntityAsJson?: string | null;
2308
2348
  }
2309
2349
  export interface ActionEvent {
@@ -2347,7 +2387,7 @@ export interface IdentificationData extends IdentificationDataIdOneOf {
2347
2387
  */
2348
2388
  appId?: string;
2349
2389
  /** @readonly */
2350
- identityType?: WebhookIdentityType;
2390
+ identityType?: WebhookIdentityTypeWithLiterals;
2351
2391
  }
2352
2392
  /** @oneof */
2353
2393
  export interface IdentificationDataIdOneOf {
@@ -2379,3 +2419,5 @@ export declare enum WebhookIdentityType {
2379
2419
  WIX_USER = "WIX_USER",
2380
2420
  APP = "APP"
2381
2421
  }
2422
+ /** @enumType */
2423
+ export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
@@ -1 +1 @@
1
- {"version":3,"file":"ecom-v1-order-transactions-order-transactions.types.js","sourceRoot":"","sources":["../../../src/ecom-v1-order-transactions-order-transactions.types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ecom-v1-order-transactions-order-transactions.types.js","sourceRoot":"","sources":["../../../src/ecom-v1-order-transactions-order-transactions.types.ts"],"names":[],"mappings":"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"}