@wix/auto_sdk_ecom_orders 1.0.120 → 1.0.121
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/build/cjs/{ecom-v1-order-orders.universal-BP7eX-NQ.d.ts → ecom-v1-order-orders.universal-CXrp4ykp.d.ts} +137 -137
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +45 -45
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +45 -45
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +137 -137
- package/build/cjs/meta.js +45 -45
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-BP7eX-NQ.d.mts → ecom-v1-order-orders.universal-CXrp4ykp.d.mts} +137 -137
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +45 -45
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +45 -45
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +137 -137
- package/build/es/meta.mjs +45 -45
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-aWzdipsT.d.ts → ecom-v1-order-orders.universal-0Xd7rK4f.d.ts} +137 -137
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +45 -45
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +45 -45
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +137 -137
- package/build/internal/cjs/meta.js +45 -45
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-aWzdipsT.d.mts → ecom-v1-order-orders.universal-0Xd7rK4f.d.mts} +137 -137
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +45 -45
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +45 -45
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +137 -137
- package/build/internal/es/meta.mjs +45 -45
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2329,6 +2329,142 @@ declare enum ActivityType {
|
|
|
2329
2329
|
}
|
|
2330
2330
|
/** @enumType */
|
|
2331
2331
|
type ActivityTypeWithLiterals = ActivityType | 'ORDER_REFUNDED' | 'ORDER_PLACED' | 'ORDER_PAID' | 'ORDER_FULFILLED' | 'ORDER_NOT_FULFILLED' | 'ORDER_CANCELED' | 'DOWNLOAD_LINK_SENT' | 'TRACKING_NUMBER_ADDED' | 'TRACKING_NUMBER_EDITED' | 'TRACKING_LINK_ADDED' | 'SHIPPING_CONFIRMATION_EMAIL_SENT' | 'INVOICE_ADDED' | 'INVOICE_REMOVED' | 'INVOICE_SENT' | 'FULFILLER_EMAIL_SENT' | 'SHIPPING_ADDRESS_EDITED' | 'EMAIL_EDITED' | 'PICKUP_READY_EMAIL_SENT' | 'CUSTOM_ACTIVITY' | 'MERCHANT_COMMENT' | 'ORDER_CREATED_FROM_EXCHANGE' | 'NEW_EXCHANGE_ORDER_CREATED' | 'ORDER_PARTIALLY_PAID' | 'DRAFT_ORDER_CHANGES_APPLIED' | 'SAVED_PAYMENT_METHOD' | 'AUTHORIZED_PAYMENT_CREATED' | 'AUTHORIZED_PAYMENT_CAPTURED' | 'AUTHORIZED_PAYMENT_VOIDED' | 'REFUND_INITIATED' | 'PAYMENT_REFUNDED' | 'PAYMENT_REFUND_FAILED' | 'REFUNDED_AS_STORE_CREDIT' | 'PAYMENT_PENDING' | 'PAYMENT_CANCELED' | 'PAYMENT_DECLINED' | 'ORDER_PENDING' | 'ORDER_REJECTED' | 'RECEIPT_CREATED' | 'RECEIPT_SENT' | 'CHARGEBACK_CREATED' | 'CHARGEBACK_REVERSED';
|
|
2332
|
+
declare enum OrderActivityTypeEnumActivityType {
|
|
2333
|
+
/** Default value. This value is unused. */
|
|
2334
|
+
UNKNOWN_ACTIVITY_TYPE = "UNKNOWN_ACTIVITY_TYPE",
|
|
2335
|
+
/** New order was created and placed. */
|
|
2336
|
+
ORDER_PLACED = "ORDER_PLACED",
|
|
2337
|
+
/** Order payment was completed and confirmed. */
|
|
2338
|
+
ORDER_PAID = "ORDER_PAID",
|
|
2339
|
+
/** Order items were marked as fulfilled (shipped or ready for pickup). */
|
|
2340
|
+
ORDER_FULFILLED = "ORDER_FULFILLED",
|
|
2341
|
+
/** Order fulfillment status was changed to not fulfilled. */
|
|
2342
|
+
ORDER_NOT_FULFILLED = "ORDER_NOT_FULFILLED",
|
|
2343
|
+
/** Order was canceled by merchant or customer. */
|
|
2344
|
+
ORDER_CANCELED = "ORDER_CANCELED",
|
|
2345
|
+
/** Download link was sent for digital items in the order. */
|
|
2346
|
+
DOWNLOAD_LINK_SENT = "DOWNLOAD_LINK_SENT",
|
|
2347
|
+
/** Shipping tracking number was added to the order. */
|
|
2348
|
+
TRACKING_NUMBER_ADDED = "TRACKING_NUMBER_ADDED",
|
|
2349
|
+
/** Existing shipping tracking number was modified. */
|
|
2350
|
+
TRACKING_NUMBER_EDITED = "TRACKING_NUMBER_EDITED",
|
|
2351
|
+
/** Tracking link for shipment was added to the order. */
|
|
2352
|
+
TRACKING_LINK_ADDED = "TRACKING_LINK_ADDED",
|
|
2353
|
+
/** Email confirming shipment was sent to the customer. */
|
|
2354
|
+
SHIPPING_CONFIRMATION_EMAIL_SENT = "SHIPPING_CONFIRMATION_EMAIL_SENT",
|
|
2355
|
+
/** Invoice document was added to the order. */
|
|
2356
|
+
INVOICE_ADDED = "INVOICE_ADDED",
|
|
2357
|
+
/** Invoice was removed from the order. */
|
|
2358
|
+
INVOICE_REMOVED = "INVOICE_REMOVED",
|
|
2359
|
+
/** Invoice was sent to the customer via email. */
|
|
2360
|
+
INVOICE_SENT = "INVOICE_SENT",
|
|
2361
|
+
/** Notification email was sent to the order fulfiller. */
|
|
2362
|
+
FULFILLER_EMAIL_SENT = "FULFILLER_EMAIL_SENT",
|
|
2363
|
+
/** Order's shipping address was modified. */
|
|
2364
|
+
SHIPPING_ADDRESS_EDITED = "SHIPPING_ADDRESS_EDITED",
|
|
2365
|
+
/** Order's contact email address was changed. */
|
|
2366
|
+
EMAIL_EDITED = "EMAIL_EDITED",
|
|
2367
|
+
/** Email notification for pickup readiness was sent. */
|
|
2368
|
+
PICKUP_READY_EMAIL_SENT = "PICKUP_READY_EMAIL_SENT",
|
|
2369
|
+
/** Custom activity created by a third-party application. */
|
|
2370
|
+
CUSTOM_ACTIVITY = "CUSTOM_ACTIVITY",
|
|
2371
|
+
/** Comment added to the order by a merchant. */
|
|
2372
|
+
MERCHANT_COMMENT = "MERCHANT_COMMENT",
|
|
2373
|
+
/** Order was created as a result of an exchange. */
|
|
2374
|
+
ORDER_CREATED_FROM_EXCHANGE = "ORDER_CREATED_FROM_EXCHANGE",
|
|
2375
|
+
/** New exchange order was created from this order. */
|
|
2376
|
+
NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
|
|
2377
|
+
/** Partial payment was received for the order. */
|
|
2378
|
+
ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
|
|
2379
|
+
/** Changes were applied to a draft order. */
|
|
2380
|
+
DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
|
|
2381
|
+
/** Payment method was saved for future use. */
|
|
2382
|
+
SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
|
|
2383
|
+
/**
|
|
2384
|
+
* Payment was authorized but not yet captured.
|
|
2385
|
+
* @documentationMaturity preview
|
|
2386
|
+
*/
|
|
2387
|
+
AUTHORIZED_PAYMENT_CREATED = "AUTHORIZED_PAYMENT_CREATED",
|
|
2388
|
+
/**
|
|
2389
|
+
* Previously authorized payment was captured.
|
|
2390
|
+
* @documentationMaturity preview
|
|
2391
|
+
*/
|
|
2392
|
+
AUTHORIZED_PAYMENT_CAPTURED = "AUTHORIZED_PAYMENT_CAPTURED",
|
|
2393
|
+
/**
|
|
2394
|
+
* Previously authorized payment was voided.
|
|
2395
|
+
* @documentationMaturity preview
|
|
2396
|
+
*/
|
|
2397
|
+
AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
|
|
2398
|
+
/**
|
|
2399
|
+
* Refund process was initiated.
|
|
2400
|
+
* @documentationMaturity preview
|
|
2401
|
+
*/
|
|
2402
|
+
REFUND_INITIATED = "REFUND_INITIATED",
|
|
2403
|
+
/**
|
|
2404
|
+
* Payment was successfully refunded.
|
|
2405
|
+
* @documentationMaturity preview
|
|
2406
|
+
*/
|
|
2407
|
+
PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
|
|
2408
|
+
/**
|
|
2409
|
+
* Attempt to refund payment failed.
|
|
2410
|
+
* @documentationMaturity preview
|
|
2411
|
+
*/
|
|
2412
|
+
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
|
|
2413
|
+
/**
|
|
2414
|
+
* Refund was issued as store credit.
|
|
2415
|
+
* @documentationMaturity preview
|
|
2416
|
+
*/
|
|
2417
|
+
REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT",
|
|
2418
|
+
/**
|
|
2419
|
+
* Payment is awaiting processing or confirmation.
|
|
2420
|
+
* @documentationMaturity preview
|
|
2421
|
+
*/
|
|
2422
|
+
PAYMENT_PENDING = "PAYMENT_PENDING",
|
|
2423
|
+
/**
|
|
2424
|
+
* Payment was canceled before completion.
|
|
2425
|
+
* @documentationMaturity preview
|
|
2426
|
+
*/
|
|
2427
|
+
PAYMENT_CANCELED = "PAYMENT_CANCELED",
|
|
2428
|
+
/**
|
|
2429
|
+
* Payment was declined by payment provider.
|
|
2430
|
+
* @documentationMaturity preview
|
|
2431
|
+
*/
|
|
2432
|
+
PAYMENT_DECLINED = "PAYMENT_DECLINED",
|
|
2433
|
+
/**
|
|
2434
|
+
* Order is awaiting approval or processing.
|
|
2435
|
+
* @documentationMaturity preview
|
|
2436
|
+
*/
|
|
2437
|
+
ORDER_PENDING = "ORDER_PENDING",
|
|
2438
|
+
/**
|
|
2439
|
+
* Order was rejected by merchant.
|
|
2440
|
+
* @documentationMaturity preview
|
|
2441
|
+
*/
|
|
2442
|
+
ORDER_REJECTED = "ORDER_REJECTED",
|
|
2443
|
+
/**
|
|
2444
|
+
* Receipt was generated for a payment.
|
|
2445
|
+
* @documentationMaturity preview
|
|
2446
|
+
*/
|
|
2447
|
+
RECEIPT_CREATED = "RECEIPT_CREATED",
|
|
2448
|
+
/**
|
|
2449
|
+
* Receipt was sent to the customer.
|
|
2450
|
+
* @documentationMaturity preview
|
|
2451
|
+
*/
|
|
2452
|
+
RECEIPT_SENT = "RECEIPT_SENT",
|
|
2453
|
+
/**
|
|
2454
|
+
* Chargeback was created for one of the order's payments.
|
|
2455
|
+
* @documentationMaturity preview
|
|
2456
|
+
*/
|
|
2457
|
+
CHARGEBACK_CREATED = "CHARGEBACK_CREATED",
|
|
2458
|
+
/**
|
|
2459
|
+
* Chargeback was resolved in merchant's favor.
|
|
2460
|
+
* @documentationMaturity preview
|
|
2461
|
+
*/
|
|
2462
|
+
CHARGEBACK_REVERSED = "CHARGEBACK_REVERSED",
|
|
2463
|
+
/** Order was refunded, either partially or fully. */
|
|
2464
|
+
ORDER_REFUNDED = "ORDER_REFUNDED"
|
|
2465
|
+
}
|
|
2466
|
+
/** @enumType */
|
|
2467
|
+
type OrderActivityTypeEnumActivityTypeWithLiterals = OrderActivityTypeEnumActivityType | 'UNKNOWN_ACTIVITY_TYPE' | 'ORDER_PLACED' | 'ORDER_PAID' | 'ORDER_FULFILLED' | 'ORDER_NOT_FULFILLED' | 'ORDER_CANCELED' | 'DOWNLOAD_LINK_SENT' | 'TRACKING_NUMBER_ADDED' | 'TRACKING_NUMBER_EDITED' | 'TRACKING_LINK_ADDED' | 'SHIPPING_CONFIRMATION_EMAIL_SENT' | 'INVOICE_ADDED' | 'INVOICE_REMOVED' | 'INVOICE_SENT' | 'FULFILLER_EMAIL_SENT' | 'SHIPPING_ADDRESS_EDITED' | 'EMAIL_EDITED' | 'PICKUP_READY_EMAIL_SENT' | 'CUSTOM_ACTIVITY' | 'MERCHANT_COMMENT' | 'ORDER_CREATED_FROM_EXCHANGE' | 'NEW_EXCHANGE_ORDER_CREATED' | 'ORDER_PARTIALLY_PAID' | 'DRAFT_ORDER_CHANGES_APPLIED' | 'SAVED_PAYMENT_METHOD' | 'AUTHORIZED_PAYMENT_CREATED' | 'AUTHORIZED_PAYMENT_CAPTURED' | 'AUTHORIZED_PAYMENT_VOIDED' | 'REFUND_INITIATED' | 'PAYMENT_REFUNDED' | 'PAYMENT_REFUND_FAILED' | 'REFUNDED_AS_STORE_CREDIT' | 'PAYMENT_PENDING' | 'PAYMENT_CANCELED' | 'PAYMENT_DECLINED' | 'ORDER_PENDING' | 'ORDER_REJECTED' | 'RECEIPT_CREATED' | 'RECEIPT_SENT' | 'CHARGEBACK_CREATED' | 'CHARGEBACK_REVERSED' | 'ORDER_REFUNDED';
|
|
2332
2468
|
declare enum AttributionSource {
|
|
2333
2469
|
UNSPECIFIED = "UNSPECIFIED",
|
|
2334
2470
|
FACEBOOK_ADS = "FACEBOOK_ADS"
|
|
@@ -4431,142 +4567,6 @@ interface TriggerReindexOrderRequest {
|
|
|
4431
4567
|
*/
|
|
4432
4568
|
orderId?: string;
|
|
4433
4569
|
}
|
|
4434
|
-
declare enum OrderActivityTypeEnumActivityType {
|
|
4435
|
-
/** Default value. This value is unused. */
|
|
4436
|
-
UNKNOWN_ACTIVITY_TYPE = "UNKNOWN_ACTIVITY_TYPE",
|
|
4437
|
-
/** New order was created and placed. */
|
|
4438
|
-
ORDER_PLACED = "ORDER_PLACED",
|
|
4439
|
-
/** Order payment was completed and confirmed. */
|
|
4440
|
-
ORDER_PAID = "ORDER_PAID",
|
|
4441
|
-
/** Order items were marked as fulfilled (shipped or ready for pickup). */
|
|
4442
|
-
ORDER_FULFILLED = "ORDER_FULFILLED",
|
|
4443
|
-
/** Order fulfillment status was changed to not fulfilled. */
|
|
4444
|
-
ORDER_NOT_FULFILLED = "ORDER_NOT_FULFILLED",
|
|
4445
|
-
/** Order was canceled by merchant or customer. */
|
|
4446
|
-
ORDER_CANCELED = "ORDER_CANCELED",
|
|
4447
|
-
/** Download link was sent for digital items in the order. */
|
|
4448
|
-
DOWNLOAD_LINK_SENT = "DOWNLOAD_LINK_SENT",
|
|
4449
|
-
/** Shipping tracking number was added to the order. */
|
|
4450
|
-
TRACKING_NUMBER_ADDED = "TRACKING_NUMBER_ADDED",
|
|
4451
|
-
/** Existing shipping tracking number was modified. */
|
|
4452
|
-
TRACKING_NUMBER_EDITED = "TRACKING_NUMBER_EDITED",
|
|
4453
|
-
/** Tracking link for shipment was added to the order. */
|
|
4454
|
-
TRACKING_LINK_ADDED = "TRACKING_LINK_ADDED",
|
|
4455
|
-
/** Email confirming shipment was sent to the customer. */
|
|
4456
|
-
SHIPPING_CONFIRMATION_EMAIL_SENT = "SHIPPING_CONFIRMATION_EMAIL_SENT",
|
|
4457
|
-
/** Invoice document was added to the order. */
|
|
4458
|
-
INVOICE_ADDED = "INVOICE_ADDED",
|
|
4459
|
-
/** Invoice was removed from the order. */
|
|
4460
|
-
INVOICE_REMOVED = "INVOICE_REMOVED",
|
|
4461
|
-
/** Invoice was sent to the customer via email. */
|
|
4462
|
-
INVOICE_SENT = "INVOICE_SENT",
|
|
4463
|
-
/** Notification email was sent to the order fulfiller. */
|
|
4464
|
-
FULFILLER_EMAIL_SENT = "FULFILLER_EMAIL_SENT",
|
|
4465
|
-
/** Order's shipping address was modified. */
|
|
4466
|
-
SHIPPING_ADDRESS_EDITED = "SHIPPING_ADDRESS_EDITED",
|
|
4467
|
-
/** Order's contact email address was changed. */
|
|
4468
|
-
EMAIL_EDITED = "EMAIL_EDITED",
|
|
4469
|
-
/** Email notification for pickup readiness was sent. */
|
|
4470
|
-
PICKUP_READY_EMAIL_SENT = "PICKUP_READY_EMAIL_SENT",
|
|
4471
|
-
/** Custom activity created by a third-party application. */
|
|
4472
|
-
CUSTOM_ACTIVITY = "CUSTOM_ACTIVITY",
|
|
4473
|
-
/** Comment added to the order by a merchant. */
|
|
4474
|
-
MERCHANT_COMMENT = "MERCHANT_COMMENT",
|
|
4475
|
-
/** Order was created as a result of an exchange. */
|
|
4476
|
-
ORDER_CREATED_FROM_EXCHANGE = "ORDER_CREATED_FROM_EXCHANGE",
|
|
4477
|
-
/** New exchange order was created from this order. */
|
|
4478
|
-
NEW_EXCHANGE_ORDER_CREATED = "NEW_EXCHANGE_ORDER_CREATED",
|
|
4479
|
-
/** Partial payment was received for the order. */
|
|
4480
|
-
ORDER_PARTIALLY_PAID = "ORDER_PARTIALLY_PAID",
|
|
4481
|
-
/** Changes were applied to a draft order. */
|
|
4482
|
-
DRAFT_ORDER_CHANGES_APPLIED = "DRAFT_ORDER_CHANGES_APPLIED",
|
|
4483
|
-
/** Payment method was saved for future use. */
|
|
4484
|
-
SAVED_PAYMENT_METHOD = "SAVED_PAYMENT_METHOD",
|
|
4485
|
-
/**
|
|
4486
|
-
* Payment was authorized but not yet captured.
|
|
4487
|
-
* @documentationMaturity preview
|
|
4488
|
-
*/
|
|
4489
|
-
AUTHORIZED_PAYMENT_CREATED = "AUTHORIZED_PAYMENT_CREATED",
|
|
4490
|
-
/**
|
|
4491
|
-
* Previously authorized payment was captured.
|
|
4492
|
-
* @documentationMaturity preview
|
|
4493
|
-
*/
|
|
4494
|
-
AUTHORIZED_PAYMENT_CAPTURED = "AUTHORIZED_PAYMENT_CAPTURED",
|
|
4495
|
-
/**
|
|
4496
|
-
* Previously authorized payment was voided.
|
|
4497
|
-
* @documentationMaturity preview
|
|
4498
|
-
*/
|
|
4499
|
-
AUTHORIZED_PAYMENT_VOIDED = "AUTHORIZED_PAYMENT_VOIDED",
|
|
4500
|
-
/**
|
|
4501
|
-
* Refund process was initiated.
|
|
4502
|
-
* @documentationMaturity preview
|
|
4503
|
-
*/
|
|
4504
|
-
REFUND_INITIATED = "REFUND_INITIATED",
|
|
4505
|
-
/**
|
|
4506
|
-
* Payment was successfully refunded.
|
|
4507
|
-
* @documentationMaturity preview
|
|
4508
|
-
*/
|
|
4509
|
-
PAYMENT_REFUNDED = "PAYMENT_REFUNDED",
|
|
4510
|
-
/**
|
|
4511
|
-
* Attempt to refund payment failed.
|
|
4512
|
-
* @documentationMaturity preview
|
|
4513
|
-
*/
|
|
4514
|
-
PAYMENT_REFUND_FAILED = "PAYMENT_REFUND_FAILED",
|
|
4515
|
-
/**
|
|
4516
|
-
* Refund was issued as store credit.
|
|
4517
|
-
* @documentationMaturity preview
|
|
4518
|
-
*/
|
|
4519
|
-
REFUNDED_AS_STORE_CREDIT = "REFUNDED_AS_STORE_CREDIT",
|
|
4520
|
-
/**
|
|
4521
|
-
* Payment is awaiting processing or confirmation.
|
|
4522
|
-
* @documentationMaturity preview
|
|
4523
|
-
*/
|
|
4524
|
-
PAYMENT_PENDING = "PAYMENT_PENDING",
|
|
4525
|
-
/**
|
|
4526
|
-
* Payment was canceled before completion.
|
|
4527
|
-
* @documentationMaturity preview
|
|
4528
|
-
*/
|
|
4529
|
-
PAYMENT_CANCELED = "PAYMENT_CANCELED",
|
|
4530
|
-
/**
|
|
4531
|
-
* Payment was declined by payment provider.
|
|
4532
|
-
* @documentationMaturity preview
|
|
4533
|
-
*/
|
|
4534
|
-
PAYMENT_DECLINED = "PAYMENT_DECLINED",
|
|
4535
|
-
/**
|
|
4536
|
-
* Order is awaiting approval or processing.
|
|
4537
|
-
* @documentationMaturity preview
|
|
4538
|
-
*/
|
|
4539
|
-
ORDER_PENDING = "ORDER_PENDING",
|
|
4540
|
-
/**
|
|
4541
|
-
* Order was rejected by merchant.
|
|
4542
|
-
* @documentationMaturity preview
|
|
4543
|
-
*/
|
|
4544
|
-
ORDER_REJECTED = "ORDER_REJECTED",
|
|
4545
|
-
/**
|
|
4546
|
-
* Receipt was generated for a payment.
|
|
4547
|
-
* @documentationMaturity preview
|
|
4548
|
-
*/
|
|
4549
|
-
RECEIPT_CREATED = "RECEIPT_CREATED",
|
|
4550
|
-
/**
|
|
4551
|
-
* Receipt was sent to the customer.
|
|
4552
|
-
* @documentationMaturity preview
|
|
4553
|
-
*/
|
|
4554
|
-
RECEIPT_SENT = "RECEIPT_SENT",
|
|
4555
|
-
/**
|
|
4556
|
-
* Chargeback was created for one of the order's payments.
|
|
4557
|
-
* @documentationMaturity preview
|
|
4558
|
-
*/
|
|
4559
|
-
CHARGEBACK_CREATED = "CHARGEBACK_CREATED",
|
|
4560
|
-
/**
|
|
4561
|
-
* Chargeback was resolved in merchant's favor.
|
|
4562
|
-
* @documentationMaturity preview
|
|
4563
|
-
*/
|
|
4564
|
-
CHARGEBACK_REVERSED = "CHARGEBACK_REVERSED",
|
|
4565
|
-
/** Order was refunded, either partially or fully. */
|
|
4566
|
-
ORDER_REFUNDED = "ORDER_REFUNDED"
|
|
4567
|
-
}
|
|
4568
|
-
/** @enumType */
|
|
4569
|
-
type OrderActivityTypeEnumActivityTypeWithLiterals = OrderActivityTypeEnumActivityType | 'UNKNOWN_ACTIVITY_TYPE' | 'ORDER_PLACED' | 'ORDER_PAID' | 'ORDER_FULFILLED' | 'ORDER_NOT_FULFILLED' | 'ORDER_CANCELED' | 'DOWNLOAD_LINK_SENT' | 'TRACKING_NUMBER_ADDED' | 'TRACKING_NUMBER_EDITED' | 'TRACKING_LINK_ADDED' | 'SHIPPING_CONFIRMATION_EMAIL_SENT' | 'INVOICE_ADDED' | 'INVOICE_REMOVED' | 'INVOICE_SENT' | 'FULFILLER_EMAIL_SENT' | 'SHIPPING_ADDRESS_EDITED' | 'EMAIL_EDITED' | 'PICKUP_READY_EMAIL_SENT' | 'CUSTOM_ACTIVITY' | 'MERCHANT_COMMENT' | 'ORDER_CREATED_FROM_EXCHANGE' | 'NEW_EXCHANGE_ORDER_CREATED' | 'ORDER_PARTIALLY_PAID' | 'DRAFT_ORDER_CHANGES_APPLIED' | 'SAVED_PAYMENT_METHOD' | 'AUTHORIZED_PAYMENT_CREATED' | 'AUTHORIZED_PAYMENT_CAPTURED' | 'AUTHORIZED_PAYMENT_VOIDED' | 'REFUND_INITIATED' | 'PAYMENT_REFUNDED' | 'PAYMENT_REFUND_FAILED' | 'REFUNDED_AS_STORE_CREDIT' | 'PAYMENT_PENDING' | 'PAYMENT_CANCELED' | 'PAYMENT_DECLINED' | 'ORDER_PENDING' | 'ORDER_REJECTED' | 'RECEIPT_CREATED' | 'RECEIPT_SENT' | 'CHARGEBACK_CREATED' | 'CHARGEBACK_REVERSED' | 'ORDER_REFUNDED';
|
|
4570
4570
|
interface DiffmatokyPayload {
|
|
4571
4571
|
left?: string;
|
|
4572
4572
|
right?: string;
|
|
@@ -7665,4 +7665,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
7665
7665
|
unassignTags?: Tags;
|
|
7666
7666
|
}
|
|
7667
7667
|
|
|
7668
|
-
export { ScheduledAction as $, AdjustmentType as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PickupMethod as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, OrderStatus as H, ItemTypePreset as I, JurisdictionType as J, DiscountType as K, DiscountReason as L, type MaskedOrder as M, LineItemQuantityChangeType as N, type Order as O, type Price as P, ActivityType as Q, AttributionSource as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ChannelType as X, OrderActionType as Y, WebhookIdentityType as Z, PreviewEmailType as _, type PreparePaymentCollectionOptions as a, type AddressWithContact as a$, DurationUnit as a0, PaymentCollectabilityStatus as a1, RefundableStatus as a2, NonRefundableReason as a3, ManuallyRefundableReason as a4, RestockType as a5, TransactionStatus as a6, AuthorizationCaptureStatus as a7, AuthorizationVoidStatus as a8, Reason as a9, type FocalPoint as aA, type PhysicalProperties as aB, type ItemType as aC, type ItemTypeItemTypeDataOneOf as aD, type ItemTaxFullDetails as aE, type LineItemTaxInfo as aF, type LineItemTaxBreakdown as aG, type DigitalFile as aH, type SubscriptionInfo as aI, type SubscriptionTitle as aJ, type SubscriptionDescription as aK, type SubscriptionSettings as aL, type FreeTrialPeriod as aM, type BillingAdjustment as aN, type BillingAdjustmentPriceSummary as aO, type PriceDescription as aP, type LocationAndQuantity as aQ, type TaxableAddress as aR, type TaxableAddressTaxableAddressDataOneOf as aS, type ExtendedFields as aT, type ModifierGroup as aU, type TranslatableString as aV, type ItemModifier as aW, type BuyerInfo as aX, type BuyerInfoIdOneOf as aY, type CurrencyConversionDetails as aZ, type PriceSummary as a_, ActionType as aa, ChargebackStatus as ab, MembershipPaymentStatus as ac, RefundStatus as ad, VersioningMode as ae, OrderActivityTypeEnumActivityType as af, SortOrder as ag, OrderApprovalStrategy as ah, DeltaPaymentOptionType as ai, InventoryAction as aj, Placement as ak, SubdivisionType as al, SourceType as am, CustomFieldGroup as an, ValueType as ao, DepositType as ap, InvoiceStatus as aq, type OrderLineItem as ar, type ProductName as as, type CatalogReference as at, type DescriptionLine as au, type DescriptionLineValueOneOf as av, type DescriptionLineDescriptionLineValueOneOf as aw, type DescriptionLineName as ax, type PlainTextValue as ay, type Color as az, type PreparePaymentCollectionResponse as b, type PaymentPendingPaymentDetailsOneOf as b$, type Address as b0, type StreetAddress as b1, type AddressLocation as b2, type FullAddressContactDetails as b3, type VatId as b4, type V1ShippingInformation as b5, type DeliveryLogistics as b6, type DeliveryLogisticsAddressOneOf as b7, type PickupDetails as b8, type PickupAddress as b9, type LineItemQuantityChange as bA, type LineItemPriceChange as bB, type LineItemProductNameChange as bC, type LineItemDescriptionLineChange as bD, type LineItemModifiersChange as bE, type ManagedLineItem as bF, type ManagedDiscount as bG, type TranslatedValue as bH, type LineItemAmount as bI, type ManagedAdditionalFee as bJ, type TotalPriceChange as bK, type ShippingInformationChange as bL, type ShippingInformation as bM, type SavedPaymentMethod as bN, type AuthorizedPaymentCreated as bO, type AuthorizedPaymentCaptured as bP, type AuthorizedPaymentVoided as bQ, type RefundInitiated as bR, type RefundedPayment as bS, type RefundedPaymentKindOneOf as bT, type RegularPaymentRefund as bU, type GiftCardPaymentRefund as bV, type MembershipPaymentRefund as bW, type PaymentRefunded as bX, type PaymentRefundFailed as bY, type RefundedAsStoreCredit as bZ, type PaymentPending as b_, type DeliveryTimeSlot as ba, type ShippingPrice as bb, type ShippingRegion as bc, type TaxSummary as bd, type OrderTaxInfo as be, type OrderTaxBreakdown as bf, type AppliedDiscount as bg, type AppliedDiscountDiscountSourceOneOf as bh, type Coupon as bi, type MerchantDiscount as bj, type MerchantDiscountMerchantDiscountReasonOneOf as bk, type DiscountRule as bl, type DiscountRuleName as bm, type LineItemDiscount as bn, type Activity as bo, type ActivityContentOneOf as bp, type CustomActivity as bq, type MerchantComment as br, type OrderRefunded as bs, type OrderCreatedFromExchange as bt, type NewExchangeOrderCreated as bu, type LineItemExchangeData as bv, type DraftOrderChangesApplied as bw, type OrderChange as bx, type OrderChangeValueOneOf as by, type LineItemChanges as bz, type PreparePaymentCollectionApplicationErrors as c, type BulkSendBuyerShippingConfirmationEmailsResponse as c$, type RegularPayment as c0, type RegularPaymentPaymentMethodDetailsOneOf as c1, type CreditCardDetails as c2, type PaymentCanceled as c3, type PaymentCanceledPaymentDetailsOneOf as c4, type PaymentDeclined as c5, type PaymentDeclinedPaymentDetailsOneOf as c6, type ReceiptCreated as c7, type ReceiptCreatedReceiptInfoOneOf as c8, type WixReceipt as c9, type ImportOrderRequest as cA, type ImportOrderResponse as cB, type SetOrderNumberCounterRequest as cC, type SetOrderNumberCounterResponse as cD, type BulkDeleteImportedOrdersRequest as cE, type BulkDeleteImportedOrdersResponse as cF, type DomainEvent as cG, type DomainEventBodyOneOf as cH, type EntityCreatedEvent as cI, type RestoreInfo as cJ, type EntityUpdatedEvent as cK, type EntityDeletedEvent as cL, type ActionEvent as cM, type MessageEnvelope as cN, type IdentificationData as cO, type IdentificationDataIdOneOf as cP, type SendBuyerConfirmationEmailRequest as cQ, type SendBuyerConfirmationEmailResponse as cR, type SendBuyerPaymentsReceivedEmailRequest as cS, type SendBuyerPaymentsReceivedEmailResponse as cT, type SendBuyerPickupConfirmationEmailRequest as cU, type SendBuyerPickupConfirmationEmailResponse as cV, type BulkSendBuyerPickupConfirmationEmailsRequest as cW, type BulkSendBuyerPickupConfirmationEmailsResponse as cX, type SendBuyerShippingConfirmationEmailRequest as cY, type SendBuyerShippingConfirmationEmailResponse as cZ, type BulkSendBuyerShippingConfirmationEmailsRequest as c_, type ExternalReceipt as ca, type ReceiptSent as cb, type ReceiptSentReceiptInfoOneOf as cc, type ChargebackCreated as cd, type ChargebackReversed as ce, type CreatedBy as cf, type CreatedByStringOneOf as cg, type ChannelInfo as ch, type CustomField as ci, type BalanceSummary as cj, type Balance as ck, type AdditionalFee as cl, type FulfillmentStatusesAggregate as cm, type Tags as cn, type TagList as co, type Location as cp, type OrderSettings as cq, type OrderSettingsAllowedActionsOneOf as cr, type CustomAllowedActions as cs, type OrderApproved as ct, type OrdersExperiments as cu, type OrderRejectedEventOrderRejected as cv, type OrderItemsRestocked as cw, type V1RestockItem as cx, type OrderImported as cy, type ImportedOrderDeleted as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type RestockInfo as d$, type SendMerchantOrderReceivedNotificationRequest as d0, type SendMerchantOrderReceivedNotificationResponse as d1, type SendCancelRefundEmailRequest as d2, type SendCancelRefundEmailResponse as d3, type SendRefundEmailRequest as d4, type SendRefundEmailResponse as d5, type SendMerchantOrderReceivedPushRequest as d6, type SendMerchantOrderReceivedPushResponse as d7, type PreviewEmailByTypeRequest as d8, type PreviewEmailByTypeResponse as d9, type Duration as dA, type GetPaymentCollectabilityStatusRequest as dB, type RecordManuallyCollectedPaymentRequest as dC, type RecordManuallyCollectedPaymentResponse as dD, type MarkOrderAsPaidRequest as dE, type MarkOrderAsPaidResponse as dF, type BulkMarkOrdersAsPaidRequest as dG, type BulkMarkOrdersAsPaidResponse as dH, type BulkOrderResult as dI, type ItemMetadata as dJ, type ApplicationError as dK, type BulkActionMetadata as dL, type GetRefundabilityStatusRequest as dM, type GetRefundabilityStatusResponse as dN, type Refundability as dO, type RefundabilityAdditionalRefundabilityInfoOneOf as dP, type CreatePaymentGatewayOrderRequest as dQ, type ChargedBy as dR, type CreatePaymentGatewayOrderResponse as dS, type ChargeMembershipsRequest as dT, type MembershipChargeItem as dU, type MembershipName as dV, type ServiceProperties as dW, type ChargeMembershipsResponse as dX, type TriggerRefundRequest as dY, type PaymentRefund as dZ, type RefundSideEffects as d_, type PreviewRefundEmailRequest as da, type RefundDetails as db, type RefundItem as dc, type LineItemRefund as dd, type AdditionalFeeRefund as de, type ShippingRefund as df, type PreviewRefundEmailResponse as dg, type PreviewCancelEmailRequest as dh, type PreviewCancelEmailResponse as di, type PreviewCancelRefundEmailRequest as dj, type PreviewCancelRefundEmailResponse as dk, type PreviewBuyerPaymentsReceivedEmailRequest as dl, type PreviewBuyerPaymentsReceivedEmailResponse as dm, type PreviewBuyerConfirmationEmailRequest as dn, type PreviewBuyerConfirmationEmailResponse as dp, type PreviewBuyerPickupConfirmationEmailRequest as dq, type PreviewBuyerPickupConfirmationEmailResponse as dr, type PreviewShippingConfirmationEmailRequest as ds, type PreviewShippingConfirmationEmailResponse as dt, type PreviewResendDownloadLinksEmailRequest as du, type PreviewResendDownloadLinksEmailResponse as dv, type Empty as dw, type PreparePaymentCollectionRequest as dx, type RedirectUrls as dy, type DelayedCaptureSettings as dz, type PaymentCapture as e, type SearchOrdersRequest as e$, type RestockItem as e0, type TriggerRefundResponse as e1, type OrderTransactions as e2, type Payment as e3, type PaymentPaymentDetailsOneOf as e4, type PaymentReceiptInfoOneOf as e5, type RegularPaymentDetails as e6, type RegularPaymentDetailsPaymentMethodDetailsOneOf as e7, type CreditCardPaymentMethodDetails as e8, type AuthorizationDetails as e9, type InternalDocumentUpdateOperation as eA, type DeleteByIdsOperation as eB, type DeleteByFilterOperation as eC, type InternalDocumentUpdateByFilterOperation as eD, type InternalUpdateExistingOperation as eE, type VersionedDocumentUpdateOperation as eF, type VersionedDeleteByIdsOperation as eG, type VersionedDocumentId as eH, type TriggerReindexRequest as eI, type TriggerReindexResponse as eJ, type BatchOfTriggerReindexOrderRequest as eK, type TriggerReindexOrderRequest as eL, type DiffmatokyPayload as eM, type ErrorInformation as eN, type GetOrderRequest as eO, type GetOrderResponse as eP, type InternalQueryOrdersRequest as eQ, type PlatformQuery as eR, type PlatformQueryPagingMethodOneOf as eS, type Sorting as eT, type PlatformPaging as eU, type CursorPaging as eV, type InternalQueryOrdersResponse as eW, type PlatformPagingMetadata as eX, type Cursors as eY, type QueryOrderRequest as eZ, type QueryOrderResponse as e_, type AuthorizationCapture as ea, type AuthorizationActionFailureDetails as eb, type AuthorizationVoid as ec, type V1ScheduledAction as ed, type Chargeback as ee, type GiftCardPaymentDetails as ef, type MembershipPaymentDetails as eg, type WixReceiptInfo as eh, type ExternalReceiptInfo as ei, type Refund as ej, type RefundTransaction as ek, type RefundStatusInfo as el, type AggregatedRefundSummary as em, type RefundItemsBreakdown as en, type LineItemRefundSummary as eo, type CalculateRefundRequest as ep, type CalculateRefundItemRequest as eq, type CalculateRefundResponse as er, type CalculateRefundItemResponse as es, type VoidAuthorizedPaymentsRequest as et, type CaptureAuthorizedPaymentsRequest as eu, type ChargeSavedPaymentMethodRequest as ev, type ChargeSavedPaymentMethodResponse as ew, type UpdateInternalDocumentsEvent as ex, type UpdateInternalDocumentsEventOperationOneOf as ey, type InternalDocument as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type OrderFulfilled as f$, type CursorSearch as f0, type CursorSearchPagingMethodOneOf as f1, type CursorPagingMetadata as f2, type CreateOrderRequest as f3, type OrderCreationSettings as f4, type OrderCreateNotifications as f5, type CreateOrderResponse as f6, type UpdateOrderRequest as f7, type UpdateOrderResponse as f8, type BulkUpdateOrdersRequest as f9, type BulkArchiveOrdersByFilterRequest as fA, type BulkArchiveOrdersByFilterResponse as fB, type UnArchiveOrderRequest as fC, type UnArchiveOrderResponse as fD, type BulkUnArchiveOrdersRequest as fE, type BulkUnArchiveOrdersResponse as fF, type BulkUnArchiveOrdersByFilterRequest as fG, type BulkUnArchiveOrdersByFilterResponse as fH, type UpdateBuyerInfoRequest as fI, type BuyerInfoUpdate as fJ, type UpdateBuyerInfoResponse as fK, type UpdateBuyerEmailRequest as fL, type UpdateBuyerEmailResponse as fM, type UpdateOrderShippingAddressRequest as fN, type UpdateOrderShippingAddressResponse as fO, type UpdateBillingContactDetailsRequest as fP, type UpdateBillingContactDetailsResponse as fQ, type UpdateOrderLineItemRequest as fR, type UpdateOrderLineItemResponse as fS, type UpdateOrderLineItemsRequest as fT, type MaskedOrderLineItem as fU, type UpdateOrderLineItemsResponse as fV, type AddInternalActivityRequest as fW, type InternalActivity as fX, type InternalActivityContentOneOf as fY, type OrderPlaced as fZ, type OrderPaid as f_, type CommitDeltasRequest as fa, type DraftOrderDiffs as fb, type DraftOrderDiffsShippingUpdateInfoOneOf as fc, type DraftOrderDiffsBuyerUpdateInfoOneOf as fd, type DraftOrderDiffsBillingUpdateInfoOneOf as fe, type DraftOrderDiffsRecipientUpdateInfoOneOf as ff, type V1LineItemDelta as fg, type V1LineItemDeltaDeltaOneOf as fh, type OrderLineItemChangedDetails as fi, type ItemChangedDetails as fj, type AppliedDiscountDelta as fk, type AppliedDiscountDeltaDeltaOneOf as fl, type AdditionalFeeDelta as fm, type AdditionalFeeDeltaDeltaOneOf as fn, type DraftOrderCommitSettings as fo, type InventoryUpdateDetails as fp, type CommitDeltasResponse as fq, type OrderDeltasCommitted as fr, type CommittedDiffs as fs, type CommittedDiffsShippingUpdateInfoOneOf as ft, type LineItemDelta as fu, type LineItemDeltaDeltaOneOf as fv, type ArchiveOrderRequest as fw, type ArchiveOrderResponse as fx, type BulkArchiveOrdersRequest as fy, type BulkArchiveOrdersResponse as fz, type GetOrderApplicationErrors as g, type DecrementItemsQuantityRequest as g$, type OrderNotFulfilled as g0, type OrderCanceled as g1, type DownloadLinkSent as g2, type TrackingNumberAdded as g3, type TrackingNumberEdited as g4, type TrackingLinkAdded as g5, type ShippingConfirmationEmailSent as g6, type InvoiceAdded as g7, type InvoiceSent as g8, type FulfillerEmailSent as g9, type MarkAsFulfilledRequest as gA, type MarkAsFulfilledResponse as gB, type FulfillmentStatusUpdated as gC, type BulkMarkAsFulfilledRequest as gD, type BulkMarkAsFulfilledResponse as gE, type BulkMarkAsFulfilledByFilterRequest as gF, type BulkMarkAsFulfilledByFilterResponse as gG, type MarkAsUnfulfilledRequest as gH, type MarkAsUnfulfilledResponse as gI, type BulkMarkAsUnfulfilledRequest as gJ, type BulkMarkAsUnfulfilledResponse as gK, type BulkMarkAsUnfulfilledByFilterRequest as gL, type BulkMarkAsUnfulfilledByFilterResponse as gM, type BulkSetBusinessLocationRequest as gN, type BulkSetBusinessLocationResponse as gO, type BulkSetBusinessLocationResult as gP, type V1MarkOrderAsPaidRequest as gQ, type V1MarkOrderAsPaidResponse as gR, type PaymentStatusUpdated as gS, type V1BulkMarkOrdersAsPaidRequest as gT, type V1BulkMarkOrdersAsPaidResponse as gU, type V1CreatePaymentGatewayOrderRequest as gV, type V1CreatePaymentGatewayOrderResponse as gW, type GetShipmentsRequest as gX, type GetShipmentsResponse as gY, type AggregateOrdersRequest as gZ, type AggregateOrdersResponse as g_, type ShippingAddressEdited as ga, type EmailEdited as gb, type PickupReadyEmailSent as gc, type OrderPartiallyPaid as gd, type OrderPending as ge, type OrderRejected as gf, type AddInternalActivityResponse as gg, type AddActivityRequest as gh, type PublicActivity as gi, type PublicActivityContentOneOf as gj, type AddActivityResponse as gk, type AddActivitiesRequest as gl, type AddActivitiesResponse as gm, type UpdateActivityRequest as gn, type UpdateActivityResponse as go, type DeleteActivityRequest as gp, type DeleteActivityResponse as gq, type UpdateLineItemsDescriptionLinesRequest as gr, type LineItemUpdate as gs, type UpdateLineItemsDescriptionLinesResponse as gt, type MarkOrderAsSeenByHumanRequest as gu, type MarkOrderAsSeenByHumanResponse as gv, type CancelOrderRequest as gw, type OrderCanceledEventOrderCanceled as gx, type UpdateOrderStatusRequest as gy, type UpdateOrderStatusResponse as gz, type OrderSearch as h, type SubscriptionFrequencyWithLiterals as h$, type DecrementData as h0, type DecrementItemsQuantityResponse as h1, type BulkUpdateOrderTagsRequest as h2, type BulkUpdateOrderTagsResult as h3, type Task as h4, type TaskKey as h5, type TaskAction as h6, type TaskActionActionOneOf as h7, type Complete as h8, type Cancel as h9, type CalculatedTaxes as hA, type CalculatedTax as hB, type Payments as hC, type InvoicesPayment as hD, type MetaData as hE, type InvoiceDynamicPriceTotals as hF, type CustomFieldValue as hG, type Value as hH, type Deposit as hI, type BaseEventMetadata as hJ, type EventMetadata as hK, type SetOrderNumberCounterOptions as hL, type BulkDeleteImportedOrdersOptions as hM, type PaymentCollectionCreatePaymentGatewayOrderOptions as hN, type ChargeMembershipsOptions as hO, type TriggerRefundOptions as hP, type OrderSearchSpec as hQ, type CommitDeltasOptions as hR, type UpdateOrderLineItemIdentifiers as hS, type UpdateOrderLineItem as hT, type UpdateActivityIdentifiers as hU, type DeleteActivityIdentifiers as hV, type AggregateOrdersOptions as hW, type DescriptionLineTypeWithLiterals as hX, type ItemTypePresetWithLiterals as hY, type PaymentOptionTypeWithLiterals as hZ, type JurisdictionTypeWithLiterals as h_, type Reschedule as ha, type InvoiceSentEvent as hb, type IdAndVersion as hc, type InvoiceFields as hd, type Customer as he, type Email as hf, type QuotesAddress as hg, type AddressDescription as hh, type Phone as hi, type Company as hj, type CommonAddress as hk, type CommonAddressStreetOneOf as hl, type Subdivision as hm, type StandardDetails as hn, type InvoiceDates as ho, type LineItems as hp, type LineItem as hq, type BigDecimalWrapper as hr, type LineItemTax as hs, type Source as ht, type LineItemMetaData as hu, type Locale as hv, type TotalPrice as hw, type ItemizedFee as hx, type Discount as hy, type DiscountOneDiscountTypeOneOf as hz, type CreateOrderOptions as i, getOrder as i$, type AdjustmentTypeWithLiterals as i0, type TaxableAddressTypeWithLiterals as i1, type PaymentStatusWithLiterals as i2, type FulfillmentStatusWithLiterals as i3, type WeightUnitWithLiterals as i4, type VatTypeWithLiterals as i5, type PickupMethodWithLiterals as i6, type OrderStatusWithLiterals as i7, type DiscountTypeWithLiterals as i8, type DiscountReasonWithLiterals as i9, type SortOrderWithLiterals as iA, type OrderApprovalStrategyWithLiterals as iB, type DeltaPaymentOptionTypeWithLiterals as iC, type InventoryActionWithLiterals as iD, type PlacementWithLiterals as iE, type SubdivisionTypeWithLiterals as iF, type SourceTypeWithLiterals as iG, type CustomFieldGroupWithLiterals as iH, type ValueTypeWithLiterals as iI, type DepositTypeWithLiterals as iJ, type InvoiceStatusWithLiterals as iK, type RecordManuallyCollectedPaymentApplicationErrors as iL, type PaymentCollectionMarkOrderAsPaidApplicationErrors as iM, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as iN, type TriggerRefundApplicationErrors as iO, type CommitDeltasApplicationErrors as iP, type UpdateOrderStatusApplicationErrors as iQ, type CommonSearchWithEntityContext as iR, onOrderApproved as iS, onOrderUpdated as iT, onOrderCanceled as iU, onOrderCreated as iV, onOrderPaymentStatusUpdated as iW, preparePaymentCollection as iX, getPaymentCollectabilityStatus as iY, voidAuthorizedPayments as iZ, captureAuthorizedPayments as i_, type LineItemQuantityChangeTypeWithLiterals as ia, type ActivityTypeWithLiterals as ib, type AttributionSourceWithLiterals as ic, type ChannelTypeWithLiterals as id, type OrderActionTypeWithLiterals as ie, type WebhookIdentityTypeWithLiterals as ig, type PreviewEmailTypeWithLiterals as ih, type ScheduledActionWithLiterals as ii, type DurationUnitWithLiterals as ij, type PaymentCollectabilityStatusWithLiterals as ik, type RefundableStatusWithLiterals as il, type NonRefundableReasonWithLiterals as im, type ManuallyRefundableReasonWithLiterals as io, type RestockTypeWithLiterals as ip, type TransactionStatusWithLiterals as iq, type AuthorizationCaptureStatusWithLiterals as ir, type AuthorizationVoidStatusWithLiterals as is, type ReasonWithLiterals as it, type ActionTypeWithLiterals as iu, type ChargebackStatusWithLiterals as iv, type MembershipPaymentStatusWithLiterals as iw, type RefundStatusWithLiterals as ix, type VersioningModeWithLiterals as iy, type OrderActivityTypeEnumActivityTypeWithLiterals as iz, type CreateOrderApplicationErrors as j, createOrder as j0, updateOrder as j1, bulkUpdateOrders as j2, cancelOrder as j3, bulkUpdateOrderTags as j4, type UpdateOrderApplicationErrors as k, type BulkUpdateOrdersResponse as l, type CancelOrderOptions as m, type CancelOrderResponse as n, type CancelOrderApplicationErrors as o, type BulkUpdateOrderTagsOptions as p, type BulkUpdateOrderTagsResponse as q, type OrderApprovedEnvelope as r, type OrderUpdatedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCreatedEnvelope as u, type OrderPaymentStatusUpdatedEnvelope as v, PaymentOptionType as w, SubscriptionFrequency as x, PaymentStatus as y, VatType as z };
|
|
7668
|
+
export { PreviewEmailType as $, AdjustmentType as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PickupMethod as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, OrderStatus as H, ItemTypePreset as I, JurisdictionType as J, DiscountType as K, DiscountReason as L, type MaskedOrder as M, LineItemQuantityChangeType as N, type Order as O, type Price as P, ActivityType as Q, OrderActivityTypeEnumActivityType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, AttributionSource as X, ChannelType as Y, OrderActionType as Z, WebhookIdentityType as _, type PreparePaymentCollectionOptions as a, type AddressWithContact as a$, ScheduledAction as a0, DurationUnit as a1, PaymentCollectabilityStatus as a2, RefundableStatus as a3, NonRefundableReason as a4, ManuallyRefundableReason as a5, RestockType as a6, TransactionStatus as a7, AuthorizationCaptureStatus as a8, AuthorizationVoidStatus as a9, type FocalPoint as aA, type PhysicalProperties as aB, type ItemType as aC, type ItemTypeItemTypeDataOneOf as aD, type ItemTaxFullDetails as aE, type LineItemTaxInfo as aF, type LineItemTaxBreakdown as aG, type DigitalFile as aH, type SubscriptionInfo as aI, type SubscriptionTitle as aJ, type SubscriptionDescription as aK, type SubscriptionSettings as aL, type FreeTrialPeriod as aM, type BillingAdjustment as aN, type BillingAdjustmentPriceSummary as aO, type PriceDescription as aP, type LocationAndQuantity as aQ, type TaxableAddress as aR, type TaxableAddressTaxableAddressDataOneOf as aS, type ExtendedFields as aT, type ModifierGroup as aU, type TranslatableString as aV, type ItemModifier as aW, type BuyerInfo as aX, type BuyerInfoIdOneOf as aY, type CurrencyConversionDetails as aZ, type PriceSummary as a_, Reason as aa, ActionType as ab, ChargebackStatus as ac, MembershipPaymentStatus as ad, RefundStatus as ae, VersioningMode as af, SortOrder as ag, OrderApprovalStrategy as ah, DeltaPaymentOptionType as ai, InventoryAction as aj, Placement as ak, SubdivisionType as al, SourceType as am, CustomFieldGroup as an, ValueType as ao, DepositType as ap, InvoiceStatus as aq, type OrderLineItem as ar, type ProductName as as, type CatalogReference as at, type DescriptionLine as au, type DescriptionLineValueOneOf as av, type DescriptionLineDescriptionLineValueOneOf as aw, type DescriptionLineName as ax, type PlainTextValue as ay, type Color as az, type PreparePaymentCollectionResponse as b, type PaymentPendingPaymentDetailsOneOf as b$, type Address as b0, type StreetAddress as b1, type AddressLocation as b2, type FullAddressContactDetails as b3, type VatId as b4, type V1ShippingInformation as b5, type DeliveryLogistics as b6, type DeliveryLogisticsAddressOneOf as b7, type PickupDetails as b8, type PickupAddress as b9, type LineItemQuantityChange as bA, type LineItemPriceChange as bB, type LineItemProductNameChange as bC, type LineItemDescriptionLineChange as bD, type LineItemModifiersChange as bE, type ManagedLineItem as bF, type ManagedDiscount as bG, type TranslatedValue as bH, type LineItemAmount as bI, type ManagedAdditionalFee as bJ, type TotalPriceChange as bK, type ShippingInformationChange as bL, type ShippingInformation as bM, type SavedPaymentMethod as bN, type AuthorizedPaymentCreated as bO, type AuthorizedPaymentCaptured as bP, type AuthorizedPaymentVoided as bQ, type RefundInitiated as bR, type RefundedPayment as bS, type RefundedPaymentKindOneOf as bT, type RegularPaymentRefund as bU, type GiftCardPaymentRefund as bV, type MembershipPaymentRefund as bW, type PaymentRefunded as bX, type PaymentRefundFailed as bY, type RefundedAsStoreCredit as bZ, type PaymentPending as b_, type DeliveryTimeSlot as ba, type ShippingPrice as bb, type ShippingRegion as bc, type TaxSummary as bd, type OrderTaxInfo as be, type OrderTaxBreakdown as bf, type AppliedDiscount as bg, type AppliedDiscountDiscountSourceOneOf as bh, type Coupon as bi, type MerchantDiscount as bj, type MerchantDiscountMerchantDiscountReasonOneOf as bk, type DiscountRule as bl, type DiscountRuleName as bm, type LineItemDiscount as bn, type Activity as bo, type ActivityContentOneOf as bp, type CustomActivity as bq, type MerchantComment as br, type OrderRefunded as bs, type OrderCreatedFromExchange as bt, type NewExchangeOrderCreated as bu, type LineItemExchangeData as bv, type DraftOrderChangesApplied as bw, type OrderChange as bx, type OrderChangeValueOneOf as by, type LineItemChanges as bz, type PreparePaymentCollectionApplicationErrors as c, type BulkSendBuyerShippingConfirmationEmailsResponse as c$, type RegularPayment as c0, type RegularPaymentPaymentMethodDetailsOneOf as c1, type CreditCardDetails as c2, type PaymentCanceled as c3, type PaymentCanceledPaymentDetailsOneOf as c4, type PaymentDeclined as c5, type PaymentDeclinedPaymentDetailsOneOf as c6, type ReceiptCreated as c7, type ReceiptCreatedReceiptInfoOneOf as c8, type WixReceipt as c9, type ImportOrderRequest as cA, type ImportOrderResponse as cB, type SetOrderNumberCounterRequest as cC, type SetOrderNumberCounterResponse as cD, type BulkDeleteImportedOrdersRequest as cE, type BulkDeleteImportedOrdersResponse as cF, type DomainEvent as cG, type DomainEventBodyOneOf as cH, type EntityCreatedEvent as cI, type RestoreInfo as cJ, type EntityUpdatedEvent as cK, type EntityDeletedEvent as cL, type ActionEvent as cM, type MessageEnvelope as cN, type IdentificationData as cO, type IdentificationDataIdOneOf as cP, type SendBuyerConfirmationEmailRequest as cQ, type SendBuyerConfirmationEmailResponse as cR, type SendBuyerPaymentsReceivedEmailRequest as cS, type SendBuyerPaymentsReceivedEmailResponse as cT, type SendBuyerPickupConfirmationEmailRequest as cU, type SendBuyerPickupConfirmationEmailResponse as cV, type BulkSendBuyerPickupConfirmationEmailsRequest as cW, type BulkSendBuyerPickupConfirmationEmailsResponse as cX, type SendBuyerShippingConfirmationEmailRequest as cY, type SendBuyerShippingConfirmationEmailResponse as cZ, type BulkSendBuyerShippingConfirmationEmailsRequest as c_, type ExternalReceipt as ca, type ReceiptSent as cb, type ReceiptSentReceiptInfoOneOf as cc, type ChargebackCreated as cd, type ChargebackReversed as ce, type CreatedBy as cf, type CreatedByStringOneOf as cg, type ChannelInfo as ch, type CustomField as ci, type BalanceSummary as cj, type Balance as ck, type AdditionalFee as cl, type FulfillmentStatusesAggregate as cm, type Tags as cn, type TagList as co, type Location as cp, type OrderSettings as cq, type OrderSettingsAllowedActionsOneOf as cr, type CustomAllowedActions as cs, type OrderApproved as ct, type OrdersExperiments as cu, type OrderRejectedEventOrderRejected as cv, type OrderItemsRestocked as cw, type V1RestockItem as cx, type OrderImported as cy, type ImportedOrderDeleted as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type RestockInfo as d$, type SendMerchantOrderReceivedNotificationRequest as d0, type SendMerchantOrderReceivedNotificationResponse as d1, type SendCancelRefundEmailRequest as d2, type SendCancelRefundEmailResponse as d3, type SendRefundEmailRequest as d4, type SendRefundEmailResponse as d5, type SendMerchantOrderReceivedPushRequest as d6, type SendMerchantOrderReceivedPushResponse as d7, type PreviewEmailByTypeRequest as d8, type PreviewEmailByTypeResponse as d9, type Duration as dA, type GetPaymentCollectabilityStatusRequest as dB, type RecordManuallyCollectedPaymentRequest as dC, type RecordManuallyCollectedPaymentResponse as dD, type MarkOrderAsPaidRequest as dE, type MarkOrderAsPaidResponse as dF, type BulkMarkOrdersAsPaidRequest as dG, type BulkMarkOrdersAsPaidResponse as dH, type BulkOrderResult as dI, type ItemMetadata as dJ, type ApplicationError as dK, type BulkActionMetadata as dL, type GetRefundabilityStatusRequest as dM, type GetRefundabilityStatusResponse as dN, type Refundability as dO, type RefundabilityAdditionalRefundabilityInfoOneOf as dP, type CreatePaymentGatewayOrderRequest as dQ, type ChargedBy as dR, type CreatePaymentGatewayOrderResponse as dS, type ChargeMembershipsRequest as dT, type MembershipChargeItem as dU, type MembershipName as dV, type ServiceProperties as dW, type ChargeMembershipsResponse as dX, type TriggerRefundRequest as dY, type PaymentRefund as dZ, type RefundSideEffects as d_, type PreviewRefundEmailRequest as da, type RefundDetails as db, type RefundItem as dc, type LineItemRefund as dd, type AdditionalFeeRefund as de, type ShippingRefund as df, type PreviewRefundEmailResponse as dg, type PreviewCancelEmailRequest as dh, type PreviewCancelEmailResponse as di, type PreviewCancelRefundEmailRequest as dj, type PreviewCancelRefundEmailResponse as dk, type PreviewBuyerPaymentsReceivedEmailRequest as dl, type PreviewBuyerPaymentsReceivedEmailResponse as dm, type PreviewBuyerConfirmationEmailRequest as dn, type PreviewBuyerConfirmationEmailResponse as dp, type PreviewBuyerPickupConfirmationEmailRequest as dq, type PreviewBuyerPickupConfirmationEmailResponse as dr, type PreviewShippingConfirmationEmailRequest as ds, type PreviewShippingConfirmationEmailResponse as dt, type PreviewResendDownloadLinksEmailRequest as du, type PreviewResendDownloadLinksEmailResponse as dv, type Empty as dw, type PreparePaymentCollectionRequest as dx, type RedirectUrls as dy, type DelayedCaptureSettings as dz, type PaymentCapture as e, type SearchOrdersRequest as e$, type RestockItem as e0, type TriggerRefundResponse as e1, type OrderTransactions as e2, type Payment as e3, type PaymentPaymentDetailsOneOf as e4, type PaymentReceiptInfoOneOf as e5, type RegularPaymentDetails as e6, type RegularPaymentDetailsPaymentMethodDetailsOneOf as e7, type CreditCardPaymentMethodDetails as e8, type AuthorizationDetails as e9, type InternalDocumentUpdateOperation as eA, type DeleteByIdsOperation as eB, type DeleteByFilterOperation as eC, type InternalDocumentUpdateByFilterOperation as eD, type InternalUpdateExistingOperation as eE, type VersionedDocumentUpdateOperation as eF, type VersionedDeleteByIdsOperation as eG, type VersionedDocumentId as eH, type TriggerReindexRequest as eI, type TriggerReindexResponse as eJ, type BatchOfTriggerReindexOrderRequest as eK, type TriggerReindexOrderRequest as eL, type DiffmatokyPayload as eM, type ErrorInformation as eN, type GetOrderRequest as eO, type GetOrderResponse as eP, type InternalQueryOrdersRequest as eQ, type PlatformQuery as eR, type PlatformQueryPagingMethodOneOf as eS, type Sorting as eT, type PlatformPaging as eU, type CursorPaging as eV, type InternalQueryOrdersResponse as eW, type PlatformPagingMetadata as eX, type Cursors as eY, type QueryOrderRequest as eZ, type QueryOrderResponse as e_, type AuthorizationCapture as ea, type AuthorizationActionFailureDetails as eb, type AuthorizationVoid as ec, type V1ScheduledAction as ed, type Chargeback as ee, type GiftCardPaymentDetails as ef, type MembershipPaymentDetails as eg, type WixReceiptInfo as eh, type ExternalReceiptInfo as ei, type Refund as ej, type RefundTransaction as ek, type RefundStatusInfo as el, type AggregatedRefundSummary as em, type RefundItemsBreakdown as en, type LineItemRefundSummary as eo, type CalculateRefundRequest as ep, type CalculateRefundItemRequest as eq, type CalculateRefundResponse as er, type CalculateRefundItemResponse as es, type VoidAuthorizedPaymentsRequest as et, type CaptureAuthorizedPaymentsRequest as eu, type ChargeSavedPaymentMethodRequest as ev, type ChargeSavedPaymentMethodResponse as ew, type UpdateInternalDocumentsEvent as ex, type UpdateInternalDocumentsEventOperationOneOf as ey, type InternalDocument as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type OrderFulfilled as f$, type CursorSearch as f0, type CursorSearchPagingMethodOneOf as f1, type CursorPagingMetadata as f2, type CreateOrderRequest as f3, type OrderCreationSettings as f4, type OrderCreateNotifications as f5, type CreateOrderResponse as f6, type UpdateOrderRequest as f7, type UpdateOrderResponse as f8, type BulkUpdateOrdersRequest as f9, type BulkArchiveOrdersByFilterRequest as fA, type BulkArchiveOrdersByFilterResponse as fB, type UnArchiveOrderRequest as fC, type UnArchiveOrderResponse as fD, type BulkUnArchiveOrdersRequest as fE, type BulkUnArchiveOrdersResponse as fF, type BulkUnArchiveOrdersByFilterRequest as fG, type BulkUnArchiveOrdersByFilterResponse as fH, type UpdateBuyerInfoRequest as fI, type BuyerInfoUpdate as fJ, type UpdateBuyerInfoResponse as fK, type UpdateBuyerEmailRequest as fL, type UpdateBuyerEmailResponse as fM, type UpdateOrderShippingAddressRequest as fN, type UpdateOrderShippingAddressResponse as fO, type UpdateBillingContactDetailsRequest as fP, type UpdateBillingContactDetailsResponse as fQ, type UpdateOrderLineItemRequest as fR, type UpdateOrderLineItemResponse as fS, type UpdateOrderLineItemsRequest as fT, type MaskedOrderLineItem as fU, type UpdateOrderLineItemsResponse as fV, type AddInternalActivityRequest as fW, type InternalActivity as fX, type InternalActivityContentOneOf as fY, type OrderPlaced as fZ, type OrderPaid as f_, type CommitDeltasRequest as fa, type DraftOrderDiffs as fb, type DraftOrderDiffsShippingUpdateInfoOneOf as fc, type DraftOrderDiffsBuyerUpdateInfoOneOf as fd, type DraftOrderDiffsBillingUpdateInfoOneOf as fe, type DraftOrderDiffsRecipientUpdateInfoOneOf as ff, type V1LineItemDelta as fg, type V1LineItemDeltaDeltaOneOf as fh, type OrderLineItemChangedDetails as fi, type ItemChangedDetails as fj, type AppliedDiscountDelta as fk, type AppliedDiscountDeltaDeltaOneOf as fl, type AdditionalFeeDelta as fm, type AdditionalFeeDeltaDeltaOneOf as fn, type DraftOrderCommitSettings as fo, type InventoryUpdateDetails as fp, type CommitDeltasResponse as fq, type OrderDeltasCommitted as fr, type CommittedDiffs as fs, type CommittedDiffsShippingUpdateInfoOneOf as ft, type LineItemDelta as fu, type LineItemDeltaDeltaOneOf as fv, type ArchiveOrderRequest as fw, type ArchiveOrderResponse as fx, type BulkArchiveOrdersRequest as fy, type BulkArchiveOrdersResponse as fz, type GetOrderApplicationErrors as g, type DecrementItemsQuantityRequest as g$, type OrderNotFulfilled as g0, type OrderCanceled as g1, type DownloadLinkSent as g2, type TrackingNumberAdded as g3, type TrackingNumberEdited as g4, type TrackingLinkAdded as g5, type ShippingConfirmationEmailSent as g6, type InvoiceAdded as g7, type InvoiceSent as g8, type FulfillerEmailSent as g9, type MarkAsFulfilledRequest as gA, type MarkAsFulfilledResponse as gB, type FulfillmentStatusUpdated as gC, type BulkMarkAsFulfilledRequest as gD, type BulkMarkAsFulfilledResponse as gE, type BulkMarkAsFulfilledByFilterRequest as gF, type BulkMarkAsFulfilledByFilterResponse as gG, type MarkAsUnfulfilledRequest as gH, type MarkAsUnfulfilledResponse as gI, type BulkMarkAsUnfulfilledRequest as gJ, type BulkMarkAsUnfulfilledResponse as gK, type BulkMarkAsUnfulfilledByFilterRequest as gL, type BulkMarkAsUnfulfilledByFilterResponse as gM, type BulkSetBusinessLocationRequest as gN, type BulkSetBusinessLocationResponse as gO, type BulkSetBusinessLocationResult as gP, type V1MarkOrderAsPaidRequest as gQ, type V1MarkOrderAsPaidResponse as gR, type PaymentStatusUpdated as gS, type V1BulkMarkOrdersAsPaidRequest as gT, type V1BulkMarkOrdersAsPaidResponse as gU, type V1CreatePaymentGatewayOrderRequest as gV, type V1CreatePaymentGatewayOrderResponse as gW, type GetShipmentsRequest as gX, type GetShipmentsResponse as gY, type AggregateOrdersRequest as gZ, type AggregateOrdersResponse as g_, type ShippingAddressEdited as ga, type EmailEdited as gb, type PickupReadyEmailSent as gc, type OrderPartiallyPaid as gd, type OrderPending as ge, type OrderRejected as gf, type AddInternalActivityResponse as gg, type AddActivityRequest as gh, type PublicActivity as gi, type PublicActivityContentOneOf as gj, type AddActivityResponse as gk, type AddActivitiesRequest as gl, type AddActivitiesResponse as gm, type UpdateActivityRequest as gn, type UpdateActivityResponse as go, type DeleteActivityRequest as gp, type DeleteActivityResponse as gq, type UpdateLineItemsDescriptionLinesRequest as gr, type LineItemUpdate as gs, type UpdateLineItemsDescriptionLinesResponse as gt, type MarkOrderAsSeenByHumanRequest as gu, type MarkOrderAsSeenByHumanResponse as gv, type CancelOrderRequest as gw, type OrderCanceledEventOrderCanceled as gx, type UpdateOrderStatusRequest as gy, type UpdateOrderStatusResponse as gz, type OrderSearch as h, type SubscriptionFrequencyWithLiterals as h$, type DecrementData as h0, type DecrementItemsQuantityResponse as h1, type BulkUpdateOrderTagsRequest as h2, type BulkUpdateOrderTagsResult as h3, type Task as h4, type TaskKey as h5, type TaskAction as h6, type TaskActionActionOneOf as h7, type Complete as h8, type Cancel as h9, type CalculatedTaxes as hA, type CalculatedTax as hB, type Payments as hC, type InvoicesPayment as hD, type MetaData as hE, type InvoiceDynamicPriceTotals as hF, type CustomFieldValue as hG, type Value as hH, type Deposit as hI, type BaseEventMetadata as hJ, type EventMetadata as hK, type SetOrderNumberCounterOptions as hL, type BulkDeleteImportedOrdersOptions as hM, type PaymentCollectionCreatePaymentGatewayOrderOptions as hN, type ChargeMembershipsOptions as hO, type TriggerRefundOptions as hP, type OrderSearchSpec as hQ, type CommitDeltasOptions as hR, type UpdateOrderLineItemIdentifiers as hS, type UpdateOrderLineItem as hT, type UpdateActivityIdentifiers as hU, type DeleteActivityIdentifiers as hV, type AggregateOrdersOptions as hW, type DescriptionLineTypeWithLiterals as hX, type ItemTypePresetWithLiterals as hY, type PaymentOptionTypeWithLiterals as hZ, type JurisdictionTypeWithLiterals as h_, type Reschedule as ha, type InvoiceSentEvent as hb, type IdAndVersion as hc, type InvoiceFields as hd, type Customer as he, type Email as hf, type QuotesAddress as hg, type AddressDescription as hh, type Phone as hi, type Company as hj, type CommonAddress as hk, type CommonAddressStreetOneOf as hl, type Subdivision as hm, type StandardDetails as hn, type InvoiceDates as ho, type LineItems as hp, type LineItem as hq, type BigDecimalWrapper as hr, type LineItemTax as hs, type Source as ht, type LineItemMetaData as hu, type Locale as hv, type TotalPrice as hw, type ItemizedFee as hx, type Discount as hy, type DiscountOneDiscountTypeOneOf as hz, type CreateOrderOptions as i, getOrder as i$, type AdjustmentTypeWithLiterals as i0, type TaxableAddressTypeWithLiterals as i1, type PaymentStatusWithLiterals as i2, type FulfillmentStatusWithLiterals as i3, type WeightUnitWithLiterals as i4, type VatTypeWithLiterals as i5, type PickupMethodWithLiterals as i6, type OrderStatusWithLiterals as i7, type DiscountTypeWithLiterals as i8, type DiscountReasonWithLiterals as i9, type SortOrderWithLiterals as iA, type OrderApprovalStrategyWithLiterals as iB, type DeltaPaymentOptionTypeWithLiterals as iC, type InventoryActionWithLiterals as iD, type PlacementWithLiterals as iE, type SubdivisionTypeWithLiterals as iF, type SourceTypeWithLiterals as iG, type CustomFieldGroupWithLiterals as iH, type ValueTypeWithLiterals as iI, type DepositTypeWithLiterals as iJ, type InvoiceStatusWithLiterals as iK, type RecordManuallyCollectedPaymentApplicationErrors as iL, type PaymentCollectionMarkOrderAsPaidApplicationErrors as iM, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as iN, type TriggerRefundApplicationErrors as iO, type CommitDeltasApplicationErrors as iP, type UpdateOrderStatusApplicationErrors as iQ, type CommonSearchWithEntityContext as iR, onOrderApproved as iS, onOrderUpdated as iT, onOrderCanceled as iU, onOrderCreated as iV, onOrderPaymentStatusUpdated as iW, preparePaymentCollection as iX, getPaymentCollectabilityStatus as iY, voidAuthorizedPayments as iZ, captureAuthorizedPayments as i_, type LineItemQuantityChangeTypeWithLiterals as ia, type ActivityTypeWithLiterals as ib, type OrderActivityTypeEnumActivityTypeWithLiterals as ic, type AttributionSourceWithLiterals as id, type ChannelTypeWithLiterals as ie, type OrderActionTypeWithLiterals as ig, type WebhookIdentityTypeWithLiterals as ih, type PreviewEmailTypeWithLiterals as ii, type ScheduledActionWithLiterals as ij, type DurationUnitWithLiterals as ik, type PaymentCollectabilityStatusWithLiterals as il, type RefundableStatusWithLiterals as im, type NonRefundableReasonWithLiterals as io, type ManuallyRefundableReasonWithLiterals as ip, type RestockTypeWithLiterals as iq, type TransactionStatusWithLiterals as ir, type AuthorizationCaptureStatusWithLiterals as is, type AuthorizationVoidStatusWithLiterals as it, type ReasonWithLiterals as iu, type ActionTypeWithLiterals as iv, type ChargebackStatusWithLiterals as iw, type MembershipPaymentStatusWithLiterals as ix, type RefundStatusWithLiterals as iy, type VersioningModeWithLiterals as iz, type CreateOrderApplicationErrors as j, createOrder as j0, updateOrder as j1, bulkUpdateOrders as j2, cancelOrder as j3, bulkUpdateOrderTags as j4, type UpdateOrderApplicationErrors as k, type BulkUpdateOrdersResponse as l, type CancelOrderOptions as m, type CancelOrderResponse as n, type CancelOrderApplicationErrors as o, type BulkUpdateOrderTagsOptions as p, type BulkUpdateOrderTagsResponse as q, type OrderApprovedEnvelope as r, type OrderUpdatedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCreatedEnvelope as u, type OrderPaymentStatusUpdatedEnvelope as v, PaymentOptionType as w, SubscriptionFrequency as x, PaymentStatus as y, VatType as z };
|
package/build/es/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, m as CancelOrderOptions, n as CancelOrderResponse, o as CancelOrderApplicationErrors, p as BulkUpdateOrderTagsOptions, q as BulkUpdateOrderTagsResponse, r as OrderApprovedEnvelope, s as OrderUpdatedEnvelope, t as OrderCanceledEnvelope, u as OrderCreatedEnvelope, v as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-
|
|
3
|
-
export { cM as ActionEvent, aa as ActionType, iu as ActionTypeWithLiterals, bo as Activity, bp as ActivityContentOneOf, Q as ActivityType, ib as ActivityTypeWithLiterals, gl as AddActivitiesRequest, gm as AddActivitiesResponse, gh as AddActivityRequest, gk as AddActivityResponse, fW as AddInternalActivityRequest, gg as AddInternalActivityResponse, cl as AdditionalFee, fm as AdditionalFeeDelta, fn as AdditionalFeeDeltaDeltaOneOf, de as AdditionalFeeRefund, b0 as Address, hh as AddressDescription, b2 as AddressLocation, a$ as AddressWithContact, A as AdjustmentType, i0 as AdjustmentTypeWithLiterals, hW as AggregateOrdersOptions, gZ as AggregateOrdersRequest, g_ as AggregateOrdersResponse, em as AggregatedRefundSummary, dK as ApplicationError, bg as AppliedDiscount, fk as AppliedDiscountDelta, fl as AppliedDiscountDeltaDeltaOneOf, bh as AppliedDiscountDiscountSourceOneOf, fw as ArchiveOrderRequest, fx as ArchiveOrderResponse, R as AttributionSource, ic as AttributionSourceWithLiterals, eb as AuthorizationActionFailureDetails, ea as AuthorizationCapture, a7 as AuthorizationCaptureStatus, ir as AuthorizationCaptureStatusWithLiterals, e9 as AuthorizationDetails, ec as AuthorizationVoid, a8 as AuthorizationVoidStatus, is as AuthorizationVoidStatusWithLiterals, bP as AuthorizedPaymentCaptured, bO as AuthorizedPaymentCreated, bQ as AuthorizedPaymentVoided, ck as Balance, cj as BalanceSummary, hJ as BaseEventMetadata, eK as BatchOfTriggerReindexOrderRequest, hr as BigDecimalWrapper, aN as BillingAdjustment, aO as BillingAdjustmentPriceSummary, dL as BulkActionMetadata, fA as BulkArchiveOrdersByFilterRequest, fB as BulkArchiveOrdersByFilterResponse, fy as BulkArchiveOrdersRequest, fz as BulkArchiveOrdersResponse, hM as BulkDeleteImportedOrdersOptions, cE as BulkDeleteImportedOrdersRequest, cF as BulkDeleteImportedOrdersResponse, gF as BulkMarkAsFulfilledByFilterRequest, gG as BulkMarkAsFulfilledByFilterResponse, gD as BulkMarkAsFulfilledRequest, gE as BulkMarkAsFulfilledResponse, gL as BulkMarkAsUnfulfilledByFilterRequest, gM as BulkMarkAsUnfulfilledByFilterResponse, gJ as BulkMarkAsUnfulfilledRequest, gK as BulkMarkAsUnfulfilledResponse, dG as BulkMarkOrdersAsPaidRequest, dH as BulkMarkOrdersAsPaidResponse, dI as BulkOrderResult, cW as BulkSendBuyerPickupConfirmationEmailsRequest, cX as BulkSendBuyerPickupConfirmationEmailsResponse, c_ as BulkSendBuyerShippingConfirmationEmailsRequest, c$ as BulkSendBuyerShippingConfirmationEmailsResponse, gN as BulkSetBusinessLocationRequest, gO as BulkSetBusinessLocationResponse, gP as BulkSetBusinessLocationResult, fG as BulkUnArchiveOrdersByFilterRequest, fH as BulkUnArchiveOrdersByFilterResponse, fE as BulkUnArchiveOrdersRequest, fF as BulkUnArchiveOrdersResponse, h2 as BulkUpdateOrderTagsRequest, h3 as BulkUpdateOrderTagsResult, f9 as BulkUpdateOrdersRequest, aX as BuyerInfo, aY as BuyerInfoIdOneOf, fJ as BuyerInfoUpdate, eq as CalculateRefundItemRequest, es as CalculateRefundItemResponse, ep as CalculateRefundRequest, er as CalculateRefundResponse, hB as CalculatedTax, hA as CalculatedTaxes, h9 as Cancel, gw as CancelOrderRequest, eu as CaptureAuthorizedPaymentsRequest, at as CatalogReference, ch as ChannelInfo, X as ChannelType, id as ChannelTypeWithLiterals, hO as ChargeMembershipsOptions, dT as ChargeMembershipsRequest, dX as ChargeMembershipsResponse, ev as ChargeSavedPaymentMethodRequest, ew as ChargeSavedPaymentMethodResponse, ee as Chargeback, cd as ChargebackCreated, ce as ChargebackReversed, ab as ChargebackStatus, iv as ChargebackStatusWithLiterals, dR as ChargedBy, az as Color, iP as CommitDeltasApplicationErrors, hR as CommitDeltasOptions, fa as CommitDeltasRequest, fq as CommitDeltasResponse, fs as CommittedDiffs, ft as CommittedDiffsShippingUpdateInfoOneOf, hk as CommonAddress, hl as CommonAddressStreetOneOf, iR as CommonSearchWithEntityContext, hj as Company, h8 as Complete, bi as Coupon, f3 as CreateOrderRequest, f6 as CreateOrderResponse, dQ as CreatePaymentGatewayOrderRequest, dS as CreatePaymentGatewayOrderResponse, cf as CreatedBy, cg as CreatedByStringOneOf, c2 as CreditCardDetails, e8 as CreditCardPaymentMethodDetails, aZ as CurrencyConversionDetails, eV as CursorPaging, f2 as CursorPagingMetadata, f0 as CursorSearch, f1 as CursorSearchPagingMethodOneOf, eY as Cursors, bq as CustomActivity, cs as CustomAllowedActions, ci as CustomField, an as CustomFieldGroup, iH as CustomFieldGroupWithLiterals, hG as CustomFieldValue, he as Customer, h0 as DecrementData, g$ as DecrementItemsQuantityRequest, h1 as DecrementItemsQuantityResponse, dz as DelayedCaptureSettings, hV as DeleteActivityIdentifiers, gp as DeleteActivityRequest, gq as DeleteActivityResponse, eC as DeleteByFilterOperation, eB as DeleteByIdsOperation, b6 as DeliveryLogistics, b7 as DeliveryLogisticsAddressOneOf, ba as DeliveryTimeSlot, ai as DeltaPaymentOptionType, iC as DeltaPaymentOptionTypeWithLiterals, hI as Deposit, ap as DepositType, iJ as DepositTypeWithLiterals, au as DescriptionLine, aw as DescriptionLineDescriptionLineValueOneOf, ax as DescriptionLineName, D as DescriptionLineType, hX as DescriptionLineTypeWithLiterals, av as DescriptionLineValueOneOf, eM as DiffmatokyPayload, aH as DigitalFile, hy as Discount, hz as DiscountOneDiscountTypeOneOf, L as DiscountReason, i9 as DiscountReasonWithLiterals, bl as DiscountRule, bm as DiscountRuleName, K as DiscountType, i8 as DiscountTypeWithLiterals, cG as DomainEvent, cH as DomainEventBodyOneOf, g2 as DownloadLinkSent, bw as DraftOrderChangesApplied, fo as DraftOrderCommitSettings, fb as DraftOrderDiffs, fe as DraftOrderDiffsBillingUpdateInfoOneOf, fd as DraftOrderDiffsBuyerUpdateInfoOneOf, ff as DraftOrderDiffsRecipientUpdateInfoOneOf, fc as DraftOrderDiffsShippingUpdateInfoOneOf, dA as Duration, a0 as DurationUnit, ij as DurationUnitWithLiterals, hf as Email, gb as EmailEdited, dw as Empty, cI as EntityCreatedEvent, cL as EntityDeletedEvent, cK as EntityUpdatedEvent, eN as ErrorInformation, hK as EventMetadata, aT as ExtendedFields, ca as ExternalReceipt, ei as ExternalReceiptInfo, aA as FocalPoint, aM as FreeTrialPeriod, g9 as FulfillerEmailSent, F as FulfillmentStatus, gC as FulfillmentStatusUpdated, i3 as FulfillmentStatusWithLiterals, cm as FulfillmentStatusesAggregate, b3 as FullAddressContactDetails, eO as GetOrderRequest, eP as GetOrderResponse, dB as GetPaymentCollectabilityStatusRequest, dM as GetRefundabilityStatusRequest, dN as GetRefundabilityStatusResponse, gX as GetShipmentsRequest, gY as GetShipmentsResponse, ef as GiftCardPaymentDetails, bV as GiftCardPaymentRefund, hc as IdAndVersion, cO as IdentificationData, cP as IdentificationDataIdOneOf, cA as ImportOrderRequest, cB as ImportOrderResponse, cz as ImportedOrderDeleted, fX as InternalActivity, fY as InternalActivityContentOneOf, ez as InternalDocument, eD as InternalDocumentUpdateByFilterOperation, eA as InternalDocumentUpdateOperation, eQ as InternalQueryOrdersRequest, eW as InternalQueryOrdersResponse, eE as InternalUpdateExistingOperation, aj as InventoryAction, iD as InventoryActionWithLiterals, fp as InventoryUpdateDetails, g7 as InvoiceAdded, ho as InvoiceDates, hF as InvoiceDynamicPriceTotals, hd as InvoiceFields, g8 as InvoiceSent, hb as InvoiceSentEvent, aq as InvoiceStatus, iK as InvoiceStatusWithLiterals, hD as InvoicesPayment, fj as ItemChangedDetails, dJ as ItemMetadata, aW as ItemModifier, aE as ItemTaxFullDetails, aC as ItemType, aD as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, hY as ItemTypePresetWithLiterals, hx as ItemizedFee, J as JurisdictionType, h_ as JurisdictionTypeWithLiterals, hq as LineItem, bI as LineItemAmount, bz as LineItemChanges, fu as LineItemDelta, fv as LineItemDeltaDeltaOneOf, bD as LineItemDescriptionLineChange, bn as LineItemDiscount, bv as LineItemExchangeData, hu as LineItemMetaData, bE as LineItemModifiersChange, bB as LineItemPriceChange, bC as LineItemProductNameChange, bA as LineItemQuantityChange, N as LineItemQuantityChangeType, ia as LineItemQuantityChangeTypeWithLiterals, dd as LineItemRefund, eo as LineItemRefundSummary, hs as LineItemTax, aG as LineItemTaxBreakdown, aF as LineItemTaxInfo, gs as LineItemUpdate, hp as LineItems, hv as Locale, cp as Location, aQ as LocationAndQuantity, bJ as ManagedAdditionalFee, bG as ManagedDiscount, bF as ManagedLineItem, a4 as ManuallyRefundableReason, io as ManuallyRefundableReasonWithLiterals, gA as MarkAsFulfilledRequest, gB as MarkAsFulfilledResponse, gH as MarkAsUnfulfilledRequest, gI as MarkAsUnfulfilledResponse, dE as MarkOrderAsPaidRequest, dF as MarkOrderAsPaidResponse, gu as MarkOrderAsSeenByHumanRequest, gv as MarkOrderAsSeenByHumanResponse, fU as MaskedOrderLineItem, dU as MembershipChargeItem, dV as MembershipName, eg as MembershipPaymentDetails, bW as MembershipPaymentRefund, ac as MembershipPaymentStatus, iw as MembershipPaymentStatusWithLiterals, br as MerchantComment, bj as MerchantDiscount, bk as MerchantDiscountMerchantDiscountReasonOneOf, cN as MessageEnvelope, hE as MetaData, aU as ModifierGroup, bu as NewExchangeOrderCreated, a3 as NonRefundableReason, im as NonRefundableReasonWithLiterals, Y as OrderActionType, ie as OrderActionTypeWithLiterals, af as OrderActivityTypeEnumActivityType, iz as OrderActivityTypeEnumActivityTypeWithLiterals, ah as OrderApprovalStrategy, iB as OrderApprovalStrategyWithLiterals, ct as OrderApproved, g1 as OrderCanceled, gx as OrderCanceledEventOrderCanceled, bx as OrderChange, by as OrderChangeValueOneOf, f5 as OrderCreateNotifications, bt as OrderCreatedFromExchange, f4 as OrderCreationSettings, fr as OrderDeltasCommitted, f$ as OrderFulfilled, cy as OrderImported, cw as OrderItemsRestocked, ar as OrderLineItem, fi as OrderLineItemChangedDetails, g0 as OrderNotFulfilled, f_ as OrderPaid, gd as OrderPartiallyPaid, ge as OrderPending, fZ as OrderPlaced, bs as OrderRefunded, gf as OrderRejected, cv as OrderRejectedEventOrderRejected, hQ as OrderSearchSpec, cq as OrderSettings, cr as OrderSettingsAllowedActionsOneOf, H as OrderStatus, i7 as OrderStatusWithLiterals, bf as OrderTaxBreakdown, be as OrderTaxInfo, e2 as OrderTransactions, cu as OrdersExperiments, e3 as Payment, c3 as PaymentCanceled, c4 as PaymentCanceledPaymentDetailsOneOf, a1 as PaymentCollectabilityStatus, ik as PaymentCollectabilityStatusWithLiterals, iN as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, hN as PaymentCollectionCreatePaymentGatewayOrderOptions, iM as PaymentCollectionMarkOrderAsPaidApplicationErrors, c5 as PaymentDeclined, c6 as PaymentDeclinedPaymentDetailsOneOf, w as PaymentOptionType, hZ as PaymentOptionTypeWithLiterals, e4 as PaymentPaymentDetailsOneOf, b_ as PaymentPending, b$ as PaymentPendingPaymentDetailsOneOf, e5 as PaymentReceiptInfoOneOf, dZ as PaymentRefund, bY as PaymentRefundFailed, bX as PaymentRefunded, y as PaymentStatus, gS as PaymentStatusUpdated, i2 as PaymentStatusWithLiterals, hC as Payments, hi as Phone, aB as PhysicalProperties, b9 as PickupAddress, b8 as PickupDetails, E as PickupMethod, i6 as PickupMethodWithLiterals, gc as PickupReadyEmailSent, ak as Placement, iE as PlacementWithLiterals, ay as PlainTextValue, eU as PlatformPaging, eX as PlatformPagingMetadata, eR as PlatformQuery, eS as PlatformQueryPagingMethodOneOf, dx as PreparePaymentCollectionRequest, dn as PreviewBuyerConfirmationEmailRequest, dp as PreviewBuyerConfirmationEmailResponse, dl as PreviewBuyerPaymentsReceivedEmailRequest, dm as PreviewBuyerPaymentsReceivedEmailResponse, dq as PreviewBuyerPickupConfirmationEmailRequest, dr as PreviewBuyerPickupConfirmationEmailResponse, dh as PreviewCancelEmailRequest, di as PreviewCancelEmailResponse, dj as PreviewCancelRefundEmailRequest, dk as PreviewCancelRefundEmailResponse, d8 as PreviewEmailByTypeRequest, d9 as PreviewEmailByTypeResponse, _ as PreviewEmailType, ih as PreviewEmailTypeWithLiterals, da as PreviewRefundEmailRequest, dg as PreviewRefundEmailResponse, du as PreviewResendDownloadLinksEmailRequest, dv as PreviewResendDownloadLinksEmailResponse, ds as PreviewShippingConfirmationEmailRequest, dt as PreviewShippingConfirmationEmailResponse, aP as PriceDescription, a_ as PriceSummary, as as ProductName, gi as PublicActivity, gj as PublicActivityContentOneOf, eZ as QueryOrderRequest, e_ as QueryOrderResponse, hg as QuotesAddress, a9 as Reason, it as ReasonWithLiterals, c7 as ReceiptCreated, c8 as ReceiptCreatedReceiptInfoOneOf, cb as ReceiptSent, cc as ReceiptSentReceiptInfoOneOf, iL as RecordManuallyCollectedPaymentApplicationErrors, dC as RecordManuallyCollectedPaymentRequest, dD as RecordManuallyCollectedPaymentResponse, dy as RedirectUrls, ej as Refund, db as RefundDetails, bR as RefundInitiated, dc as RefundItem, en as RefundItemsBreakdown, d_ as RefundSideEffects, ad as RefundStatus, el as RefundStatusInfo, ix as RefundStatusWithLiterals, ek as RefundTransaction, dO as Refundability, dP as RefundabilityAdditionalRefundabilityInfoOneOf, a2 as RefundableStatus, il as RefundableStatusWithLiterals, bZ as RefundedAsStoreCredit, bS as RefundedPayment, bT as RefundedPaymentKindOneOf, c0 as RegularPayment, e6 as RegularPaymentDetails, e7 as RegularPaymentDetailsPaymentMethodDetailsOneOf, c1 as RegularPaymentPaymentMethodDetailsOneOf, bU as RegularPaymentRefund, ha as Reschedule, d$ as RestockInfo, e0 as RestockItem, a5 as RestockType, ip as RestockTypeWithLiterals, cJ as RestoreInfo, bN as SavedPaymentMethod, $ as ScheduledAction, ii as ScheduledActionWithLiterals, e$ as SearchOrdersRequest, cQ as SendBuyerConfirmationEmailRequest, cR as SendBuyerConfirmationEmailResponse, cS as SendBuyerPaymentsReceivedEmailRequest, cT as SendBuyerPaymentsReceivedEmailResponse, cU as SendBuyerPickupConfirmationEmailRequest, cV as SendBuyerPickupConfirmationEmailResponse, cY as SendBuyerShippingConfirmationEmailRequest, cZ as SendBuyerShippingConfirmationEmailResponse, d2 as SendCancelRefundEmailRequest, d3 as SendCancelRefundEmailResponse, d0 as SendMerchantOrderReceivedNotificationRequest, d1 as SendMerchantOrderReceivedNotificationResponse, d6 as SendMerchantOrderReceivedPushRequest, d7 as SendMerchantOrderReceivedPushResponse, d4 as SendRefundEmailRequest, d5 as SendRefundEmailResponse, dW as ServiceProperties, hL as SetOrderNumberCounterOptions, cC as SetOrderNumberCounterRequest, cD as SetOrderNumberCounterResponse, ga as ShippingAddressEdited, g6 as ShippingConfirmationEmailSent, bM as ShippingInformation, bL as ShippingInformationChange, bb as ShippingPrice, df as ShippingRefund, bc as ShippingRegion, ag as SortOrder, iA as SortOrderWithLiterals, eT as Sorting, ht as Source, am as SourceType, iG as SourceTypeWithLiterals, hn as StandardDetails, b1 as StreetAddress, hm as Subdivision, al as SubdivisionType, iF as SubdivisionTypeWithLiterals, aK as SubscriptionDescription, x as SubscriptionFrequency, h$ as SubscriptionFrequencyWithLiterals, aI as SubscriptionInfo, aL as SubscriptionSettings, aJ as SubscriptionTitle, co as TagList, cn as Tags, h4 as Task, h6 as TaskAction, h7 as TaskActionActionOneOf, h5 as TaskKey, bd as TaxSummary, aR as TaxableAddress, aS as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, i1 as TaxableAddressTypeWithLiterals, hw as TotalPrice, bK as TotalPriceChange, g5 as TrackingLinkAdded, g3 as TrackingNumberAdded, g4 as TrackingNumberEdited, a6 as TransactionStatus, iq as TransactionStatusWithLiterals, aV as TranslatableString, bH as TranslatedValue, iO as TriggerRefundApplicationErrors, hP as TriggerRefundOptions, dY as TriggerRefundRequest, e1 as TriggerRefundResponse, eL as TriggerReindexOrderRequest, eI as TriggerReindexRequest, eJ as TriggerReindexResponse, fC as UnArchiveOrderRequest, fD as UnArchiveOrderResponse, hU as UpdateActivityIdentifiers, gn as UpdateActivityRequest, go as UpdateActivityResponse, fP as UpdateBillingContactDetailsRequest, fQ as UpdateBillingContactDetailsResponse, fL as UpdateBuyerEmailRequest, fM as UpdateBuyerEmailResponse, fI as UpdateBuyerInfoRequest, fK as UpdateBuyerInfoResponse, ex as UpdateInternalDocumentsEvent, ey as UpdateInternalDocumentsEventOperationOneOf, gr as UpdateLineItemsDescriptionLinesRequest, gt as UpdateLineItemsDescriptionLinesResponse, hT as UpdateOrderLineItem, hS as UpdateOrderLineItemIdentifiers, fR as UpdateOrderLineItemRequest, fS as UpdateOrderLineItemResponse, fT as UpdateOrderLineItemsRequest, fV as UpdateOrderLineItemsResponse, f7 as UpdateOrderRequest, f8 as UpdateOrderResponse, fN as UpdateOrderShippingAddressRequest, fO as UpdateOrderShippingAddressResponse, iQ as UpdateOrderStatusApplicationErrors, gy as UpdateOrderStatusRequest, gz as UpdateOrderStatusResponse, gT as V1BulkMarkOrdersAsPaidRequest, gU as V1BulkMarkOrdersAsPaidResponse, gV as V1CreatePaymentGatewayOrderRequest, gW as V1CreatePaymentGatewayOrderResponse, fg as V1LineItemDelta, fh as V1LineItemDeltaDeltaOneOf, gQ as V1MarkOrderAsPaidRequest, gR as V1MarkOrderAsPaidResponse, cx as V1RestockItem, ed as V1ScheduledAction, b5 as V1ShippingInformation, hH as Value, ao as ValueType, iI as ValueTypeWithLiterals, b4 as VatId, z as VatType, i5 as VatTypeWithLiterals, eG as VersionedDeleteByIdsOperation, eH as VersionedDocumentId, eF as VersionedDocumentUpdateOperation, ae as VersioningMode, iy as VersioningModeWithLiterals, et as VoidAuthorizedPaymentsRequest, Z as WebhookIdentityType, ig as WebhookIdentityTypeWithLiterals, W as WeightUnit, i4 as WeightUnitWithLiterals, c9 as WixReceipt, eh as WixReceiptInfo } from './ecom-v1-order-orders.universal-BP7eX-NQ.mjs';
|
|
2
|
+
import { P as Price, a as PreparePaymentCollectionOptions, b as PreparePaymentCollectionResponse, c as PreparePaymentCollectionApplicationErrors, G as GetPaymentCollectabilityStatusResponse, V as VoidAuthorizedPaymentsResponse, d as VoidAuthorizedPaymentsApplicationErrors, e as PaymentCapture, C as CaptureAuthorizedPaymentsResponse, f as CaptureAuthorizedPaymentsApplicationErrors, O as Order, g as GetOrderApplicationErrors, h as OrderSearch, S as SearchOrdersResponse, i as CreateOrderOptions, j as CreateOrderApplicationErrors, U as UpdateOrder, k as UpdateOrderApplicationErrors, M as MaskedOrder, B as BulkUpdateOrdersOptions, l as BulkUpdateOrdersResponse, m as CancelOrderOptions, n as CancelOrderResponse, o as CancelOrderApplicationErrors, p as BulkUpdateOrderTagsOptions, q as BulkUpdateOrderTagsResponse, r as OrderApprovedEnvelope, s as OrderUpdatedEnvelope, t as OrderCanceledEnvelope, u as OrderCreatedEnvelope, v as OrderPaymentStatusUpdatedEnvelope } from './ecom-v1-order-orders.universal-CXrp4ykp.mjs';
|
|
3
|
+
export { cM as ActionEvent, ab as ActionType, iv as ActionTypeWithLiterals, bo as Activity, bp as ActivityContentOneOf, Q as ActivityType, ib as ActivityTypeWithLiterals, gl as AddActivitiesRequest, gm as AddActivitiesResponse, gh as AddActivityRequest, gk as AddActivityResponse, fW as AddInternalActivityRequest, gg as AddInternalActivityResponse, cl as AdditionalFee, fm as AdditionalFeeDelta, fn as AdditionalFeeDeltaDeltaOneOf, de as AdditionalFeeRefund, b0 as Address, hh as AddressDescription, b2 as AddressLocation, a$ as AddressWithContact, A as AdjustmentType, i0 as AdjustmentTypeWithLiterals, hW as AggregateOrdersOptions, gZ as AggregateOrdersRequest, g_ as AggregateOrdersResponse, em as AggregatedRefundSummary, dK as ApplicationError, bg as AppliedDiscount, fk as AppliedDiscountDelta, fl as AppliedDiscountDeltaDeltaOneOf, bh as AppliedDiscountDiscountSourceOneOf, fw as ArchiveOrderRequest, fx as ArchiveOrderResponse, X as AttributionSource, id as AttributionSourceWithLiterals, eb as AuthorizationActionFailureDetails, ea as AuthorizationCapture, a8 as AuthorizationCaptureStatus, is as AuthorizationCaptureStatusWithLiterals, e9 as AuthorizationDetails, ec as AuthorizationVoid, a9 as AuthorizationVoidStatus, it as AuthorizationVoidStatusWithLiterals, bP as AuthorizedPaymentCaptured, bO as AuthorizedPaymentCreated, bQ as AuthorizedPaymentVoided, ck as Balance, cj as BalanceSummary, hJ as BaseEventMetadata, eK as BatchOfTriggerReindexOrderRequest, hr as BigDecimalWrapper, aN as BillingAdjustment, aO as BillingAdjustmentPriceSummary, dL as BulkActionMetadata, fA as BulkArchiveOrdersByFilterRequest, fB as BulkArchiveOrdersByFilterResponse, fy as BulkArchiveOrdersRequest, fz as BulkArchiveOrdersResponse, hM as BulkDeleteImportedOrdersOptions, cE as BulkDeleteImportedOrdersRequest, cF as BulkDeleteImportedOrdersResponse, gF as BulkMarkAsFulfilledByFilterRequest, gG as BulkMarkAsFulfilledByFilterResponse, gD as BulkMarkAsFulfilledRequest, gE as BulkMarkAsFulfilledResponse, gL as BulkMarkAsUnfulfilledByFilterRequest, gM as BulkMarkAsUnfulfilledByFilterResponse, gJ as BulkMarkAsUnfulfilledRequest, gK as BulkMarkAsUnfulfilledResponse, dG as BulkMarkOrdersAsPaidRequest, dH as BulkMarkOrdersAsPaidResponse, dI as BulkOrderResult, cW as BulkSendBuyerPickupConfirmationEmailsRequest, cX as BulkSendBuyerPickupConfirmationEmailsResponse, c_ as BulkSendBuyerShippingConfirmationEmailsRequest, c$ as BulkSendBuyerShippingConfirmationEmailsResponse, gN as BulkSetBusinessLocationRequest, gO as BulkSetBusinessLocationResponse, gP as BulkSetBusinessLocationResult, fG as BulkUnArchiveOrdersByFilterRequest, fH as BulkUnArchiveOrdersByFilterResponse, fE as BulkUnArchiveOrdersRequest, fF as BulkUnArchiveOrdersResponse, h2 as BulkUpdateOrderTagsRequest, h3 as BulkUpdateOrderTagsResult, f9 as BulkUpdateOrdersRequest, aX as BuyerInfo, aY as BuyerInfoIdOneOf, fJ as BuyerInfoUpdate, eq as CalculateRefundItemRequest, es as CalculateRefundItemResponse, ep as CalculateRefundRequest, er as CalculateRefundResponse, hB as CalculatedTax, hA as CalculatedTaxes, h9 as Cancel, gw as CancelOrderRequest, eu as CaptureAuthorizedPaymentsRequest, at as CatalogReference, ch as ChannelInfo, Y as ChannelType, ie as ChannelTypeWithLiterals, hO as ChargeMembershipsOptions, dT as ChargeMembershipsRequest, dX as ChargeMembershipsResponse, ev as ChargeSavedPaymentMethodRequest, ew as ChargeSavedPaymentMethodResponse, ee as Chargeback, cd as ChargebackCreated, ce as ChargebackReversed, ac as ChargebackStatus, iw as ChargebackStatusWithLiterals, dR as ChargedBy, az as Color, iP as CommitDeltasApplicationErrors, hR as CommitDeltasOptions, fa as CommitDeltasRequest, fq as CommitDeltasResponse, fs as CommittedDiffs, ft as CommittedDiffsShippingUpdateInfoOneOf, hk as CommonAddress, hl as CommonAddressStreetOneOf, iR as CommonSearchWithEntityContext, hj as Company, h8 as Complete, bi as Coupon, f3 as CreateOrderRequest, f6 as CreateOrderResponse, dQ as CreatePaymentGatewayOrderRequest, dS as CreatePaymentGatewayOrderResponse, cf as CreatedBy, cg as CreatedByStringOneOf, c2 as CreditCardDetails, e8 as CreditCardPaymentMethodDetails, aZ as CurrencyConversionDetails, eV as CursorPaging, f2 as CursorPagingMetadata, f0 as CursorSearch, f1 as CursorSearchPagingMethodOneOf, eY as Cursors, bq as CustomActivity, cs as CustomAllowedActions, ci as CustomField, an as CustomFieldGroup, iH as CustomFieldGroupWithLiterals, hG as CustomFieldValue, he as Customer, h0 as DecrementData, g$ as DecrementItemsQuantityRequest, h1 as DecrementItemsQuantityResponse, dz as DelayedCaptureSettings, hV as DeleteActivityIdentifiers, gp as DeleteActivityRequest, gq as DeleteActivityResponse, eC as DeleteByFilterOperation, eB as DeleteByIdsOperation, b6 as DeliveryLogistics, b7 as DeliveryLogisticsAddressOneOf, ba as DeliveryTimeSlot, ai as DeltaPaymentOptionType, iC as DeltaPaymentOptionTypeWithLiterals, hI as Deposit, ap as DepositType, iJ as DepositTypeWithLiterals, au as DescriptionLine, aw as DescriptionLineDescriptionLineValueOneOf, ax as DescriptionLineName, D as DescriptionLineType, hX as DescriptionLineTypeWithLiterals, av as DescriptionLineValueOneOf, eM as DiffmatokyPayload, aH as DigitalFile, hy as Discount, hz as DiscountOneDiscountTypeOneOf, L as DiscountReason, i9 as DiscountReasonWithLiterals, bl as DiscountRule, bm as DiscountRuleName, K as DiscountType, i8 as DiscountTypeWithLiterals, cG as DomainEvent, cH as DomainEventBodyOneOf, g2 as DownloadLinkSent, bw as DraftOrderChangesApplied, fo as DraftOrderCommitSettings, fb as DraftOrderDiffs, fe as DraftOrderDiffsBillingUpdateInfoOneOf, fd as DraftOrderDiffsBuyerUpdateInfoOneOf, ff as DraftOrderDiffsRecipientUpdateInfoOneOf, fc as DraftOrderDiffsShippingUpdateInfoOneOf, dA as Duration, a1 as DurationUnit, ik as DurationUnitWithLiterals, hf as Email, gb as EmailEdited, dw as Empty, cI as EntityCreatedEvent, cL as EntityDeletedEvent, cK as EntityUpdatedEvent, eN as ErrorInformation, hK as EventMetadata, aT as ExtendedFields, ca as ExternalReceipt, ei as ExternalReceiptInfo, aA as FocalPoint, aM as FreeTrialPeriod, g9 as FulfillerEmailSent, F as FulfillmentStatus, gC as FulfillmentStatusUpdated, i3 as FulfillmentStatusWithLiterals, cm as FulfillmentStatusesAggregate, b3 as FullAddressContactDetails, eO as GetOrderRequest, eP as GetOrderResponse, dB as GetPaymentCollectabilityStatusRequest, dM as GetRefundabilityStatusRequest, dN as GetRefundabilityStatusResponse, gX as GetShipmentsRequest, gY as GetShipmentsResponse, ef as GiftCardPaymentDetails, bV as GiftCardPaymentRefund, hc as IdAndVersion, cO as IdentificationData, cP as IdentificationDataIdOneOf, cA as ImportOrderRequest, cB as ImportOrderResponse, cz as ImportedOrderDeleted, fX as InternalActivity, fY as InternalActivityContentOneOf, ez as InternalDocument, eD as InternalDocumentUpdateByFilterOperation, eA as InternalDocumentUpdateOperation, eQ as InternalQueryOrdersRequest, eW as InternalQueryOrdersResponse, eE as InternalUpdateExistingOperation, aj as InventoryAction, iD as InventoryActionWithLiterals, fp as InventoryUpdateDetails, g7 as InvoiceAdded, ho as InvoiceDates, hF as InvoiceDynamicPriceTotals, hd as InvoiceFields, g8 as InvoiceSent, hb as InvoiceSentEvent, aq as InvoiceStatus, iK as InvoiceStatusWithLiterals, hD as InvoicesPayment, fj as ItemChangedDetails, dJ as ItemMetadata, aW as ItemModifier, aE as ItemTaxFullDetails, aC as ItemType, aD as ItemTypeItemTypeDataOneOf, I as ItemTypePreset, hY as ItemTypePresetWithLiterals, hx as ItemizedFee, J as JurisdictionType, h_ as JurisdictionTypeWithLiterals, hq as LineItem, bI as LineItemAmount, bz as LineItemChanges, fu as LineItemDelta, fv as LineItemDeltaDeltaOneOf, bD as LineItemDescriptionLineChange, bn as LineItemDiscount, bv as LineItemExchangeData, hu as LineItemMetaData, bE as LineItemModifiersChange, bB as LineItemPriceChange, bC as LineItemProductNameChange, bA as LineItemQuantityChange, N as LineItemQuantityChangeType, ia as LineItemQuantityChangeTypeWithLiterals, dd as LineItemRefund, eo as LineItemRefundSummary, hs as LineItemTax, aG as LineItemTaxBreakdown, aF as LineItemTaxInfo, gs as LineItemUpdate, hp as LineItems, hv as Locale, cp as Location, aQ as LocationAndQuantity, bJ as ManagedAdditionalFee, bG as ManagedDiscount, bF as ManagedLineItem, a5 as ManuallyRefundableReason, ip as ManuallyRefundableReasonWithLiterals, gA as MarkAsFulfilledRequest, gB as MarkAsFulfilledResponse, gH as MarkAsUnfulfilledRequest, gI as MarkAsUnfulfilledResponse, dE as MarkOrderAsPaidRequest, dF as MarkOrderAsPaidResponse, gu as MarkOrderAsSeenByHumanRequest, gv as MarkOrderAsSeenByHumanResponse, fU as MaskedOrderLineItem, dU as MembershipChargeItem, dV as MembershipName, eg as MembershipPaymentDetails, bW as MembershipPaymentRefund, ad as MembershipPaymentStatus, ix as MembershipPaymentStatusWithLiterals, br as MerchantComment, bj as MerchantDiscount, bk as MerchantDiscountMerchantDiscountReasonOneOf, cN as MessageEnvelope, hE as MetaData, aU as ModifierGroup, bu as NewExchangeOrderCreated, a4 as NonRefundableReason, io as NonRefundableReasonWithLiterals, Z as OrderActionType, ig as OrderActionTypeWithLiterals, R as OrderActivityTypeEnumActivityType, ic as OrderActivityTypeEnumActivityTypeWithLiterals, ah as OrderApprovalStrategy, iB as OrderApprovalStrategyWithLiterals, ct as OrderApproved, g1 as OrderCanceled, gx as OrderCanceledEventOrderCanceled, bx as OrderChange, by as OrderChangeValueOneOf, f5 as OrderCreateNotifications, bt as OrderCreatedFromExchange, f4 as OrderCreationSettings, fr as OrderDeltasCommitted, f$ as OrderFulfilled, cy as OrderImported, cw as OrderItemsRestocked, ar as OrderLineItem, fi as OrderLineItemChangedDetails, g0 as OrderNotFulfilled, f_ as OrderPaid, gd as OrderPartiallyPaid, ge as OrderPending, fZ as OrderPlaced, bs as OrderRefunded, gf as OrderRejected, cv as OrderRejectedEventOrderRejected, hQ as OrderSearchSpec, cq as OrderSettings, cr as OrderSettingsAllowedActionsOneOf, H as OrderStatus, i7 as OrderStatusWithLiterals, bf as OrderTaxBreakdown, be as OrderTaxInfo, e2 as OrderTransactions, cu as OrdersExperiments, e3 as Payment, c3 as PaymentCanceled, c4 as PaymentCanceledPaymentDetailsOneOf, a2 as PaymentCollectabilityStatus, il as PaymentCollectabilityStatusWithLiterals, iN as PaymentCollectionCreatePaymentGatewayOrderApplicationErrors, hN as PaymentCollectionCreatePaymentGatewayOrderOptions, iM as PaymentCollectionMarkOrderAsPaidApplicationErrors, c5 as PaymentDeclined, c6 as PaymentDeclinedPaymentDetailsOneOf, w as PaymentOptionType, hZ as PaymentOptionTypeWithLiterals, e4 as PaymentPaymentDetailsOneOf, b_ as PaymentPending, b$ as PaymentPendingPaymentDetailsOneOf, e5 as PaymentReceiptInfoOneOf, dZ as PaymentRefund, bY as PaymentRefundFailed, bX as PaymentRefunded, y as PaymentStatus, gS as PaymentStatusUpdated, i2 as PaymentStatusWithLiterals, hC as Payments, hi as Phone, aB as PhysicalProperties, b9 as PickupAddress, b8 as PickupDetails, E as PickupMethod, i6 as PickupMethodWithLiterals, gc as PickupReadyEmailSent, ak as Placement, iE as PlacementWithLiterals, ay as PlainTextValue, eU as PlatformPaging, eX as PlatformPagingMetadata, eR as PlatformQuery, eS as PlatformQueryPagingMethodOneOf, dx as PreparePaymentCollectionRequest, dn as PreviewBuyerConfirmationEmailRequest, dp as PreviewBuyerConfirmationEmailResponse, dl as PreviewBuyerPaymentsReceivedEmailRequest, dm as PreviewBuyerPaymentsReceivedEmailResponse, dq as PreviewBuyerPickupConfirmationEmailRequest, dr as PreviewBuyerPickupConfirmationEmailResponse, dh as PreviewCancelEmailRequest, di as PreviewCancelEmailResponse, dj as PreviewCancelRefundEmailRequest, dk as PreviewCancelRefundEmailResponse, d8 as PreviewEmailByTypeRequest, d9 as PreviewEmailByTypeResponse, $ as PreviewEmailType, ii as PreviewEmailTypeWithLiterals, da as PreviewRefundEmailRequest, dg as PreviewRefundEmailResponse, du as PreviewResendDownloadLinksEmailRequest, dv as PreviewResendDownloadLinksEmailResponse, ds as PreviewShippingConfirmationEmailRequest, dt as PreviewShippingConfirmationEmailResponse, aP as PriceDescription, a_ as PriceSummary, as as ProductName, gi as PublicActivity, gj as PublicActivityContentOneOf, eZ as QueryOrderRequest, e_ as QueryOrderResponse, hg as QuotesAddress, aa as Reason, iu as ReasonWithLiterals, c7 as ReceiptCreated, c8 as ReceiptCreatedReceiptInfoOneOf, cb as ReceiptSent, cc as ReceiptSentReceiptInfoOneOf, iL as RecordManuallyCollectedPaymentApplicationErrors, dC as RecordManuallyCollectedPaymentRequest, dD as RecordManuallyCollectedPaymentResponse, dy as RedirectUrls, ej as Refund, db as RefundDetails, bR as RefundInitiated, dc as RefundItem, en as RefundItemsBreakdown, d_ as RefundSideEffects, ae as RefundStatus, el as RefundStatusInfo, iy as RefundStatusWithLiterals, ek as RefundTransaction, dO as Refundability, dP as RefundabilityAdditionalRefundabilityInfoOneOf, a3 as RefundableStatus, im as RefundableStatusWithLiterals, bZ as RefundedAsStoreCredit, bS as RefundedPayment, bT as RefundedPaymentKindOneOf, c0 as RegularPayment, e6 as RegularPaymentDetails, e7 as RegularPaymentDetailsPaymentMethodDetailsOneOf, c1 as RegularPaymentPaymentMethodDetailsOneOf, bU as RegularPaymentRefund, ha as Reschedule, d$ as RestockInfo, e0 as RestockItem, a6 as RestockType, iq as RestockTypeWithLiterals, cJ as RestoreInfo, bN as SavedPaymentMethod, a0 as ScheduledAction, ij as ScheduledActionWithLiterals, e$ as SearchOrdersRequest, cQ as SendBuyerConfirmationEmailRequest, cR as SendBuyerConfirmationEmailResponse, cS as SendBuyerPaymentsReceivedEmailRequest, cT as SendBuyerPaymentsReceivedEmailResponse, cU as SendBuyerPickupConfirmationEmailRequest, cV as SendBuyerPickupConfirmationEmailResponse, cY as SendBuyerShippingConfirmationEmailRequest, cZ as SendBuyerShippingConfirmationEmailResponse, d2 as SendCancelRefundEmailRequest, d3 as SendCancelRefundEmailResponse, d0 as SendMerchantOrderReceivedNotificationRequest, d1 as SendMerchantOrderReceivedNotificationResponse, d6 as SendMerchantOrderReceivedPushRequest, d7 as SendMerchantOrderReceivedPushResponse, d4 as SendRefundEmailRequest, d5 as SendRefundEmailResponse, dW as ServiceProperties, hL as SetOrderNumberCounterOptions, cC as SetOrderNumberCounterRequest, cD as SetOrderNumberCounterResponse, ga as ShippingAddressEdited, g6 as ShippingConfirmationEmailSent, bM as ShippingInformation, bL as ShippingInformationChange, bb as ShippingPrice, df as ShippingRefund, bc as ShippingRegion, ag as SortOrder, iA as SortOrderWithLiterals, eT as Sorting, ht as Source, am as SourceType, iG as SourceTypeWithLiterals, hn as StandardDetails, b1 as StreetAddress, hm as Subdivision, al as SubdivisionType, iF as SubdivisionTypeWithLiterals, aK as SubscriptionDescription, x as SubscriptionFrequency, h$ as SubscriptionFrequencyWithLiterals, aI as SubscriptionInfo, aL as SubscriptionSettings, aJ as SubscriptionTitle, co as TagList, cn as Tags, h4 as Task, h6 as TaskAction, h7 as TaskActionActionOneOf, h5 as TaskKey, bd as TaxSummary, aR as TaxableAddress, aS as TaxableAddressTaxableAddressDataOneOf, T as TaxableAddressType, i1 as TaxableAddressTypeWithLiterals, hw as TotalPrice, bK as TotalPriceChange, g5 as TrackingLinkAdded, g3 as TrackingNumberAdded, g4 as TrackingNumberEdited, a7 as TransactionStatus, ir as TransactionStatusWithLiterals, aV as TranslatableString, bH as TranslatedValue, iO as TriggerRefundApplicationErrors, hP as TriggerRefundOptions, dY as TriggerRefundRequest, e1 as TriggerRefundResponse, eL as TriggerReindexOrderRequest, eI as TriggerReindexRequest, eJ as TriggerReindexResponse, fC as UnArchiveOrderRequest, fD as UnArchiveOrderResponse, hU as UpdateActivityIdentifiers, gn as UpdateActivityRequest, go as UpdateActivityResponse, fP as UpdateBillingContactDetailsRequest, fQ as UpdateBillingContactDetailsResponse, fL as UpdateBuyerEmailRequest, fM as UpdateBuyerEmailResponse, fI as UpdateBuyerInfoRequest, fK as UpdateBuyerInfoResponse, ex as UpdateInternalDocumentsEvent, ey as UpdateInternalDocumentsEventOperationOneOf, gr as UpdateLineItemsDescriptionLinesRequest, gt as UpdateLineItemsDescriptionLinesResponse, hT as UpdateOrderLineItem, hS as UpdateOrderLineItemIdentifiers, fR as UpdateOrderLineItemRequest, fS as UpdateOrderLineItemResponse, fT as UpdateOrderLineItemsRequest, fV as UpdateOrderLineItemsResponse, f7 as UpdateOrderRequest, f8 as UpdateOrderResponse, fN as UpdateOrderShippingAddressRequest, fO as UpdateOrderShippingAddressResponse, iQ as UpdateOrderStatusApplicationErrors, gy as UpdateOrderStatusRequest, gz as UpdateOrderStatusResponse, gT as V1BulkMarkOrdersAsPaidRequest, gU as V1BulkMarkOrdersAsPaidResponse, gV as V1CreatePaymentGatewayOrderRequest, gW as V1CreatePaymentGatewayOrderResponse, fg as V1LineItemDelta, fh as V1LineItemDeltaDeltaOneOf, gQ as V1MarkOrderAsPaidRequest, gR as V1MarkOrderAsPaidResponse, cx as V1RestockItem, ed as V1ScheduledAction, b5 as V1ShippingInformation, hH as Value, ao as ValueType, iI as ValueTypeWithLiterals, b4 as VatId, z as VatType, i5 as VatTypeWithLiterals, eG as VersionedDeleteByIdsOperation, eH as VersionedDocumentId, eF as VersionedDocumentUpdateOperation, af as VersioningMode, iz as VersioningModeWithLiterals, et as VoidAuthorizedPaymentsRequest, _ as WebhookIdentityType, ih as WebhookIdentityTypeWithLiterals, W as WeightUnit, i4 as WeightUnitWithLiterals, c9 as WixReceipt, eh as WixReceiptInfo } from './ecom-v1-order-orders.universal-CXrp4ykp.mjs';
|
|
4
4
|
|
|
5
5
|
declare function preparePaymentCollection$1(httpClient: HttpClient): PreparePaymentCollectionSignature;
|
|
6
6
|
interface PreparePaymentCollectionSignature {
|
package/build/es/index.mjs
CHANGED
|
@@ -1864,6 +1864,51 @@ var ActivityType = /* @__PURE__ */ ((ActivityType2) => {
|
|
|
1864
1864
|
ActivityType2["CHARGEBACK_REVERSED"] = "CHARGEBACK_REVERSED";
|
|
1865
1865
|
return ActivityType2;
|
|
1866
1866
|
})(ActivityType || {});
|
|
1867
|
+
var OrderActivityTypeEnumActivityType = /* @__PURE__ */ ((OrderActivityTypeEnumActivityType2) => {
|
|
1868
|
+
OrderActivityTypeEnumActivityType2["UNKNOWN_ACTIVITY_TYPE"] = "UNKNOWN_ACTIVITY_TYPE";
|
|
1869
|
+
OrderActivityTypeEnumActivityType2["ORDER_PLACED"] = "ORDER_PLACED";
|
|
1870
|
+
OrderActivityTypeEnumActivityType2["ORDER_PAID"] = "ORDER_PAID";
|
|
1871
|
+
OrderActivityTypeEnumActivityType2["ORDER_FULFILLED"] = "ORDER_FULFILLED";
|
|
1872
|
+
OrderActivityTypeEnumActivityType2["ORDER_NOT_FULFILLED"] = "ORDER_NOT_FULFILLED";
|
|
1873
|
+
OrderActivityTypeEnumActivityType2["ORDER_CANCELED"] = "ORDER_CANCELED";
|
|
1874
|
+
OrderActivityTypeEnumActivityType2["DOWNLOAD_LINK_SENT"] = "DOWNLOAD_LINK_SENT";
|
|
1875
|
+
OrderActivityTypeEnumActivityType2["TRACKING_NUMBER_ADDED"] = "TRACKING_NUMBER_ADDED";
|
|
1876
|
+
OrderActivityTypeEnumActivityType2["TRACKING_NUMBER_EDITED"] = "TRACKING_NUMBER_EDITED";
|
|
1877
|
+
OrderActivityTypeEnumActivityType2["TRACKING_LINK_ADDED"] = "TRACKING_LINK_ADDED";
|
|
1878
|
+
OrderActivityTypeEnumActivityType2["SHIPPING_CONFIRMATION_EMAIL_SENT"] = "SHIPPING_CONFIRMATION_EMAIL_SENT";
|
|
1879
|
+
OrderActivityTypeEnumActivityType2["INVOICE_ADDED"] = "INVOICE_ADDED";
|
|
1880
|
+
OrderActivityTypeEnumActivityType2["INVOICE_REMOVED"] = "INVOICE_REMOVED";
|
|
1881
|
+
OrderActivityTypeEnumActivityType2["INVOICE_SENT"] = "INVOICE_SENT";
|
|
1882
|
+
OrderActivityTypeEnumActivityType2["FULFILLER_EMAIL_SENT"] = "FULFILLER_EMAIL_SENT";
|
|
1883
|
+
OrderActivityTypeEnumActivityType2["SHIPPING_ADDRESS_EDITED"] = "SHIPPING_ADDRESS_EDITED";
|
|
1884
|
+
OrderActivityTypeEnumActivityType2["EMAIL_EDITED"] = "EMAIL_EDITED";
|
|
1885
|
+
OrderActivityTypeEnumActivityType2["PICKUP_READY_EMAIL_SENT"] = "PICKUP_READY_EMAIL_SENT";
|
|
1886
|
+
OrderActivityTypeEnumActivityType2["CUSTOM_ACTIVITY"] = "CUSTOM_ACTIVITY";
|
|
1887
|
+
OrderActivityTypeEnumActivityType2["MERCHANT_COMMENT"] = "MERCHANT_COMMENT";
|
|
1888
|
+
OrderActivityTypeEnumActivityType2["ORDER_CREATED_FROM_EXCHANGE"] = "ORDER_CREATED_FROM_EXCHANGE";
|
|
1889
|
+
OrderActivityTypeEnumActivityType2["NEW_EXCHANGE_ORDER_CREATED"] = "NEW_EXCHANGE_ORDER_CREATED";
|
|
1890
|
+
OrderActivityTypeEnumActivityType2["ORDER_PARTIALLY_PAID"] = "ORDER_PARTIALLY_PAID";
|
|
1891
|
+
OrderActivityTypeEnumActivityType2["DRAFT_ORDER_CHANGES_APPLIED"] = "DRAFT_ORDER_CHANGES_APPLIED";
|
|
1892
|
+
OrderActivityTypeEnumActivityType2["SAVED_PAYMENT_METHOD"] = "SAVED_PAYMENT_METHOD";
|
|
1893
|
+
OrderActivityTypeEnumActivityType2["AUTHORIZED_PAYMENT_CREATED"] = "AUTHORIZED_PAYMENT_CREATED";
|
|
1894
|
+
OrderActivityTypeEnumActivityType2["AUTHORIZED_PAYMENT_CAPTURED"] = "AUTHORIZED_PAYMENT_CAPTURED";
|
|
1895
|
+
OrderActivityTypeEnumActivityType2["AUTHORIZED_PAYMENT_VOIDED"] = "AUTHORIZED_PAYMENT_VOIDED";
|
|
1896
|
+
OrderActivityTypeEnumActivityType2["REFUND_INITIATED"] = "REFUND_INITIATED";
|
|
1897
|
+
OrderActivityTypeEnumActivityType2["PAYMENT_REFUNDED"] = "PAYMENT_REFUNDED";
|
|
1898
|
+
OrderActivityTypeEnumActivityType2["PAYMENT_REFUND_FAILED"] = "PAYMENT_REFUND_FAILED";
|
|
1899
|
+
OrderActivityTypeEnumActivityType2["REFUNDED_AS_STORE_CREDIT"] = "REFUNDED_AS_STORE_CREDIT";
|
|
1900
|
+
OrderActivityTypeEnumActivityType2["PAYMENT_PENDING"] = "PAYMENT_PENDING";
|
|
1901
|
+
OrderActivityTypeEnumActivityType2["PAYMENT_CANCELED"] = "PAYMENT_CANCELED";
|
|
1902
|
+
OrderActivityTypeEnumActivityType2["PAYMENT_DECLINED"] = "PAYMENT_DECLINED";
|
|
1903
|
+
OrderActivityTypeEnumActivityType2["ORDER_PENDING"] = "ORDER_PENDING";
|
|
1904
|
+
OrderActivityTypeEnumActivityType2["ORDER_REJECTED"] = "ORDER_REJECTED";
|
|
1905
|
+
OrderActivityTypeEnumActivityType2["RECEIPT_CREATED"] = "RECEIPT_CREATED";
|
|
1906
|
+
OrderActivityTypeEnumActivityType2["RECEIPT_SENT"] = "RECEIPT_SENT";
|
|
1907
|
+
OrderActivityTypeEnumActivityType2["CHARGEBACK_CREATED"] = "CHARGEBACK_CREATED";
|
|
1908
|
+
OrderActivityTypeEnumActivityType2["CHARGEBACK_REVERSED"] = "CHARGEBACK_REVERSED";
|
|
1909
|
+
OrderActivityTypeEnumActivityType2["ORDER_REFUNDED"] = "ORDER_REFUNDED";
|
|
1910
|
+
return OrderActivityTypeEnumActivityType2;
|
|
1911
|
+
})(OrderActivityTypeEnumActivityType || {});
|
|
1867
1912
|
var AttributionSource = /* @__PURE__ */ ((AttributionSource2) => {
|
|
1868
1913
|
AttributionSource2["UNSPECIFIED"] = "UNSPECIFIED";
|
|
1869
1914
|
AttributionSource2["FACEBOOK_ADS"] = "FACEBOOK_ADS";
|
|
@@ -2046,51 +2091,6 @@ var VersioningMode = /* @__PURE__ */ ((VersioningMode2) => {
|
|
|
2046
2091
|
VersioningMode2["GREATER_OR_EQUAL"] = "GREATER_OR_EQUAL";
|
|
2047
2092
|
return VersioningMode2;
|
|
2048
2093
|
})(VersioningMode || {});
|
|
2049
|
-
var OrderActivityTypeEnumActivityType = /* @__PURE__ */ ((OrderActivityTypeEnumActivityType2) => {
|
|
2050
|
-
OrderActivityTypeEnumActivityType2["UNKNOWN_ACTIVITY_TYPE"] = "UNKNOWN_ACTIVITY_TYPE";
|
|
2051
|
-
OrderActivityTypeEnumActivityType2["ORDER_PLACED"] = "ORDER_PLACED";
|
|
2052
|
-
OrderActivityTypeEnumActivityType2["ORDER_PAID"] = "ORDER_PAID";
|
|
2053
|
-
OrderActivityTypeEnumActivityType2["ORDER_FULFILLED"] = "ORDER_FULFILLED";
|
|
2054
|
-
OrderActivityTypeEnumActivityType2["ORDER_NOT_FULFILLED"] = "ORDER_NOT_FULFILLED";
|
|
2055
|
-
OrderActivityTypeEnumActivityType2["ORDER_CANCELED"] = "ORDER_CANCELED";
|
|
2056
|
-
OrderActivityTypeEnumActivityType2["DOWNLOAD_LINK_SENT"] = "DOWNLOAD_LINK_SENT";
|
|
2057
|
-
OrderActivityTypeEnumActivityType2["TRACKING_NUMBER_ADDED"] = "TRACKING_NUMBER_ADDED";
|
|
2058
|
-
OrderActivityTypeEnumActivityType2["TRACKING_NUMBER_EDITED"] = "TRACKING_NUMBER_EDITED";
|
|
2059
|
-
OrderActivityTypeEnumActivityType2["TRACKING_LINK_ADDED"] = "TRACKING_LINK_ADDED";
|
|
2060
|
-
OrderActivityTypeEnumActivityType2["SHIPPING_CONFIRMATION_EMAIL_SENT"] = "SHIPPING_CONFIRMATION_EMAIL_SENT";
|
|
2061
|
-
OrderActivityTypeEnumActivityType2["INVOICE_ADDED"] = "INVOICE_ADDED";
|
|
2062
|
-
OrderActivityTypeEnumActivityType2["INVOICE_REMOVED"] = "INVOICE_REMOVED";
|
|
2063
|
-
OrderActivityTypeEnumActivityType2["INVOICE_SENT"] = "INVOICE_SENT";
|
|
2064
|
-
OrderActivityTypeEnumActivityType2["FULFILLER_EMAIL_SENT"] = "FULFILLER_EMAIL_SENT";
|
|
2065
|
-
OrderActivityTypeEnumActivityType2["SHIPPING_ADDRESS_EDITED"] = "SHIPPING_ADDRESS_EDITED";
|
|
2066
|
-
OrderActivityTypeEnumActivityType2["EMAIL_EDITED"] = "EMAIL_EDITED";
|
|
2067
|
-
OrderActivityTypeEnumActivityType2["PICKUP_READY_EMAIL_SENT"] = "PICKUP_READY_EMAIL_SENT";
|
|
2068
|
-
OrderActivityTypeEnumActivityType2["CUSTOM_ACTIVITY"] = "CUSTOM_ACTIVITY";
|
|
2069
|
-
OrderActivityTypeEnumActivityType2["MERCHANT_COMMENT"] = "MERCHANT_COMMENT";
|
|
2070
|
-
OrderActivityTypeEnumActivityType2["ORDER_CREATED_FROM_EXCHANGE"] = "ORDER_CREATED_FROM_EXCHANGE";
|
|
2071
|
-
OrderActivityTypeEnumActivityType2["NEW_EXCHANGE_ORDER_CREATED"] = "NEW_EXCHANGE_ORDER_CREATED";
|
|
2072
|
-
OrderActivityTypeEnumActivityType2["ORDER_PARTIALLY_PAID"] = "ORDER_PARTIALLY_PAID";
|
|
2073
|
-
OrderActivityTypeEnumActivityType2["DRAFT_ORDER_CHANGES_APPLIED"] = "DRAFT_ORDER_CHANGES_APPLIED";
|
|
2074
|
-
OrderActivityTypeEnumActivityType2["SAVED_PAYMENT_METHOD"] = "SAVED_PAYMENT_METHOD";
|
|
2075
|
-
OrderActivityTypeEnumActivityType2["AUTHORIZED_PAYMENT_CREATED"] = "AUTHORIZED_PAYMENT_CREATED";
|
|
2076
|
-
OrderActivityTypeEnumActivityType2["AUTHORIZED_PAYMENT_CAPTURED"] = "AUTHORIZED_PAYMENT_CAPTURED";
|
|
2077
|
-
OrderActivityTypeEnumActivityType2["AUTHORIZED_PAYMENT_VOIDED"] = "AUTHORIZED_PAYMENT_VOIDED";
|
|
2078
|
-
OrderActivityTypeEnumActivityType2["REFUND_INITIATED"] = "REFUND_INITIATED";
|
|
2079
|
-
OrderActivityTypeEnumActivityType2["PAYMENT_REFUNDED"] = "PAYMENT_REFUNDED";
|
|
2080
|
-
OrderActivityTypeEnumActivityType2["PAYMENT_REFUND_FAILED"] = "PAYMENT_REFUND_FAILED";
|
|
2081
|
-
OrderActivityTypeEnumActivityType2["REFUNDED_AS_STORE_CREDIT"] = "REFUNDED_AS_STORE_CREDIT";
|
|
2082
|
-
OrderActivityTypeEnumActivityType2["PAYMENT_PENDING"] = "PAYMENT_PENDING";
|
|
2083
|
-
OrderActivityTypeEnumActivityType2["PAYMENT_CANCELED"] = "PAYMENT_CANCELED";
|
|
2084
|
-
OrderActivityTypeEnumActivityType2["PAYMENT_DECLINED"] = "PAYMENT_DECLINED";
|
|
2085
|
-
OrderActivityTypeEnumActivityType2["ORDER_PENDING"] = "ORDER_PENDING";
|
|
2086
|
-
OrderActivityTypeEnumActivityType2["ORDER_REJECTED"] = "ORDER_REJECTED";
|
|
2087
|
-
OrderActivityTypeEnumActivityType2["RECEIPT_CREATED"] = "RECEIPT_CREATED";
|
|
2088
|
-
OrderActivityTypeEnumActivityType2["RECEIPT_SENT"] = "RECEIPT_SENT";
|
|
2089
|
-
OrderActivityTypeEnumActivityType2["CHARGEBACK_CREATED"] = "CHARGEBACK_CREATED";
|
|
2090
|
-
OrderActivityTypeEnumActivityType2["CHARGEBACK_REVERSED"] = "CHARGEBACK_REVERSED";
|
|
2091
|
-
OrderActivityTypeEnumActivityType2["ORDER_REFUNDED"] = "ORDER_REFUNDED";
|
|
2092
|
-
return OrderActivityTypeEnumActivityType2;
|
|
2093
|
-
})(OrderActivityTypeEnumActivityType || {});
|
|
2094
2094
|
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
2095
2095
|
SortOrder2["ASC"] = "ASC";
|
|
2096
2096
|
SortOrder2["DESC"] = "DESC";
|