@wix/auto_sdk_ecom_orders 1.0.72 → 1.0.74
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-C73TYoI7.d.ts → ecom-v1-order-orders.universal-DEsVhQRb.d.ts} +650 -428
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +18 -8
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +18 -8
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +83 -78
- package/build/es/{ecom-v1-order-orders.universal-C73TYoI7.d.mts → ecom-v1-order-orders.universal-DEsVhQRb.d.mts} +650 -428
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +17 -8
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +17 -8
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +83 -78
- package/build/internal/cjs/{ecom-v1-order-orders.universal-KCtJReRk.d.ts → ecom-v1-order-orders.universal-CemYMxWp.d.ts} +610 -388
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +18 -8
- 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 +18 -8
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +83 -78
- package/build/internal/es/{ecom-v1-order-orders.universal-KCtJReRk.d.mts → ecom-v1-order-orders.universal-CemYMxWp.d.mts} +610 -388
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +17 -8
- 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 +17 -8
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +83 -78
- package/package.json +2 -2
|
@@ -478,10 +478,15 @@ declare enum PaymentOptionType {
|
|
|
478
478
|
/** Partial payment to be paid upfront during checkout. The initial amount to be paid for each line item is specified in `depositAmount`. */
|
|
479
479
|
DEPOSIT_ONLINE = "DEPOSIT_ONLINE",
|
|
480
480
|
/** Payment for this item can only be done by charging a membership and must be manually redeemed in the dashboard by the site admin. When selected, `price` is `0`. */
|
|
481
|
-
MEMBERSHIP_OFFLINE = "MEMBERSHIP_OFFLINE"
|
|
481
|
+
MEMBERSHIP_OFFLINE = "MEMBERSHIP_OFFLINE",
|
|
482
|
+
/**
|
|
483
|
+
* Item price is charged to online membership. Any remaining amount not covered by the membership, such as item modifiers, is paid offline.
|
|
484
|
+
* @documentationMaturity preview
|
|
485
|
+
*/
|
|
486
|
+
MEMBERSHIP_ONLINE_WITH_OFFLINE_REMAINDER = "MEMBERSHIP_ONLINE_WITH_OFFLINE_REMAINDER"
|
|
482
487
|
}
|
|
483
488
|
/** @enumType */
|
|
484
|
-
type PaymentOptionTypeWithLiterals = PaymentOptionType | 'FULL_PAYMENT_ONLINE' | 'FULL_PAYMENT_OFFLINE' | 'MEMBERSHIP' | 'DEPOSIT_ONLINE' | 'MEMBERSHIP_OFFLINE';
|
|
489
|
+
type PaymentOptionTypeWithLiterals = PaymentOptionType | 'FULL_PAYMENT_ONLINE' | 'FULL_PAYMENT_OFFLINE' | 'MEMBERSHIP' | 'DEPOSIT_ONLINE' | 'MEMBERSHIP_OFFLINE' | 'MEMBERSHIP_ONLINE_WITH_OFFLINE_REMAINDER';
|
|
485
490
|
interface ItemTaxFullDetails {
|
|
486
491
|
/** Taxable amount of this line item. */
|
|
487
492
|
taxableAmount?: Price;
|
|
@@ -2386,276 +2391,704 @@ interface V1RestockItem {
|
|
|
2386
2391
|
*/
|
|
2387
2392
|
quantity?: number;
|
|
2388
2393
|
}
|
|
2389
|
-
interface
|
|
2394
|
+
interface SendBuyerConfirmationEmailRequest {
|
|
2395
|
+
/** @format GUID */
|
|
2396
|
+
orderId?: string;
|
|
2397
|
+
}
|
|
2398
|
+
interface SendBuyerConfirmationEmailResponse {
|
|
2399
|
+
}
|
|
2400
|
+
interface SendBuyerPaymentsReceivedEmailRequest {
|
|
2390
2401
|
/**
|
|
2391
|
-
* Ecom order ID.
|
|
2392
2402
|
* @minLength 1
|
|
2393
2403
|
* @maxLength 100
|
|
2394
2404
|
*/
|
|
2395
|
-
|
|
2396
|
-
/** Amount to collect */
|
|
2397
|
-
amount: Price;
|
|
2398
|
-
/**
|
|
2399
|
-
* Optional parameter. When present, payment collection will be performed using given payment gateway order.
|
|
2400
|
-
* Existing payment gateway order will be updated with a new amount.
|
|
2401
|
-
* When parameter is absent, new payment gateway order will be created and used for payment collection.
|
|
2402
|
-
*/
|
|
2403
|
-
paymentGatewayOrderId?: string | null;
|
|
2404
|
-
/**
|
|
2405
|
-
* Whether to delay capture of the payment.
|
|
2406
|
-
* Default: false
|
|
2407
|
-
* @deprecated Whether to delay capture of the payment.
|
|
2408
|
-
* Default: false
|
|
2409
|
-
* @replacedBy delayed_capture_settings.scheduled_action
|
|
2410
|
-
* @targetRemovalDate 2024-09-30
|
|
2411
|
-
*/
|
|
2412
|
-
delayedCapture?: boolean;
|
|
2413
|
-
/** Delayed capture payment settings */
|
|
2414
|
-
delayedCaptureSettings?: DelayedCaptureSettings;
|
|
2405
|
+
orderId?: string;
|
|
2415
2406
|
}
|
|
2416
|
-
interface
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
* @format WEB_URL
|
|
2420
|
-
*/
|
|
2421
|
-
successUrl?: string | null;
|
|
2422
|
-
/**
|
|
2423
|
-
* URL to redirect buyer in case of buyer canceled the transaction
|
|
2424
|
-
* @format WEB_URL
|
|
2425
|
-
*/
|
|
2426
|
-
cancelUrl?: string | null;
|
|
2427
|
-
/**
|
|
2428
|
-
* URL to redirect buyer in case of failed/rejected transaction
|
|
2429
|
-
* @format WEB_URL
|
|
2430
|
-
*/
|
|
2431
|
-
errorUrl?: string | null;
|
|
2407
|
+
interface SendBuyerPaymentsReceivedEmailResponse {
|
|
2408
|
+
}
|
|
2409
|
+
interface SendBuyerPickupConfirmationEmailRequest {
|
|
2432
2410
|
/**
|
|
2433
|
-
*
|
|
2434
|
-
* @
|
|
2411
|
+
* @minLength 1
|
|
2412
|
+
* @maxLength 100
|
|
2435
2413
|
*/
|
|
2436
|
-
|
|
2437
|
-
}
|
|
2438
|
-
interface DelayedCaptureSettings {
|
|
2439
|
-
/** Specifies the automatic action (void/capture) for authorized transaction after the specified duration */
|
|
2440
|
-
scheduledAction?: ScheduledActionWithLiterals;
|
|
2441
|
-
/** Delay duration before execution. Optional - if not set, providers default period will be used */
|
|
2442
|
-
delayDuration?: Duration;
|
|
2414
|
+
orderId?: string;
|
|
2443
2415
|
}
|
|
2444
|
-
|
|
2445
|
-
UNSPECIFIED = "UNSPECIFIED",
|
|
2446
|
-
/** Whether payment will be auto-voided when duration passes */
|
|
2447
|
-
VOID = "VOID",
|
|
2448
|
-
/** Whether payment will be auto-captured when duration passes */
|
|
2449
|
-
CAPTURE = "CAPTURE"
|
|
2416
|
+
interface SendBuyerPickupConfirmationEmailResponse {
|
|
2450
2417
|
}
|
|
2451
|
-
|
|
2452
|
-
type ScheduledActionWithLiterals = ScheduledAction | 'UNSPECIFIED' | 'VOID' | 'CAPTURE';
|
|
2453
|
-
interface Duration {
|
|
2418
|
+
interface BulkSendBuyerPickupConfirmationEmailsRequest {
|
|
2454
2419
|
/**
|
|
2455
|
-
*
|
|
2456
|
-
* @
|
|
2420
|
+
* IDs of orders to send pickup emails for.
|
|
2421
|
+
* @minSize 1
|
|
2422
|
+
* @maxSize 300
|
|
2457
2423
|
*/
|
|
2458
|
-
|
|
2459
|
-
/** Duration unit: MINUTES, HOURS and DAYS */
|
|
2460
|
-
unit?: DurationUnitWithLiterals;
|
|
2461
|
-
}
|
|
2462
|
-
declare enum DurationUnit {
|
|
2463
|
-
UNKNOWN_DURATION_UNIT = "UNKNOWN_DURATION_UNIT",
|
|
2464
|
-
MINUTES = "MINUTES",
|
|
2465
|
-
HOURS = "HOURS",
|
|
2466
|
-
DAYS = "DAYS"
|
|
2424
|
+
orderIds?: string[];
|
|
2467
2425
|
}
|
|
2468
|
-
|
|
2469
|
-
type DurationUnitWithLiterals = DurationUnit | 'UNKNOWN_DURATION_UNIT' | 'MINUTES' | 'HOURS' | 'DAYS';
|
|
2470
|
-
interface PreparePaymentCollectionResponse {
|
|
2471
|
-
/** Payment gateway order id which is associated with given payment */
|
|
2472
|
-
paymentGatewayOrderId?: string;
|
|
2426
|
+
interface BulkSendBuyerPickupConfirmationEmailsResponse {
|
|
2473
2427
|
}
|
|
2474
|
-
interface
|
|
2428
|
+
interface SendBuyerShippingConfirmationEmailRequest {
|
|
2475
2429
|
/**
|
|
2476
|
-
* Ecom order ID.
|
|
2477
2430
|
* @minLength 1
|
|
2478
2431
|
* @maxLength 100
|
|
2479
2432
|
*/
|
|
2480
|
-
|
|
2481
|
-
}
|
|
2482
|
-
interface GetPaymentCollectabilityStatusResponse {
|
|
2483
|
-
/** Payment collectability status */
|
|
2484
|
-
status?: PaymentCollectabilityStatusWithLiterals;
|
|
2485
|
-
/** Collectable order amount */
|
|
2486
|
-
amount?: Price;
|
|
2433
|
+
orderId?: string;
|
|
2487
2434
|
}
|
|
2488
|
-
|
|
2489
|
-
UNKNOWN = "UNKNOWN",
|
|
2490
|
-
COLLECTABLE = "COLLECTABLE",
|
|
2491
|
-
NONCOLLECTABLE_ORDER_IS_CANCELLED = "NONCOLLECTABLE_ORDER_IS_CANCELLED",
|
|
2492
|
-
NONCOLLECTABLE_ORDER_IS_PAID = "NONCOLLECTABLE_ORDER_IS_PAID",
|
|
2493
|
-
NONCOLLECTABLE_MISSING_PAYMENT_METHOD = "NONCOLLECTABLE_MISSING_PAYMENT_METHOD",
|
|
2494
|
-
NONCOLLECTABLE_ORDER_IS_PENDING = "NONCOLLECTABLE_ORDER_IS_PENDING",
|
|
2495
|
-
NONCOLLECTABLE_ORDER_IS_REJECTED = "NONCOLLECTABLE_ORDER_IS_REJECTED",
|
|
2496
|
-
NONCOLLECTABLE_ORDER_HAS_SUBSCRIPTIONS = "NONCOLLECTABLE_ORDER_HAS_SUBSCRIPTIONS"
|
|
2435
|
+
interface SendBuyerShippingConfirmationEmailResponse {
|
|
2497
2436
|
}
|
|
2498
|
-
|
|
2499
|
-
type PaymentCollectabilityStatusWithLiterals = PaymentCollectabilityStatus | 'UNKNOWN' | 'COLLECTABLE' | 'NONCOLLECTABLE_ORDER_IS_CANCELLED' | 'NONCOLLECTABLE_ORDER_IS_PAID' | 'NONCOLLECTABLE_MISSING_PAYMENT_METHOD' | 'NONCOLLECTABLE_ORDER_IS_PENDING' | 'NONCOLLECTABLE_ORDER_IS_REJECTED' | 'NONCOLLECTABLE_ORDER_HAS_SUBSCRIPTIONS';
|
|
2500
|
-
interface RecordManuallyCollectedPaymentRequest {
|
|
2437
|
+
interface BulkSendBuyerShippingConfirmationEmailsRequest {
|
|
2501
2438
|
/**
|
|
2502
|
-
*
|
|
2503
|
-
* @
|
|
2504
|
-
* @
|
|
2439
|
+
* IDs of orders to send pickup emails for.
|
|
2440
|
+
* @minSize 1
|
|
2441
|
+
* @maxSize 300
|
|
2505
2442
|
*/
|
|
2506
|
-
|
|
2507
|
-
/** Amount to be recorded as approved manual payment for given order */
|
|
2508
|
-
amount: Price;
|
|
2443
|
+
orderIds?: string[];
|
|
2509
2444
|
}
|
|
2510
|
-
interface
|
|
2445
|
+
interface BulkSendBuyerShippingConfirmationEmailsResponse {
|
|
2511
2446
|
}
|
|
2512
|
-
interface
|
|
2447
|
+
interface SendMerchantOrderReceivedNotificationRequest {
|
|
2513
2448
|
/**
|
|
2514
|
-
* Ecom order ID.
|
|
2515
2449
|
* @minLength 1
|
|
2516
2450
|
* @maxLength 100
|
|
2517
2451
|
*/
|
|
2518
|
-
|
|
2452
|
+
orderId?: string;
|
|
2519
2453
|
}
|
|
2520
|
-
interface
|
|
2521
|
-
/** Updated order. */
|
|
2522
|
-
order?: Order;
|
|
2454
|
+
interface SendMerchantOrderReceivedNotificationResponse {
|
|
2523
2455
|
}
|
|
2524
|
-
interface
|
|
2456
|
+
interface SendCancelRefundEmailRequest {
|
|
2525
2457
|
/**
|
|
2526
|
-
*
|
|
2527
|
-
* @minSize 1
|
|
2528
|
-
* @maxSize 100
|
|
2458
|
+
* The ID of order that is canceled/refunded
|
|
2529
2459
|
* @minLength 1
|
|
2530
2460
|
* @maxLength 100
|
|
2531
2461
|
*/
|
|
2532
|
-
|
|
2533
|
-
}
|
|
2534
|
-
interface BulkMarkOrdersAsPaidResponse {
|
|
2462
|
+
orderId?: string;
|
|
2535
2463
|
/**
|
|
2536
|
-
*
|
|
2537
|
-
*
|
|
2464
|
+
* Personal note added to the email (optional)
|
|
2465
|
+
* @minLength 1
|
|
2466
|
+
* @maxLength 1000
|
|
2538
2467
|
*/
|
|
2539
|
-
|
|
2540
|
-
/**
|
|
2541
|
-
|
|
2542
|
-
}
|
|
2543
|
-
interface BulkOrderResult {
|
|
2544
|
-
/** Item metadata. */
|
|
2545
|
-
itemMetadata?: ItemMetadata;
|
|
2468
|
+
customMessage?: string | null;
|
|
2469
|
+
/** Refund amount */
|
|
2470
|
+
refundAmount?: Price;
|
|
2546
2471
|
/**
|
|
2547
|
-
*
|
|
2548
|
-
*
|
|
2549
|
-
* Returned when `returnFullEntity = true`.
|
|
2472
|
+
* Refund ID. (Optional)
|
|
2473
|
+
* @format GUID
|
|
2550
2474
|
*/
|
|
2551
|
-
|
|
2552
|
-
}
|
|
2553
|
-
interface ItemMetadata {
|
|
2554
|
-
/** Item ID. Should always be available, unless it's impossible (for example, when failing to create an item). */
|
|
2555
|
-
_id?: string | null;
|
|
2556
|
-
/** Index of the item within the request array. Allows for correlation between request and response items. */
|
|
2557
|
-
originalIndex?: number;
|
|
2558
|
-
/** Whether the requested action was successful for this item. When `false`, the `error` field is populated. */
|
|
2559
|
-
success?: boolean;
|
|
2560
|
-
/** Details about the error in case of failure. */
|
|
2561
|
-
error?: ApplicationError;
|
|
2562
|
-
}
|
|
2563
|
-
interface ApplicationError {
|
|
2564
|
-
/** Error code. */
|
|
2565
|
-
code?: string;
|
|
2566
|
-
/** Description of the error. */
|
|
2567
|
-
description?: string;
|
|
2568
|
-
/** Data related to the error. */
|
|
2569
|
-
data?: Record<string, any> | null;
|
|
2475
|
+
refundId?: string | null;
|
|
2570
2476
|
}
|
|
2571
|
-
interface
|
|
2572
|
-
/** Number of items that were successfully processed. */
|
|
2573
|
-
totalSuccesses?: number;
|
|
2574
|
-
/** Number of items that couldn't be processed. */
|
|
2575
|
-
totalFailures?: number;
|
|
2576
|
-
/** Number of failures without details because detailed failure threshold was exceeded. */
|
|
2577
|
-
undetailedFailures?: number;
|
|
2477
|
+
interface SendCancelRefundEmailResponse {
|
|
2578
2478
|
}
|
|
2579
|
-
interface
|
|
2479
|
+
interface SendRefundEmailRequest {
|
|
2580
2480
|
/**
|
|
2581
|
-
*
|
|
2582
|
-
* @
|
|
2583
|
-
* @maxLength 100
|
|
2481
|
+
* The ID of order that is refunded
|
|
2482
|
+
* @format GUID
|
|
2584
2483
|
*/
|
|
2585
|
-
|
|
2586
|
-
}
|
|
2587
|
-
interface GetRefundabilityStatusResponse {
|
|
2484
|
+
orderId?: string;
|
|
2588
2485
|
/**
|
|
2589
|
-
*
|
|
2590
|
-
* @
|
|
2486
|
+
* Refund ID
|
|
2487
|
+
* @format GUID
|
|
2591
2488
|
*/
|
|
2592
|
-
|
|
2489
|
+
refundId?: string;
|
|
2593
2490
|
/**
|
|
2594
|
-
*
|
|
2595
|
-
* @
|
|
2491
|
+
* Personal note added to the email (optional)
|
|
2492
|
+
* @minLength 1
|
|
2493
|
+
* @maxLength 1000
|
|
2596
2494
|
*/
|
|
2597
|
-
|
|
2495
|
+
customMessage?: string | null;
|
|
2598
2496
|
}
|
|
2599
|
-
interface
|
|
2600
|
-
/** Reason why payment is not refundable. */
|
|
2601
|
-
nonRefundableReason?: NonRefundableReasonWithLiterals;
|
|
2602
|
-
/** Reason why payment is only refundable manually. */
|
|
2603
|
-
manuallyRefundableReason?: ManuallyRefundableReasonWithLiterals;
|
|
2604
|
-
/** Payment ID. */
|
|
2605
|
-
paymentId?: string;
|
|
2606
|
-
/** Payment refundability status. */
|
|
2607
|
-
refundabilityStatus?: RefundableStatusWithLiterals;
|
|
2608
|
-
/** Link to payment provider dashboard. */
|
|
2609
|
-
providerLink?: string | null;
|
|
2497
|
+
interface SendRefundEmailResponse {
|
|
2610
2498
|
}
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2499
|
+
interface SendMerchantOrderReceivedPushRequest {
|
|
2500
|
+
/**
|
|
2501
|
+
* @minLength 1
|
|
2502
|
+
* @maxLength 100
|
|
2503
|
+
*/
|
|
2504
|
+
orderId?: string;
|
|
2617
2505
|
}
|
|
2618
|
-
|
|
2619
|
-
NOT_REFUNDABLE = "NOT_REFUNDABLE",
|
|
2620
|
-
MANUAL = "MANUAL",
|
|
2621
|
-
REFUNDABLE = "REFUNDABLE"
|
|
2506
|
+
interface SendMerchantOrderReceivedPushResponse {
|
|
2622
2507
|
}
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
declare enum NonRefundableReason {
|
|
2626
|
-
NONE = "NONE",
|
|
2627
|
-
ALREADY_REFUNDED = "ALREADY_REFUNDED",
|
|
2628
|
-
PROVIDER_IS_DOWN = "PROVIDER_IS_DOWN",
|
|
2629
|
-
INTERNAL_ERROR = "INTERNAL_ERROR",
|
|
2630
|
-
NOT_PAID = "NOT_PAID",
|
|
2631
|
-
ACCESS_DENIED = "ACCESS_DENIED",
|
|
2632
|
-
ZERO_PRICE = "ZERO_PRICE",
|
|
2633
|
-
DISABLED_BY_PROVIDER = "DISABLED_BY_PROVIDER",
|
|
2634
|
-
PENDING_REFUND = "PENDING_REFUND",
|
|
2635
|
-
FORBIDDEN = "FORBIDDEN",
|
|
2636
|
-
TRANSACTION_NOT_FOUND = "TRANSACTION_NOT_FOUND",
|
|
2637
|
-
ORDER_IS_PENDING = "ORDER_IS_PENDING",
|
|
2638
|
-
ORDER_IS_REJECTED = "ORDER_IS_REJECTED"
|
|
2508
|
+
interface PreviewEmailByTypeRequest {
|
|
2509
|
+
emailType?: PreviewEmailTypeWithLiterals;
|
|
2639
2510
|
}
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
OFFLINE = "OFFLINE",
|
|
2646
|
-
REQUIRES_CARD_READER = "REQUIRES_CARD_READER"
|
|
2511
|
+
declare enum PreviewEmailType {
|
|
2512
|
+
ORDER_PLACED = "ORDER_PLACED",
|
|
2513
|
+
DOWNLOAD_LINKS = "DOWNLOAD_LINKS",
|
|
2514
|
+
ORDER_SHIPPED = "ORDER_SHIPPED",
|
|
2515
|
+
ORDER_READY_FOR_PICKUP = "ORDER_READY_FOR_PICKUP"
|
|
2647
2516
|
}
|
|
2648
2517
|
/** @enumType */
|
|
2649
|
-
type
|
|
2650
|
-
interface
|
|
2518
|
+
type PreviewEmailTypeWithLiterals = PreviewEmailType | 'ORDER_PLACED' | 'DOWNLOAD_LINKS' | 'ORDER_SHIPPED' | 'ORDER_READY_FOR_PICKUP';
|
|
2519
|
+
interface PreviewEmailByTypeResponse {
|
|
2520
|
+
emailPreview?: string;
|
|
2521
|
+
}
|
|
2522
|
+
interface PreviewRefundEmailRequest {
|
|
2651
2523
|
/**
|
|
2652
|
-
* Ecom order ID.
|
|
2653
2524
|
* @minLength 1
|
|
2654
2525
|
* @maxLength 100
|
|
2655
2526
|
*/
|
|
2656
|
-
|
|
2657
|
-
/**
|
|
2658
|
-
|
|
2527
|
+
orderId?: string;
|
|
2528
|
+
/** Refund amount */
|
|
2529
|
+
refundAmount?: Price;
|
|
2530
|
+
/** Refund business details */
|
|
2531
|
+
details?: RefundDetails;
|
|
2532
|
+
/**
|
|
2533
|
+
* Personal note added to the email (optional)
|
|
2534
|
+
* @minLength 1
|
|
2535
|
+
* @maxLength 1000
|
|
2536
|
+
*/
|
|
2537
|
+
customMessage?: string | null;
|
|
2538
|
+
/**
|
|
2539
|
+
* Refund ID. (Optional)
|
|
2540
|
+
* @format GUID
|
|
2541
|
+
*/
|
|
2542
|
+
refundId?: string | null;
|
|
2543
|
+
}
|
|
2544
|
+
/** Business model of a refund request */
|
|
2545
|
+
interface RefundDetails {
|
|
2546
|
+
/**
|
|
2547
|
+
* Order line item IDs and quantities that were refunded.
|
|
2548
|
+
* @maxSize 300
|
|
2549
|
+
*/
|
|
2550
|
+
items?: RefundItem[];
|
|
2551
|
+
/** Whether the shipping fee was also refunded. */
|
|
2552
|
+
shippingIncluded?: boolean;
|
|
2553
|
+
/**
|
|
2554
|
+
* Reason for the refund, provided by customer (optional).
|
|
2555
|
+
* @maxLength 200
|
|
2556
|
+
*/
|
|
2557
|
+
reason?: string | null;
|
|
2558
|
+
/**
|
|
2559
|
+
* Line items that were refunded.
|
|
2560
|
+
* @maxSize 300
|
|
2561
|
+
*/
|
|
2562
|
+
lineItems?: LineItemRefund[];
|
|
2563
|
+
/**
|
|
2564
|
+
* Additional fees that were refunded.
|
|
2565
|
+
* @maxSize 100
|
|
2566
|
+
*/
|
|
2567
|
+
additionalFees?: AdditionalFeeRefund[];
|
|
2568
|
+
/** Shipping amount that was refunded. */
|
|
2569
|
+
shipping?: ShippingRefund;
|
|
2570
|
+
}
|
|
2571
|
+
interface RefundItem {
|
|
2572
|
+
/**
|
|
2573
|
+
* Line item ID the refunded line item.
|
|
2574
|
+
* @format GUID
|
|
2575
|
+
*/
|
|
2576
|
+
lineItemId?: string;
|
|
2577
|
+
/**
|
|
2578
|
+
* Line item quantity refunded.
|
|
2579
|
+
* @min 1
|
|
2580
|
+
* @max 100000
|
|
2581
|
+
*/
|
|
2582
|
+
quantity?: number;
|
|
2583
|
+
}
|
|
2584
|
+
interface LineItemRefund {
|
|
2585
|
+
/**
|
|
2586
|
+
* Line item ID.
|
|
2587
|
+
* @format GUID
|
|
2588
|
+
* @immutable
|
|
2589
|
+
*/
|
|
2590
|
+
lineItemId?: string;
|
|
2591
|
+
/**
|
|
2592
|
+
* Refund quantity.
|
|
2593
|
+
* @min 1
|
|
2594
|
+
* @max 100000
|
|
2595
|
+
* @immutable
|
|
2596
|
+
*/
|
|
2597
|
+
quantity?: number;
|
|
2598
|
+
}
|
|
2599
|
+
interface AdditionalFeeRefund {
|
|
2600
|
+
/**
|
|
2601
|
+
* Additional fee ID.
|
|
2602
|
+
* @format GUID
|
|
2603
|
+
* @immutable
|
|
2604
|
+
*/
|
|
2605
|
+
additionalFeeId?: string;
|
|
2606
|
+
/**
|
|
2607
|
+
* Refund amount.
|
|
2608
|
+
* @immutable
|
|
2609
|
+
*/
|
|
2610
|
+
amount?: Price;
|
|
2611
|
+
}
|
|
2612
|
+
interface ShippingRefund {
|
|
2613
|
+
/**
|
|
2614
|
+
* Refund amount.
|
|
2615
|
+
* @immutable
|
|
2616
|
+
*/
|
|
2617
|
+
amount?: Price;
|
|
2618
|
+
}
|
|
2619
|
+
interface PreviewRefundEmailResponse {
|
|
2620
|
+
emailPreview?: string;
|
|
2621
|
+
}
|
|
2622
|
+
interface PreviewCancelEmailRequest {
|
|
2623
|
+
/**
|
|
2624
|
+
* @minLength 1
|
|
2625
|
+
* @maxLength 100
|
|
2626
|
+
*/
|
|
2627
|
+
orderId?: string;
|
|
2628
|
+
/**
|
|
2629
|
+
* Personal note added to the email (optional)
|
|
2630
|
+
* @minLength 1
|
|
2631
|
+
* @maxLength 1000
|
|
2632
|
+
*/
|
|
2633
|
+
customMessage?: string | null;
|
|
2634
|
+
}
|
|
2635
|
+
interface PreviewCancelEmailResponse {
|
|
2636
|
+
emailPreview?: string;
|
|
2637
|
+
}
|
|
2638
|
+
interface PreviewCancelRefundEmailRequest {
|
|
2639
|
+
/**
|
|
2640
|
+
* @minLength 1
|
|
2641
|
+
* @maxLength 100
|
|
2642
|
+
*/
|
|
2643
|
+
orderId?: string;
|
|
2644
|
+
/**
|
|
2645
|
+
* Personal note added to the email (optional)
|
|
2646
|
+
* @minLength 1
|
|
2647
|
+
* @maxLength 1000
|
|
2648
|
+
*/
|
|
2649
|
+
customMessage?: string | null;
|
|
2650
|
+
/** Refund amount */
|
|
2651
|
+
refundAmount?: Price;
|
|
2652
|
+
/**
|
|
2653
|
+
* Refund ID. (Optional)
|
|
2654
|
+
* @format GUID
|
|
2655
|
+
*/
|
|
2656
|
+
refundId?: string | null;
|
|
2657
|
+
}
|
|
2658
|
+
interface PreviewCancelRefundEmailResponse {
|
|
2659
|
+
emailPreview?: string;
|
|
2660
|
+
}
|
|
2661
|
+
interface PreviewBuyerPaymentsReceivedEmailRequest {
|
|
2662
|
+
}
|
|
2663
|
+
interface PreviewBuyerPaymentsReceivedEmailResponse {
|
|
2664
|
+
emailPreview?: string;
|
|
2665
|
+
}
|
|
2666
|
+
interface PreviewBuyerConfirmationEmailRequest {
|
|
2667
|
+
}
|
|
2668
|
+
interface PreviewBuyerConfirmationEmailResponse {
|
|
2669
|
+
emailPreview?: string;
|
|
2670
|
+
}
|
|
2671
|
+
interface PreviewBuyerPickupConfirmationEmailRequest {
|
|
2672
|
+
}
|
|
2673
|
+
interface PreviewBuyerPickupConfirmationEmailResponse {
|
|
2674
|
+
emailPreview?: string;
|
|
2675
|
+
}
|
|
2676
|
+
interface PreviewShippingConfirmationEmailRequest {
|
|
2677
|
+
}
|
|
2678
|
+
interface PreviewShippingConfirmationEmailResponse {
|
|
2679
|
+
emailPreview?: string;
|
|
2680
|
+
}
|
|
2681
|
+
interface PreviewResendDownloadLinksEmailRequest {
|
|
2682
|
+
}
|
|
2683
|
+
interface PreviewResendDownloadLinksEmailResponse {
|
|
2684
|
+
emailPreview?: string;
|
|
2685
|
+
}
|
|
2686
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
2687
|
+
createdEvent?: EntityCreatedEvent;
|
|
2688
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2689
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2690
|
+
actionEvent?: ActionEvent;
|
|
2691
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
2692
|
+
_id?: string;
|
|
2693
|
+
/**
|
|
2694
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
2695
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
2696
|
+
*/
|
|
2697
|
+
entityFqdn?: string;
|
|
2698
|
+
/**
|
|
2699
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
2700
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
2701
|
+
*/
|
|
2702
|
+
slug?: string;
|
|
2703
|
+
/** ID of the entity associated with the event. */
|
|
2704
|
+
entityId?: string;
|
|
2705
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
2706
|
+
eventTime?: Date | null;
|
|
2707
|
+
/**
|
|
2708
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
2709
|
+
* (for example, GDPR).
|
|
2710
|
+
*/
|
|
2711
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
2712
|
+
/** If present, indicates the action that triggered the event. */
|
|
2713
|
+
originatedFrom?: string | null;
|
|
2714
|
+
/**
|
|
2715
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
2716
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
2717
|
+
*/
|
|
2718
|
+
entityEventSequence?: string | null;
|
|
2719
|
+
}
|
|
2720
|
+
/** @oneof */
|
|
2721
|
+
interface DomainEventBodyOneOf {
|
|
2722
|
+
createdEvent?: EntityCreatedEvent;
|
|
2723
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2724
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2725
|
+
actionEvent?: ActionEvent;
|
|
2726
|
+
}
|
|
2727
|
+
interface EntityCreatedEvent {
|
|
2728
|
+
entity?: string;
|
|
2729
|
+
}
|
|
2730
|
+
interface RestoreInfo {
|
|
2731
|
+
deletedDate?: Date | null;
|
|
2732
|
+
}
|
|
2733
|
+
interface EntityUpdatedEvent {
|
|
2734
|
+
/**
|
|
2735
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
2736
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
2737
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
2738
|
+
*/
|
|
2739
|
+
currentEntity?: string;
|
|
2740
|
+
}
|
|
2741
|
+
interface EntityDeletedEvent {
|
|
2742
|
+
/** Entity that was deleted. */
|
|
2743
|
+
deletedEntity?: string | null;
|
|
2744
|
+
}
|
|
2745
|
+
interface ActionEvent {
|
|
2746
|
+
body?: string;
|
|
2747
|
+
}
|
|
2748
|
+
interface Empty {
|
|
2749
|
+
}
|
|
2750
|
+
interface MessageEnvelope {
|
|
2751
|
+
/**
|
|
2752
|
+
* App instance ID.
|
|
2753
|
+
* @format GUID
|
|
2754
|
+
*/
|
|
2755
|
+
instanceId?: string | null;
|
|
2756
|
+
/**
|
|
2757
|
+
* Event type.
|
|
2758
|
+
* @maxLength 150
|
|
2759
|
+
*/
|
|
2760
|
+
eventType?: string;
|
|
2761
|
+
/** The identification type and identity data. */
|
|
2762
|
+
identity?: IdentificationData;
|
|
2763
|
+
/** Stringify payload. */
|
|
2764
|
+
data?: string;
|
|
2765
|
+
}
|
|
2766
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
2767
|
+
/**
|
|
2768
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2769
|
+
* @format GUID
|
|
2770
|
+
*/
|
|
2771
|
+
anonymousVisitorId?: string;
|
|
2772
|
+
/**
|
|
2773
|
+
* ID of a site visitor that has logged in to the site.
|
|
2774
|
+
* @format GUID
|
|
2775
|
+
*/
|
|
2776
|
+
memberId?: string;
|
|
2777
|
+
/**
|
|
2778
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2779
|
+
* @format GUID
|
|
2780
|
+
*/
|
|
2781
|
+
wixUserId?: string;
|
|
2782
|
+
/**
|
|
2783
|
+
* ID of an app.
|
|
2784
|
+
* @format GUID
|
|
2785
|
+
*/
|
|
2786
|
+
appId?: string;
|
|
2787
|
+
/** @readonly */
|
|
2788
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
2789
|
+
}
|
|
2790
|
+
/** @oneof */
|
|
2791
|
+
interface IdentificationDataIdOneOf {
|
|
2792
|
+
/**
|
|
2793
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2794
|
+
* @format GUID
|
|
2795
|
+
*/
|
|
2796
|
+
anonymousVisitorId?: string;
|
|
2797
|
+
/**
|
|
2798
|
+
* ID of a site visitor that has logged in to the site.
|
|
2799
|
+
* @format GUID
|
|
2800
|
+
*/
|
|
2801
|
+
memberId?: string;
|
|
2802
|
+
/**
|
|
2803
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2804
|
+
* @format GUID
|
|
2805
|
+
*/
|
|
2806
|
+
wixUserId?: string;
|
|
2807
|
+
/**
|
|
2808
|
+
* ID of an app.
|
|
2809
|
+
* @format GUID
|
|
2810
|
+
*/
|
|
2811
|
+
appId?: string;
|
|
2812
|
+
}
|
|
2813
|
+
declare enum WebhookIdentityType {
|
|
2814
|
+
UNKNOWN = "UNKNOWN",
|
|
2815
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
2816
|
+
MEMBER = "MEMBER",
|
|
2817
|
+
WIX_USER = "WIX_USER",
|
|
2818
|
+
APP = "APP"
|
|
2819
|
+
}
|
|
2820
|
+
/** @enumType */
|
|
2821
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
2822
|
+
interface PreparePaymentCollectionRequest {
|
|
2823
|
+
/**
|
|
2824
|
+
* Ecom order ID.
|
|
2825
|
+
* @minLength 1
|
|
2826
|
+
* @maxLength 100
|
|
2827
|
+
*/
|
|
2828
|
+
ecomOrderId: string;
|
|
2829
|
+
/** Amount to collect */
|
|
2830
|
+
amount: Price;
|
|
2831
|
+
/**
|
|
2832
|
+
* Optional parameter. When present, payment collection will be performed using given payment gateway order.
|
|
2833
|
+
* Existing payment gateway order will be updated with a new amount.
|
|
2834
|
+
* When parameter is absent, new payment gateway order will be created and used for payment collection.
|
|
2835
|
+
*/
|
|
2836
|
+
paymentGatewayOrderId?: string | null;
|
|
2837
|
+
/**
|
|
2838
|
+
* Whether to delay capture of the payment.
|
|
2839
|
+
* Default: false
|
|
2840
|
+
* @deprecated Whether to delay capture of the payment.
|
|
2841
|
+
* Default: false
|
|
2842
|
+
* @replacedBy delayed_capture_settings.scheduled_action
|
|
2843
|
+
* @targetRemovalDate 2024-09-30
|
|
2844
|
+
*/
|
|
2845
|
+
delayedCapture?: boolean;
|
|
2846
|
+
/** Delayed capture payment settings */
|
|
2847
|
+
delayedCaptureSettings?: DelayedCaptureSettings;
|
|
2848
|
+
}
|
|
2849
|
+
interface RedirectUrls {
|
|
2850
|
+
/**
|
|
2851
|
+
* URL to redirect buyer in case of approved (successful) transaction
|
|
2852
|
+
* @format WEB_URL
|
|
2853
|
+
*/
|
|
2854
|
+
successUrl?: string | null;
|
|
2855
|
+
/**
|
|
2856
|
+
* URL to redirect buyer in case of buyer canceled the transaction
|
|
2857
|
+
* @format WEB_URL
|
|
2858
|
+
*/
|
|
2859
|
+
cancelUrl?: string | null;
|
|
2860
|
+
/**
|
|
2861
|
+
* URL to redirect buyer in case of failed/rejected transaction
|
|
2862
|
+
* @format WEB_URL
|
|
2863
|
+
*/
|
|
2864
|
+
errorUrl?: string | null;
|
|
2865
|
+
/**
|
|
2866
|
+
* URL to redirect buyer in case of pending transaction (that might take some time to process)
|
|
2867
|
+
* @format WEB_URL
|
|
2868
|
+
*/
|
|
2869
|
+
pendingUrl?: string | null;
|
|
2870
|
+
}
|
|
2871
|
+
interface DelayedCaptureSettings {
|
|
2872
|
+
/** Specifies the automatic action (void/capture) for authorized transaction after the specified duration */
|
|
2873
|
+
scheduledAction?: ScheduledActionWithLiterals;
|
|
2874
|
+
/** Delay duration before execution. Optional - if not set, providers default period will be used */
|
|
2875
|
+
delayDuration?: Duration;
|
|
2876
|
+
}
|
|
2877
|
+
declare enum ScheduledAction {
|
|
2878
|
+
UNSPECIFIED = "UNSPECIFIED",
|
|
2879
|
+
/** Whether payment will be auto-voided when duration passes */
|
|
2880
|
+
VOID = "VOID",
|
|
2881
|
+
/** Whether payment will be auto-captured when duration passes */
|
|
2882
|
+
CAPTURE = "CAPTURE"
|
|
2883
|
+
}
|
|
2884
|
+
/** @enumType */
|
|
2885
|
+
type ScheduledActionWithLiterals = ScheduledAction | 'UNSPECIFIED' | 'VOID' | 'CAPTURE';
|
|
2886
|
+
interface Duration {
|
|
2887
|
+
/**
|
|
2888
|
+
* Amount of units. For example, 30 MINUTES, 1 HOURS, 7 DAYS, etc
|
|
2889
|
+
* @min 1
|
|
2890
|
+
*/
|
|
2891
|
+
count?: number;
|
|
2892
|
+
/** Duration unit: MINUTES, HOURS and DAYS */
|
|
2893
|
+
unit?: DurationUnitWithLiterals;
|
|
2894
|
+
}
|
|
2895
|
+
declare enum DurationUnit {
|
|
2896
|
+
UNKNOWN_DURATION_UNIT = "UNKNOWN_DURATION_UNIT",
|
|
2897
|
+
MINUTES = "MINUTES",
|
|
2898
|
+
HOURS = "HOURS",
|
|
2899
|
+
DAYS = "DAYS"
|
|
2900
|
+
}
|
|
2901
|
+
/** @enumType */
|
|
2902
|
+
type DurationUnitWithLiterals = DurationUnit | 'UNKNOWN_DURATION_UNIT' | 'MINUTES' | 'HOURS' | 'DAYS';
|
|
2903
|
+
interface PreparePaymentCollectionResponse {
|
|
2904
|
+
/** Payment gateway order id which is associated with given payment */
|
|
2905
|
+
paymentGatewayOrderId?: string;
|
|
2906
|
+
}
|
|
2907
|
+
interface GetPaymentCollectabilityStatusRequest {
|
|
2908
|
+
/**
|
|
2909
|
+
* Ecom order ID.
|
|
2910
|
+
* @minLength 1
|
|
2911
|
+
* @maxLength 100
|
|
2912
|
+
*/
|
|
2913
|
+
ecomOrderId: string;
|
|
2914
|
+
}
|
|
2915
|
+
interface GetPaymentCollectabilityStatusResponse {
|
|
2916
|
+
/** Payment collectability status */
|
|
2917
|
+
status?: PaymentCollectabilityStatusWithLiterals;
|
|
2918
|
+
/** Collectable order amount */
|
|
2919
|
+
amount?: Price;
|
|
2920
|
+
}
|
|
2921
|
+
declare enum PaymentCollectabilityStatus {
|
|
2922
|
+
UNKNOWN = "UNKNOWN",
|
|
2923
|
+
COLLECTABLE = "COLLECTABLE",
|
|
2924
|
+
NONCOLLECTABLE_ORDER_IS_CANCELLED = "NONCOLLECTABLE_ORDER_IS_CANCELLED",
|
|
2925
|
+
NONCOLLECTABLE_ORDER_IS_PAID = "NONCOLLECTABLE_ORDER_IS_PAID",
|
|
2926
|
+
NONCOLLECTABLE_MISSING_PAYMENT_METHOD = "NONCOLLECTABLE_MISSING_PAYMENT_METHOD",
|
|
2927
|
+
NONCOLLECTABLE_ORDER_IS_PENDING = "NONCOLLECTABLE_ORDER_IS_PENDING",
|
|
2928
|
+
NONCOLLECTABLE_ORDER_IS_REJECTED = "NONCOLLECTABLE_ORDER_IS_REJECTED",
|
|
2929
|
+
NONCOLLECTABLE_ORDER_HAS_SUBSCRIPTIONS = "NONCOLLECTABLE_ORDER_HAS_SUBSCRIPTIONS"
|
|
2930
|
+
}
|
|
2931
|
+
/** @enumType */
|
|
2932
|
+
type PaymentCollectabilityStatusWithLiterals = PaymentCollectabilityStatus | 'UNKNOWN' | 'COLLECTABLE' | 'NONCOLLECTABLE_ORDER_IS_CANCELLED' | 'NONCOLLECTABLE_ORDER_IS_PAID' | 'NONCOLLECTABLE_MISSING_PAYMENT_METHOD' | 'NONCOLLECTABLE_ORDER_IS_PENDING' | 'NONCOLLECTABLE_ORDER_IS_REJECTED' | 'NONCOLLECTABLE_ORDER_HAS_SUBSCRIPTIONS';
|
|
2933
|
+
interface RecordManuallyCollectedPaymentRequest {
|
|
2934
|
+
/**
|
|
2935
|
+
* Order ID.
|
|
2936
|
+
* @minLength 1
|
|
2937
|
+
* @maxLength 100
|
|
2938
|
+
*/
|
|
2939
|
+
orderId: string;
|
|
2940
|
+
/** Amount to be recorded as approved manual payment for given order */
|
|
2941
|
+
amount: Price;
|
|
2942
|
+
}
|
|
2943
|
+
interface RecordManuallyCollectedPaymentResponse {
|
|
2944
|
+
}
|
|
2945
|
+
interface MarkOrderAsPaidRequest {
|
|
2946
|
+
/**
|
|
2947
|
+
* Ecom order ID.
|
|
2948
|
+
* @minLength 1
|
|
2949
|
+
* @maxLength 100
|
|
2950
|
+
*/
|
|
2951
|
+
ecomOrderId: string;
|
|
2952
|
+
}
|
|
2953
|
+
interface MarkOrderAsPaidResponse {
|
|
2954
|
+
/** Updated order. */
|
|
2955
|
+
order?: Order;
|
|
2956
|
+
}
|
|
2957
|
+
interface BulkMarkOrdersAsPaidRequest {
|
|
2958
|
+
/**
|
|
2959
|
+
* IDs of orders to mark as paid.
|
|
2960
|
+
* @minSize 1
|
|
2961
|
+
* @maxSize 100
|
|
2962
|
+
* @minLength 1
|
|
2963
|
+
* @maxLength 100
|
|
2964
|
+
*/
|
|
2965
|
+
ecomOrderIds: string[];
|
|
2966
|
+
}
|
|
2967
|
+
interface BulkMarkOrdersAsPaidResponse {
|
|
2968
|
+
/**
|
|
2969
|
+
* Items updated by the bulk action.
|
|
2970
|
+
* The Order entity within the results optimistically changes its payment status to paid, however this process is async.
|
|
2971
|
+
*/
|
|
2972
|
+
results?: BulkOrderResult[];
|
|
2973
|
+
/** Bulk action metadata. */
|
|
2974
|
+
bulkActionMetadata?: BulkActionMetadata;
|
|
2975
|
+
}
|
|
2976
|
+
interface BulkOrderResult {
|
|
2977
|
+
/** Item metadata. */
|
|
2978
|
+
itemMetadata?: ItemMetadata;
|
|
2979
|
+
/**
|
|
2980
|
+
* Updated order.
|
|
2981
|
+
*
|
|
2982
|
+
* Returned when `returnFullEntity = true`.
|
|
2983
|
+
*/
|
|
2984
|
+
item?: Order;
|
|
2985
|
+
}
|
|
2986
|
+
interface ItemMetadata {
|
|
2987
|
+
/** Item ID. Should always be available, unless it's impossible (for example, when failing to create an item). */
|
|
2988
|
+
_id?: string | null;
|
|
2989
|
+
/** Index of the item within the request array. Allows for correlation between request and response items. */
|
|
2990
|
+
originalIndex?: number;
|
|
2991
|
+
/** Whether the requested action was successful for this item. When `false`, the `error` field is populated. */
|
|
2992
|
+
success?: boolean;
|
|
2993
|
+
/** Details about the error in case of failure. */
|
|
2994
|
+
error?: ApplicationError;
|
|
2995
|
+
}
|
|
2996
|
+
interface ApplicationError {
|
|
2997
|
+
/** Error code. */
|
|
2998
|
+
code?: string;
|
|
2999
|
+
/** Description of the error. */
|
|
3000
|
+
description?: string;
|
|
3001
|
+
/** Data related to the error. */
|
|
3002
|
+
data?: Record<string, any> | null;
|
|
3003
|
+
}
|
|
3004
|
+
interface BulkActionMetadata {
|
|
3005
|
+
/** Number of items that were successfully processed. */
|
|
3006
|
+
totalSuccesses?: number;
|
|
3007
|
+
/** Number of items that couldn't be processed. */
|
|
3008
|
+
totalFailures?: number;
|
|
3009
|
+
/** Number of failures without details because detailed failure threshold was exceeded. */
|
|
3010
|
+
undetailedFailures?: number;
|
|
3011
|
+
}
|
|
3012
|
+
interface GetRefundabilityStatusRequest {
|
|
3013
|
+
/**
|
|
3014
|
+
* Order ID.
|
|
3015
|
+
* @minLength 1
|
|
3016
|
+
* @maxLength 100
|
|
3017
|
+
*/
|
|
3018
|
+
ecomOrderId: string;
|
|
3019
|
+
}
|
|
3020
|
+
interface GetRefundabilityStatusResponse {
|
|
3021
|
+
/**
|
|
3022
|
+
* Refundability details.
|
|
3023
|
+
* @maxSize 300
|
|
3024
|
+
*/
|
|
3025
|
+
refundabilities?: Refundability[];
|
|
3026
|
+
/**
|
|
3027
|
+
* Whether the order supports refunding per item.
|
|
3028
|
+
* @deprecated
|
|
3029
|
+
*/
|
|
3030
|
+
refundablePerItem?: boolean;
|
|
3031
|
+
}
|
|
3032
|
+
interface Refundability extends RefundabilityAdditionalRefundabilityInfoOneOf {
|
|
3033
|
+
/** Reason why payment is not refundable. */
|
|
3034
|
+
nonRefundableReason?: NonRefundableReasonWithLiterals;
|
|
3035
|
+
/** Reason why payment is only refundable manually. */
|
|
3036
|
+
manuallyRefundableReason?: ManuallyRefundableReasonWithLiterals;
|
|
3037
|
+
/** Payment ID. */
|
|
3038
|
+
paymentId?: string;
|
|
3039
|
+
/** Payment refundability status. */
|
|
3040
|
+
refundabilityStatus?: RefundableStatusWithLiterals;
|
|
3041
|
+
/** Link to payment provider dashboard. */
|
|
3042
|
+
providerLink?: string | null;
|
|
3043
|
+
}
|
|
3044
|
+
/** @oneof */
|
|
3045
|
+
interface RefundabilityAdditionalRefundabilityInfoOneOf {
|
|
3046
|
+
/** Reason why payment is not refundable. */
|
|
3047
|
+
nonRefundableReason?: NonRefundableReasonWithLiterals;
|
|
3048
|
+
/** Reason why payment is only refundable manually. */
|
|
3049
|
+
manuallyRefundableReason?: ManuallyRefundableReasonWithLiterals;
|
|
3050
|
+
}
|
|
3051
|
+
declare enum RefundableStatus {
|
|
3052
|
+
NOT_REFUNDABLE = "NOT_REFUNDABLE",
|
|
3053
|
+
MANUAL = "MANUAL",
|
|
3054
|
+
REFUNDABLE = "REFUNDABLE"
|
|
3055
|
+
}
|
|
3056
|
+
/** @enumType */
|
|
3057
|
+
type RefundableStatusWithLiterals = RefundableStatus | 'NOT_REFUNDABLE' | 'MANUAL' | 'REFUNDABLE';
|
|
3058
|
+
declare enum NonRefundableReason {
|
|
3059
|
+
NONE = "NONE",
|
|
3060
|
+
ALREADY_REFUNDED = "ALREADY_REFUNDED",
|
|
3061
|
+
PROVIDER_IS_DOWN = "PROVIDER_IS_DOWN",
|
|
3062
|
+
INTERNAL_ERROR = "INTERNAL_ERROR",
|
|
3063
|
+
NOT_PAID = "NOT_PAID",
|
|
3064
|
+
ACCESS_DENIED = "ACCESS_DENIED",
|
|
3065
|
+
ZERO_PRICE = "ZERO_PRICE",
|
|
3066
|
+
DISABLED_BY_PROVIDER = "DISABLED_BY_PROVIDER",
|
|
3067
|
+
PENDING_REFUND = "PENDING_REFUND",
|
|
3068
|
+
FORBIDDEN = "FORBIDDEN",
|
|
3069
|
+
TRANSACTION_NOT_FOUND = "TRANSACTION_NOT_FOUND",
|
|
3070
|
+
ORDER_IS_PENDING = "ORDER_IS_PENDING",
|
|
3071
|
+
ORDER_IS_REJECTED = "ORDER_IS_REJECTED"
|
|
3072
|
+
}
|
|
3073
|
+
/** @enumType */
|
|
3074
|
+
type NonRefundableReasonWithLiterals = NonRefundableReason | 'NONE' | 'ALREADY_REFUNDED' | 'PROVIDER_IS_DOWN' | 'INTERNAL_ERROR' | 'NOT_PAID' | 'ACCESS_DENIED' | 'ZERO_PRICE' | 'DISABLED_BY_PROVIDER' | 'PENDING_REFUND' | 'FORBIDDEN' | 'TRANSACTION_NOT_FOUND' | 'ORDER_IS_PENDING' | 'ORDER_IS_REJECTED';
|
|
3075
|
+
declare enum ManuallyRefundableReason {
|
|
3076
|
+
EXPIRED = "EXPIRED",
|
|
3077
|
+
NOT_SUPPORTED = "NOT_SUPPORTED",
|
|
3078
|
+
OFFLINE = "OFFLINE",
|
|
3079
|
+
REQUIRES_CARD_READER = "REQUIRES_CARD_READER"
|
|
3080
|
+
}
|
|
3081
|
+
/** @enumType */
|
|
3082
|
+
type ManuallyRefundableReasonWithLiterals = ManuallyRefundableReason | 'EXPIRED' | 'NOT_SUPPORTED' | 'OFFLINE' | 'REQUIRES_CARD_READER';
|
|
3083
|
+
interface CreatePaymentGatewayOrderRequest {
|
|
3084
|
+
/**
|
|
3085
|
+
* Ecom order ID.
|
|
3086
|
+
* @minLength 1
|
|
3087
|
+
* @maxLength 100
|
|
3088
|
+
*/
|
|
3089
|
+
ecomOrderId: string;
|
|
3090
|
+
/** Information about the user who initiated the payment. */
|
|
3091
|
+
chargedBy?: ChargedBy;
|
|
2659
3092
|
}
|
|
2660
3093
|
interface ChargedBy {
|
|
2661
3094
|
/**
|
|
@@ -2789,81 +3222,6 @@ interface PaymentRefund {
|
|
|
2789
3222
|
*/
|
|
2790
3223
|
externalRefund?: boolean;
|
|
2791
3224
|
}
|
|
2792
|
-
/** Business model of a refund request */
|
|
2793
|
-
interface RefundDetails {
|
|
2794
|
-
/**
|
|
2795
|
-
* Order line item IDs and quantities that were refunded.
|
|
2796
|
-
* @maxSize 300
|
|
2797
|
-
*/
|
|
2798
|
-
items?: RefundItem[];
|
|
2799
|
-
/** Whether the shipping fee was also refunded. */
|
|
2800
|
-
shippingIncluded?: boolean;
|
|
2801
|
-
/**
|
|
2802
|
-
* Reason for the refund, provided by customer (optional).
|
|
2803
|
-
* @maxLength 200
|
|
2804
|
-
*/
|
|
2805
|
-
reason?: string | null;
|
|
2806
|
-
/**
|
|
2807
|
-
* Line items that were refunded.
|
|
2808
|
-
* @maxSize 300
|
|
2809
|
-
*/
|
|
2810
|
-
lineItems?: LineItemRefund[];
|
|
2811
|
-
/**
|
|
2812
|
-
* Additional fees that were refunded.
|
|
2813
|
-
* @maxSize 100
|
|
2814
|
-
*/
|
|
2815
|
-
additionalFees?: AdditionalFeeRefund[];
|
|
2816
|
-
/** Shipping amount that was refunded. */
|
|
2817
|
-
shipping?: ShippingRefund;
|
|
2818
|
-
}
|
|
2819
|
-
interface RefundItem {
|
|
2820
|
-
/**
|
|
2821
|
-
* Line item ID the refunded line item.
|
|
2822
|
-
* @format GUID
|
|
2823
|
-
*/
|
|
2824
|
-
lineItemId?: string;
|
|
2825
|
-
/**
|
|
2826
|
-
* Line item quantity refunded.
|
|
2827
|
-
* @min 1
|
|
2828
|
-
* @max 100000
|
|
2829
|
-
*/
|
|
2830
|
-
quantity?: number;
|
|
2831
|
-
}
|
|
2832
|
-
interface LineItemRefund {
|
|
2833
|
-
/**
|
|
2834
|
-
* Line item ID.
|
|
2835
|
-
* @format GUID
|
|
2836
|
-
* @immutable
|
|
2837
|
-
*/
|
|
2838
|
-
lineItemId?: string;
|
|
2839
|
-
/**
|
|
2840
|
-
* Refund quantity.
|
|
2841
|
-
* @min 1
|
|
2842
|
-
* @max 100000
|
|
2843
|
-
* @immutable
|
|
2844
|
-
*/
|
|
2845
|
-
quantity?: number;
|
|
2846
|
-
}
|
|
2847
|
-
interface AdditionalFeeRefund {
|
|
2848
|
-
/**
|
|
2849
|
-
* Additional fee ID.
|
|
2850
|
-
* @format GUID
|
|
2851
|
-
* @immutable
|
|
2852
|
-
*/
|
|
2853
|
-
additionalFeeId?: string;
|
|
2854
|
-
/**
|
|
2855
|
-
* Refund amount.
|
|
2856
|
-
* @immutable
|
|
2857
|
-
*/
|
|
2858
|
-
amount?: Price;
|
|
2859
|
-
}
|
|
2860
|
-
interface ShippingRefund {
|
|
2861
|
-
/**
|
|
2862
|
-
* Refund amount.
|
|
2863
|
-
* @immutable
|
|
2864
|
-
*/
|
|
2865
|
-
amount?: Price;
|
|
2866
|
-
}
|
|
2867
3225
|
interface RefundSideEffects {
|
|
2868
3226
|
/** Inventory restock details as part of this refund. */
|
|
2869
3227
|
restockInfo?: RestockInfo;
|
|
@@ -3524,142 +3882,6 @@ interface ChargeSavedPaymentMethodResponse {
|
|
|
3524
3882
|
/** Payment gateway's order ID (e.g Wix Payments) */
|
|
3525
3883
|
paymentGatewayOrderId?: string;
|
|
3526
3884
|
}
|
|
3527
|
-
interface DomainEvent extends DomainEventBodyOneOf {
|
|
3528
|
-
createdEvent?: EntityCreatedEvent;
|
|
3529
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
3530
|
-
deletedEvent?: EntityDeletedEvent;
|
|
3531
|
-
actionEvent?: ActionEvent;
|
|
3532
|
-
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
3533
|
-
_id?: string;
|
|
3534
|
-
/**
|
|
3535
|
-
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
3536
|
-
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
3537
|
-
*/
|
|
3538
|
-
entityFqdn?: string;
|
|
3539
|
-
/**
|
|
3540
|
-
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
3541
|
-
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
3542
|
-
*/
|
|
3543
|
-
slug?: string;
|
|
3544
|
-
/** ID of the entity associated with the event. */
|
|
3545
|
-
entityId?: string;
|
|
3546
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
3547
|
-
eventTime?: Date | null;
|
|
3548
|
-
/**
|
|
3549
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
3550
|
-
* (for example, GDPR).
|
|
3551
|
-
*/
|
|
3552
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
3553
|
-
/** If present, indicates the action that triggered the event. */
|
|
3554
|
-
originatedFrom?: string | null;
|
|
3555
|
-
/**
|
|
3556
|
-
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
3557
|
-
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
3558
|
-
*/
|
|
3559
|
-
entityEventSequence?: string | null;
|
|
3560
|
-
}
|
|
3561
|
-
/** @oneof */
|
|
3562
|
-
interface DomainEventBodyOneOf {
|
|
3563
|
-
createdEvent?: EntityCreatedEvent;
|
|
3564
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
3565
|
-
deletedEvent?: EntityDeletedEvent;
|
|
3566
|
-
actionEvent?: ActionEvent;
|
|
3567
|
-
}
|
|
3568
|
-
interface EntityCreatedEvent {
|
|
3569
|
-
entity?: string;
|
|
3570
|
-
}
|
|
3571
|
-
interface RestoreInfo {
|
|
3572
|
-
deletedDate?: Date | null;
|
|
3573
|
-
}
|
|
3574
|
-
interface EntityUpdatedEvent {
|
|
3575
|
-
/**
|
|
3576
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
3577
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
3578
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
3579
|
-
*/
|
|
3580
|
-
currentEntity?: string;
|
|
3581
|
-
}
|
|
3582
|
-
interface EntityDeletedEvent {
|
|
3583
|
-
/** Entity that was deleted. */
|
|
3584
|
-
deletedEntity?: string | null;
|
|
3585
|
-
}
|
|
3586
|
-
interface ActionEvent {
|
|
3587
|
-
body?: string;
|
|
3588
|
-
}
|
|
3589
|
-
interface Empty {
|
|
3590
|
-
}
|
|
3591
|
-
interface MessageEnvelope {
|
|
3592
|
-
/**
|
|
3593
|
-
* App instance ID.
|
|
3594
|
-
* @format GUID
|
|
3595
|
-
*/
|
|
3596
|
-
instanceId?: string | null;
|
|
3597
|
-
/**
|
|
3598
|
-
* Event type.
|
|
3599
|
-
* @maxLength 150
|
|
3600
|
-
*/
|
|
3601
|
-
eventType?: string;
|
|
3602
|
-
/** The identification type and identity data. */
|
|
3603
|
-
identity?: IdentificationData;
|
|
3604
|
-
/** Stringify payload. */
|
|
3605
|
-
data?: string;
|
|
3606
|
-
}
|
|
3607
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
3608
|
-
/**
|
|
3609
|
-
* ID of a site visitor that has not logged in to the site.
|
|
3610
|
-
* @format GUID
|
|
3611
|
-
*/
|
|
3612
|
-
anonymousVisitorId?: string;
|
|
3613
|
-
/**
|
|
3614
|
-
* ID of a site visitor that has logged in to the site.
|
|
3615
|
-
* @format GUID
|
|
3616
|
-
*/
|
|
3617
|
-
memberId?: string;
|
|
3618
|
-
/**
|
|
3619
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
3620
|
-
* @format GUID
|
|
3621
|
-
*/
|
|
3622
|
-
wixUserId?: string;
|
|
3623
|
-
/**
|
|
3624
|
-
* ID of an app.
|
|
3625
|
-
* @format GUID
|
|
3626
|
-
*/
|
|
3627
|
-
appId?: string;
|
|
3628
|
-
/** @readonly */
|
|
3629
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
3630
|
-
}
|
|
3631
|
-
/** @oneof */
|
|
3632
|
-
interface IdentificationDataIdOneOf {
|
|
3633
|
-
/**
|
|
3634
|
-
* ID of a site visitor that has not logged in to the site.
|
|
3635
|
-
* @format GUID
|
|
3636
|
-
*/
|
|
3637
|
-
anonymousVisitorId?: string;
|
|
3638
|
-
/**
|
|
3639
|
-
* ID of a site visitor that has logged in to the site.
|
|
3640
|
-
* @format GUID
|
|
3641
|
-
*/
|
|
3642
|
-
memberId?: string;
|
|
3643
|
-
/**
|
|
3644
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
3645
|
-
* @format GUID
|
|
3646
|
-
*/
|
|
3647
|
-
wixUserId?: string;
|
|
3648
|
-
/**
|
|
3649
|
-
* ID of an app.
|
|
3650
|
-
* @format GUID
|
|
3651
|
-
*/
|
|
3652
|
-
appId?: string;
|
|
3653
|
-
}
|
|
3654
|
-
declare enum WebhookIdentityType {
|
|
3655
|
-
UNKNOWN = "UNKNOWN",
|
|
3656
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3657
|
-
MEMBER = "MEMBER",
|
|
3658
|
-
WIX_USER = "WIX_USER",
|
|
3659
|
-
APP = "APP"
|
|
3660
|
-
}
|
|
3661
|
-
/** @enumType */
|
|
3662
|
-
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3663
3885
|
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
3664
3886
|
/** insert/update documents */
|
|
3665
3887
|
update?: InternalDocumentUpdateOperation;
|
|
@@ -6810,4 +7032,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
6810
7032
|
unassignTags?: Tags;
|
|
6811
7033
|
}
|
|
6812
7034
|
|
|
6813
|
-
export { RefundableStatus 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, ItemTypeItemType 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, ScheduledAction as Y, DurationUnit as Z, PaymentCollectabilityStatus as _, type PreparePaymentCollectionOptions as a, type AddressLocation as a$, NonRefundableReason as a0, ManuallyRefundableReason as a1, RestockType as a2, TransactionStatus as a3, AuthorizationCaptureStatus as a4, AuthorizationVoidStatus as a5, Reason as a6, ActionType as a7, ChargebackStatus as a8, MembershipPaymentStatus as a9, type ItemTypeItemTypeDataOneOf as aA, type ItemTaxFullDetails as aB, type LineItemTaxInfo as aC, type LineItemTaxBreakdown as aD, type DigitalFile as aE, type SubscriptionInfo as aF, type SubscriptionTitle as aG, type SubscriptionDescription as aH, type SubscriptionSettings as aI, type FreeTrialPeriod as aJ, type BillingAdjustment as aK, type BillingAdjustmentPriceSummary as aL, type PriceDescription as aM, type LocationAndQuantity as aN, type TaxableAddress as aO, type TaxableAddressTaxableAddressDataOneOf as aP, type ExtendedFields as aQ, type ModifierGroup as aR, type TranslatableString as aS, type ItemModifier as aT, type BuyerInfo as aU, type BuyerInfoIdOneOf as aV, type CurrencyConversionDetails as aW, type PriceSummary as aX, type AddressWithContact as aY, type Address as aZ, type StreetAddress as a_, RefundStatus as aa, WebhookIdentityType as ab, VersioningMode as ac, SortOrder as ad, OrderApprovalStrategy as ae, DeltaPaymentOptionType as af, InventoryAction as ag, Placement as ah, SubdivisionType as ai, SourceType as aj, CustomFieldGroup as ak, ValueType as al, DepositType as am, InvoiceStatus as an, type OrderLineItem as ao, type ProductName as ap, type CatalogReference as aq, type DescriptionLine as ar, type DescriptionLineValueOneOf as as, type DescriptionLineDescriptionLineValueOneOf as at, type DescriptionLineName as au, type PlainTextValue as av, type Color as aw, type FocalPoint as ax, type PhysicalProperties as ay, type ItemType as az, type PreparePaymentCollectionResponse as b, type PaymentDeclined as b$, type FullAddressContactDetails as b0, type VatId as b1, type V1ShippingInformation as b2, type DeliveryLogistics as b3, type DeliveryLogisticsAddressOneOf as b4, type PickupDetails as b5, type PickupAddress as b6, type DeliveryTimeSlot as b7, type ShippingPrice as b8, type ShippingRegion as b9, type ManagedDiscount as bA, type TranslatedValue as bB, type LineItemAmount as bC, type ManagedAdditionalFee as bD, type TotalPriceChange as bE, type ShippingInformationChange as bF, type ShippingInformation as bG, type SavedPaymentMethod as bH, type AuthorizedPaymentCreated as bI, type AuthorizedPaymentCaptured as bJ, type AuthorizedPaymentVoided as bK, type RefundInitiated as bL, type RefundedPayment as bM, type RefundedPaymentKindOneOf as bN, type RegularPaymentRefund as bO, type GiftCardPaymentRefund as bP, type MembershipPaymentRefund as bQ, type PaymentRefunded as bR, type PaymentRefundFailed as bS, type RefundedAsStoreCredit as bT, type PaymentPending as bU, type PaymentPendingPaymentDetailsOneOf as bV, type RegularPayment as bW, type RegularPaymentPaymentMethodDetailsOneOf as bX, type CreditCardDetails as bY, type PaymentCanceled as bZ, type PaymentCanceledPaymentDetailsOneOf as b_, type TaxSummary as ba, type OrderTaxInfo as bb, type OrderTaxBreakdown as bc, type AppliedDiscount as bd, type AppliedDiscountDiscountSourceOneOf as be, type Coupon as bf, type MerchantDiscount as bg, type MerchantDiscountMerchantDiscountReasonOneOf as bh, type DiscountRule as bi, type DiscountRuleName as bj, type LineItemDiscount as bk, type Activity as bl, type ActivityContentOneOf as bm, type CustomActivity as bn, type MerchantComment as bo, type OrderRefunded as bp, type OrderCreatedFromExchange as bq, type NewExchangeOrderCreated as br, type LineItemExchangeData as bs, type DraftOrderChangesApplied as bt, type OrderChange as bu, type OrderChangeValueOneOf as bv, type LineItemChanges as bw, type LineItemQuantityChange as bx, type LineItemPriceChange as by, type ManagedLineItem as bz, type PreparePaymentCollectionApplicationErrors as c, type OrderTransactions as c$, type PaymentDeclinedPaymentDetailsOneOf as c0, type ReceiptCreated as c1, type ReceiptCreatedReceiptInfoOneOf as c2, type WixReceipt as c3, type ExternalReceipt as c4, type ReceiptSent as c5, type ReceiptSentReceiptInfoOneOf as c6, type ChargebackCreated as c7, type ChargebackReversed as c8, type CreatedBy as c9, type BulkOrderResult as cA, type ItemMetadata as cB, type ApplicationError as cC, type BulkActionMetadata as cD, type GetRefundabilityStatusRequest as cE, type GetRefundabilityStatusResponse as cF, type Refundability as cG, type RefundabilityAdditionalRefundabilityInfoOneOf as cH, type CreatePaymentGatewayOrderRequest as cI, type ChargedBy as cJ, type CreatePaymentGatewayOrderResponse as cK, type ChargeMembershipsRequest as cL, type MembershipChargeItem as cM, type MembershipName as cN, type ServiceProperties as cO, type ChargeMembershipsResponse as cP, type TriggerRefundRequest as cQ, type PaymentRefund as cR, type RefundDetails as cS, type RefundItem as cT, type LineItemRefund as cU, type AdditionalFeeRefund as cV, type ShippingRefund as cW, type RefundSideEffects as cX, type RestockInfo as cY, type RestockItem as cZ, type TriggerRefundResponse as c_, type CreatedByStringOneOf as ca, type ChannelInfo as cb, type CustomField as cc, type BalanceSummary as cd, type Balance as ce, type AdditionalFee as cf, type FulfillmentStatusesAggregate as cg, type Tags as ch, type TagList as ci, type Location as cj, type OrderApproved as ck, type OrdersExperiments as cl, type OrderRejectedEventOrderRejected as cm, type OrderItemsRestocked as cn, type V1RestockItem as co, type PreparePaymentCollectionRequest as cp, type RedirectUrls as cq, type DelayedCaptureSettings as cr, type Duration as cs, type GetPaymentCollectabilityStatusRequest as ct, type RecordManuallyCollectedPaymentRequest as cu, type RecordManuallyCollectedPaymentResponse as cv, type MarkOrderAsPaidRequest as cw, type MarkOrderAsPaidResponse as cx, type BulkMarkOrdersAsPaidRequest as cy, type BulkMarkOrdersAsPaidResponse as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type GetOrderResponse as d$, type Payment as d0, type PaymentPaymentDetailsOneOf as d1, type PaymentReceiptInfoOneOf as d2, type RegularPaymentDetails as d3, type RegularPaymentDetailsPaymentMethodDetailsOneOf as d4, type CreditCardPaymentMethodDetails as d5, type AuthorizationDetails as d6, type AuthorizationCapture as d7, type AuthorizationActionFailureDetails as d8, type AuthorizationVoid as d9, type EntityDeletedEvent as dA, type ActionEvent as dB, type Empty as dC, type MessageEnvelope as dD, type IdentificationData as dE, type IdentificationDataIdOneOf as dF, type UpdateInternalDocumentsEvent as dG, type UpdateInternalDocumentsEventOperationOneOf as dH, type InternalDocument as dI, type InternalDocumentUpdateOperation as dJ, type DeleteByIdsOperation as dK, type DeleteByFilterOperation as dL, type InternalDocumentUpdateByFilterOperation as dM, type InternalUpdateExistingOperation as dN, type VersionedDocumentUpdateOperation as dO, type VersionedDeleteByIdsOperation as dP, type VersionedDocumentId as dQ, type TriggerReindexRequest as dR, type TriggerReindexResponse as dS, type BatchOfTriggerReindexOrderRequest as dT, type TriggerReindexOrderRequest as dU, type DiffmatokyPayload as dV, type ErrorInformation as dW, type ContinueSideEffectsFlowInLegacyData as dX, type SnapshotMessage as dY, type IndexingMessage as dZ, type GetOrderRequest as d_, type V1ScheduledAction as da, type Chargeback as db, type GiftCardPaymentDetails as dc, type MembershipPaymentDetails as dd, type WixReceiptInfo as de, type ExternalReceiptInfo as df, type Refund as dg, type RefundTransaction as dh, type RefundStatusInfo as di, type AggregatedRefundSummary as dj, type RefundItemsBreakdown as dk, type LineItemRefundSummary as dl, type CalculateRefundRequest as dm, type CalculateRefundItemRequest as dn, type CalculateRefundResponse as dp, type CalculateRefundItemResponse as dq, type VoidAuthorizedPaymentsRequest as dr, type CaptureAuthorizedPaymentsRequest as ds, type ChargeSavedPaymentMethodRequest as dt, type ChargeSavedPaymentMethodResponse as du, type DomainEvent as dv, type DomainEventBodyOneOf as dw, type EntityCreatedEvent as dx, type RestoreInfo as dy, type EntityUpdatedEvent as dz, type PaymentCapture as e, type UpdateBillingContactDetailsRequest as e$, type InternalQueryOrdersRequest as e0, type PlatformQuery as e1, type PlatformQueryPagingMethodOneOf as e2, type Sorting as e3, type PlatformPaging as e4, type CursorPaging as e5, type InternalQueryOrdersResponse as e6, type PlatformPagingMetadata as e7, type Cursors as e8, type QueryOrderRequest as e9, type DraftOrderCommitSettings as eA, type InventoryUpdateDetails as eB, type CommitDeltasResponse as eC, type OrderDeltasCommitted as eD, type CommittedDiffs as eE, type CommittedDiffsShippingUpdateInfoOneOf as eF, type LineItemDelta as eG, type LineItemDeltaDeltaOneOf as eH, type ArchiveOrderRequest as eI, type ArchiveOrderResponse as eJ, type BulkArchiveOrdersRequest as eK, type BulkArchiveOrdersResponse as eL, type BulkArchiveOrdersByFilterRequest as eM, type BulkArchiveOrdersByFilterResponse as eN, type UnArchiveOrderRequest as eO, type UnArchiveOrderResponse as eP, type BulkUnArchiveOrdersRequest as eQ, type BulkUnArchiveOrdersResponse as eR, type BulkUnArchiveOrdersByFilterRequest as eS, type BulkUnArchiveOrdersByFilterResponse as eT, type UpdateBuyerInfoRequest as eU, type BuyerInfoUpdate as eV, type UpdateBuyerInfoResponse as eW, type UpdateBuyerEmailRequest as eX, type UpdateBuyerEmailResponse as eY, type UpdateOrderShippingAddressRequest as eZ, type UpdateOrderShippingAddressResponse as e_, type QueryOrderResponse as ea, type SearchOrdersRequest as eb, type CursorSearch as ec, type CursorSearchPagingMethodOneOf as ed, type CursorPagingMetadata as ee, type CreateOrderRequest as ef, type OrderCreationSettings as eg, type OrderCreateNotifications as eh, type CreateOrderResponse as ei, type UpdateOrderRequest as ej, type UpdateOrderResponse as ek, type BulkUpdateOrdersRequest as el, type CommitDeltasRequest as em, type DraftOrderDiffs as en, type DraftOrderDiffsShippingUpdateInfoOneOf as eo, type DraftOrderDiffsBuyerUpdateInfoOneOf as ep, type DraftOrderDiffsBillingUpdateInfoOneOf as eq, type DraftOrderDiffsRecipientUpdateInfoOneOf as er, type V1LineItemDelta as es, type V1LineItemDeltaDeltaOneOf as et, type OrderLineItemChangedDetails as eu, type ItemChangedDetails as ev, type AppliedDiscountDelta as ew, type AppliedDiscountDeltaDeltaOneOf as ex, type AdditionalFeeDelta as ey, type AdditionalFeeDeltaDeltaOneOf as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type BulkSetBusinessLocationResult as f$, type UpdateBillingContactDetailsResponse as f0, type UpdateOrderLineItemRequest as f1, type UpdateOrderLineItemResponse as f2, type UpdateOrderLineItemsRequest as f3, type MaskedOrderLineItem as f4, type UpdateOrderLineItemsResponse as f5, type AddInternalActivityRequest as f6, type InternalActivity as f7, type InternalActivityContentOneOf as f8, type OrderPlaced as f9, type UpdateActivityResponse as fA, type DeleteActivityRequest as fB, type DeleteActivityResponse as fC, type UpdateLineItemsDescriptionLinesRequest as fD, type LineItemUpdate as fE, type UpdateLineItemsDescriptionLinesResponse as fF, type MarkOrderAsSeenByHumanRequest as fG, type MarkOrderAsSeenByHumanResponse as fH, type CancelOrderRequest as fI, type OrderCanceledEventOrderCanceled as fJ, type UpdateOrderStatusRequest as fK, type UpdateOrderStatusResponse as fL, type MarkAsFulfilledRequest as fM, type MarkAsFulfilledResponse as fN, type FulfillmentStatusUpdated as fO, type BulkMarkAsFulfilledRequest as fP, type BulkMarkAsFulfilledResponse as fQ, type BulkMarkAsFulfilledByFilterRequest as fR, type BulkMarkAsFulfilledByFilterResponse as fS, type MarkAsUnfulfilledRequest as fT, type MarkAsUnfulfilledResponse as fU, type BulkMarkAsUnfulfilledRequest as fV, type BulkMarkAsUnfulfilledResponse as fW, type BulkMarkAsUnfulfilledByFilterRequest as fX, type BulkMarkAsUnfulfilledByFilterResponse as fY, type BulkSetBusinessLocationRequest as fZ, type BulkSetBusinessLocationResponse as f_, type OrderPaid as fa, type OrderFulfilled as fb, type OrderNotFulfilled as fc, type OrderCanceled as fd, type DownloadLinkSent as fe, type TrackingNumberAdded as ff, type TrackingNumberEdited as fg, type TrackingLinkAdded as fh, type ShippingConfirmationEmailSent as fi, type InvoiceAdded as fj, type InvoiceSent as fk, type FulfillerEmailSent as fl, type ShippingAddressEdited as fm, type EmailEdited as fn, type PickupReadyEmailSent as fo, type OrderPartiallyPaid as fp, type OrderPending as fq, type OrderRejected as fr, type AddInternalActivityResponse as fs, type AddActivityRequest as ft, type PublicActivity as fu, type PublicActivityContentOneOf as fv, type AddActivityResponse as fw, type AddActivitiesRequest as fx, type AddActivitiesResponse as fy, type UpdateActivityRequest as fz, type GetOrderApplicationErrors as g, type OrderSearchSpec as g$, type V1MarkOrderAsPaidRequest as g0, type V1MarkOrderAsPaidResponse as g1, type PaymentStatusUpdated as g2, type V1BulkMarkOrdersAsPaidRequest as g3, type V1BulkMarkOrdersAsPaidResponse as g4, type V1CreatePaymentGatewayOrderRequest as g5, type V1CreatePaymentGatewayOrderResponse as g6, type GetShipmentsRequest as g7, type GetShipmentsResponse as g8, type AggregateOrdersRequest as g9, type InvoiceDates as gA, type LineItems as gB, type LineItem as gC, type BigDecimalWrapper as gD, type LineItemTax as gE, type Source as gF, type LineItemMetaData as gG, type Locale as gH, type TotalPrice as gI, type ItemizedFee as gJ, type Discount as gK, type DiscountOneDiscountTypeOneOf as gL, type CalculatedTaxes as gM, type CalculatedTax as gN, type Payments as gO, type InvoicesPayment as gP, type MetaData as gQ, type InvoiceDynamicPriceTotals as gR, type CustomFieldValue as gS, type Value as gT, type Deposit as gU, type TriggerSideEffectsFromLegacyData as gV, type BaseEventMetadata as gW, type EventMetadata as gX, type PaymentCollectionCreatePaymentGatewayOrderOptions as gY, type ChargeMembershipsOptions as gZ, type TriggerRefundOptions as g_, type AggregateOrdersResponse as ga, type DecrementItemsQuantityRequest as gb, type DecrementData as gc, type DecrementItemsQuantityResponse as gd, type BulkUpdateOrderTagsRequest as ge, type BulkUpdateOrderTagsResult as gf, type Task as gg, type TaskKey as gh, type TaskAction as gi, type TaskActionActionOneOf as gj, type Complete as gk, type Cancel as gl, type Reschedule as gm, type InvoiceSentEvent as gn, type IdAndVersion as go, type InvoiceFields as gp, type Customer as gq, type Email as gr, type QuotesAddress as gs, type AddressDescription as gt, type Phone as gu, type Company as gv, type CommonAddress as gw, type CommonAddressStreetOneOf as gx, type Subdivision as gy, type StandardDetails as gz, type OrderSearch as h, onOrderPaymentStatusUpdated as h$, type CommitDeltasOptions as h0, type UpdateOrderLineItemIdentifiers as h1, type UpdateOrderLineItem as h2, type UpdateActivityIdentifiers as h3, type DeleteActivityIdentifiers as h4, type AggregateOrdersOptions as h5, type DescriptionLineTypeWithLiterals as h6, type ItemTypeItemTypeWithLiterals as h7, type PaymentOptionTypeWithLiterals as h8, type JurisdictionTypeWithLiterals as h9, type ActionTypeWithLiterals as hA, type ChargebackStatusWithLiterals as hB, type MembershipPaymentStatusWithLiterals as hC, type RefundStatusWithLiterals as hD, type WebhookIdentityTypeWithLiterals as hE, type VersioningModeWithLiterals as hF, type SortOrderWithLiterals as hG, type OrderApprovalStrategyWithLiterals as hH, type DeltaPaymentOptionTypeWithLiterals as hI, type InventoryActionWithLiterals as hJ, type PlacementWithLiterals as hK, type SubdivisionTypeWithLiterals as hL, type SourceTypeWithLiterals as hM, type CustomFieldGroupWithLiterals as hN, type ValueTypeWithLiterals as hO, type DepositTypeWithLiterals as hP, type InvoiceStatusWithLiterals as hQ, type RecordManuallyCollectedPaymentApplicationErrors as hR, type PaymentCollectionMarkOrderAsPaidApplicationErrors as hS, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as hT, type TriggerRefundApplicationErrors as hU, type CommitDeltasApplicationErrors as hV, type UpdateOrderStatusApplicationErrors as hW, onOrderApproved as hX, onOrderUpdated as hY, onOrderCanceled as hZ, onOrderCreated as h_, type SubscriptionFrequencyWithLiterals as ha, type AdjustmentTypeWithLiterals as hb, type TaxableAddressTypeWithLiterals as hc, type PaymentStatusWithLiterals as hd, type FulfillmentStatusWithLiterals as he, type WeightUnitWithLiterals as hf, type VatTypeWithLiterals as hg, type PickupMethodWithLiterals as hh, type OrderStatusWithLiterals as hi, type DiscountTypeWithLiterals as hj, type DiscountReasonWithLiterals as hk, type LineItemQuantityChangeTypeWithLiterals as hl, type ActivityTypeWithLiterals as hm, type AttributionSourceWithLiterals as hn, type ChannelTypeWithLiterals as ho, type ScheduledActionWithLiterals as hp, type DurationUnitWithLiterals as hq, type PaymentCollectabilityStatusWithLiterals as hr, type RefundableStatusWithLiterals as hs, type NonRefundableReasonWithLiterals as ht, type ManuallyRefundableReasonWithLiterals as hu, type RestockTypeWithLiterals as hv, type TransactionStatusWithLiterals as hw, type AuthorizationCaptureStatusWithLiterals as hx, type AuthorizationVoidStatusWithLiterals as hy, type ReasonWithLiterals as hz, type CreateOrderOptions as i, preparePaymentCollection as i0, getPaymentCollectabilityStatus as i1, voidAuthorizedPayments as i2, captureAuthorizedPayments as i3, getOrder as i4, type CommonSearchWithEntityContext as i5, createOrder as i6, updateOrder as i7, bulkUpdateOrders as i8, cancelOrder as i9, bulkUpdateOrderTags as ia, type CreateOrderApplicationErrors as j, 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 };
|
|
7035
|
+
export { DurationUnit 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, ItemTypeItemType 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, PreviewEmailType as Y, WebhookIdentityType as Z, ScheduledAction as _, type PreparePaymentCollectionOptions as a, type StreetAddress as a$, PaymentCollectabilityStatus as a0, RefundableStatus as a1, NonRefundableReason as a2, ManuallyRefundableReason as a3, RestockType as a4, TransactionStatus as a5, AuthorizationCaptureStatus as a6, AuthorizationVoidStatus as a7, Reason as a8, ActionType as a9, type ItemType as aA, type ItemTypeItemTypeDataOneOf as aB, type ItemTaxFullDetails as aC, type LineItemTaxInfo as aD, type LineItemTaxBreakdown as aE, type DigitalFile as aF, type SubscriptionInfo as aG, type SubscriptionTitle as aH, type SubscriptionDescription as aI, type SubscriptionSettings as aJ, type FreeTrialPeriod as aK, type BillingAdjustment as aL, type BillingAdjustmentPriceSummary as aM, type PriceDescription as aN, type LocationAndQuantity as aO, type TaxableAddress as aP, type TaxableAddressTaxableAddressDataOneOf as aQ, type ExtendedFields as aR, type ModifierGroup as aS, type TranslatableString as aT, type ItemModifier as aU, type BuyerInfo as aV, type BuyerInfoIdOneOf as aW, type CurrencyConversionDetails as aX, type PriceSummary as aY, type AddressWithContact as aZ, type Address as a_, ChargebackStatus as aa, MembershipPaymentStatus as ab, RefundStatus as ac, VersioningMode as ad, SortOrder as ae, OrderApprovalStrategy as af, DeltaPaymentOptionType as ag, InventoryAction as ah, Placement as ai, SubdivisionType as aj, SourceType as ak, CustomFieldGroup as al, ValueType as am, DepositType as an, InvoiceStatus as ao, type OrderLineItem as ap, type ProductName as aq, type CatalogReference as ar, type DescriptionLine as as, type DescriptionLineValueOneOf as at, type DescriptionLineDescriptionLineValueOneOf as au, type DescriptionLineName as av, type PlainTextValue as aw, type Color as ax, type FocalPoint as ay, type PhysicalProperties as az, type PreparePaymentCollectionResponse as b, type PaymentCanceledPaymentDetailsOneOf as b$, type AddressLocation as b0, type FullAddressContactDetails as b1, type VatId as b2, type V1ShippingInformation as b3, type DeliveryLogistics as b4, type DeliveryLogisticsAddressOneOf as b5, type PickupDetails as b6, type PickupAddress as b7, type DeliveryTimeSlot as b8, type ShippingPrice as b9, type ManagedLineItem as bA, type ManagedDiscount as bB, type TranslatedValue as bC, type LineItemAmount as bD, type ManagedAdditionalFee as bE, type TotalPriceChange as bF, type ShippingInformationChange as bG, type ShippingInformation as bH, type SavedPaymentMethod as bI, type AuthorizedPaymentCreated as bJ, type AuthorizedPaymentCaptured as bK, type AuthorizedPaymentVoided as bL, type RefundInitiated as bM, type RefundedPayment as bN, type RefundedPaymentKindOneOf as bO, type RegularPaymentRefund as bP, type GiftCardPaymentRefund as bQ, type MembershipPaymentRefund as bR, type PaymentRefunded as bS, type PaymentRefundFailed as bT, type RefundedAsStoreCredit as bU, type PaymentPending as bV, type PaymentPendingPaymentDetailsOneOf as bW, type RegularPayment as bX, type RegularPaymentPaymentMethodDetailsOneOf as bY, type CreditCardDetails as bZ, type PaymentCanceled as b_, type ShippingRegion as ba, type TaxSummary as bb, type OrderTaxInfo as bc, type OrderTaxBreakdown as bd, type AppliedDiscount as be, type AppliedDiscountDiscountSourceOneOf as bf, type Coupon as bg, type MerchantDiscount as bh, type MerchantDiscountMerchantDiscountReasonOneOf as bi, type DiscountRule as bj, type DiscountRuleName as bk, type LineItemDiscount as bl, type Activity as bm, type ActivityContentOneOf as bn, type CustomActivity as bo, type MerchantComment as bp, type OrderRefunded as bq, type OrderCreatedFromExchange as br, type NewExchangeOrderCreated as bs, type LineItemExchangeData as bt, type DraftOrderChangesApplied as bu, type OrderChange as bv, type OrderChangeValueOneOf as bw, type LineItemChanges as bx, type LineItemQuantityChange as by, type LineItemPriceChange as bz, type PreparePaymentCollectionApplicationErrors as c, type PreviewBuyerPickupConfirmationEmailRequest as c$, type PaymentDeclined as c0, type PaymentDeclinedPaymentDetailsOneOf as c1, type ReceiptCreated as c2, type ReceiptCreatedReceiptInfoOneOf as c3, type WixReceipt as c4, type ExternalReceipt as c5, type ReceiptSent as c6, type ReceiptSentReceiptInfoOneOf as c7, type ChargebackCreated as c8, type ChargebackReversed as c9, type BulkSendBuyerShippingConfirmationEmailsRequest as cA, type BulkSendBuyerShippingConfirmationEmailsResponse as cB, type SendMerchantOrderReceivedNotificationRequest as cC, type SendMerchantOrderReceivedNotificationResponse as cD, type SendCancelRefundEmailRequest as cE, type SendCancelRefundEmailResponse as cF, type SendRefundEmailRequest as cG, type SendRefundEmailResponse as cH, type SendMerchantOrderReceivedPushRequest as cI, type SendMerchantOrderReceivedPushResponse as cJ, type PreviewEmailByTypeRequest as cK, type PreviewEmailByTypeResponse as cL, type PreviewRefundEmailRequest as cM, type RefundDetails as cN, type RefundItem as cO, type LineItemRefund as cP, type AdditionalFeeRefund as cQ, type ShippingRefund as cR, type PreviewRefundEmailResponse as cS, type PreviewCancelEmailRequest as cT, type PreviewCancelEmailResponse as cU, type PreviewCancelRefundEmailRequest as cV, type PreviewCancelRefundEmailResponse as cW, type PreviewBuyerPaymentsReceivedEmailRequest as cX, type PreviewBuyerPaymentsReceivedEmailResponse as cY, type PreviewBuyerConfirmationEmailRequest as cZ, type PreviewBuyerConfirmationEmailResponse as c_, type CreatedBy as ca, type CreatedByStringOneOf as cb, type ChannelInfo as cc, type CustomField as cd, type BalanceSummary as ce, type Balance as cf, type AdditionalFee as cg, type FulfillmentStatusesAggregate as ch, type Tags as ci, type TagList as cj, type Location as ck, type OrderApproved as cl, type OrdersExperiments as cm, type OrderRejectedEventOrderRejected as cn, type OrderItemsRestocked as co, type V1RestockItem 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 VoidAuthorizedPaymentsApplicationErrors as d, type GiftCardPaymentDetails as d$, type PreviewBuyerPickupConfirmationEmailResponse as d0, type PreviewShippingConfirmationEmailRequest as d1, type PreviewShippingConfirmationEmailResponse as d2, type PreviewResendDownloadLinksEmailRequest as d3, type PreviewResendDownloadLinksEmailResponse as d4, type DomainEvent as d5, type DomainEventBodyOneOf as d6, type EntityCreatedEvent as d7, type RestoreInfo as d8, type EntityUpdatedEvent as d9, type CreatePaymentGatewayOrderRequest as dA, type ChargedBy as dB, type CreatePaymentGatewayOrderResponse as dC, type ChargeMembershipsRequest as dD, type MembershipChargeItem as dE, type MembershipName as dF, type ServiceProperties as dG, type ChargeMembershipsResponse as dH, type TriggerRefundRequest as dI, type PaymentRefund as dJ, type RefundSideEffects as dK, type RestockInfo as dL, type RestockItem as dM, type TriggerRefundResponse as dN, type OrderTransactions as dO, type Payment as dP, type PaymentPaymentDetailsOneOf as dQ, type PaymentReceiptInfoOneOf as dR, type RegularPaymentDetails as dS, type RegularPaymentDetailsPaymentMethodDetailsOneOf as dT, type CreditCardPaymentMethodDetails as dU, type AuthorizationDetails as dV, type AuthorizationCapture as dW, type AuthorizationActionFailureDetails as dX, type AuthorizationVoid as dY, type V1ScheduledAction as dZ, type Chargeback as d_, type EntityDeletedEvent as da, type ActionEvent as db, type Empty as dc, type MessageEnvelope as dd, type IdentificationData as de, type IdentificationDataIdOneOf as df, type PreparePaymentCollectionRequest as dg, type RedirectUrls as dh, type DelayedCaptureSettings as di, type Duration as dj, type GetPaymentCollectabilityStatusRequest as dk, type RecordManuallyCollectedPaymentRequest as dl, type RecordManuallyCollectedPaymentResponse as dm, type MarkOrderAsPaidRequest as dn, type MarkOrderAsPaidResponse as dp, type BulkMarkOrdersAsPaidRequest as dq, type BulkMarkOrdersAsPaidResponse as dr, type BulkOrderResult as ds, type ItemMetadata as dt, type ApplicationError as du, type BulkActionMetadata as dv, type GetRefundabilityStatusRequest as dw, type GetRefundabilityStatusResponse as dx, type Refundability as dy, type RefundabilityAdditionalRefundabilityInfoOneOf as dz, type PaymentCapture as e, type DraftOrderDiffsShippingUpdateInfoOneOf as e$, type MembershipPaymentDetails as e0, type WixReceiptInfo as e1, type ExternalReceiptInfo as e2, type Refund as e3, type RefundTransaction as e4, type RefundStatusInfo as e5, type AggregatedRefundSummary as e6, type RefundItemsBreakdown as e7, type LineItemRefundSummary as e8, type CalculateRefundRequest as e9, type IndexingMessage as eA, type GetOrderRequest as eB, type GetOrderResponse as eC, type InternalQueryOrdersRequest as eD, type PlatformQuery as eE, type PlatformQueryPagingMethodOneOf as eF, type Sorting as eG, type PlatformPaging as eH, type CursorPaging as eI, type InternalQueryOrdersResponse as eJ, type PlatformPagingMetadata as eK, type Cursors as eL, type QueryOrderRequest as eM, type QueryOrderResponse as eN, type SearchOrdersRequest as eO, type CursorSearch as eP, type CursorSearchPagingMethodOneOf as eQ, type CursorPagingMetadata as eR, type CreateOrderRequest as eS, type OrderCreationSettings as eT, type OrderCreateNotifications as eU, type CreateOrderResponse as eV, type UpdateOrderRequest as eW, type UpdateOrderResponse as eX, type BulkUpdateOrdersRequest as eY, type CommitDeltasRequest as eZ, type DraftOrderDiffs as e_, type CalculateRefundItemRequest as ea, type CalculateRefundResponse as eb, type CalculateRefundItemResponse as ec, type VoidAuthorizedPaymentsRequest as ed, type CaptureAuthorizedPaymentsRequest as ee, type ChargeSavedPaymentMethodRequest as ef, type ChargeSavedPaymentMethodResponse as eg, type UpdateInternalDocumentsEvent as eh, type UpdateInternalDocumentsEventOperationOneOf as ei, type InternalDocument as ej, type InternalDocumentUpdateOperation as ek, type DeleteByIdsOperation as el, type DeleteByFilterOperation as em, type InternalDocumentUpdateByFilterOperation as en, type InternalUpdateExistingOperation as eo, type VersionedDocumentUpdateOperation as ep, type VersionedDeleteByIdsOperation as eq, type VersionedDocumentId as er, type TriggerReindexRequest as es, type TriggerReindexResponse as et, type BatchOfTriggerReindexOrderRequest as eu, type TriggerReindexOrderRequest as ev, type DiffmatokyPayload as ew, type ErrorInformation as ex, type ContinueSideEffectsFlowInLegacyData as ey, type SnapshotMessage as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type PickupReadyEmailSent as f$, type DraftOrderDiffsBuyerUpdateInfoOneOf as f0, type DraftOrderDiffsBillingUpdateInfoOneOf as f1, type DraftOrderDiffsRecipientUpdateInfoOneOf as f2, type V1LineItemDelta as f3, type V1LineItemDeltaDeltaOneOf as f4, type OrderLineItemChangedDetails as f5, type ItemChangedDetails as f6, type AppliedDiscountDelta as f7, type AppliedDiscountDeltaDeltaOneOf as f8, type AdditionalFeeDelta as f9, type UpdateOrderShippingAddressRequest as fA, type UpdateOrderShippingAddressResponse as fB, type UpdateBillingContactDetailsRequest as fC, type UpdateBillingContactDetailsResponse as fD, type UpdateOrderLineItemRequest as fE, type UpdateOrderLineItemResponse as fF, type UpdateOrderLineItemsRequest as fG, type MaskedOrderLineItem as fH, type UpdateOrderLineItemsResponse as fI, type AddInternalActivityRequest as fJ, type InternalActivity as fK, type InternalActivityContentOneOf as fL, type OrderPlaced as fM, type OrderPaid as fN, type OrderFulfilled as fO, type OrderNotFulfilled as fP, type OrderCanceled as fQ, type DownloadLinkSent as fR, type TrackingNumberAdded as fS, type TrackingNumberEdited as fT, type TrackingLinkAdded as fU, type ShippingConfirmationEmailSent as fV, type InvoiceAdded as fW, type InvoiceSent as fX, type FulfillerEmailSent as fY, type ShippingAddressEdited as fZ, type EmailEdited as f_, type AdditionalFeeDeltaDeltaOneOf as fa, type DraftOrderCommitSettings as fb, type InventoryUpdateDetails as fc, type CommitDeltasResponse as fd, type OrderDeltasCommitted as fe, type CommittedDiffs as ff, type CommittedDiffsShippingUpdateInfoOneOf as fg, type LineItemDelta as fh, type LineItemDeltaDeltaOneOf as fi, type ArchiveOrderRequest as fj, type ArchiveOrderResponse as fk, type BulkArchiveOrdersRequest as fl, type BulkArchiveOrdersResponse as fm, type BulkArchiveOrdersByFilterRequest as fn, type BulkArchiveOrdersByFilterResponse as fo, type UnArchiveOrderRequest as fp, type UnArchiveOrderResponse as fq, type BulkUnArchiveOrdersRequest as fr, type BulkUnArchiveOrdersResponse as fs, type BulkUnArchiveOrdersByFilterRequest as ft, type BulkUnArchiveOrdersByFilterResponse as fu, type UpdateBuyerInfoRequest as fv, type BuyerInfoUpdate as fw, type UpdateBuyerInfoResponse as fx, type UpdateBuyerEmailRequest as fy, type UpdateBuyerEmailResponse as fz, type GetOrderApplicationErrors as g, type IdAndVersion as g$, type OrderPartiallyPaid as g0, type OrderPending as g1, type OrderRejected as g2, type AddInternalActivityResponse as g3, type AddActivityRequest as g4, type PublicActivity as g5, type PublicActivityContentOneOf as g6, type AddActivityResponse as g7, type AddActivitiesRequest as g8, type AddActivitiesResponse as g9, type BulkSetBusinessLocationRequest as gA, type BulkSetBusinessLocationResponse as gB, type BulkSetBusinessLocationResult as gC, type V1MarkOrderAsPaidRequest as gD, type V1MarkOrderAsPaidResponse as gE, type PaymentStatusUpdated as gF, type V1BulkMarkOrdersAsPaidRequest as gG, type V1BulkMarkOrdersAsPaidResponse as gH, type V1CreatePaymentGatewayOrderRequest as gI, type V1CreatePaymentGatewayOrderResponse as gJ, type GetShipmentsRequest as gK, type GetShipmentsResponse as gL, type AggregateOrdersRequest as gM, type AggregateOrdersResponse as gN, type DecrementItemsQuantityRequest as gO, type DecrementData as gP, type DecrementItemsQuantityResponse as gQ, type BulkUpdateOrderTagsRequest as gR, type BulkUpdateOrderTagsResult as gS, type Task as gT, type TaskKey as gU, type TaskAction as gV, type TaskActionActionOneOf as gW, type Complete as gX, type Cancel as gY, type Reschedule as gZ, type InvoiceSentEvent as g_, type UpdateActivityRequest as ga, type UpdateActivityResponse as gb, type DeleteActivityRequest as gc, type DeleteActivityResponse as gd, type UpdateLineItemsDescriptionLinesRequest as ge, type LineItemUpdate as gf, type UpdateLineItemsDescriptionLinesResponse as gg, type MarkOrderAsSeenByHumanRequest as gh, type MarkOrderAsSeenByHumanResponse as gi, type CancelOrderRequest as gj, type OrderCanceledEventOrderCanceled as gk, type UpdateOrderStatusRequest as gl, type UpdateOrderStatusResponse as gm, type MarkAsFulfilledRequest as gn, type MarkAsFulfilledResponse as go, type FulfillmentStatusUpdated as gp, type BulkMarkAsFulfilledRequest as gq, type BulkMarkAsFulfilledResponse as gr, type BulkMarkAsFulfilledByFilterRequest as gs, type BulkMarkAsFulfilledByFilterResponse as gt, type MarkAsUnfulfilledRequest as gu, type MarkAsUnfulfilledResponse as gv, type BulkMarkAsUnfulfilledRequest as gw, type BulkMarkAsUnfulfilledResponse as gx, type BulkMarkAsUnfulfilledByFilterRequest as gy, type BulkMarkAsUnfulfilledByFilterResponse as gz, type OrderSearch as h, type ChannelTypeWithLiterals as h$, type InvoiceFields as h0, type Customer as h1, type Email as h2, type QuotesAddress as h3, type AddressDescription as h4, type Phone as h5, type Company as h6, type CommonAddress as h7, type CommonAddressStreetOneOf as h8, type Subdivision as h9, type ChargeMembershipsOptions as hA, type TriggerRefundOptions as hB, type OrderSearchSpec as hC, type CommitDeltasOptions as hD, type UpdateOrderLineItemIdentifiers as hE, type UpdateOrderLineItem as hF, type UpdateActivityIdentifiers as hG, type DeleteActivityIdentifiers as hH, type AggregateOrdersOptions as hI, type DescriptionLineTypeWithLiterals as hJ, type ItemTypeItemTypeWithLiterals as hK, type PaymentOptionTypeWithLiterals as hL, type JurisdictionTypeWithLiterals as hM, type SubscriptionFrequencyWithLiterals as hN, type AdjustmentTypeWithLiterals as hO, type TaxableAddressTypeWithLiterals as hP, type PaymentStatusWithLiterals as hQ, type FulfillmentStatusWithLiterals as hR, type WeightUnitWithLiterals as hS, type VatTypeWithLiterals as hT, type PickupMethodWithLiterals as hU, type OrderStatusWithLiterals as hV, type DiscountTypeWithLiterals as hW, type DiscountReasonWithLiterals as hX, type LineItemQuantityChangeTypeWithLiterals as hY, type ActivityTypeWithLiterals as hZ, type AttributionSourceWithLiterals as h_, type StandardDetails as ha, type InvoiceDates as hb, type LineItems as hc, type LineItem as hd, type BigDecimalWrapper as he, type LineItemTax as hf, type Source as hg, type LineItemMetaData as hh, type Locale as hi, type TotalPrice as hj, type ItemizedFee as hk, type Discount as hl, type DiscountOneDiscountTypeOneOf as hm, type CalculatedTaxes as hn, type CalculatedTax as ho, type Payments as hp, type InvoicesPayment as hq, type MetaData as hr, type InvoiceDynamicPriceTotals as hs, type CustomFieldValue as ht, type Value as hu, type Deposit as hv, type TriggerSideEffectsFromLegacyData as hw, type BaseEventMetadata as hx, type EventMetadata as hy, type PaymentCollectionCreatePaymentGatewayOrderOptions as hz, type CreateOrderOptions as i, type PreviewEmailTypeWithLiterals as i0, type WebhookIdentityTypeWithLiterals as i1, type ScheduledActionWithLiterals as i2, type DurationUnitWithLiterals as i3, type PaymentCollectabilityStatusWithLiterals as i4, type RefundableStatusWithLiterals as i5, type NonRefundableReasonWithLiterals as i6, type ManuallyRefundableReasonWithLiterals as i7, type RestockTypeWithLiterals as i8, type TransactionStatusWithLiterals as i9, type UpdateOrderStatusApplicationErrors as iA, onOrderApproved as iB, onOrderUpdated as iC, onOrderCanceled as iD, onOrderCreated as iE, onOrderPaymentStatusUpdated as iF, preparePaymentCollection as iG, getPaymentCollectabilityStatus as iH, voidAuthorizedPayments as iI, captureAuthorizedPayments as iJ, getOrder as iK, type CommonSearchWithEntityContext as iL, createOrder as iM, updateOrder as iN, bulkUpdateOrders as iO, cancelOrder as iP, bulkUpdateOrderTags as iQ, type AuthorizationCaptureStatusWithLiterals as ia, type AuthorizationVoidStatusWithLiterals as ib, type ReasonWithLiterals as ic, type ActionTypeWithLiterals as id, type ChargebackStatusWithLiterals as ie, type MembershipPaymentStatusWithLiterals as ig, type RefundStatusWithLiterals as ih, type VersioningModeWithLiterals as ii, type SortOrderWithLiterals as ij, type OrderApprovalStrategyWithLiterals as ik, type DeltaPaymentOptionTypeWithLiterals as il, type InventoryActionWithLiterals as im, type PlacementWithLiterals as io, type SubdivisionTypeWithLiterals as ip, type SourceTypeWithLiterals as iq, type CustomFieldGroupWithLiterals as ir, type ValueTypeWithLiterals as is, type DepositTypeWithLiterals as it, type InvoiceStatusWithLiterals as iu, type RecordManuallyCollectedPaymentApplicationErrors as iv, type PaymentCollectionMarkOrderAsPaidApplicationErrors as iw, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as ix, type TriggerRefundApplicationErrors as iy, type CommitDeltasApplicationErrors as iz, type CreateOrderApplicationErrors as j, 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 };
|