@wix/ecom 1.0.736 → 1.0.737
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/type-bundles/context.bundle.d.ts +684 -658
- package/type-bundles/index.bundle.d.ts +684 -658
- package/type-bundles/meta.bundle.d.ts +165 -55
|
@@ -22407,461 +22407,166 @@ interface SnapshotMessage$1 {
|
|
|
22407
22407
|
_id?: string;
|
|
22408
22408
|
opType?: number;
|
|
22409
22409
|
}
|
|
22410
|
-
|
|
22411
|
-
|
|
22412
|
-
|
|
22413
|
-
orderTransactions?: OrderTransactions$2;
|
|
22414
|
-
/** List of IDs of the updated payments. */
|
|
22415
|
-
paymentIds?: string[];
|
|
22416
|
-
/** List of IDs of the updated refunds. */
|
|
22417
|
-
refundIds?: string[];
|
|
22410
|
+
interface GetMetasiteDataRequest {
|
|
22411
|
+
/** meta site Id for data to retrieve */
|
|
22412
|
+
metasiteId?: string;
|
|
22418
22413
|
}
|
|
22419
|
-
interface
|
|
22420
|
-
/**
|
|
22421
|
-
|
|
22422
|
-
/**
|
|
22423
|
-
|
|
22424
|
-
/**
|
|
22425
|
-
|
|
22414
|
+
interface GetMetasiteDataResponse {
|
|
22415
|
+
/** meta site data */
|
|
22416
|
+
metasite?: MetaSite;
|
|
22417
|
+
/** is metasite added to new SDL population via population manager */
|
|
22418
|
+
isInNewPopulation?: boolean;
|
|
22419
|
+
/** metasite url */
|
|
22420
|
+
metasiteUrl?: string;
|
|
22421
|
+
/** owner data */
|
|
22422
|
+
userDataResponse?: UserDataResponse;
|
|
22426
22423
|
}
|
|
22427
|
-
|
|
22428
|
-
|
|
22429
|
-
|
|
22430
|
-
|
|
22431
|
-
|
|
22424
|
+
/**
|
|
22425
|
+
* Represents Meta Site.
|
|
22426
|
+
*
|
|
22427
|
+
* Meta Site is a legacy concept, it aggregates data from several domains. Generally, it contains and manages
|
|
22428
|
+
* relations between different entities related to the site (or, as a new concept, to the container).
|
|
22429
|
+
*
|
|
22430
|
+
* We prefer to pronounce it as 2 separate words, therefore we use terms "meta site" or "metaSite" or "meta_site" in code.
|
|
22431
|
+
*/
|
|
22432
|
+
interface MetaSite {
|
|
22432
22433
|
/**
|
|
22433
|
-
*
|
|
22434
|
+
* Identifier of meta site.
|
|
22434
22435
|
* @readonly
|
|
22435
22436
|
*/
|
|
22436
|
-
|
|
22437
|
-
/** Date and time the payment was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
|
|
22438
|
-
_createdDate?: Date;
|
|
22437
|
+
metaSiteId?: string;
|
|
22439
22438
|
/**
|
|
22440
|
-
*
|
|
22439
|
+
* Internal version of meta site. Monotonically increasing number.
|
|
22440
|
+
*
|
|
22441
|
+
* If passed within update request, it will be used for optimistic locking. In this case,
|
|
22442
|
+
* StaleStateException will be thrown if current version doesn't match.
|
|
22443
|
+
*
|
|
22444
|
+
* In old MetaSiteDTO -- revision.
|
|
22441
22445
|
* @readonly
|
|
22442
22446
|
*/
|
|
22443
|
-
|
|
22444
|
-
/** Payment amount. */
|
|
22445
|
-
amount?: Price$2;
|
|
22447
|
+
version?: string;
|
|
22446
22448
|
/**
|
|
22447
|
-
*
|
|
22448
|
-
*
|
|
22449
|
-
* + `false`: This payment may be refunded. However, this ultimately depends on the payment provider.
|
|
22449
|
+
* Identifier of account that owns this meta site.
|
|
22450
|
+
* @readonly
|
|
22450
22451
|
*/
|
|
22451
|
-
|
|
22452
|
-
}
|
|
22453
|
-
/** @oneof */
|
|
22454
|
-
interface PaymentPaymentDetailsOneOf$2 {
|
|
22455
|
-
/** Regular payment details. */
|
|
22456
|
-
regularPaymentDetails?: RegularPaymentDetails$2;
|
|
22457
|
-
/** Gift card payment details. */
|
|
22458
|
-
giftcardPaymentDetails?: GiftCardPaymentDetails$2;
|
|
22459
|
-
}
|
|
22460
|
-
interface RegularPaymentDetails$2 extends RegularPaymentDetailsPaymentMethodDetailsOneOf$2 {
|
|
22461
|
-
/** Whether regular card used */
|
|
22462
|
-
creditCardDetails?: CreditCardPaymentMethodDetails$2;
|
|
22463
|
-
/** Wix Payments order ID. */
|
|
22464
|
-
paymentOrderId?: string | null;
|
|
22452
|
+
ownerId?: string;
|
|
22465
22453
|
/**
|
|
22466
|
-
*
|
|
22467
|
-
*
|
|
22454
|
+
* Date and time when meta site was created.
|
|
22455
|
+
* @readonly
|
|
22468
22456
|
*/
|
|
22469
|
-
|
|
22457
|
+
dateCreated?: Date;
|
|
22470
22458
|
/**
|
|
22471
|
-
*
|
|
22472
|
-
*
|
|
22459
|
+
* Date and time when meta site was updated for the last time.
|
|
22460
|
+
* @readonly
|
|
22473
22461
|
*/
|
|
22474
|
-
|
|
22475
|
-
/** Transaction ID in the payment provider's system. For example, at PayPal, Square, Stripe, etc. Not returned for offline payments. */
|
|
22476
|
-
providerTransactionId?: string | null;
|
|
22477
|
-
/** Whether the payment was made offline. For example, when using cash or when marked as paid in the Business Manager. */
|
|
22478
|
-
offlinePayment?: boolean;
|
|
22479
|
-
/** Payment status. */
|
|
22480
|
-
status?: TransactionStatus$2;
|
|
22481
|
-
/** Whether there is a payment agreement that allows for future charges. */
|
|
22482
|
-
savedPaymentMethod?: boolean;
|
|
22483
|
-
/** Authorization details. */
|
|
22484
|
-
authorizationDetails?: AuthorizationDetails$2;
|
|
22485
|
-
}
|
|
22486
|
-
/** @oneof */
|
|
22487
|
-
interface RegularPaymentDetailsPaymentMethodDetailsOneOf$2 {
|
|
22488
|
-
/** Whether regular card used */
|
|
22489
|
-
creditCardDetails?: CreditCardPaymentMethodDetails$2;
|
|
22490
|
-
}
|
|
22491
|
-
declare enum TransactionStatus$2 {
|
|
22492
|
-
UNDEFINED = "UNDEFINED",
|
|
22493
|
-
APPROVED = "APPROVED",
|
|
22494
|
-
PENDING = "PENDING",
|
|
22495
|
-
PENDING_MERCHANT = "PENDING_MERCHANT",
|
|
22496
|
-
CANCELED = "CANCELED",
|
|
22497
|
-
DECLINED = "DECLINED",
|
|
22498
|
-
REFUNDED = "REFUNDED",
|
|
22499
|
-
PARTIALLY_REFUNDED = "PARTIALLY_REFUNDED",
|
|
22500
|
-
AUTHORIZED = "AUTHORIZED",
|
|
22501
|
-
VOIDED = "VOIDED"
|
|
22502
|
-
}
|
|
22503
|
-
interface CreditCardPaymentMethodDetails$2 {
|
|
22504
|
-
/** The last 4 digits of the card number. */
|
|
22505
|
-
lastFourDigits?: string | null;
|
|
22506
|
-
/** Card issuer's brand. */
|
|
22507
|
-
brand?: string | null;
|
|
22508
|
-
}
|
|
22509
|
-
interface AuthorizationDetails$2 {
|
|
22462
|
+
dateUpdated?: Date;
|
|
22510
22463
|
/**
|
|
22511
|
-
*
|
|
22464
|
+
* All "applications" of this meta site.
|
|
22465
|
+
*
|
|
22466
|
+
* In old MetaSiteDTO -- embeddedServices.
|
|
22467
|
+
*/
|
|
22468
|
+
apps?: App[];
|
|
22469
|
+
/** Namespace of meta site. */
|
|
22470
|
+
namespace?: Namespace;
|
|
22471
|
+
/**
|
|
22472
|
+
* Indicates whether https should be used for viewing a site.
|
|
22473
|
+
*
|
|
22474
|
+
* In old MetaSiteDTO -- flags.UseHttps.
|
|
22475
|
+
*/
|
|
22476
|
+
useHttps?: boolean;
|
|
22477
|
+
defaultSeoData?: SeoData;
|
|
22478
|
+
/**
|
|
22479
|
+
* Information about HTML application.
|
|
22480
|
+
*
|
|
22481
|
+
* In old MetaSiteDTO -- appplications.find(_.applicationType == HtmlWeb).
|
|
22482
|
+
*/
|
|
22483
|
+
htmlApp?: HtmlApplication;
|
|
22484
|
+
/** @deprecated */
|
|
22485
|
+
externalUriMappings?: ExternalUriMapping[];
|
|
22486
|
+
/** Indicates whether meta site was published. If true - site should be accessible for viewing. */
|
|
22487
|
+
published?: boolean;
|
|
22488
|
+
/**
|
|
22489
|
+
* The name of meta site.
|
|
22490
|
+
*
|
|
22491
|
+
* Matches this regular expression: [a-z0-9_\-]{4,20} (but for some legacy sites might be shorted/longer).
|
|
22492
|
+
*/
|
|
22493
|
+
name?: string;
|
|
22494
|
+
/**
|
|
22495
|
+
* Indicates whether this site is managed by ADI editor
|
|
22496
|
+
*
|
|
22497
|
+
* Values:
|
|
22498
|
+
* None - not managed.
|
|
22499
|
+
* Some(false) - site was created via ADI editor, but later on user switched to regular editor.
|
|
22500
|
+
* Some(true) - site was created and still is managed by ADI editor.
|
|
22501
|
+
*
|
|
22502
|
+
* In old MetaSiteDTO: embeddedService[embeddedServiceType=Onboarding].attributes.isInUse.
|
|
22503
|
+
*/
|
|
22504
|
+
adi?: boolean | null;
|
|
22505
|
+
/**
|
|
22506
|
+
* Indicates whether this meta site is template.
|
|
22507
|
+
*
|
|
22508
|
+
* In old MetaSiteDTO: documentType == Template.
|
|
22512
22509
|
* @readonly
|
|
22513
22510
|
*/
|
|
22514
|
-
|
|
22515
|
-
/** Date and time the payment was authorized in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
|
|
22516
|
-
authorizedDate?: Date;
|
|
22511
|
+
template?: boolean | null;
|
|
22517
22512
|
/**
|
|
22518
|
-
*
|
|
22519
|
-
*
|
|
22513
|
+
* Identifier of a template (meta site) from which this site was created.
|
|
22514
|
+
*
|
|
22515
|
+
* If it's empty it either means that site wasn't created from a template OR it's very old, so we didn't store
|
|
22516
|
+
* it back then.
|
|
22517
|
+
*
|
|
22518
|
+
* For example, if "site" was created from "template", then "template"'s id will be in origin_template_id.
|
|
22519
|
+
* When "site" is cloned, clone will also have "template"'s id in origin_instance_id.
|
|
22520
|
+
* @readonly
|
|
22520
22521
|
*/
|
|
22521
|
-
|
|
22522
|
-
/** Void associated with payment */
|
|
22523
|
-
void?: AuthorizationVoid$2;
|
|
22524
|
-
/** Scheduled action for this transaction */
|
|
22525
|
-
scheduledAction?: V1ScheduledAction;
|
|
22526
|
-
}
|
|
22527
|
-
interface AuthorizationCapture$2 {
|
|
22522
|
+
originTemplateId?: string | null;
|
|
22528
22523
|
/**
|
|
22529
|
-
*
|
|
22524
|
+
* Indicates meta site blocked from publishing and added additional filtering in listing API (MSS). READ_ONLY.
|
|
22530
22525
|
* @readonly
|
|
22531
22526
|
*/
|
|
22532
|
-
|
|
22533
|
-
/**
|
|
22534
|
-
|
|
22535
|
-
|
|
22536
|
-
|
|
22537
|
-
|
|
22538
|
-
|
|
22539
|
-
|
|
22540
|
-
|
|
22527
|
+
blocked?: boolean;
|
|
22528
|
+
/**
|
|
22529
|
+
* If true - default meta site routing (connected domains, free url, ML) is not used for this meta site.
|
|
22530
|
+
*
|
|
22531
|
+
* Meaning, that if `example.org` is connected to this meta site, `router-server` will return 404 for `example.org`
|
|
22532
|
+
* anyway.
|
|
22533
|
+
*
|
|
22534
|
+
* This flag is set for some sites that have custom mapping in Routes API / wix-pages-bo.
|
|
22535
|
+
*/
|
|
22536
|
+
dontUseDefaultRouting?: boolean;
|
|
22537
|
+
/**
|
|
22538
|
+
* Indicates the site is used as critical asset and as such is protected. You would be only able to provision applications to this meta site. READ_ONLY.
|
|
22539
|
+
* @readonly
|
|
22540
|
+
*/
|
|
22541
|
+
criticalAsset?: boolean;
|
|
22541
22542
|
}
|
|
22542
|
-
|
|
22543
|
-
|
|
22544
|
-
|
|
22545
|
-
|
|
22546
|
-
|
|
22547
|
-
|
|
22548
|
-
|
|
22549
|
-
|
|
22550
|
-
|
|
22551
|
-
|
|
22552
|
-
|
|
22553
|
-
|
|
22554
|
-
|
|
22555
|
-
/**
|
|
22556
|
-
|
|
22557
|
-
|
|
22558
|
-
|
|
22559
|
-
|
|
22560
|
-
|
|
22561
|
-
|
|
22562
|
-
|
|
22563
|
-
|
|
22564
|
-
|
|
22565
|
-
|
|
22566
|
-
|
|
22567
|
-
|
|
22568
|
-
|
|
22569
|
-
SUCCEEDED = "SUCCEEDED",
|
|
22570
|
-
/** The void operation was failed */
|
|
22571
|
-
FAILED = "FAILED"
|
|
22572
|
-
}
|
|
22573
|
-
/**
|
|
22574
|
-
* Reason the authorization was voided.
|
|
22575
|
-
*
|
|
22576
|
-
* + `MANUAL`: Authorization was voided by user.
|
|
22577
|
-
* + `SCHEDULED`: Authorization passed execution date.
|
|
22578
|
-
*/
|
|
22579
|
-
declare enum Reason$2 {
|
|
22580
|
-
UNKNOWN_REASON = "UNKNOWN_REASON",
|
|
22581
|
-
MANUAL = "MANUAL",
|
|
22582
|
-
SCHEDULED = "SCHEDULED"
|
|
22583
|
-
}
|
|
22584
|
-
interface V1ScheduledAction {
|
|
22585
|
-
/** type of the action */
|
|
22586
|
-
actionType?: ActionType$2;
|
|
22587
|
-
/** the date and time of the action */
|
|
22588
|
-
executionDate?: Date;
|
|
22589
|
-
}
|
|
22590
|
-
declare enum ActionType$2 {
|
|
22591
|
-
UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
|
|
22592
|
-
VOID = "VOID",
|
|
22593
|
-
CAPTURE = "CAPTURE"
|
|
22594
|
-
}
|
|
22595
|
-
interface GiftCardPaymentDetails$2 {
|
|
22596
|
-
/** Gift card payment ID. */
|
|
22597
|
-
giftCardPaymentId?: string;
|
|
22598
|
-
/** ID of the app that created the gift card. */
|
|
22599
|
-
appId?: string;
|
|
22600
|
-
/**
|
|
22601
|
-
* Whether the gift card is voided.
|
|
22602
|
-
* @readonly
|
|
22603
|
-
*/
|
|
22604
|
-
voided?: boolean;
|
|
22605
|
-
}
|
|
22606
|
-
interface MembershipPaymentDetails$2 {
|
|
22607
|
-
/** Membership ID. */
|
|
22608
|
-
membershipId?: string;
|
|
22609
|
-
/** ID of the line item this membership applies to. */
|
|
22610
|
-
lineItemId?: string;
|
|
22611
|
-
/** Payment status. */
|
|
22612
|
-
status?: MembershipPaymentStatus$2;
|
|
22613
|
-
/** Membership name. */
|
|
22614
|
-
name?: MembershipName$3;
|
|
22615
|
-
/** The transaction ID in the membership system. Can be used to void the transaction. */
|
|
22616
|
-
externalTransactionId?: string | null;
|
|
22617
|
-
/**
|
|
22618
|
-
* Whether the membership is voided.
|
|
22619
|
-
* @readonly
|
|
22620
|
-
*/
|
|
22621
|
-
voided?: boolean;
|
|
22622
|
-
/** ID of the application providing this payment option. */
|
|
22623
|
-
providerAppId?: string;
|
|
22624
|
-
}
|
|
22625
|
-
declare enum MembershipPaymentStatus$2 {
|
|
22626
|
-
/** CHARGED - Payment was charged */
|
|
22627
|
-
CHARGED = "CHARGED",
|
|
22628
|
-
/** CHARGE_FAILED - The attempt to charge that payment have failed, for example due to lack of credits */
|
|
22629
|
-
CHARGE_FAILED = "CHARGE_FAILED"
|
|
22630
|
-
}
|
|
22631
|
-
interface MembershipName$3 {
|
|
22632
|
-
/** The name of this membership */
|
|
22633
|
-
original?: string;
|
|
22634
|
-
/** Optional - Translated name of this membership. Defaults to `original` when not provided. */
|
|
22635
|
-
translated?: string | null;
|
|
22636
|
-
}
|
|
22637
|
-
interface Refund$2 {
|
|
22638
|
-
/**
|
|
22639
|
-
* Refund ID.
|
|
22640
|
-
* @readonly
|
|
22641
|
-
*/
|
|
22642
|
-
_id?: string;
|
|
22643
|
-
/** List of transactions. */
|
|
22644
|
-
transactions?: RefundTransaction$2[];
|
|
22645
|
-
/** Refund business details. */
|
|
22646
|
-
details?: RefundDetails$2;
|
|
22647
|
-
/** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
|
|
22648
|
-
_createdDate?: Date;
|
|
22649
|
-
}
|
|
22650
|
-
interface RefundTransaction$2 {
|
|
22651
|
-
/** ID of the payment associated with this refund. */
|
|
22652
|
-
paymentId?: string;
|
|
22653
|
-
/** Refund amount. */
|
|
22654
|
-
amount?: Price$2;
|
|
22655
|
-
/** Refund status. */
|
|
22656
|
-
refundStatus?: RefundStatus$2;
|
|
22657
|
-
/**
|
|
22658
|
-
* Payment gateway's refund ID. This ID can be used with the Wix Payments [Transactions API](https://dev.wix.com/docs/rest/api-reference/wix-payments/transactions/introduction).
|
|
22659
|
-
* This field is only returned when the value of `external_refund` is `false`.
|
|
22660
|
-
*/
|
|
22661
|
-
gatewayRefundId?: string | null;
|
|
22662
|
-
/** ID of the refund in the payment provider's system. For example, at PayPal, Square, Stripe, etc. Not returned for external refunds. */
|
|
22663
|
-
providerRefundId?: string | null;
|
|
22664
|
-
/** Whether refund was made externally and manually on the payment provider's side. */
|
|
22665
|
-
externalRefund?: boolean;
|
|
22666
|
-
}
|
|
22667
|
-
/**
|
|
22668
|
-
* Refund transaction status.
|
|
22669
|
-
* + `PENDING`: Refund was initiated on payment provider side. PENDING status was assigned by provider.
|
|
22670
|
-
* + `SUCCEEDED`: Refund transaction succeeded.
|
|
22671
|
-
* + `FAILED`: Refund transaction failed.
|
|
22672
|
-
* + `SCHEDULED`: Refund request acknowledged, and will be executed soon.
|
|
22673
|
-
* + `STARTED`: Refund was initiated on payment provider side.
|
|
22674
|
-
*/
|
|
22675
|
-
declare enum RefundStatus$2 {
|
|
22676
|
-
PENDING = "PENDING",
|
|
22677
|
-
SUCCEEDED = "SUCCEEDED",
|
|
22678
|
-
FAILED = "FAILED",
|
|
22679
|
-
SCHEDULED = "SCHEDULED",
|
|
22680
|
-
STARTED = "STARTED"
|
|
22681
|
-
}
|
|
22682
|
-
/** Business model of a refund request */
|
|
22683
|
-
interface RefundDetails$2 {
|
|
22684
|
-
/** Order line item IDs and quantities that were refunded. */
|
|
22685
|
-
items?: RefundItem$2[];
|
|
22686
|
-
/** Whether the shipping fee was also refunded. */
|
|
22687
|
-
shippingIncluded?: boolean;
|
|
22688
|
-
/** Reason for the refund, provided by customer (optional). */
|
|
22689
|
-
reason?: string | null;
|
|
22690
|
-
}
|
|
22691
|
-
interface RefundItem$2 {
|
|
22692
|
-
/** Line item ID the refunded line item. */
|
|
22693
|
-
lineItemId?: string;
|
|
22694
|
-
/** Line item quantity refunded. */
|
|
22695
|
-
quantity?: number;
|
|
22696
|
-
}
|
|
22697
|
-
interface LineItemRefund$2 {
|
|
22698
|
-
}
|
|
22699
|
-
interface AdditionalFeeRefund$2 {
|
|
22700
|
-
}
|
|
22701
|
-
interface ShippingRefund$2 {
|
|
22702
|
-
}
|
|
22703
|
-
interface AggregatedRefundSummary$2 {
|
|
22704
|
-
}
|
|
22705
|
-
interface GetMetasiteDataRequest {
|
|
22706
|
-
/** meta site Id for data to retrieve */
|
|
22707
|
-
metasiteId?: string;
|
|
22708
|
-
}
|
|
22709
|
-
interface GetMetasiteDataResponse {
|
|
22710
|
-
/** meta site data */
|
|
22711
|
-
metasite?: MetaSite;
|
|
22712
|
-
/** is metasite added to new SDL population via population manager */
|
|
22713
|
-
isInNewPopulation?: boolean;
|
|
22714
|
-
/** metasite url */
|
|
22715
|
-
metasiteUrl?: string;
|
|
22716
|
-
/** owner data */
|
|
22717
|
-
userDataResponse?: UserDataResponse;
|
|
22718
|
-
}
|
|
22719
|
-
/**
|
|
22720
|
-
* Represents Meta Site.
|
|
22721
|
-
*
|
|
22722
|
-
* Meta Site is a legacy concept, it aggregates data from several domains. Generally, it contains and manages
|
|
22723
|
-
* relations between different entities related to the site (or, as a new concept, to the container).
|
|
22724
|
-
*
|
|
22725
|
-
* We prefer to pronounce it as 2 separate words, therefore we use terms "meta site" or "metaSite" or "meta_site" in code.
|
|
22726
|
-
*/
|
|
22727
|
-
interface MetaSite {
|
|
22728
|
-
/**
|
|
22729
|
-
* Identifier of meta site.
|
|
22730
|
-
* @readonly
|
|
22731
|
-
*/
|
|
22732
|
-
metaSiteId?: string;
|
|
22733
|
-
/**
|
|
22734
|
-
* Internal version of meta site. Monotonically increasing number.
|
|
22735
|
-
*
|
|
22736
|
-
* If passed within update request, it will be used for optimistic locking. In this case,
|
|
22737
|
-
* StaleStateException will be thrown if current version doesn't match.
|
|
22738
|
-
*
|
|
22739
|
-
* In old MetaSiteDTO -- revision.
|
|
22740
|
-
* @readonly
|
|
22741
|
-
*/
|
|
22742
|
-
version?: string;
|
|
22743
|
-
/**
|
|
22744
|
-
* Identifier of account that owns this meta site.
|
|
22745
|
-
* @readonly
|
|
22746
|
-
*/
|
|
22747
|
-
ownerId?: string;
|
|
22748
|
-
/**
|
|
22749
|
-
* Date and time when meta site was created.
|
|
22750
|
-
* @readonly
|
|
22751
|
-
*/
|
|
22752
|
-
dateCreated?: Date;
|
|
22753
|
-
/**
|
|
22754
|
-
* Date and time when meta site was updated for the last time.
|
|
22755
|
-
* @readonly
|
|
22756
|
-
*/
|
|
22757
|
-
dateUpdated?: Date;
|
|
22758
|
-
/**
|
|
22759
|
-
* All "applications" of this meta site.
|
|
22760
|
-
*
|
|
22761
|
-
* In old MetaSiteDTO -- embeddedServices.
|
|
22762
|
-
*/
|
|
22763
|
-
apps?: App[];
|
|
22764
|
-
/** Namespace of meta site. */
|
|
22765
|
-
namespace?: Namespace;
|
|
22766
|
-
/**
|
|
22767
|
-
* Indicates whether https should be used for viewing a site.
|
|
22768
|
-
*
|
|
22769
|
-
* In old MetaSiteDTO -- flags.UseHttps.
|
|
22770
|
-
*/
|
|
22771
|
-
useHttps?: boolean;
|
|
22772
|
-
defaultSeoData?: SeoData;
|
|
22773
|
-
/**
|
|
22774
|
-
* Information about HTML application.
|
|
22775
|
-
*
|
|
22776
|
-
* In old MetaSiteDTO -- appplications.find(_.applicationType == HtmlWeb).
|
|
22777
|
-
*/
|
|
22778
|
-
htmlApp?: HtmlApplication;
|
|
22779
|
-
/** @deprecated */
|
|
22780
|
-
externalUriMappings?: ExternalUriMapping[];
|
|
22781
|
-
/** Indicates whether meta site was published. If true - site should be accessible for viewing. */
|
|
22782
|
-
published?: boolean;
|
|
22783
|
-
/**
|
|
22784
|
-
* The name of meta site.
|
|
22785
|
-
*
|
|
22786
|
-
* Matches this regular expression: [a-z0-9_\-]{4,20} (but for some legacy sites might be shorted/longer).
|
|
22787
|
-
*/
|
|
22788
|
-
name?: string;
|
|
22789
|
-
/**
|
|
22790
|
-
* Indicates whether this site is managed by ADI editor
|
|
22791
|
-
*
|
|
22792
|
-
* Values:
|
|
22793
|
-
* None - not managed.
|
|
22794
|
-
* Some(false) - site was created via ADI editor, but later on user switched to regular editor.
|
|
22795
|
-
* Some(true) - site was created and still is managed by ADI editor.
|
|
22796
|
-
*
|
|
22797
|
-
* In old MetaSiteDTO: embeddedService[embeddedServiceType=Onboarding].attributes.isInUse.
|
|
22798
|
-
*/
|
|
22799
|
-
adi?: boolean | null;
|
|
22800
|
-
/**
|
|
22801
|
-
* Indicates whether this meta site is template.
|
|
22802
|
-
*
|
|
22803
|
-
* In old MetaSiteDTO: documentType == Template.
|
|
22804
|
-
* @readonly
|
|
22805
|
-
*/
|
|
22806
|
-
template?: boolean | null;
|
|
22807
|
-
/**
|
|
22808
|
-
* Identifier of a template (meta site) from which this site was created.
|
|
22809
|
-
*
|
|
22810
|
-
* If it's empty it either means that site wasn't created from a template OR it's very old, so we didn't store
|
|
22811
|
-
* it back then.
|
|
22812
|
-
*
|
|
22813
|
-
* For example, if "site" was created from "template", then "template"'s id will be in origin_template_id.
|
|
22814
|
-
* When "site" is cloned, clone will also have "template"'s id in origin_instance_id.
|
|
22815
|
-
* @readonly
|
|
22816
|
-
*/
|
|
22817
|
-
originTemplateId?: string | null;
|
|
22818
|
-
/**
|
|
22819
|
-
* Indicates meta site blocked from publishing and added additional filtering in listing API (MSS). READ_ONLY.
|
|
22820
|
-
* @readonly
|
|
22821
|
-
*/
|
|
22822
|
-
blocked?: boolean;
|
|
22823
|
-
/**
|
|
22824
|
-
* If true - default meta site routing (connected domains, free url, ML) is not used for this meta site.
|
|
22825
|
-
*
|
|
22826
|
-
* Meaning, that if `example.org` is connected to this meta site, `router-server` will return 404 for `example.org`
|
|
22827
|
-
* anyway.
|
|
22828
|
-
*
|
|
22829
|
-
* This flag is set for some sites that have custom mapping in Routes API / wix-pages-bo.
|
|
22830
|
-
*/
|
|
22831
|
-
dontUseDefaultRouting?: boolean;
|
|
22832
|
-
/**
|
|
22833
|
-
* Indicates the site is used as critical asset and as such is protected. You would be only able to provision applications to this meta site. READ_ONLY.
|
|
22834
|
-
* @readonly
|
|
22835
|
-
*/
|
|
22836
|
-
criticalAsset?: boolean;
|
|
22837
|
-
}
|
|
22838
|
-
interface App {
|
|
22839
|
-
/**
|
|
22840
|
-
* Identifier of application type (application definition id).
|
|
22841
|
-
*
|
|
22842
|
-
* Can be both UUID and non-UUID, for example: SiteMembers, Onboarding, CloudSiteExtension etc.
|
|
22843
|
-
*/
|
|
22844
|
-
appDefId?: string;
|
|
22845
|
-
/**
|
|
22846
|
-
* Identifier of the instance (concrete application, installed on a site).
|
|
22847
|
-
*
|
|
22848
|
-
* Mostly UUID, but for some specific legacy cases might be something else.
|
|
22849
|
-
*/
|
|
22850
|
-
instanceId?: string;
|
|
22851
|
-
/**
|
|
22852
|
-
* State of this app (see docs for state).
|
|
22853
|
-
* @readonly
|
|
22854
|
-
*/
|
|
22855
|
-
state?: State;
|
|
22856
|
-
/**
|
|
22857
|
-
* Identifier of the originating application. For example, if this app was part of a template,
|
|
22858
|
-
* then an app will get instance_id of that app as origin instance id.
|
|
22859
|
-
*
|
|
22860
|
-
* If application was provisioned not from some template, it should be empty.
|
|
22861
|
-
*
|
|
22862
|
-
* Note, it could be == to instance_id (for old sites).
|
|
22863
|
-
*/
|
|
22864
|
-
originInstanceId?: string;
|
|
22543
|
+
interface App {
|
|
22544
|
+
/**
|
|
22545
|
+
* Identifier of application type (application definition id).
|
|
22546
|
+
*
|
|
22547
|
+
* Can be both UUID and non-UUID, for example: SiteMembers, Onboarding, CloudSiteExtension etc.
|
|
22548
|
+
*/
|
|
22549
|
+
appDefId?: string;
|
|
22550
|
+
/**
|
|
22551
|
+
* Identifier of the instance (concrete application, installed on a site).
|
|
22552
|
+
*
|
|
22553
|
+
* Mostly UUID, but for some specific legacy cases might be something else.
|
|
22554
|
+
*/
|
|
22555
|
+
instanceId?: string;
|
|
22556
|
+
/**
|
|
22557
|
+
* State of this app (see docs for state).
|
|
22558
|
+
* @readonly
|
|
22559
|
+
*/
|
|
22560
|
+
state?: State;
|
|
22561
|
+
/**
|
|
22562
|
+
* Identifier of the originating application. For example, if this app was part of a template,
|
|
22563
|
+
* then an app will get instance_id of that app as origin instance id.
|
|
22564
|
+
*
|
|
22565
|
+
* If application was provisioned not from some template, it should be empty.
|
|
22566
|
+
*
|
|
22567
|
+
* Note, it could be == to instance_id (for old sites).
|
|
22568
|
+
*/
|
|
22569
|
+
originInstanceId?: string;
|
|
22865
22570
|
}
|
|
22866
22571
|
/**
|
|
22867
22572
|
* Represents the actual state of the application on site. Do not confuse with the State in the old MetaSiteDTO,
|
|
@@ -22911,187 +22616,473 @@ declare enum Namespace {
|
|
|
22911
22616
|
*/
|
|
22912
22617
|
HTML_DRAFT = "HTML_DRAFT",
|
|
22913
22618
|
/**
|
|
22914
|
-
* the user-journey for Fitness users who want to start from managing their business instead of designing their website.
|
|
22915
|
-
* Will be accessible from Site List and will not have a website app.
|
|
22916
|
-
* Once the user attaches a site, the site will become a regular wixsite.
|
|
22619
|
+
* the user-journey for Fitness users who want to start from managing their business instead of designing their website.
|
|
22620
|
+
* Will be accessible from Site List and will not have a website app.
|
|
22621
|
+
* Once the user attaches a site, the site will become a regular wixsite.
|
|
22622
|
+
*/
|
|
22623
|
+
SITELESS_BUSINESS = "SITELESS_BUSINESS",
|
|
22624
|
+
/** Belongs to "strategic products" company. Supports new product in the creator's economy space. */
|
|
22625
|
+
CREATOR_ECONOMY = "CREATOR_ECONOMY",
|
|
22626
|
+
/** It is to be used in the Business First efforts. */
|
|
22627
|
+
DASHBOARD_FIRST = "DASHBOARD_FIRST",
|
|
22628
|
+
/** Bookings business flow with no site. */
|
|
22629
|
+
ANYWHERE = "ANYWHERE",
|
|
22630
|
+
/** Namespace for Headless Backoffice with no editor */
|
|
22631
|
+
HEADLESS = "HEADLESS",
|
|
22632
|
+
/**
|
|
22633
|
+
* Namespace for master site that will exist in parent account that will be referenced by subaccounts
|
|
22634
|
+
* The site will be used for account level CSM feature for enterprise
|
|
22635
|
+
*/
|
|
22636
|
+
ACCOUNT_MASTER_CMS = "ACCOUNT_MASTER_CMS",
|
|
22637
|
+
/** Rise.ai Siteless account management for Gift Cards and Store Credit. */
|
|
22638
|
+
RISE = "RISE",
|
|
22639
|
+
/**
|
|
22640
|
+
* As part of the branded app new funnel, users now can create a meta site that will be branded app first.
|
|
22641
|
+
* There's a blank site behind the scene but it's blank).
|
|
22642
|
+
* The Mobile company will be the owner of this namespace.
|
|
22643
|
+
*/
|
|
22644
|
+
BRANDED_FIRST = "BRANDED_FIRST",
|
|
22645
|
+
/** Nownia.com Siteless account management for Ai Scheduling Assistant. */
|
|
22646
|
+
NOWNIA = "NOWNIA"
|
|
22647
|
+
}
|
|
22648
|
+
interface SeoData {
|
|
22649
|
+
/** A title. */
|
|
22650
|
+
title?: string | null;
|
|
22651
|
+
/** Indicates whether the site should be indexable by bots. */
|
|
22652
|
+
indexable?: boolean;
|
|
22653
|
+
/** TDB. */
|
|
22654
|
+
suppressTrackingCookies?: boolean;
|
|
22655
|
+
/** TDB. */
|
|
22656
|
+
ogImage?: string | null;
|
|
22657
|
+
/** A list of meta tags. */
|
|
22658
|
+
metaTags?: MetaTag[];
|
|
22659
|
+
/** A canonical URL for a site. */
|
|
22660
|
+
canonicalUrl?: string | null;
|
|
22661
|
+
}
|
|
22662
|
+
interface MetaTag {
|
|
22663
|
+
/** A name. */
|
|
22664
|
+
name?: string;
|
|
22665
|
+
/** A value. */
|
|
22666
|
+
value?: string;
|
|
22667
|
+
/** Indicates whether should be rendered as property. */
|
|
22668
|
+
property?: boolean;
|
|
22669
|
+
}
|
|
22670
|
+
/** Represents an HTML application (HTML site). */
|
|
22671
|
+
interface HtmlApplication {
|
|
22672
|
+
/** Legacy, don't use it if you can. */
|
|
22673
|
+
intId?: number;
|
|
22674
|
+
/** Identifier of the instance. */
|
|
22675
|
+
instanceId?: string;
|
|
22676
|
+
seoData?: SeoData;
|
|
22677
|
+
/** Language of this site. */
|
|
22678
|
+
languageCode?: string;
|
|
22679
|
+
/** File name for thumbnail. */
|
|
22680
|
+
thumbnail?: string | null;
|
|
22681
|
+
/** Indicates whether this site is managed by EditorX. */
|
|
22682
|
+
editorX?: boolean;
|
|
22683
|
+
/** Indicates whether this site is managed by Wix Studio. */
|
|
22684
|
+
studio?: boolean;
|
|
22685
|
+
}
|
|
22686
|
+
interface ExternalUriMapping {
|
|
22687
|
+
/** Deprecated. */
|
|
22688
|
+
fromExternalUri?: string;
|
|
22689
|
+
/** Deprecated. */
|
|
22690
|
+
toWixUri?: string;
|
|
22691
|
+
/** Deprecated. */
|
|
22692
|
+
oldToWixUri?: string | null;
|
|
22693
|
+
/** Deprecated. */
|
|
22694
|
+
requireDomain?: boolean | null;
|
|
22695
|
+
}
|
|
22696
|
+
interface UserDataResponse {
|
|
22697
|
+
userEmail?: string;
|
|
22698
|
+
/** owner name */
|
|
22699
|
+
userName?: string;
|
|
22700
|
+
/** owner status */
|
|
22701
|
+
userStatus?: string;
|
|
22702
|
+
/** owner language */
|
|
22703
|
+
userLanguage?: string;
|
|
22704
|
+
}
|
|
22705
|
+
interface QueryOrdersForMetasiteRequest {
|
|
22706
|
+
/** meta site Id for EP orders to retrieve */
|
|
22707
|
+
metasiteId?: string;
|
|
22708
|
+
/** paginated internal orders query request */
|
|
22709
|
+
internalQueryOrdersRequest?: InternalQueryOrdersRequest;
|
|
22710
|
+
}
|
|
22711
|
+
interface InternalQueryOrdersRequest {
|
|
22712
|
+
/** Query options. */
|
|
22713
|
+
query?: PlatformQuery;
|
|
22714
|
+
}
|
|
22715
|
+
interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
|
|
22716
|
+
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
22717
|
+
paging?: PlatformPaging;
|
|
22718
|
+
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
22719
|
+
cursorPaging?: CursorPaging$5;
|
|
22720
|
+
/** Filter object. */
|
|
22721
|
+
filter?: Record<string, any> | null;
|
|
22722
|
+
/** Sorting options. For example, `[{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]`. */
|
|
22723
|
+
sort?: Sorting$5[];
|
|
22724
|
+
}
|
|
22725
|
+
/** @oneof */
|
|
22726
|
+
interface PlatformQueryPagingMethodOneOf {
|
|
22727
|
+
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
22728
|
+
paging?: PlatformPaging;
|
|
22729
|
+
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
22730
|
+
cursorPaging?: CursorPaging$5;
|
|
22731
|
+
}
|
|
22732
|
+
interface Sorting$5 {
|
|
22733
|
+
/** Name of the field to sort by. */
|
|
22734
|
+
fieldName?: string;
|
|
22735
|
+
/** Sort order. */
|
|
22736
|
+
order?: SortOrder$5;
|
|
22737
|
+
}
|
|
22738
|
+
declare enum SortOrder$5 {
|
|
22739
|
+
ASC = "ASC",
|
|
22740
|
+
DESC = "DESC"
|
|
22741
|
+
}
|
|
22742
|
+
interface PlatformPaging {
|
|
22743
|
+
/** Number of items to load. */
|
|
22744
|
+
limit?: number | null;
|
|
22745
|
+
/** Number of items to skip in the current sort order. */
|
|
22746
|
+
offset?: number | null;
|
|
22747
|
+
}
|
|
22748
|
+
interface CursorPaging$5 {
|
|
22749
|
+
/** Maximum number of items to return in the results. */
|
|
22750
|
+
limit?: number | null;
|
|
22751
|
+
/**
|
|
22752
|
+
* Pointer to the next or previous page in the list of results.
|
|
22753
|
+
*
|
|
22754
|
+
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
22755
|
+
* Not relevant for the first request.
|
|
22756
|
+
*/
|
|
22757
|
+
cursor?: string | null;
|
|
22758
|
+
}
|
|
22759
|
+
interface QueryOrdersForMetasiteResponse {
|
|
22760
|
+
/** found exisitng orders according to pagination and query provided. */
|
|
22761
|
+
orders?: Order$1[];
|
|
22762
|
+
/** Details on the paged set of results returned. */
|
|
22763
|
+
pagingMetadata?: PlatformPagingMetadata;
|
|
22764
|
+
}
|
|
22765
|
+
interface PlatformPagingMetadata {
|
|
22766
|
+
/** The number of items returned in this response. */
|
|
22767
|
+
count?: number | null;
|
|
22768
|
+
/** The offset which was requested. Returned if offset paging was used. */
|
|
22769
|
+
offset?: number | null;
|
|
22770
|
+
/** The total number of items that match the query. Returned if offset paging was used. */
|
|
22771
|
+
total?: number | null;
|
|
22772
|
+
/** Cursors to navigate through result pages. Returned if cursor paging was used. */
|
|
22773
|
+
cursors?: Cursors$5;
|
|
22774
|
+
}
|
|
22775
|
+
interface Cursors$5 {
|
|
22776
|
+
/** Cursor string pointing to the next page in the list of results. */
|
|
22777
|
+
next?: string | null;
|
|
22778
|
+
/** Cursor pointing to the previous page in the list of results. */
|
|
22779
|
+
prev?: string | null;
|
|
22780
|
+
}
|
|
22781
|
+
interface GetOrderForMetasiteRequest {
|
|
22782
|
+
/** meta site Id for EP order to retrieve */
|
|
22783
|
+
metasiteId?: string;
|
|
22784
|
+
/** Order Id for EP order to retrieve */
|
|
22785
|
+
orderId?: string;
|
|
22786
|
+
}
|
|
22787
|
+
interface GetOrderForMetasiteResponse {
|
|
22788
|
+
/** Existing EP order */
|
|
22789
|
+
order?: Order$1;
|
|
22790
|
+
}
|
|
22791
|
+
interface ListOrderTransactionsForMetasiteRequest {
|
|
22792
|
+
/** meta site Id for EP order transactions to retrieve */
|
|
22793
|
+
metasiteId?: string;
|
|
22794
|
+
/** Order Id for EP order transactions to retrieve */
|
|
22795
|
+
orderId?: string;
|
|
22796
|
+
}
|
|
22797
|
+
interface ListOrderTransactionsForMetasiteResponse {
|
|
22798
|
+
/** Order ID and its associated transactions. */
|
|
22799
|
+
orderTransactions?: OrderTransactions$2;
|
|
22800
|
+
}
|
|
22801
|
+
interface OrderTransactions$2 {
|
|
22802
|
+
/** Order ID. */
|
|
22803
|
+
orderId?: string;
|
|
22804
|
+
/** Record of payments made to the merchant. */
|
|
22805
|
+
payments?: Payment$2[];
|
|
22806
|
+
/** Record of refunds made to the buyer. */
|
|
22807
|
+
refunds?: Refund$2[];
|
|
22808
|
+
}
|
|
22809
|
+
interface Payment$2 extends PaymentPaymentDetailsOneOf$2 {
|
|
22810
|
+
/** Regular payment details. */
|
|
22811
|
+
regularPaymentDetails?: RegularPaymentDetails$2;
|
|
22812
|
+
/** Gift card payment details. */
|
|
22813
|
+
giftcardPaymentDetails?: GiftCardPaymentDetails$2;
|
|
22814
|
+
/**
|
|
22815
|
+
* Payment ID.
|
|
22816
|
+
* @readonly
|
|
22817
|
+
*/
|
|
22818
|
+
_id?: string | null;
|
|
22819
|
+
/** Date and time the payment was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
|
|
22820
|
+
_createdDate?: Date;
|
|
22821
|
+
/**
|
|
22822
|
+
* Date and time the payment was last updated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format.
|
|
22823
|
+
* @readonly
|
|
22824
|
+
*/
|
|
22825
|
+
_updatedDate?: Date;
|
|
22826
|
+
/** Payment amount. */
|
|
22827
|
+
amount?: Price$2;
|
|
22828
|
+
/**
|
|
22829
|
+
* Whether refunds for this payment are disabled.
|
|
22830
|
+
* + `true`: This payment is not refundable.
|
|
22831
|
+
* + `false`: This payment may be refunded. However, this ultimately depends on the payment provider.
|
|
22832
|
+
*/
|
|
22833
|
+
refundDisabled?: boolean;
|
|
22834
|
+
}
|
|
22835
|
+
/** @oneof */
|
|
22836
|
+
interface PaymentPaymentDetailsOneOf$2 {
|
|
22837
|
+
/** Regular payment details. */
|
|
22838
|
+
regularPaymentDetails?: RegularPaymentDetails$2;
|
|
22839
|
+
/** Gift card payment details. */
|
|
22840
|
+
giftcardPaymentDetails?: GiftCardPaymentDetails$2;
|
|
22841
|
+
}
|
|
22842
|
+
interface RegularPaymentDetails$2 extends RegularPaymentDetailsPaymentMethodDetailsOneOf$2 {
|
|
22843
|
+
/** Whether regular card used */
|
|
22844
|
+
creditCardDetails?: CreditCardPaymentMethodDetails$2;
|
|
22845
|
+
/** Wix Payments order ID. */
|
|
22846
|
+
paymentOrderId?: string | null;
|
|
22847
|
+
/**
|
|
22848
|
+
* Payment gateway's transaction ID. This ID can be used with the Wix Payments [Transactions API](https://dev.wix.com/docs/rest/api-reference/wix-payments/transactions/introduction).
|
|
22849
|
+
* This field is only returned when the value of `offline_payment` is `false`.
|
|
22850
|
+
*/
|
|
22851
|
+
gatewayTransactionId?: string | null;
|
|
22852
|
+
/**
|
|
22853
|
+
* Payment method. Non-exhaustive list of supported values:
|
|
22854
|
+
* + `CreditCard`, `Alipay`, `AstropayCash`, `AstropayDBT`, `AstropayMBT`, `Bitcoin`, `BitPay`, `Cash`, `ConvenienceStore`, `EPay`, `Fake`, `Giropay`, `IDeal`, `InPerson`, `Klarna`, `MercadoPago`, `Netpay`, `NordeaSolo`, `Offline`, `PagSeguro`, `PayEasy`, `PayPal`, `Paysafecard`, `Paysafecash`, `PointOfSale`, `Poli`, `Privat24`, `Przelewy24`, `RapidTransfer`, `Sepa`, `Skrill`, `Sofort`, `Trustly`, `Neteller`, `Unionpay`, `UniPay`, `Yandex`
|
|
22855
|
+
*/
|
|
22856
|
+
paymentMethod?: string | null;
|
|
22857
|
+
/** Transaction ID in the payment provider's system. For example, at PayPal, Square, Stripe, etc. Not returned for offline payments. */
|
|
22858
|
+
providerTransactionId?: string | null;
|
|
22859
|
+
/** Whether the payment was made offline. For example, when using cash or when marked as paid in the Business Manager. */
|
|
22860
|
+
offlinePayment?: boolean;
|
|
22861
|
+
/** Payment status. */
|
|
22862
|
+
status?: TransactionStatus$2;
|
|
22863
|
+
/** Whether there is a payment agreement that allows for future charges. */
|
|
22864
|
+
savedPaymentMethod?: boolean;
|
|
22865
|
+
/** Authorization details. */
|
|
22866
|
+
authorizationDetails?: AuthorizationDetails$2;
|
|
22867
|
+
}
|
|
22868
|
+
/** @oneof */
|
|
22869
|
+
interface RegularPaymentDetailsPaymentMethodDetailsOneOf$2 {
|
|
22870
|
+
/** Whether regular card used */
|
|
22871
|
+
creditCardDetails?: CreditCardPaymentMethodDetails$2;
|
|
22872
|
+
}
|
|
22873
|
+
declare enum TransactionStatus$2 {
|
|
22874
|
+
UNDEFINED = "UNDEFINED",
|
|
22875
|
+
APPROVED = "APPROVED",
|
|
22876
|
+
PENDING = "PENDING",
|
|
22877
|
+
PENDING_MERCHANT = "PENDING_MERCHANT",
|
|
22878
|
+
CANCELED = "CANCELED",
|
|
22879
|
+
DECLINED = "DECLINED",
|
|
22880
|
+
REFUNDED = "REFUNDED",
|
|
22881
|
+
PARTIALLY_REFUNDED = "PARTIALLY_REFUNDED",
|
|
22882
|
+
AUTHORIZED = "AUTHORIZED",
|
|
22883
|
+
VOIDED = "VOIDED"
|
|
22884
|
+
}
|
|
22885
|
+
interface CreditCardPaymentMethodDetails$2 {
|
|
22886
|
+
/** The last 4 digits of the card number. */
|
|
22887
|
+
lastFourDigits?: string | null;
|
|
22888
|
+
/** Card issuer's brand. */
|
|
22889
|
+
brand?: string | null;
|
|
22890
|
+
}
|
|
22891
|
+
interface AuthorizationDetails$2 {
|
|
22892
|
+
/**
|
|
22893
|
+
* Whether the authorized payment is of a delayed capture.
|
|
22894
|
+
* @readonly
|
|
22917
22895
|
*/
|
|
22918
|
-
|
|
22919
|
-
/**
|
|
22920
|
-
|
|
22921
|
-
/** It is to be used in the Business First efforts. */
|
|
22922
|
-
DASHBOARD_FIRST = "DASHBOARD_FIRST",
|
|
22923
|
-
/** Bookings business flow with no site. */
|
|
22924
|
-
ANYWHERE = "ANYWHERE",
|
|
22925
|
-
/** Namespace for Headless Backoffice with no editor */
|
|
22926
|
-
HEADLESS = "HEADLESS",
|
|
22896
|
+
delayedCapture?: boolean;
|
|
22897
|
+
/** Date and time the payment was authorized in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
|
|
22898
|
+
authorizedDate?: Date;
|
|
22927
22899
|
/**
|
|
22928
|
-
*
|
|
22929
|
-
*
|
|
22900
|
+
* List of captures associated with payment
|
|
22901
|
+
* In case of failed it can be replaced with new one with PENDING or SUCCESS statuses
|
|
22930
22902
|
*/
|
|
22931
|
-
|
|
22932
|
-
/**
|
|
22933
|
-
|
|
22903
|
+
captures?: AuthorizationCapture$2[];
|
|
22904
|
+
/** Void associated with payment */
|
|
22905
|
+
void?: AuthorizationVoid$2;
|
|
22906
|
+
/** Scheduled action for this transaction */
|
|
22907
|
+
scheduledAction?: V1ScheduledAction;
|
|
22908
|
+
}
|
|
22909
|
+
interface AuthorizationCapture$2 {
|
|
22934
22910
|
/**
|
|
22935
|
-
*
|
|
22936
|
-
*
|
|
22937
|
-
* The Mobile company will be the owner of this namespace.
|
|
22911
|
+
* Capture ID.
|
|
22912
|
+
* @readonly
|
|
22938
22913
|
*/
|
|
22939
|
-
|
|
22940
|
-
/**
|
|
22941
|
-
|
|
22914
|
+
_id?: string | null;
|
|
22915
|
+
/** Status of this capture action */
|
|
22916
|
+
status?: AuthorizationCaptureStatus$2;
|
|
22917
|
+
/** Amount of this capture */
|
|
22918
|
+
amount?: Price$2;
|
|
22919
|
+
/** Date and time the capture was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
|
|
22920
|
+
_createdDate?: Date;
|
|
22921
|
+
/** In case of status is FAILED may contain failure details */
|
|
22922
|
+
failureDetails?: AuthorizationActionFailureDetails$2;
|
|
22942
22923
|
}
|
|
22943
|
-
|
|
22944
|
-
|
|
22945
|
-
|
|
22946
|
-
|
|
22947
|
-
|
|
22948
|
-
|
|
22949
|
-
|
|
22950
|
-
|
|
22951
|
-
ogImage?: string | null;
|
|
22952
|
-
/** A list of meta tags. */
|
|
22953
|
-
metaTags?: MetaTag[];
|
|
22954
|
-
/** A canonical URL for a site. */
|
|
22955
|
-
canonicalUrl?: string | null;
|
|
22924
|
+
declare enum AuthorizationCaptureStatus$2 {
|
|
22925
|
+
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
22926
|
+
/** Whether capture operation still in progress */
|
|
22927
|
+
PENDING = "PENDING",
|
|
22928
|
+
/** The capture operation was succeeded */
|
|
22929
|
+
SUCCEEDED = "SUCCEEDED",
|
|
22930
|
+
/** The capture operation was failed */
|
|
22931
|
+
FAILED = "FAILED"
|
|
22956
22932
|
}
|
|
22957
|
-
interface
|
|
22958
|
-
|
|
22959
|
-
name?: string;
|
|
22960
|
-
/** A value. */
|
|
22961
|
-
value?: string;
|
|
22962
|
-
/** Indicates whether should be rendered as property. */
|
|
22963
|
-
property?: boolean;
|
|
22933
|
+
interface AuthorizationActionFailureDetails$2 {
|
|
22934
|
+
failureCode?: string;
|
|
22964
22935
|
}
|
|
22965
|
-
|
|
22966
|
-
|
|
22967
|
-
|
|
22968
|
-
|
|
22969
|
-
|
|
22970
|
-
|
|
22971
|
-
|
|
22972
|
-
/**
|
|
22973
|
-
|
|
22974
|
-
/** File name for thumbnail. */
|
|
22975
|
-
thumbnail?: string | null;
|
|
22976
|
-
/** Indicates whether this site is managed by EditorX. */
|
|
22977
|
-
editorX?: boolean;
|
|
22978
|
-
/** Indicates whether this site is managed by Wix Studio. */
|
|
22979
|
-
studio?: boolean;
|
|
22936
|
+
interface AuthorizationVoid$2 {
|
|
22937
|
+
/** Status of this void action */
|
|
22938
|
+
status?: AuthorizationVoidStatus$2;
|
|
22939
|
+
/** Date and time the void was initiated in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. */
|
|
22940
|
+
voidedDate?: Date;
|
|
22941
|
+
/** In case of status is FAILED may contain failure details */
|
|
22942
|
+
failureDetails?: AuthorizationActionFailureDetails$2;
|
|
22943
|
+
/** Reason of void action */
|
|
22944
|
+
reason?: Reason$2;
|
|
22980
22945
|
}
|
|
22981
|
-
|
|
22982
|
-
|
|
22983
|
-
|
|
22984
|
-
|
|
22985
|
-
|
|
22986
|
-
|
|
22987
|
-
|
|
22988
|
-
|
|
22989
|
-
requireDomain?: boolean | null;
|
|
22946
|
+
declare enum AuthorizationVoidStatus$2 {
|
|
22947
|
+
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
22948
|
+
/** Whether void operation still in progress */
|
|
22949
|
+
PENDING = "PENDING",
|
|
22950
|
+
/** The void operation was succeeded */
|
|
22951
|
+
SUCCEEDED = "SUCCEEDED",
|
|
22952
|
+
/** The void operation was failed */
|
|
22953
|
+
FAILED = "FAILED"
|
|
22990
22954
|
}
|
|
22991
|
-
|
|
22992
|
-
|
|
22993
|
-
|
|
22994
|
-
|
|
22995
|
-
|
|
22996
|
-
|
|
22997
|
-
|
|
22998
|
-
|
|
22955
|
+
/**
|
|
22956
|
+
* Reason the authorization was voided.
|
|
22957
|
+
*
|
|
22958
|
+
* + `MANUAL`: Authorization was voided by user.
|
|
22959
|
+
* + `SCHEDULED`: Authorization passed execution date.
|
|
22960
|
+
*/
|
|
22961
|
+
declare enum Reason$2 {
|
|
22962
|
+
UNKNOWN_REASON = "UNKNOWN_REASON",
|
|
22963
|
+
MANUAL = "MANUAL",
|
|
22964
|
+
SCHEDULED = "SCHEDULED"
|
|
22999
22965
|
}
|
|
23000
|
-
interface
|
|
23001
|
-
/**
|
|
23002
|
-
|
|
23003
|
-
/**
|
|
23004
|
-
|
|
22966
|
+
interface V1ScheduledAction {
|
|
22967
|
+
/** type of the action */
|
|
22968
|
+
actionType?: ActionType$2;
|
|
22969
|
+
/** the date and time of the action */
|
|
22970
|
+
executionDate?: Date;
|
|
23005
22971
|
}
|
|
23006
|
-
|
|
23007
|
-
|
|
23008
|
-
|
|
22972
|
+
declare enum ActionType$2 {
|
|
22973
|
+
UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
|
|
22974
|
+
VOID = "VOID",
|
|
22975
|
+
CAPTURE = "CAPTURE"
|
|
23009
22976
|
}
|
|
23010
|
-
interface
|
|
23011
|
-
/**
|
|
23012
|
-
|
|
23013
|
-
/**
|
|
23014
|
-
|
|
23015
|
-
/**
|
|
23016
|
-
|
|
23017
|
-
|
|
23018
|
-
|
|
22977
|
+
interface GiftCardPaymentDetails$2 {
|
|
22978
|
+
/** Gift card payment ID. */
|
|
22979
|
+
giftCardPaymentId?: string;
|
|
22980
|
+
/** ID of the app that created the gift card. */
|
|
22981
|
+
appId?: string;
|
|
22982
|
+
/**
|
|
22983
|
+
* Whether the gift card is voided.
|
|
22984
|
+
* @readonly
|
|
22985
|
+
*/
|
|
22986
|
+
voided?: boolean;
|
|
23019
22987
|
}
|
|
23020
|
-
|
|
23021
|
-
|
|
23022
|
-
|
|
23023
|
-
|
|
23024
|
-
|
|
23025
|
-
|
|
22988
|
+
interface MembershipPaymentDetails$2 {
|
|
22989
|
+
/** Membership ID. */
|
|
22990
|
+
membershipId?: string;
|
|
22991
|
+
/** ID of the line item this membership applies to. */
|
|
22992
|
+
lineItemId?: string;
|
|
22993
|
+
/** Payment status. */
|
|
22994
|
+
status?: MembershipPaymentStatus$2;
|
|
22995
|
+
/** Membership name. */
|
|
22996
|
+
name?: MembershipName$3;
|
|
22997
|
+
/** The transaction ID in the membership system. Can be used to void the transaction. */
|
|
22998
|
+
externalTransactionId?: string | null;
|
|
22999
|
+
/**
|
|
23000
|
+
* Whether the membership is voided.
|
|
23001
|
+
* @readonly
|
|
23002
|
+
*/
|
|
23003
|
+
voided?: boolean;
|
|
23004
|
+
/** ID of the application providing this payment option. */
|
|
23005
|
+
providerAppId?: string;
|
|
23026
23006
|
}
|
|
23027
|
-
|
|
23028
|
-
/**
|
|
23029
|
-
|
|
23030
|
-
/**
|
|
23031
|
-
|
|
23007
|
+
declare enum MembershipPaymentStatus$2 {
|
|
23008
|
+
/** CHARGED - Payment was charged */
|
|
23009
|
+
CHARGED = "CHARGED",
|
|
23010
|
+
/** CHARGE_FAILED - The attempt to charge that payment have failed, for example due to lack of credits */
|
|
23011
|
+
CHARGE_FAILED = "CHARGE_FAILED"
|
|
23032
23012
|
}
|
|
23033
|
-
|
|
23034
|
-
|
|
23035
|
-
|
|
23013
|
+
interface MembershipName$3 {
|
|
23014
|
+
/** The name of this membership */
|
|
23015
|
+
original?: string;
|
|
23016
|
+
/** Optional - Translated name of this membership. Defaults to `original` when not provided. */
|
|
23017
|
+
translated?: string | null;
|
|
23036
23018
|
}
|
|
23037
|
-
interface
|
|
23038
|
-
/**
|
|
23039
|
-
|
|
23040
|
-
|
|
23041
|
-
|
|
23019
|
+
interface Refund$2 {
|
|
23020
|
+
/**
|
|
23021
|
+
* Refund ID.
|
|
23022
|
+
* @readonly
|
|
23023
|
+
*/
|
|
23024
|
+
_id?: string;
|
|
23025
|
+
/** List of transactions. */
|
|
23026
|
+
transactions?: RefundTransaction$2[];
|
|
23027
|
+
/** Refund business details. */
|
|
23028
|
+
details?: RefundDetails$2;
|
|
23029
|
+
/** Date and time the refund was created in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) format. Defaults to current time when not provided. */
|
|
23030
|
+
_createdDate?: Date;
|
|
23042
23031
|
}
|
|
23043
|
-
interface
|
|
23044
|
-
/**
|
|
23045
|
-
|
|
23032
|
+
interface RefundTransaction$2 {
|
|
23033
|
+
/** ID of the payment associated with this refund. */
|
|
23034
|
+
paymentId?: string;
|
|
23035
|
+
/** Refund amount. */
|
|
23036
|
+
amount?: Price$2;
|
|
23037
|
+
/** Refund status. */
|
|
23038
|
+
refundStatus?: RefundStatus$2;
|
|
23046
23039
|
/**
|
|
23047
|
-
*
|
|
23048
|
-
*
|
|
23049
|
-
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
23050
|
-
* Not relevant for the first request.
|
|
23040
|
+
* Payment gateway's refund ID. This ID can be used with the Wix Payments [Transactions API](https://dev.wix.com/docs/rest/api-reference/wix-payments/transactions/introduction).
|
|
23041
|
+
* This field is only returned when the value of `external_refund` is `false`.
|
|
23051
23042
|
*/
|
|
23052
|
-
|
|
23043
|
+
gatewayRefundId?: string | null;
|
|
23044
|
+
/** ID of the refund in the payment provider's system. For example, at PayPal, Square, Stripe, etc. Not returned for external refunds. */
|
|
23045
|
+
providerRefundId?: string | null;
|
|
23046
|
+
/** Whether refund was made externally and manually on the payment provider's side. */
|
|
23047
|
+
externalRefund?: boolean;
|
|
23053
23048
|
}
|
|
23054
|
-
|
|
23055
|
-
|
|
23056
|
-
|
|
23057
|
-
|
|
23058
|
-
|
|
23049
|
+
/**
|
|
23050
|
+
* Refund transaction status.
|
|
23051
|
+
* + `PENDING`: Refund was initiated on payment provider side. PENDING status was assigned by provider.
|
|
23052
|
+
* + `SUCCEEDED`: Refund transaction succeeded.
|
|
23053
|
+
* + `FAILED`: Refund transaction failed.
|
|
23054
|
+
* + `SCHEDULED`: Refund request acknowledged, and will be executed soon.
|
|
23055
|
+
* + `STARTED`: Refund was initiated on payment provider side.
|
|
23056
|
+
*/
|
|
23057
|
+
declare enum RefundStatus$2 {
|
|
23058
|
+
PENDING = "PENDING",
|
|
23059
|
+
SUCCEEDED = "SUCCEEDED",
|
|
23060
|
+
FAILED = "FAILED",
|
|
23061
|
+
SCHEDULED = "SCHEDULED",
|
|
23062
|
+
STARTED = "STARTED"
|
|
23059
23063
|
}
|
|
23060
|
-
|
|
23061
|
-
|
|
23062
|
-
|
|
23063
|
-
|
|
23064
|
-
|
|
23065
|
-
|
|
23066
|
-
|
|
23067
|
-
|
|
23068
|
-
cursors?: Cursors$5;
|
|
23064
|
+
/** Business model of a refund request */
|
|
23065
|
+
interface RefundDetails$2 {
|
|
23066
|
+
/** Order line item IDs and quantities that were refunded. */
|
|
23067
|
+
items?: RefundItem$2[];
|
|
23068
|
+
/** Whether the shipping fee was also refunded. */
|
|
23069
|
+
shippingIncluded?: boolean;
|
|
23070
|
+
/** Reason for the refund, provided by customer (optional). */
|
|
23071
|
+
reason?: string | null;
|
|
23069
23072
|
}
|
|
23070
|
-
interface
|
|
23071
|
-
/**
|
|
23072
|
-
|
|
23073
|
-
/**
|
|
23074
|
-
|
|
23073
|
+
interface RefundItem$2 {
|
|
23074
|
+
/** Line item ID the refunded line item. */
|
|
23075
|
+
lineItemId?: string;
|
|
23076
|
+
/** Line item quantity refunded. */
|
|
23077
|
+
quantity?: number;
|
|
23075
23078
|
}
|
|
23076
|
-
interface
|
|
23077
|
-
/** meta site Id for EP order to retrieve */
|
|
23078
|
-
metasiteId?: string;
|
|
23079
|
-
/** Order Id for EP order to retrieve */
|
|
23080
|
-
orderId?: string;
|
|
23079
|
+
interface LineItemRefund$2 {
|
|
23081
23080
|
}
|
|
23082
|
-
interface
|
|
23083
|
-
/** Existing EP order */
|
|
23084
|
-
order?: Order$1;
|
|
23081
|
+
interface AdditionalFeeRefund$2 {
|
|
23085
23082
|
}
|
|
23086
|
-
interface
|
|
23087
|
-
/** meta site Id for EP order transactions to retrieve */
|
|
23088
|
-
metasiteId?: string;
|
|
23089
|
-
/** Order Id for EP order transactions to retrieve */
|
|
23090
|
-
orderId?: string;
|
|
23083
|
+
interface ShippingRefund$2 {
|
|
23091
23084
|
}
|
|
23092
|
-
interface
|
|
23093
|
-
/** Order ID and its associated transactions. */
|
|
23094
|
-
orderTransactions?: OrderTransactions$2;
|
|
23085
|
+
interface AggregatedRefundSummary$2 {
|
|
23095
23086
|
}
|
|
23096
23087
|
interface UpsertRefundRequest {
|
|
23097
23088
|
/** Meta site ID. */
|
|
@@ -23111,76 +23102,6 @@ interface TestUrlAdditionalBindingsRequest {
|
|
|
23111
23102
|
interface TestUrlAdditionalBindingsResponse {
|
|
23112
23103
|
responseString?: string;
|
|
23113
23104
|
}
|
|
23114
|
-
interface DomainEvent$6 extends DomainEventBodyOneOf$6 {
|
|
23115
|
-
createdEvent?: EntityCreatedEvent$6;
|
|
23116
|
-
updatedEvent?: EntityUpdatedEvent$6;
|
|
23117
|
-
deletedEvent?: EntityDeletedEvent$6;
|
|
23118
|
-
actionEvent?: ActionEvent$6;
|
|
23119
|
-
/**
|
|
23120
|
-
* Unique event ID.
|
|
23121
|
-
* Allows clients to ignore duplicate webhooks.
|
|
23122
|
-
*/
|
|
23123
|
-
_id?: string;
|
|
23124
|
-
/**
|
|
23125
|
-
* Assumes actions are also always typed to an entity_type
|
|
23126
|
-
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
23127
|
-
*/
|
|
23128
|
-
entityFqdn?: string;
|
|
23129
|
-
/**
|
|
23130
|
-
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
23131
|
-
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
23132
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
23133
|
-
*/
|
|
23134
|
-
slug?: string;
|
|
23135
|
-
/** ID of the entity associated with the event. */
|
|
23136
|
-
entityId?: string;
|
|
23137
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
23138
|
-
eventTime?: Date;
|
|
23139
|
-
/**
|
|
23140
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
23141
|
-
* (for example, GDPR).
|
|
23142
|
-
*/
|
|
23143
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
23144
|
-
/** If present, indicates the action that triggered the event. */
|
|
23145
|
-
originatedFrom?: string | null;
|
|
23146
|
-
/**
|
|
23147
|
-
* A sequence number defining the order of updates to the underlying entity.
|
|
23148
|
-
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
23149
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
23150
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
23151
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
23152
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
23153
|
-
*/
|
|
23154
|
-
entityEventSequence?: string | null;
|
|
23155
|
-
}
|
|
23156
|
-
/** @oneof */
|
|
23157
|
-
interface DomainEventBodyOneOf$6 {
|
|
23158
|
-
createdEvent?: EntityCreatedEvent$6;
|
|
23159
|
-
updatedEvent?: EntityUpdatedEvent$6;
|
|
23160
|
-
deletedEvent?: EntityDeletedEvent$6;
|
|
23161
|
-
actionEvent?: ActionEvent$6;
|
|
23162
|
-
}
|
|
23163
|
-
interface EntityCreatedEvent$6 {
|
|
23164
|
-
entity?: string;
|
|
23165
|
-
}
|
|
23166
|
-
interface RestoreInfo$6 {
|
|
23167
|
-
deletedDate?: Date;
|
|
23168
|
-
}
|
|
23169
|
-
interface EntityUpdatedEvent$6 {
|
|
23170
|
-
/**
|
|
23171
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
23172
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
23173
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
23174
|
-
*/
|
|
23175
|
-
currentEntity?: string;
|
|
23176
|
-
}
|
|
23177
|
-
interface EntityDeletedEvent$6 {
|
|
23178
|
-
/** Entity that was deleted */
|
|
23179
|
-
deletedEntity?: string | null;
|
|
23180
|
-
}
|
|
23181
|
-
interface ActionEvent$6 {
|
|
23182
|
-
body?: string;
|
|
23183
|
-
}
|
|
23184
23105
|
interface MessageEnvelope$6 {
|
|
23185
23106
|
/** App instance ID. */
|
|
23186
23107
|
instanceId?: string | null;
|
|
@@ -23322,12 +23243,91 @@ interface VersionedDocumentId {
|
|
|
23322
23243
|
/** versioning mode to use instead of default */
|
|
23323
23244
|
versioningMode?: VersioningMode;
|
|
23324
23245
|
}
|
|
23246
|
+
/** Triggered when a payment is updated. */
|
|
23247
|
+
interface PaymentsUpdated$2 {
|
|
23248
|
+
/** Updated order transactions. */
|
|
23249
|
+
orderTransactions?: OrderTransactions$2;
|
|
23250
|
+
/** List of IDs of the updated payments. */
|
|
23251
|
+
paymentIds?: string[];
|
|
23252
|
+
/** List of IDs of the updated refunds. */
|
|
23253
|
+
refundIds?: string[];
|
|
23254
|
+
}
|
|
23325
23255
|
interface TriggerReindexRequest {
|
|
23326
23256
|
metasiteId?: string;
|
|
23327
23257
|
orderIds?: string[];
|
|
23328
23258
|
}
|
|
23329
23259
|
interface TriggerReindexResponse {
|
|
23330
23260
|
}
|
|
23261
|
+
interface DomainEvent$6 extends DomainEventBodyOneOf$6 {
|
|
23262
|
+
createdEvent?: EntityCreatedEvent$6;
|
|
23263
|
+
updatedEvent?: EntityUpdatedEvent$6;
|
|
23264
|
+
deletedEvent?: EntityDeletedEvent$6;
|
|
23265
|
+
actionEvent?: ActionEvent$6;
|
|
23266
|
+
/**
|
|
23267
|
+
* Unique event ID.
|
|
23268
|
+
* Allows clients to ignore duplicate webhooks.
|
|
23269
|
+
*/
|
|
23270
|
+
_id?: string;
|
|
23271
|
+
/**
|
|
23272
|
+
* Assumes actions are also always typed to an entity_type
|
|
23273
|
+
* Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction
|
|
23274
|
+
*/
|
|
23275
|
+
entityFqdn?: string;
|
|
23276
|
+
/**
|
|
23277
|
+
* This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug)
|
|
23278
|
+
* This is although the created/updated/deleted notion is duplication of the oneof types
|
|
23279
|
+
* Example: created/updated/deleted/started/completed/email_opened
|
|
23280
|
+
*/
|
|
23281
|
+
slug?: string;
|
|
23282
|
+
/** ID of the entity associated with the event. */
|
|
23283
|
+
entityId?: string;
|
|
23284
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */
|
|
23285
|
+
eventTime?: Date;
|
|
23286
|
+
/**
|
|
23287
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
23288
|
+
* (for example, GDPR).
|
|
23289
|
+
*/
|
|
23290
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
23291
|
+
/** If present, indicates the action that triggered the event. */
|
|
23292
|
+
originatedFrom?: string | null;
|
|
23293
|
+
/**
|
|
23294
|
+
* A sequence number defining the order of updates to the underlying entity.
|
|
23295
|
+
* For example, given that some entity was updated at 16:00 and than again at 16:01,
|
|
23296
|
+
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
23297
|
+
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
23298
|
+
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
23299
|
+
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
23300
|
+
*/
|
|
23301
|
+
entityEventSequence?: string | null;
|
|
23302
|
+
}
|
|
23303
|
+
/** @oneof */
|
|
23304
|
+
interface DomainEventBodyOneOf$6 {
|
|
23305
|
+
createdEvent?: EntityCreatedEvent$6;
|
|
23306
|
+
updatedEvent?: EntityUpdatedEvent$6;
|
|
23307
|
+
deletedEvent?: EntityDeletedEvent$6;
|
|
23308
|
+
actionEvent?: ActionEvent$6;
|
|
23309
|
+
}
|
|
23310
|
+
interface EntityCreatedEvent$6 {
|
|
23311
|
+
entity?: string;
|
|
23312
|
+
}
|
|
23313
|
+
interface RestoreInfo$6 {
|
|
23314
|
+
deletedDate?: Date;
|
|
23315
|
+
}
|
|
23316
|
+
interface EntityUpdatedEvent$6 {
|
|
23317
|
+
/**
|
|
23318
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
23319
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
23320
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
23321
|
+
*/
|
|
23322
|
+
currentEntity?: string;
|
|
23323
|
+
}
|
|
23324
|
+
interface EntityDeletedEvent$6 {
|
|
23325
|
+
/** Entity that was deleted */
|
|
23326
|
+
deletedEntity?: string | null;
|
|
23327
|
+
}
|
|
23328
|
+
interface ActionEvent$6 {
|
|
23329
|
+
body?: string;
|
|
23330
|
+
}
|
|
23331
23331
|
interface Empty$4 {
|
|
23332
23332
|
}
|
|
23333
23333
|
interface BatchOfTriggerReindexOrderRequest {
|
|
@@ -24879,7 +24879,7 @@ interface V1RestockItem {
|
|
|
24879
24879
|
}
|
|
24880
24880
|
interface BulkUpdateOrderTagsRequest {
|
|
24881
24881
|
/** IDs of orders to update tags for. */
|
|
24882
|
-
orderIds
|
|
24882
|
+
orderIds: string[];
|
|
24883
24883
|
/** Tags to be added to orders */
|
|
24884
24884
|
assignTags?: Tags;
|
|
24885
24885
|
/** Tags to be removed from orders */
|
|
@@ -25867,6 +25867,13 @@ interface BulkUpdateOrdersResponseNonNullableFields {
|
|
|
25867
25867
|
interface CancelOrderResponseNonNullableFields {
|
|
25868
25868
|
order?: OrderNonNullableFields;
|
|
25869
25869
|
}
|
|
25870
|
+
interface BulkUpdateOrderTagsResultNonNullableFields {
|
|
25871
|
+
itemMetadata?: ItemMetadataNonNullableFields$1;
|
|
25872
|
+
}
|
|
25873
|
+
interface BulkUpdateOrderTagsResponseNonNullableFields {
|
|
25874
|
+
results: BulkUpdateOrderTagsResultNonNullableFields[];
|
|
25875
|
+
bulkActionMetadata?: BulkActionMetadataNonNullableFields$1;
|
|
25876
|
+
}
|
|
25870
25877
|
interface BaseEventMetadata$5 {
|
|
25871
25878
|
/** App instance ID. */
|
|
25872
25879
|
instanceId?: string | null;
|
|
@@ -26088,6 +26095,12 @@ interface CancelOrderOptions {
|
|
|
26088
26095
|
/** Whether to restock all items in the order. This will only apply to products in the Wix Stores inventory. */
|
|
26089
26096
|
restockAllItems?: boolean;
|
|
26090
26097
|
}
|
|
26098
|
+
interface BulkUpdateOrderTagsOptions {
|
|
26099
|
+
/** Tags to be added to orders */
|
|
26100
|
+
assignTags?: Tags;
|
|
26101
|
+
/** Tags to be removed from orders */
|
|
26102
|
+
unassignTags?: Tags;
|
|
26103
|
+
}
|
|
26091
26104
|
|
|
26092
26105
|
declare function getPaymentCollectabilityStatus$1(httpClient: HttpClient): GetPaymentCollectabilityStatusSignature;
|
|
26093
26106
|
interface GetPaymentCollectabilityStatusSignature {
|
|
@@ -26245,6 +26258,15 @@ interface CancelOrderSignature {
|
|
|
26245
26258
|
*/
|
|
26246
26259
|
(_id: string, options?: CancelOrderOptions | undefined): Promise<CancelOrderResponse & CancelOrderResponseNonNullableFields>;
|
|
26247
26260
|
}
|
|
26261
|
+
declare function bulkUpdateOrderTags$1(httpClient: HttpClient): BulkUpdateOrderTagsSignature;
|
|
26262
|
+
interface BulkUpdateOrderTagsSignature {
|
|
26263
|
+
/**
|
|
26264
|
+
* Synchronously update tags on multiple orders, by list of order ids
|
|
26265
|
+
* A tag that appears both in the list of assign and unassign tags, will be assigned
|
|
26266
|
+
* @param - IDs of orders to update tags for.
|
|
26267
|
+
*/
|
|
26268
|
+
(orderIds: string[], options?: BulkUpdateOrderTagsOptions | undefined): Promise<BulkUpdateOrderTagsResponse & BulkUpdateOrderTagsResponseNonNullableFields>;
|
|
26269
|
+
}
|
|
26248
26270
|
declare const onOrderPaymentStatusUpdated$1: EventDefinition<OrderPaymentStatusUpdatedEnvelope, "wix.ecom.v1.order_payment_status_updated">;
|
|
26249
26271
|
declare const onOrderCreated$1: EventDefinition<OrderCreatedEnvelope, "wix.ecom.v1.order_created">;
|
|
26250
26272
|
declare const onOrderCanceled$1: EventDefinition<OrderCanceledEnvelope, "wix.ecom.v1.order_canceled">;
|
|
@@ -26261,6 +26283,7 @@ declare const createOrder: BuildRESTFunction<typeof createOrder$1> & typeof crea
|
|
|
26261
26283
|
declare const updateOrder: BuildRESTFunction<typeof updateOrder$1> & typeof updateOrder$1;
|
|
26262
26284
|
declare const bulkUpdateOrders: BuildRESTFunction<typeof bulkUpdateOrders$1> & typeof bulkUpdateOrders$1;
|
|
26263
26285
|
declare const cancelOrder: BuildRESTFunction<typeof cancelOrder$1> & typeof cancelOrder$1;
|
|
26286
|
+
declare const bulkUpdateOrderTags: BuildRESTFunction<typeof bulkUpdateOrderTags$1> & typeof bulkUpdateOrderTags$1;
|
|
26264
26287
|
|
|
26265
26288
|
type _publicOnOrderPaymentStatusUpdatedType = typeof onOrderPaymentStatusUpdated$1;
|
|
26266
26289
|
/**
|
|
@@ -26341,8 +26364,10 @@ type context$8_BulkUnArchiveOrdersByFilterRequest = BulkUnArchiveOrdersByFilterR
|
|
|
26341
26364
|
type context$8_BulkUnArchiveOrdersByFilterResponse = BulkUnArchiveOrdersByFilterResponse;
|
|
26342
26365
|
type context$8_BulkUnArchiveOrdersRequest = BulkUnArchiveOrdersRequest;
|
|
26343
26366
|
type context$8_BulkUnArchiveOrdersResponse = BulkUnArchiveOrdersResponse;
|
|
26367
|
+
type context$8_BulkUpdateOrderTagsOptions = BulkUpdateOrderTagsOptions;
|
|
26344
26368
|
type context$8_BulkUpdateOrderTagsRequest = BulkUpdateOrderTagsRequest;
|
|
26345
26369
|
type context$8_BulkUpdateOrderTagsResponse = BulkUpdateOrderTagsResponse;
|
|
26370
|
+
type context$8_BulkUpdateOrderTagsResponseNonNullableFields = BulkUpdateOrderTagsResponseNonNullableFields;
|
|
26346
26371
|
type context$8_BulkUpdateOrderTagsResult = BulkUpdateOrderTagsResult;
|
|
26347
26372
|
type context$8_BulkUpdateOrdersOptions = BulkUpdateOrdersOptions;
|
|
26348
26373
|
type context$8_BulkUpdateOrdersRequest = BulkUpdateOrdersRequest;
|
|
@@ -26693,6 +26718,7 @@ type context$8__publicOnOrderApprovedType = _publicOnOrderApprovedType;
|
|
|
26693
26718
|
type context$8__publicOnOrderCanceledType = _publicOnOrderCanceledType;
|
|
26694
26719
|
type context$8__publicOnOrderCreatedType = _publicOnOrderCreatedType;
|
|
26695
26720
|
type context$8__publicOnOrderPaymentStatusUpdatedType = _publicOnOrderPaymentStatusUpdatedType;
|
|
26721
|
+
declare const context$8_bulkUpdateOrderTags: typeof bulkUpdateOrderTags;
|
|
26696
26722
|
declare const context$8_bulkUpdateOrders: typeof bulkUpdateOrders;
|
|
26697
26723
|
declare const context$8_cancelOrder: typeof cancelOrder;
|
|
26698
26724
|
declare const context$8_captureAuthorizedPayments: typeof captureAuthorizedPayments;
|
|
@@ -26707,7 +26733,7 @@ declare const context$8_searchOrders: typeof searchOrders;
|
|
|
26707
26733
|
declare const context$8_updateOrder: typeof updateOrder;
|
|
26708
26734
|
declare const context$8_voidAuthorizedPayments: typeof voidAuthorizedPayments;
|
|
26709
26735
|
declare namespace context$8 {
|
|
26710
|
-
export { type ActionEvent$6 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type context$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type context$8_AddActivitiesRequest as AddActivitiesRequest, type context$8_AddActivitiesResponse as AddActivitiesResponse, type context$8_AddActivityRequest as AddActivityRequest, type context$8_AddActivityResponse as AddActivityResponse, type context$8_AddInternalActivityRequest as AddInternalActivityRequest, type context$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type context$8_AdditionalFeeDelta as AdditionalFeeDelta, type context$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$4 as Address, type context$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type context$8_AddressWithContact as AddressWithContact, type context$8_AggregateOrdersRequest as AggregateOrdersRequest, type context$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type context$8_ApiItemTaxFullDetails as ApiItemTaxFullDetails, type context$8_ApiTaxSummary as ApiTaxSummary, type context$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type context$8_AppliedDiscountDelta as AppliedDiscountDelta, type context$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type context$8_ArchiveOrderRequest as ArchiveOrderRequest, type context$8_ArchiveOrderResponse as ArchiveOrderResponse, context$8_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$2 as AuthorizationActionFailureDetails, type AuthorizationCapture$2 as AuthorizationCapture, AuthorizationCaptureStatus$2 as AuthorizationCaptureStatus, type AuthorizationDetails$2 as AuthorizationDetails, type AuthorizationVoid$2 as AuthorizationVoid, AuthorizationVoidStatus$2 as AuthorizationVoidStatus, type context$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$8_Balance as Balance, type context$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type context$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type context$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type context$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type context$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type context$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type context$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type context$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type context$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type context$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type context$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type context$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type context$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type context$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type context$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type context$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type context$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type context$8_BulkOrderResult as BulkOrderResult, type context$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type context$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type context$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type context$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type context$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type context$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type context$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type context$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type context$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type context$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type context$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type context$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type context$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type context$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type context$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type context$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$8_BuyerInfoUpdate as BuyerInfoUpdate, type CalculateRefundItemRequest$1 as CalculateRefundItemRequest, type CalculateRefundItemResponse$1 as CalculateRefundItemResponse, type CalculateRefundRequest$1 as CalculateRefundRequest, type CalculateRefundResponse$1 as CalculateRefundResponse, type context$8_CalculatedTax as CalculatedTax, type context$8_CalculatedTaxes as CalculatedTaxes, type context$8_Cancel as Cancel, type context$8_CancelOrderOptions as CancelOrderOptions, type context$8_CancelOrderRequest as CancelOrderRequest, type context$8_CancelOrderResponse as CancelOrderResponse, type context$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type context$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type context$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type context$8_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type context$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type context$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type context$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type context$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type context$8_ChargedBy as ChargedBy, type context$8_Color as Color, type context$8_CommitDeltasRequest as CommitDeltasRequest, type context$8_CommitDeltasResponse as CommitDeltasResponse, type context$8_CommittedDiffs as CommittedDiffs, type context$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type context$8_CommonAddress as CommonAddress, type context$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type context$8_Company as Company, type context$8_Complete as Complete, type context$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type context$8_CreateOrderRequest as CreateOrderRequest, type context$8_CreateOrderResponse as CreateOrderResponse, type context$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type context$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type context$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type context$8_CreatedBy as CreatedBy, type context$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type context$8_CursorSearch as CursorSearch, type context$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type context$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, context$8_CustomFieldGroup as CustomFieldGroup, type context$8_CustomFieldValue as CustomFieldValue, type context$8_Customer as Customer, type context$8_DecrementData as DecrementData, type context$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type context$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type context$8_DelayedCaptureSettings as DelayedCaptureSettings, type context$8_DeleteActivityRequest as DeleteActivityRequest, type context$8_DeleteActivityResponse as DeleteActivityResponse, type context$8_DeleteByFilterOperation as DeleteByFilterOperation, type context$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type context$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, context$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type context$8_Deposit as Deposit, context$8_DepositType as DepositType, type context$8_DescriptionLine as DescriptionLine, type context$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$8_DescriptionLineName as DescriptionLineName, context$8_DescriptionLineType as DescriptionLineType, type context$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type context$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, context$8_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type context$8_DownloadLinkSent as DownloadLinkSent, type context$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type context$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type context$8_DraftOrderDiffs as DraftOrderDiffs, type context$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type context$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type context$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type context$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type context$8_Duration as Duration, context$8_DurationUnit as DurationUnit, type context$8_Email as Email, type context$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type context$8_ExternalUriMapping as ExternalUriMapping, type context$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type context$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type context$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type context$8_FullAddressContactDetails as FullAddressContactDetails, type context$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type context$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type context$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type context$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type context$8_GetOrderRequest as GetOrderRequest, type context$8_GetOrderResponse as GetOrderResponse, type context$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type context$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type context$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type context$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type context$8_GetShipmentsRequest as GetShipmentsRequest, type context$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type context$8_HtmlApplication as HtmlApplication, type context$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type context$8_InternalActivity as InternalActivity, type context$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type context$8_InternalDocument as InternalDocument, type context$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type context$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type context$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type context$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type context$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, context$8_InventoryAction as InventoryAction, type context$8_InventoryUpdateDetails as InventoryUpdateDetails, type context$8_InvoiceAdded as InvoiceAdded, type context$8_InvoiceDates as InvoiceDates, type context$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type context$8_InvoiceFields as InvoiceFields, type context$8_InvoiceSent as InvoiceSent, type context$8_InvoiceSentEvent as InvoiceSentEvent, context$8_InvoiceStatus as InvoiceStatus, type context$8_InvoicesPayment as InvoicesPayment, type context$8_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, type context$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type context$8_LineItemAmount as LineItemAmount, type context$8_LineItemChanges as LineItemChanges, type context$8_LineItemDelta as LineItemDelta, type context$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type context$8_LineItemExchangeData as LineItemExchangeData, type context$8_LineItemMetaData as LineItemMetaData, type context$8_LineItemPriceChange as LineItemPriceChange, type context$8_LineItemQuantityChange as LineItemQuantityChange, context$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type context$8_LineItemTax as LineItemTax, type context$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$8_LineItemTaxInfo as LineItemTaxInfo, type context$8_LineItemUpdate as LineItemUpdate, type context$8_LineItems as LineItems, type context$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type context$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type context$8_Locale as Locale, type context$8_LocationAndQuantity as LocationAndQuantity, type context$8_ManagedAdditionalFee as ManagedAdditionalFee, type context$8_ManagedDiscount as ManagedDiscount, type context$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type context$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type context$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type context$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type context$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type context$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type context$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type context$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type context$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type context$8_MaskedOrder as MaskedOrder, type context$8_MaskedOrderLineItem as MaskedOrderLineItem, type context$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, MembershipPaymentStatus$2 as MembershipPaymentStatus, type context$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type context$8_MetaData as MetaData, type context$8_MetaSite as MetaSite, type context$8_MetaTag as MetaTag, context$8_Namespace as Namespace, type context$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, context$8_OrderApprovalStrategy as OrderApprovalStrategy, type context$8_OrderApproved as OrderApproved, type context$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type context$8_OrderCanceled as OrderCanceled, type context$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type context$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type context$8_OrderChange as OrderChange, type context$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$8_OrderCreateNotifications as OrderCreateNotifications, type context$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type context$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$8_OrderCreationSettings as OrderCreationSettings, type context$8_OrderDeltasCommitted as OrderDeltasCommitted, type context$8_OrderFulfilled as OrderFulfilled, type context$8_OrderItemsRestocked as OrderItemsRestocked, type context$8_OrderLineItem as OrderLineItem, type context$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type context$8_OrderNonNullableFields as OrderNonNullableFields, type context$8_OrderNotFulfilled as OrderNotFulfilled, type context$8_OrderPaid as OrderPaid, type context$8_OrderPartiallyPaid as OrderPartiallyPaid, type context$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type context$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, context$8_OrderStatus as OrderStatus, type context$8_OrderTaxBreakdown as OrderTaxBreakdown, type context$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type context$8_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type context$8_PaymentCapture as PaymentCapture, context$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type context$8_PaymentRefundFailed as PaymentRefundFailed, type context$8_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type context$8_PaymentStatusUpdated as PaymentStatusUpdated, type context$8_Payments as Payments, type PaymentsUpdated$2 as PaymentsUpdated, type context$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type context$8_PickupReadyEmailSent as PickupReadyEmailSent, context$8_Placement as Placement, type context$8_PlainTextValue as PlainTextValue, type context$8_PlatformPaging as PlatformPaging, type context$8_PlatformPagingMetadata as PlatformPagingMetadata, type context$8_PlatformQuery as PlatformQuery, type context$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type context$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type context$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type context$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type context$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type context$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type context$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type context$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type context$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type context$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type context$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type context$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type context$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type context$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type context$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, context$8_PreviewEmailType as PreviewEmailType, type context$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type context$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type context$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type context$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type context$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type context$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type context$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type context$8_ProductName as ProductName, type context$8_PublicActivity as PublicActivity, type context$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type context$8_QueryOrderRequest as QueryOrderRequest, type context$8_QueryOrderResponse as QueryOrderResponse, type context$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type context$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type context$8_QuotesAddress as QuotesAddress, Reason$2 as Reason, type context$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type context$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type context$8_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type context$8_RefundInitiated as RefundInitiated, type RefundItem$2 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$2 as RefundStatus, type RefundTransaction$2 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type context$8_RefundedPayment as RefundedPayment, type context$8_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$8_RegularPaymentRefund as RegularPaymentRefund, type context$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type context$8_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$2 as ScheduledAction, type context$8_SearchOrdersOptions as SearchOrdersOptions, type context$8_SearchOrdersRequest as SearchOrdersRequest, type context$8_SearchOrdersResponse as SearchOrdersResponse, type context$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type context$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type context$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type context$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type context$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type context$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type context$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type context$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type context$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type context$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type context$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type context$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type context$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type context$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type context$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type context$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type context$8_ShippingAddressEdited as ShippingAddressEdited, type context$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type context$8_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$2 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, context$8_SourceType as SourceType, type context$8_StandardDetails as StandardDetails, context$8_State as State, type StreetAddress$3 as StreetAddress, type context$8_Subdivision as Subdivision, context$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type context$8_TagList as TagList, type context$8_Tags as Tags, type context$8_Task as Task, type context$8_TaskAction as TaskAction, type context$8_TaskActionActionOneOf as TaskActionActionOneOf, type context$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type context$8_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type context$8_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type context$8_TotalPrice as TotalPrice, type context$8_TotalPriceChange as TotalPriceChange, type context$8_TrackingLinkAdded as TrackingLinkAdded, type context$8_TrackingNumberAdded as TrackingNumberAdded, type context$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type context$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type context$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type context$8_TriggerReindexRequest as TriggerReindexRequest, type context$8_TriggerReindexResponse as TriggerReindexResponse, type context$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type context$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type context$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type context$8_UpdateActivityRequest as UpdateActivityRequest, type context$8_UpdateActivityResponse as UpdateActivityResponse, type context$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type context$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type context$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type context$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type context$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type context$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type context$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type context$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type context$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type context$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type context$8_UpdateOrder as UpdateOrder, type context$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type context$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type context$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type context$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type context$8_UpdateOrderRequest as UpdateOrderRequest, type context$8_UpdateOrderResponse as UpdateOrderResponse, type context$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type context$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type context$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type context$8_UpsertRefundRequest as UpsertRefundRequest, type context$8_UpsertRefundResponse as UpsertRefundResponse, type context$8_UserDataResponse as UserDataResponse, type context$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type context$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type context$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type context$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type context$8_V1LineItemDelta as V1LineItemDelta, type context$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type context$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type context$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type context$8_V1RestockItem as V1RestockItem, type context$8_V1ScheduledAction as V1ScheduledAction, type context$8_V1ShippingInformation as V1ShippingInformation, type context$8_Value as Value, context$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type context$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type context$8_VersionedDocumentId as VersionedDocumentId, type context$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, context$8_VersioningMode as VersioningMode, type context$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type context$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type context$8_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, type context$8__publicOnOrderApprovedType as _publicOnOrderApprovedType, type context$8__publicOnOrderCanceledType as _publicOnOrderCanceledType, type context$8__publicOnOrderCreatedType as _publicOnOrderCreatedType, type context$8__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, context$8_bulkUpdateOrders as bulkUpdateOrders, context$8_cancelOrder as cancelOrder, context$8_captureAuthorizedPayments as captureAuthorizedPayments, context$8_createOrder as createOrder, context$8_getOrder as getOrder, context$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, context$8_onOrderApproved as onOrderApproved, context$8_onOrderCanceled as onOrderCanceled, context$8_onOrderCreated as onOrderCreated, context$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, context$8_searchOrders as searchOrders, context$8_updateOrder as updateOrder, context$8_voidAuthorizedPayments as voidAuthorizedPayments };
|
|
26736
|
+
export { type ActionEvent$6 as ActionEvent, ActionType$2 as ActionType, type Activity$1 as Activity, type context$8_ActivityContentOneOf as ActivityContentOneOf, ActivityType$1 as ActivityType, type context$8_AddActivitiesRequest as AddActivitiesRequest, type context$8_AddActivitiesResponse as AddActivitiesResponse, type context$8_AddActivityRequest as AddActivityRequest, type context$8_AddActivityResponse as AddActivityResponse, type context$8_AddInternalActivityRequest as AddInternalActivityRequest, type context$8_AddInternalActivityResponse as AddInternalActivityResponse, type AdditionalFee$1 as AdditionalFee, type context$8_AdditionalFeeDelta as AdditionalFeeDelta, type context$8_AdditionalFeeDeltaDeltaOneOf as AdditionalFeeDeltaDeltaOneOf, type AdditionalFeeRefund$2 as AdditionalFeeRefund, type Address$4 as Address, type context$8_AddressDescription as AddressDescription, type AddressLocation$2 as AddressLocation, type context$8_AddressWithContact as AddressWithContact, type context$8_AggregateOrdersRequest as AggregateOrdersRequest, type context$8_AggregateOrdersResponse as AggregateOrdersResponse, type AggregatedRefundSummary$2 as AggregatedRefundSummary, type context$8_ApiItemTaxFullDetails as ApiItemTaxFullDetails, type context$8_ApiTaxSummary as ApiTaxSummary, type context$8_App as App, type ApplicationError$3 as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type context$8_AppliedDiscountDelta as AppliedDiscountDelta, type context$8_AppliedDiscountDeltaDeltaOneOf as AppliedDiscountDeltaDeltaOneOf, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, type context$8_ArchiveOrderRequest as ArchiveOrderRequest, type context$8_ArchiveOrderResponse as ArchiveOrderResponse, context$8_AttributionSource as AttributionSource, type AuthorizationActionFailureDetails$2 as AuthorizationActionFailureDetails, type AuthorizationCapture$2 as AuthorizationCapture, AuthorizationCaptureStatus$2 as AuthorizationCaptureStatus, type AuthorizationDetails$2 as AuthorizationDetails, type AuthorizationVoid$2 as AuthorizationVoid, AuthorizationVoidStatus$2 as AuthorizationVoidStatus, type context$8_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$8_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$8_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$8_Balance as Balance, type context$8_BalanceSummary as BalanceSummary, type BaseEventMetadata$5 as BaseEventMetadata, type context$8_BatchOfTriggerReindexOrderRequest as BatchOfTriggerReindexOrderRequest, type context$8_BigDecimalWrapper as BigDecimalWrapper, type BulkActionMetadata$1 as BulkActionMetadata, type context$8_BulkArchiveOrdersByFilterRequest as BulkArchiveOrdersByFilterRequest, type context$8_BulkArchiveOrdersByFilterResponse as BulkArchiveOrdersByFilterResponse, type context$8_BulkArchiveOrdersRequest as BulkArchiveOrdersRequest, type context$8_BulkArchiveOrdersResponse as BulkArchiveOrdersResponse, type context$8_BulkMarkAsFulfilledByFilterRequest as BulkMarkAsFulfilledByFilterRequest, type context$8_BulkMarkAsFulfilledByFilterResponse as BulkMarkAsFulfilledByFilterResponse, type context$8_BulkMarkAsFulfilledRequest as BulkMarkAsFulfilledRequest, type context$8_BulkMarkAsFulfilledResponse as BulkMarkAsFulfilledResponse, type context$8_BulkMarkAsUnfulfilledByFilterRequest as BulkMarkAsUnfulfilledByFilterRequest, type context$8_BulkMarkAsUnfulfilledByFilterResponse as BulkMarkAsUnfulfilledByFilterResponse, type context$8_BulkMarkAsUnfulfilledRequest as BulkMarkAsUnfulfilledRequest, type context$8_BulkMarkAsUnfulfilledResponse as BulkMarkAsUnfulfilledResponse, type context$8_BulkMarkOrdersAsPaidRequest as BulkMarkOrdersAsPaidRequest, type context$8_BulkMarkOrdersAsPaidResponse as BulkMarkOrdersAsPaidResponse, type context$8_BulkOrderResult as BulkOrderResult, type context$8_BulkSendBuyerPickupConfirmationEmailsRequest as BulkSendBuyerPickupConfirmationEmailsRequest, type context$8_BulkSendBuyerPickupConfirmationEmailsResponse as BulkSendBuyerPickupConfirmationEmailsResponse, type context$8_BulkSendBuyerShippingConfirmationEmailsRequest as BulkSendBuyerShippingConfirmationEmailsRequest, type context$8_BulkSendBuyerShippingConfirmationEmailsResponse as BulkSendBuyerShippingConfirmationEmailsResponse, type context$8_BulkUnArchiveOrdersByFilterRequest as BulkUnArchiveOrdersByFilterRequest, type context$8_BulkUnArchiveOrdersByFilterResponse as BulkUnArchiveOrdersByFilterResponse, type context$8_BulkUnArchiveOrdersRequest as BulkUnArchiveOrdersRequest, type context$8_BulkUnArchiveOrdersResponse as BulkUnArchiveOrdersResponse, type context$8_BulkUpdateOrderTagsOptions as BulkUpdateOrderTagsOptions, type context$8_BulkUpdateOrderTagsRequest as BulkUpdateOrderTagsRequest, type context$8_BulkUpdateOrderTagsResponse as BulkUpdateOrderTagsResponse, type context$8_BulkUpdateOrderTagsResponseNonNullableFields as BulkUpdateOrderTagsResponseNonNullableFields, type context$8_BulkUpdateOrderTagsResult as BulkUpdateOrderTagsResult, type context$8_BulkUpdateOrdersOptions as BulkUpdateOrdersOptions, type context$8_BulkUpdateOrdersRequest as BulkUpdateOrdersRequest, type context$8_BulkUpdateOrdersResponse as BulkUpdateOrdersResponse, type context$8_BulkUpdateOrdersResponseNonNullableFields as BulkUpdateOrdersResponseNonNullableFields, type BuyerInfo$1 as BuyerInfo, type context$8_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$8_BuyerInfoUpdate as BuyerInfoUpdate, type CalculateRefundItemRequest$1 as CalculateRefundItemRequest, type CalculateRefundItemResponse$1 as CalculateRefundItemResponse, type CalculateRefundRequest$1 as CalculateRefundRequest, type CalculateRefundResponse$1 as CalculateRefundResponse, type context$8_CalculatedTax as CalculatedTax, type context$8_CalculatedTaxes as CalculatedTaxes, type context$8_Cancel as Cancel, type context$8_CancelOrderOptions as CancelOrderOptions, type context$8_CancelOrderRequest as CancelOrderRequest, type context$8_CancelOrderResponse as CancelOrderResponse, type context$8_CancelOrderResponseNonNullableFields as CancelOrderResponseNonNullableFields, type context$8_CaptureAuthorizedPaymentsRequest as CaptureAuthorizedPaymentsRequest, type context$8_CaptureAuthorizedPaymentsResponse as CaptureAuthorizedPaymentsResponse, type context$8_CaptureAuthorizedPaymentsResponseNonNullableFields as CaptureAuthorizedPaymentsResponseNonNullableFields, type CatalogReference$1 as CatalogReference, type ChannelInfo$1 as ChannelInfo, ChannelType$1 as ChannelType, type context$8_ChargeMembershipsRequest as ChargeMembershipsRequest, type context$8_ChargeMembershipsResponse as ChargeMembershipsResponse, type context$8_ChargeSavedPaymentMethodRequest as ChargeSavedPaymentMethodRequest, type context$8_ChargeSavedPaymentMethodResponse as ChargeSavedPaymentMethodResponse, type context$8_ChargedBy as ChargedBy, type context$8_Color as Color, type context$8_CommitDeltasRequest as CommitDeltasRequest, type context$8_CommitDeltasResponse as CommitDeltasResponse, type context$8_CommittedDiffs as CommittedDiffs, type context$8_CommittedDiffsShippingUpdateInfoOneOf as CommittedDiffsShippingUpdateInfoOneOf, type context$8_CommonAddress as CommonAddress, type context$8_CommonAddressStreetOneOf as CommonAddressStreetOneOf, type context$8_Company as Company, type context$8_Complete as Complete, type context$8_ContinueSideEffectsFlowInLegacyData as ContinueSideEffectsFlowInLegacyData, type Coupon$1 as Coupon, type context$8_CreateOrderRequest as CreateOrderRequest, type context$8_CreateOrderResponse as CreateOrderResponse, type context$8_CreateOrderResponseNonNullableFields as CreateOrderResponseNonNullableFields, type context$8_CreatePaymentGatewayOrderRequest as CreatePaymentGatewayOrderRequest, type context$8_CreatePaymentGatewayOrderResponse as CreatePaymentGatewayOrderResponse, type context$8_CreatedBy as CreatedBy, type context$8_CreatedByStringOneOf as CreatedByStringOneOf, type CreditCardPaymentMethodDetails$2 as CreditCardPaymentMethodDetails, type CursorPaging$5 as CursorPaging, type CursorPagingMetadata$5 as CursorPagingMetadata, type context$8_CursorSearch as CursorSearch, type context$8_CursorSearchPagingMethodOneOf as CursorSearchPagingMethodOneOf, type Cursors$5 as Cursors, type context$8_CustomActivity as CustomActivity, type CustomField$1 as CustomField, context$8_CustomFieldGroup as CustomFieldGroup, type context$8_CustomFieldValue as CustomFieldValue, type context$8_Customer as Customer, type context$8_DecrementData as DecrementData, type context$8_DecrementItemsQuantityRequest as DecrementItemsQuantityRequest, type context$8_DecrementItemsQuantityResponse as DecrementItemsQuantityResponse, type context$8_DelayedCaptureSettings as DelayedCaptureSettings, type context$8_DeleteActivityRequest as DeleteActivityRequest, type context$8_DeleteActivityResponse as DeleteActivityResponse, type context$8_DeleteByFilterOperation as DeleteByFilterOperation, type context$8_DeleteByIdsOperation as DeleteByIdsOperation, type DeliveryLogistics$1 as DeliveryLogistics, type context$8_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type DeliveryTimeSlot$1 as DeliveryTimeSlot, context$8_DeltaPaymentOptionType as DeltaPaymentOptionType, type context$8_Deposit as Deposit, context$8_DepositType as DepositType, type context$8_DescriptionLine as DescriptionLine, type context$8_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$8_DescriptionLineName as DescriptionLineName, context$8_DescriptionLineType as DescriptionLineType, type context$8_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type DiffmatokyPayload$2 as DiffmatokyPayload, type DigitalFile$1 as DigitalFile, type Discount$1 as Discount, type context$8_DiscountOneDiscountTypeOneOf as DiscountOneDiscountTypeOneOf, context$8_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type DomainEvent$6 as DomainEvent, type DomainEventBodyOneOf$6 as DomainEventBodyOneOf, type context$8_DownloadLinkSent as DownloadLinkSent, type context$8_DraftOrderChangesApplied as DraftOrderChangesApplied, type context$8_DraftOrderCommitSettings as DraftOrderCommitSettings, type context$8_DraftOrderDiffs as DraftOrderDiffs, type context$8_DraftOrderDiffsBillingUpdateInfoOneOf as DraftOrderDiffsBillingUpdateInfoOneOf, type context$8_DraftOrderDiffsBuyerUpdateInfoOneOf as DraftOrderDiffsBuyerUpdateInfoOneOf, type context$8_DraftOrderDiffsRecipientUpdateInfoOneOf as DraftOrderDiffsRecipientUpdateInfoOneOf, type context$8_DraftOrderDiffsShippingUpdateInfoOneOf as DraftOrderDiffsShippingUpdateInfoOneOf, type context$8_Duration as Duration, context$8_DurationUnit as DurationUnit, type context$8_Email as Email, type context$8_EmailEdited as EmailEdited, type Empty$4 as Empty, type EntityCreatedEvent$6 as EntityCreatedEvent, type EntityDeletedEvent$6 as EntityDeletedEvent, type EntityUpdatedEvent$6 as EntityUpdatedEvent, type ErrorInformation$2 as ErrorInformation, type EventMetadata$5 as EventMetadata, type ExtendedFields$3 as ExtendedFields, type context$8_ExternalUriMapping as ExternalUriMapping, type context$8_FulfillerEmailSent as FulfillerEmailSent, FulfillmentStatus$1 as FulfillmentStatus, type context$8_FulfillmentStatusUpdated as FulfillmentStatusUpdated, type context$8_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type context$8_FullAddressContactDetails as FullAddressContactDetails, type context$8_GetMetasiteDataRequest as GetMetasiteDataRequest, type context$8_GetMetasiteDataResponse as GetMetasiteDataResponse, type context$8_GetOrderForMetasiteRequest as GetOrderForMetasiteRequest, type context$8_GetOrderForMetasiteResponse as GetOrderForMetasiteResponse, type context$8_GetOrderRequest as GetOrderRequest, type context$8_GetOrderResponse as GetOrderResponse, type context$8_GetOrderResponseNonNullableFields as GetOrderResponseNonNullableFields, type context$8_GetPaymentCollectabilityStatusRequest as GetPaymentCollectabilityStatusRequest, type context$8_GetPaymentCollectabilityStatusResponse as GetPaymentCollectabilityStatusResponse, type context$8_GetPaymentCollectabilityStatusResponseNonNullableFields as GetPaymentCollectabilityStatusResponseNonNullableFields, type GetRefundabilityStatusRequest$1 as GetRefundabilityStatusRequest, type GetRefundabilityStatusResponse$1 as GetRefundabilityStatusResponse, type context$8_GetShipmentsRequest as GetShipmentsRequest, type context$8_GetShipmentsResponse as GetShipmentsResponse, type GiftCardPaymentDetails$2 as GiftCardPaymentDetails, type context$8_HtmlApplication as HtmlApplication, type context$8_IdAndVersion as IdAndVersion, type IdentificationData$6 as IdentificationData, type IdentificationDataIdOneOf$6 as IdentificationDataIdOneOf, type IndexingMessage$1 as IndexingMessage, type context$8_InternalActivity as InternalActivity, type context$8_InternalActivityContentOneOf as InternalActivityContentOneOf, type context$8_InternalDocument as InternalDocument, type context$8_InternalDocumentUpdateByFilterOperation as InternalDocumentUpdateByFilterOperation, type context$8_InternalDocumentUpdateOperation as InternalDocumentUpdateOperation, type context$8_InternalQueryOrdersRequest as InternalQueryOrdersRequest, type context$8_InternalQueryOrdersResponse as InternalQueryOrdersResponse, type context$8_InternalUpdateExistingOperation as InternalUpdateExistingOperation, context$8_InventoryAction as InventoryAction, type context$8_InventoryUpdateDetails as InventoryUpdateDetails, type context$8_InvoiceAdded as InvoiceAdded, type context$8_InvoiceDates as InvoiceDates, type context$8_InvoiceDynamicPriceTotals as InvoiceDynamicPriceTotals, type context$8_InvoiceFields as InvoiceFields, type context$8_InvoiceSent as InvoiceSent, type context$8_InvoiceSentEvent as InvoiceSentEvent, context$8_InvoiceStatus as InvoiceStatus, type context$8_InvoicesPayment as InvoicesPayment, type context$8_ItemChangedDetails as ItemChangedDetails, type ItemMetadata$1 as ItemMetadata, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, type context$8_ItemizedFee as ItemizedFee, JurisdictionType$1 as JurisdictionType, type LineItem$2 as LineItem, type context$8_LineItemAmount as LineItemAmount, type context$8_LineItemChanges as LineItemChanges, type context$8_LineItemDelta as LineItemDelta, type context$8_LineItemDeltaDeltaOneOf as LineItemDeltaDeltaOneOf, type LineItemDiscount$1 as LineItemDiscount, type context$8_LineItemExchangeData as LineItemExchangeData, type context$8_LineItemMetaData as LineItemMetaData, type context$8_LineItemPriceChange as LineItemPriceChange, type context$8_LineItemQuantityChange as LineItemQuantityChange, context$8_LineItemQuantityChangeType as LineItemQuantityChangeType, type LineItemRefund$2 as LineItemRefund, type context$8_LineItemTax as LineItemTax, type context$8_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$8_LineItemTaxInfo as LineItemTaxInfo, type context$8_LineItemUpdate as LineItemUpdate, type context$8_LineItems as LineItems, type context$8_ListOrderTransactionsForMetasiteRequest as ListOrderTransactionsForMetasiteRequest, type context$8_ListOrderTransactionsForMetasiteResponse as ListOrderTransactionsForMetasiteResponse, type context$8_Locale as Locale, type context$8_LocationAndQuantity as LocationAndQuantity, type context$8_ManagedAdditionalFee as ManagedAdditionalFee, type context$8_ManagedDiscount as ManagedDiscount, type context$8_ManagedLineItem as ManagedLineItem, ManuallyRefundableReason$1 as ManuallyRefundableReason, type context$8_MarkAsFulfilledRequest as MarkAsFulfilledRequest, type context$8_MarkAsFulfilledResponse as MarkAsFulfilledResponse, type context$8_MarkAsUnfulfilledRequest as MarkAsUnfulfilledRequest, type context$8_MarkAsUnfulfilledResponse as MarkAsUnfulfilledResponse, type context$8_MarkOrderAsPaidRequest as MarkOrderAsPaidRequest, type context$8_MarkOrderAsPaidResponse as MarkOrderAsPaidResponse, type context$8_MarkOrderAsSeenByHumanRequest as MarkOrderAsSeenByHumanRequest, type context$8_MarkOrderAsSeenByHumanResponse as MarkOrderAsSeenByHumanResponse, type context$8_MaskedOrder as MaskedOrder, type context$8_MaskedOrderLineItem as MaskedOrderLineItem, type context$8_MembershipChargeItem as MembershipChargeItem, type MembershipName$3 as MembershipName, type MembershipPaymentDetails$2 as MembershipPaymentDetails, MembershipPaymentStatus$2 as MembershipPaymentStatus, type context$8_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$8_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MessageEnvelope$6 as MessageEnvelope, type context$8_MetaData as MetaData, type context$8_MetaSite as MetaSite, type context$8_MetaTag as MetaTag, context$8_Namespace as Namespace, type context$8_NewExchangeOrderCreated as NewExchangeOrderCreated, NonRefundableReason$1 as NonRefundableReason, type Order$1 as Order, context$8_OrderApprovalStrategy as OrderApprovalStrategy, type context$8_OrderApproved as OrderApproved, type context$8_OrderApprovedEnvelope as OrderApprovedEnvelope, type context$8_OrderCanceled as OrderCanceled, type context$8_OrderCanceledEnvelope as OrderCanceledEnvelope, type context$8_OrderCanceledEventOrderCanceled as OrderCanceledEventOrderCanceled, type context$8_OrderChange as OrderChange, type context$8_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$8_OrderCreateNotifications as OrderCreateNotifications, type context$8_OrderCreatedEnvelope as OrderCreatedEnvelope, type context$8_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$8_OrderCreationSettings as OrderCreationSettings, type context$8_OrderDeltasCommitted as OrderDeltasCommitted, type context$8_OrderFulfilled as OrderFulfilled, type context$8_OrderItemsRestocked as OrderItemsRestocked, type context$8_OrderLineItem as OrderLineItem, type context$8_OrderLineItemChangedDetails as OrderLineItemChangedDetails, type context$8_OrderNonNullableFields as OrderNonNullableFields, type context$8_OrderNotFulfilled as OrderNotFulfilled, type context$8_OrderPaid as OrderPaid, type context$8_OrderPartiallyPaid as OrderPartiallyPaid, type context$8_OrderPaymentStatusUpdatedEnvelope as OrderPaymentStatusUpdatedEnvelope, type context$8_OrderPlaced as OrderPlaced, type OrderRefunded$1 as OrderRefunded, context$8_OrderStatus as OrderStatus, type context$8_OrderTaxBreakdown as OrderTaxBreakdown, type context$8_OrderTaxInfo as OrderTaxInfo, type OrderTransactions$2 as OrderTransactions, type context$8_OrdersExperiments as OrdersExperiments, type Payment$2 as Payment, type context$8_PaymentCapture as PaymentCapture, context$8_PaymentCollectabilityStatus as PaymentCollectabilityStatus, PaymentOptionType$1 as PaymentOptionType, type PaymentPaymentDetailsOneOf$2 as PaymentPaymentDetailsOneOf, type PaymentRefund$1 as PaymentRefund, type context$8_PaymentRefundFailed as PaymentRefundFailed, type context$8_PaymentRefunded as PaymentRefunded, PaymentStatus$1 as PaymentStatus, type context$8_PaymentStatusUpdated as PaymentStatusUpdated, type context$8_Payments as Payments, type PaymentsUpdated$2 as PaymentsUpdated, type context$8_Phone as Phone, type PhysicalProperties$1 as PhysicalProperties, type PickupAddress$1 as PickupAddress, type PickupDetails$2 as PickupDetails, PickupMethod$1 as PickupMethod, type context$8_PickupReadyEmailSent as PickupReadyEmailSent, context$8_Placement as Placement, type context$8_PlainTextValue as PlainTextValue, type context$8_PlatformPaging as PlatformPaging, type context$8_PlatformPagingMetadata as PlatformPagingMetadata, type context$8_PlatformQuery as PlatformQuery, type context$8_PlatformQueryPagingMethodOneOf as PlatformQueryPagingMethodOneOf, type context$8_PreparePaymentCollectionRequest as PreparePaymentCollectionRequest, type context$8_PreparePaymentCollectionResponse as PreparePaymentCollectionResponse, type context$8_PreviewBuyerConfirmationEmailRequest as PreviewBuyerConfirmationEmailRequest, type context$8_PreviewBuyerConfirmationEmailResponse as PreviewBuyerConfirmationEmailResponse, type context$8_PreviewBuyerPaymentsReceivedEmailRequest as PreviewBuyerPaymentsReceivedEmailRequest, type context$8_PreviewBuyerPaymentsReceivedEmailResponse as PreviewBuyerPaymentsReceivedEmailResponse, type context$8_PreviewBuyerPickupConfirmationEmailRequest as PreviewBuyerPickupConfirmationEmailRequest, type context$8_PreviewBuyerPickupConfirmationEmailResponse as PreviewBuyerPickupConfirmationEmailResponse, type context$8_PreviewCancelEmailRequest as PreviewCancelEmailRequest, type context$8_PreviewCancelEmailResponse as PreviewCancelEmailResponse, type context$8_PreviewCancelRefundEmailRequest as PreviewCancelRefundEmailRequest, type context$8_PreviewCancelRefundEmailResponse as PreviewCancelRefundEmailResponse, type context$8_PreviewEmailByTypeRequest as PreviewEmailByTypeRequest, type context$8_PreviewEmailByTypeResponse as PreviewEmailByTypeResponse, context$8_PreviewEmailType as PreviewEmailType, type context$8_PreviewRefundEmailRequest as PreviewRefundEmailRequest, type context$8_PreviewRefundEmailResponse as PreviewRefundEmailResponse, type context$8_PreviewResendDownloadLinksEmailRequest as PreviewResendDownloadLinksEmailRequest, type context$8_PreviewResendDownloadLinksEmailResponse as PreviewResendDownloadLinksEmailResponse, type context$8_PreviewShippingConfirmationEmailRequest as PreviewShippingConfirmationEmailRequest, type context$8_PreviewShippingConfirmationEmailResponse as PreviewShippingConfirmationEmailResponse, type Price$2 as Price, type context$8_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type context$8_ProductName as ProductName, type context$8_PublicActivity as PublicActivity, type context$8_PublicActivityContentOneOf as PublicActivityContentOneOf, type context$8_QueryOrderRequest as QueryOrderRequest, type context$8_QueryOrderResponse as QueryOrderResponse, type context$8_QueryOrdersForMetasiteRequest as QueryOrdersForMetasiteRequest, type context$8_QueryOrdersForMetasiteResponse as QueryOrdersForMetasiteResponse, type context$8_QuotesAddress as QuotesAddress, Reason$2 as Reason, type context$8_RecordManuallyCollectedPaymentRequest as RecordManuallyCollectedPaymentRequest, type context$8_RecordManuallyCollectedPaymentResponse as RecordManuallyCollectedPaymentResponse, type context$8_RedirectUrls as RedirectUrls, type Refund$2 as Refund, type RefundCreated$1 as RefundCreated, type RefundDetails$2 as RefundDetails, type context$8_RefundInitiated as RefundInitiated, type RefundItem$2 as RefundItem, type RefundSideEffects$1 as RefundSideEffects, RefundStatus$2 as RefundStatus, type RefundTransaction$2 as RefundTransaction, type Refundability$1 as Refundability, type RefundabilityAdditionalRefundabilityInfoOneOf$1 as RefundabilityAdditionalRefundabilityInfoOneOf, RefundableStatus$1 as RefundableStatus, type context$8_RefundedPayment as RefundedPayment, type context$8_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type RegularPaymentDetails$2 as RegularPaymentDetails, type RegularPaymentDetailsPaymentMethodDetailsOneOf$2 as RegularPaymentDetailsPaymentMethodDetailsOneOf, type context$8_RegularPaymentRefund as RegularPaymentRefund, type context$8_Reschedule as Reschedule, type RestockInfo$1 as RestockInfo, type RestockItem$1 as RestockItem, RestockType$1 as RestockType, type RestoreInfo$6 as RestoreInfo, type context$8_SavedPaymentMethod as SavedPaymentMethod, ScheduledAction$2 as ScheduledAction, type context$8_SearchOrdersOptions as SearchOrdersOptions, type context$8_SearchOrdersRequest as SearchOrdersRequest, type context$8_SearchOrdersResponse as SearchOrdersResponse, type context$8_SearchOrdersResponseNonNullableFields as SearchOrdersResponseNonNullableFields, type context$8_SendBuyerConfirmationEmailRequest as SendBuyerConfirmationEmailRequest, type context$8_SendBuyerConfirmationEmailResponse as SendBuyerConfirmationEmailResponse, type context$8_SendBuyerPaymentsReceivedEmailRequest as SendBuyerPaymentsReceivedEmailRequest, type context$8_SendBuyerPaymentsReceivedEmailResponse as SendBuyerPaymentsReceivedEmailResponse, type context$8_SendBuyerPickupConfirmationEmailRequest as SendBuyerPickupConfirmationEmailRequest, type context$8_SendBuyerPickupConfirmationEmailResponse as SendBuyerPickupConfirmationEmailResponse, type context$8_SendBuyerShippingConfirmationEmailRequest as SendBuyerShippingConfirmationEmailRequest, type context$8_SendBuyerShippingConfirmationEmailResponse as SendBuyerShippingConfirmationEmailResponse, type context$8_SendCancelRefundEmailRequest as SendCancelRefundEmailRequest, type context$8_SendCancelRefundEmailResponse as SendCancelRefundEmailResponse, type context$8_SendMerchantOrderReceivedNotificationRequest as SendMerchantOrderReceivedNotificationRequest, type context$8_SendMerchantOrderReceivedNotificationResponse as SendMerchantOrderReceivedNotificationResponse, type context$8_SendMerchantOrderReceivedPushRequest as SendMerchantOrderReceivedPushRequest, type context$8_SendMerchantOrderReceivedPushResponse as SendMerchantOrderReceivedPushResponse, type context$8_SeoData as SeoData, type ServiceProperties$1 as ServiceProperties, type context$8_ShippingAddressEdited as ShippingAddressEdited, type context$8_ShippingConfirmationEmailSent as ShippingConfirmationEmailSent, type ShippingInformation$1 as ShippingInformation, type context$8_ShippingInformationChange as ShippingInformationChange, type ShippingPrice$1 as ShippingPrice, type ShippingRefund$2 as ShippingRefund, type ShippingRegion$1 as ShippingRegion, type SnapshotMessage$1 as SnapshotMessage, SortOrder$5 as SortOrder, type Sorting$5 as Sorting, type Source$1 as Source, context$8_SourceType as SourceType, type context$8_StandardDetails as StandardDetails, context$8_State as State, type StreetAddress$3 as StreetAddress, type context$8_Subdivision as Subdivision, context$8_SubdivisionType as SubdivisionType, SubscriptionFrequency$2 as SubscriptionFrequency, type SubscriptionInfo$1 as SubscriptionInfo, type SubscriptionSettings$2 as SubscriptionSettings, type context$8_TagList as TagList, type context$8_Tags as Tags, type context$8_Task as Task, type context$8_TaskAction as TaskAction, type context$8_TaskActionActionOneOf as TaskActionActionOneOf, type context$8_TaskKey as TaskKey, type TaxSummary$1 as TaxSummary, type context$8_TestUrlAdditionalBindingsRequest as TestUrlAdditionalBindingsRequest, type context$8_TestUrlAdditionalBindingsResponse as TestUrlAdditionalBindingsResponse, type context$8_TotalPrice as TotalPrice, type context$8_TotalPriceChange as TotalPriceChange, type context$8_TrackingLinkAdded as TrackingLinkAdded, type context$8_TrackingNumberAdded as TrackingNumberAdded, type context$8_TrackingNumberEdited as TrackingNumberEdited, TransactionStatus$2 as TransactionStatus, type context$8_TranslatedValue as TranslatedValue, type TriggerRefundRequest$1 as TriggerRefundRequest, type TriggerRefundResponse$1 as TriggerRefundResponse, type context$8_TriggerReindexOrderRequest as TriggerReindexOrderRequest, type context$8_TriggerReindexRequest as TriggerReindexRequest, type context$8_TriggerReindexResponse as TriggerReindexResponse, type context$8_TriggerSideEffectsFromLegacyData as TriggerSideEffectsFromLegacyData, type context$8_UnArchiveOrderRequest as UnArchiveOrderRequest, type context$8_UnArchiveOrderResponse as UnArchiveOrderResponse, type context$8_UpdateActivityRequest as UpdateActivityRequest, type context$8_UpdateActivityResponse as UpdateActivityResponse, type context$8_UpdateBillingContactDetailsRequest as UpdateBillingContactDetailsRequest, type context$8_UpdateBillingContactDetailsResponse as UpdateBillingContactDetailsResponse, type context$8_UpdateBuyerEmailRequest as UpdateBuyerEmailRequest, type context$8_UpdateBuyerEmailResponse as UpdateBuyerEmailResponse, type context$8_UpdateBuyerInfoRequest as UpdateBuyerInfoRequest, type context$8_UpdateBuyerInfoResponse as UpdateBuyerInfoResponse, type context$8_UpdateInternalDocumentsEvent as UpdateInternalDocumentsEvent, type context$8_UpdateInternalDocumentsEventOperationOneOf as UpdateInternalDocumentsEventOperationOneOf, type context$8_UpdateLineItemsDescriptionLinesRequest as UpdateLineItemsDescriptionLinesRequest, type context$8_UpdateLineItemsDescriptionLinesResponse as UpdateLineItemsDescriptionLinesResponse, type context$8_UpdateOrder as UpdateOrder, type context$8_UpdateOrderLineItemRequest as UpdateOrderLineItemRequest, type context$8_UpdateOrderLineItemResponse as UpdateOrderLineItemResponse, type context$8_UpdateOrderLineItemsRequest as UpdateOrderLineItemsRequest, type context$8_UpdateOrderLineItemsResponse as UpdateOrderLineItemsResponse, type context$8_UpdateOrderRequest as UpdateOrderRequest, type context$8_UpdateOrderResponse as UpdateOrderResponse, type context$8_UpdateOrderResponseNonNullableFields as UpdateOrderResponseNonNullableFields, type context$8_UpdateOrderShippingAddressRequest as UpdateOrderShippingAddressRequest, type context$8_UpdateOrderShippingAddressResponse as UpdateOrderShippingAddressResponse, type context$8_UpsertRefundRequest as UpsertRefundRequest, type context$8_UpsertRefundResponse as UpsertRefundResponse, type context$8_UserDataResponse as UserDataResponse, type context$8_V1BulkMarkOrdersAsPaidRequest as V1BulkMarkOrdersAsPaidRequest, type context$8_V1BulkMarkOrdersAsPaidResponse as V1BulkMarkOrdersAsPaidResponse, type context$8_V1CreatePaymentGatewayOrderRequest as V1CreatePaymentGatewayOrderRequest, type context$8_V1CreatePaymentGatewayOrderResponse as V1CreatePaymentGatewayOrderResponse, type context$8_V1LineItemDelta as V1LineItemDelta, type context$8_V1LineItemDeltaDeltaOneOf as V1LineItemDeltaDeltaOneOf, type context$8_V1MarkOrderAsPaidRequest as V1MarkOrderAsPaidRequest, type context$8_V1MarkOrderAsPaidResponse as V1MarkOrderAsPaidResponse, type context$8_V1RestockItem as V1RestockItem, type context$8_V1ScheduledAction as V1ScheduledAction, type context$8_V1ShippingInformation as V1ShippingInformation, type context$8_Value as Value, context$8_ValueType as ValueType, type VatId$1 as VatId, VatType$1 as VatType, type context$8_VersionedDeleteByIdsOperation as VersionedDeleteByIdsOperation, type context$8_VersionedDocumentId as VersionedDocumentId, type context$8_VersionedDocumentUpdateOperation as VersionedDocumentUpdateOperation, context$8_VersioningMode as VersioningMode, type context$8_VoidAuthorizedPaymentsRequest as VoidAuthorizedPaymentsRequest, type context$8_VoidAuthorizedPaymentsResponse as VoidAuthorizedPaymentsResponse, type context$8_VoidAuthorizedPaymentsResponseNonNullableFields as VoidAuthorizedPaymentsResponseNonNullableFields, WebhookIdentityType$6 as WebhookIdentityType, WeightUnit$2 as WeightUnit, type context$8__publicOnOrderApprovedType as _publicOnOrderApprovedType, type context$8__publicOnOrderCanceledType as _publicOnOrderCanceledType, type context$8__publicOnOrderCreatedType as _publicOnOrderCreatedType, type context$8__publicOnOrderPaymentStatusUpdatedType as _publicOnOrderPaymentStatusUpdatedType, context$8_bulkUpdateOrderTags as bulkUpdateOrderTags, context$8_bulkUpdateOrders as bulkUpdateOrders, context$8_cancelOrder as cancelOrder, context$8_captureAuthorizedPayments as captureAuthorizedPayments, context$8_createOrder as createOrder, context$8_getOrder as getOrder, context$8_getPaymentCollectabilityStatus as getPaymentCollectabilityStatus, context$8_onOrderApproved as onOrderApproved, context$8_onOrderCanceled as onOrderCanceled, context$8_onOrderCreated as onOrderCreated, context$8_onOrderPaymentStatusUpdated as onOrderPaymentStatusUpdated, onOrderApproved$1 as publicOnOrderApproved, onOrderCanceled$1 as publicOnOrderCanceled, onOrderCreated$1 as publicOnOrderCreated, onOrderPaymentStatusUpdated$1 as publicOnOrderPaymentStatusUpdated, context$8_searchOrders as searchOrders, context$8_updateOrder as updateOrder, context$8_voidAuthorizedPayments as voidAuthorizedPayments };
|
|
26711
26737
|
}
|
|
26712
26738
|
|
|
26713
26739
|
interface OrderPaymentRequest {
|