@wix/auto_sdk_ecom_orders 1.0.68 → 1.0.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/{ecom-v1-order-orders.universal-D9sENjnN.d.ts → ecom-v1-order-orders.universal-C73TYoI7.d.ts} +217 -914
- package/build/cjs/index.d.ts +8 -3
- package/build/cjs/index.js +70 -75
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +23 -75
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +71 -13
- package/build/cjs/meta.js +18 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-D9sENjnN.d.mts → ecom-v1-order-orders.universal-C73TYoI7.d.mts} +217 -914
- package/build/es/index.d.mts +8 -3
- package/build/es/index.mjs +69 -70
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +23 -70
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +71 -13
- package/build/es/meta.mjs +18 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-Dt_KjUcw.d.ts → ecom-v1-order-orders.universal-KCtJReRk.d.ts} +217 -914
- package/build/internal/cjs/index.d.ts +8 -3
- package/build/internal/cjs/index.js +70 -75
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -2
- package/build/internal/cjs/index.typings.js +23 -75
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +71 -13
- package/build/internal/cjs/meta.js +18 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-Dt_KjUcw.d.mts → ecom-v1-order-orders.universal-KCtJReRk.d.mts} +217 -914
- package/build/internal/es/index.d.mts +8 -3
- package/build/internal/es/index.mjs +69 -70
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -2
- package/build/internal/es/index.typings.mjs +23 -70
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +71 -13
- package/build/internal/es/meta.mjs +18 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3003,6 +3003,11 @@ interface RegularPaymentDetails extends RegularPaymentDetailsPaymentMethodDetail
|
|
|
3003
3003
|
savedPaymentMethod?: boolean;
|
|
3004
3004
|
/** Authorization details. */
|
|
3005
3005
|
authorizationDetails?: AuthorizationDetails;
|
|
3006
|
+
/**
|
|
3007
|
+
* Record of chargebacks made by the buyer.
|
|
3008
|
+
* @maxSize 6
|
|
3009
|
+
*/
|
|
3010
|
+
chargebacks?: Chargeback[];
|
|
3006
3011
|
}
|
|
3007
3012
|
/** @oneof */
|
|
3008
3013
|
interface RegularPaymentDetailsPaymentMethodDetailsOneOf {
|
|
@@ -3539,955 +3544,122 @@ interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
3539
3544
|
/** ID of the entity associated with the event. */
|
|
3540
3545
|
entityId?: string;
|
|
3541
3546
|
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
3542
|
-
eventTime?: Date | null;
|
|
3543
|
-
/**
|
|
3544
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
3545
|
-
* (for example, GDPR).
|
|
3546
|
-
*/
|
|
3547
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
3548
|
-
/** If present, indicates the action that triggered the event. */
|
|
3549
|
-
originatedFrom?: string | null;
|
|
3550
|
-
/**
|
|
3551
|
-
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
3552
|
-
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
3553
|
-
*/
|
|
3554
|
-
entityEventSequence?: string | null;
|
|
3555
|
-
}
|
|
3556
|
-
/** @oneof */
|
|
3557
|
-
interface DomainEventBodyOneOf {
|
|
3558
|
-
createdEvent?: EntityCreatedEvent;
|
|
3559
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
3560
|
-
deletedEvent?: EntityDeletedEvent;
|
|
3561
|
-
actionEvent?: ActionEvent;
|
|
3562
|
-
}
|
|
3563
|
-
interface EntityCreatedEvent {
|
|
3564
|
-
entity?: string;
|
|
3565
|
-
}
|
|
3566
|
-
interface RestoreInfo {
|
|
3567
|
-
deletedDate?: Date | null;
|
|
3568
|
-
}
|
|
3569
|
-
interface EntityUpdatedEvent {
|
|
3570
|
-
/**
|
|
3571
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
3572
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
3573
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
3574
|
-
*/
|
|
3575
|
-
currentEntity?: string;
|
|
3576
|
-
}
|
|
3577
|
-
interface EntityDeletedEvent {
|
|
3578
|
-
/** Entity that was deleted. */
|
|
3579
|
-
deletedEntity?: string | null;
|
|
3580
|
-
}
|
|
3581
|
-
interface ActionEvent {
|
|
3582
|
-
body?: string;
|
|
3583
|
-
}
|
|
3584
|
-
interface Empty {
|
|
3585
|
-
}
|
|
3586
|
-
interface MessageEnvelope {
|
|
3587
|
-
/**
|
|
3588
|
-
* App instance ID.
|
|
3589
|
-
* @format GUID
|
|
3590
|
-
*/
|
|
3591
|
-
instanceId?: string | null;
|
|
3592
|
-
/**
|
|
3593
|
-
* Event type.
|
|
3594
|
-
* @maxLength 150
|
|
3595
|
-
*/
|
|
3596
|
-
eventType?: string;
|
|
3597
|
-
/** The identification type and identity data. */
|
|
3598
|
-
identity?: IdentificationData;
|
|
3599
|
-
/** Stringify payload. */
|
|
3600
|
-
data?: string;
|
|
3601
|
-
}
|
|
3602
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
3603
|
-
/**
|
|
3604
|
-
* ID of a site visitor that has not logged in to the site.
|
|
3605
|
-
* @format GUID
|
|
3606
|
-
*/
|
|
3607
|
-
anonymousVisitorId?: string;
|
|
3608
|
-
/**
|
|
3609
|
-
* ID of a site visitor that has logged in to the site.
|
|
3610
|
-
* @format GUID
|
|
3611
|
-
*/
|
|
3612
|
-
memberId?: string;
|
|
3613
|
-
/**
|
|
3614
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
3615
|
-
* @format GUID
|
|
3616
|
-
*/
|
|
3617
|
-
wixUserId?: string;
|
|
3618
|
-
/**
|
|
3619
|
-
* ID of an app.
|
|
3620
|
-
* @format GUID
|
|
3621
|
-
*/
|
|
3622
|
-
appId?: string;
|
|
3623
|
-
/** @readonly */
|
|
3624
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
3625
|
-
}
|
|
3626
|
-
/** @oneof */
|
|
3627
|
-
interface IdentificationDataIdOneOf {
|
|
3628
|
-
/**
|
|
3629
|
-
* ID of a site visitor that has not logged in to the site.
|
|
3630
|
-
* @format GUID
|
|
3631
|
-
*/
|
|
3632
|
-
anonymousVisitorId?: string;
|
|
3633
|
-
/**
|
|
3634
|
-
* ID of a site visitor that has logged in to the site.
|
|
3635
|
-
* @format GUID
|
|
3636
|
-
*/
|
|
3637
|
-
memberId?: string;
|
|
3638
|
-
/**
|
|
3639
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
3640
|
-
* @format GUID
|
|
3641
|
-
*/
|
|
3642
|
-
wixUserId?: string;
|
|
3643
|
-
/**
|
|
3644
|
-
* ID of an app.
|
|
3645
|
-
* @format GUID
|
|
3646
|
-
*/
|
|
3647
|
-
appId?: string;
|
|
3648
|
-
}
|
|
3649
|
-
declare enum WebhookIdentityType {
|
|
3650
|
-
UNKNOWN = "UNKNOWN",
|
|
3651
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3652
|
-
MEMBER = "MEMBER",
|
|
3653
|
-
WIX_USER = "WIX_USER",
|
|
3654
|
-
APP = "APP"
|
|
3655
|
-
}
|
|
3656
|
-
/** @enumType */
|
|
3657
|
-
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
3658
|
-
declare enum TextDetection {
|
|
3659
|
-
/** No detection was made */
|
|
3660
|
-
UNKNOWN_TEXT_DETECTION = "UNKNOWN_TEXT_DETECTION",
|
|
3661
|
-
/** The image contains text */
|
|
3662
|
-
CONTAINS_TEXT = "CONTAINS_TEXT",
|
|
3663
|
-
/** The image does not contain text */
|
|
3664
|
-
NO_TEXT = "NO_TEXT"
|
|
3665
|
-
}
|
|
3666
|
-
/** @enumType */
|
|
3667
|
-
type TextDetectionWithLiterals = TextDetection | 'UNKNOWN_TEXT_DETECTION' | 'CONTAINS_TEXT' | 'NO_TEXT';
|
|
3668
|
-
declare enum AnimationDetection {
|
|
3669
|
-
/** No detection was made */
|
|
3670
|
-
UNKNOWN_ANIMATION_DETECTION = "UNKNOWN_ANIMATION_DETECTION",
|
|
3671
|
-
/** The image contains animation */
|
|
3672
|
-
CONTAINS_ANIMATION = "CONTAINS_ANIMATION",
|
|
3673
|
-
/** The image does not contain animation */
|
|
3674
|
-
NO_ANIMATION = "NO_ANIMATION"
|
|
3675
|
-
}
|
|
3676
|
-
/** @enumType */
|
|
3677
|
-
type AnimationDetectionWithLiterals = AnimationDetection | 'UNKNOWN_ANIMATION_DETECTION' | 'CONTAINS_ANIMATION' | 'NO_ANIMATION';
|
|
3678
|
-
interface ImageContent {
|
|
3679
|
-
/** Text detection */
|
|
3680
|
-
text?: TextDetectionWithLiterals;
|
|
3681
|
-
/** Animation detection */
|
|
3682
|
-
animation?: AnimationDetectionWithLiterals;
|
|
3683
|
-
}
|
|
3684
|
-
interface SendBuyerConfirmationEmailRequest {
|
|
3685
|
-
/** @format GUID */
|
|
3686
|
-
orderId?: string;
|
|
3687
|
-
}
|
|
3688
|
-
interface SendBuyerConfirmationEmailResponse {
|
|
3689
|
-
}
|
|
3690
|
-
interface SendBuyerPaymentsReceivedEmailRequest {
|
|
3691
|
-
/**
|
|
3692
|
-
* @minLength 1
|
|
3693
|
-
* @maxLength 100
|
|
3694
|
-
*/
|
|
3695
|
-
orderId?: string;
|
|
3696
|
-
}
|
|
3697
|
-
interface SendBuyerPaymentsReceivedEmailResponse {
|
|
3698
|
-
}
|
|
3699
|
-
interface SendBuyerPickupConfirmationEmailRequest {
|
|
3700
|
-
/**
|
|
3701
|
-
* @minLength 1
|
|
3702
|
-
* @maxLength 100
|
|
3703
|
-
*/
|
|
3704
|
-
orderId?: string;
|
|
3705
|
-
}
|
|
3706
|
-
interface SendBuyerPickupConfirmationEmailResponse {
|
|
3707
|
-
}
|
|
3708
|
-
interface BulkSendBuyerPickupConfirmationEmailsRequest {
|
|
3709
|
-
/**
|
|
3710
|
-
* IDs of orders to send pickup emails for.
|
|
3711
|
-
* @minSize 1
|
|
3712
|
-
* @maxSize 300
|
|
3713
|
-
*/
|
|
3714
|
-
orderIds?: string[];
|
|
3715
|
-
}
|
|
3716
|
-
interface BulkSendBuyerPickupConfirmationEmailsResponse {
|
|
3717
|
-
}
|
|
3718
|
-
interface SendBuyerShippingConfirmationEmailRequest {
|
|
3719
|
-
/**
|
|
3720
|
-
* @minLength 1
|
|
3721
|
-
* @maxLength 100
|
|
3722
|
-
*/
|
|
3723
|
-
orderId?: string;
|
|
3724
|
-
}
|
|
3725
|
-
interface SendBuyerShippingConfirmationEmailResponse {
|
|
3726
|
-
}
|
|
3727
|
-
interface BulkSendBuyerShippingConfirmationEmailsRequest {
|
|
3728
|
-
/**
|
|
3729
|
-
* IDs of orders to send pickup emails for.
|
|
3730
|
-
* @minSize 1
|
|
3731
|
-
* @maxSize 300
|
|
3732
|
-
*/
|
|
3733
|
-
orderIds?: string[];
|
|
3734
|
-
}
|
|
3735
|
-
interface BulkSendBuyerShippingConfirmationEmailsResponse {
|
|
3736
|
-
}
|
|
3737
|
-
interface SendMerchantOrderReceivedNotificationRequest {
|
|
3738
|
-
/**
|
|
3739
|
-
* @minLength 1
|
|
3740
|
-
* @maxLength 100
|
|
3741
|
-
*/
|
|
3742
|
-
orderId?: string;
|
|
3743
|
-
}
|
|
3744
|
-
interface SendMerchantOrderReceivedNotificationResponse {
|
|
3745
|
-
}
|
|
3746
|
-
interface SendCancelRefundEmailRequest {
|
|
3747
|
-
/**
|
|
3748
|
-
* The ID of order that is canceled/refunded
|
|
3749
|
-
* @minLength 1
|
|
3750
|
-
* @maxLength 100
|
|
3751
|
-
*/
|
|
3752
|
-
orderId?: string;
|
|
3753
|
-
/**
|
|
3754
|
-
* Personal note added to the email (optional)
|
|
3755
|
-
* @minLength 1
|
|
3756
|
-
* @maxLength 1000
|
|
3757
|
-
*/
|
|
3758
|
-
customMessage?: string | null;
|
|
3759
|
-
/** Refund amount */
|
|
3760
|
-
refundAmount?: Price;
|
|
3761
|
-
/**
|
|
3762
|
-
* Refund ID. (Optional)
|
|
3763
|
-
* @format GUID
|
|
3764
|
-
*/
|
|
3765
|
-
refundId?: string | null;
|
|
3766
|
-
}
|
|
3767
|
-
interface SendCancelRefundEmailResponse {
|
|
3768
|
-
}
|
|
3769
|
-
interface SendRefundEmailRequest {
|
|
3770
|
-
/**
|
|
3771
|
-
* The ID of order that is refunded
|
|
3772
|
-
* @format GUID
|
|
3773
|
-
*/
|
|
3774
|
-
orderId?: string;
|
|
3775
|
-
/**
|
|
3776
|
-
* Refund ID
|
|
3777
|
-
* @format GUID
|
|
3778
|
-
*/
|
|
3779
|
-
refundId?: string;
|
|
3780
|
-
/**
|
|
3781
|
-
* Personal note added to the email (optional)
|
|
3782
|
-
* @minLength 1
|
|
3783
|
-
* @maxLength 1000
|
|
3784
|
-
*/
|
|
3785
|
-
customMessage?: string | null;
|
|
3786
|
-
}
|
|
3787
|
-
interface SendRefundEmailResponse {
|
|
3788
|
-
}
|
|
3789
|
-
interface SendMerchantOrderReceivedPushRequest {
|
|
3790
|
-
/**
|
|
3791
|
-
* @minLength 1
|
|
3792
|
-
* @maxLength 100
|
|
3793
|
-
*/
|
|
3794
|
-
orderId?: string;
|
|
3795
|
-
}
|
|
3796
|
-
interface SendMerchantOrderReceivedPushResponse {
|
|
3797
|
-
}
|
|
3798
|
-
interface PreviewEmailByTypeRequest {
|
|
3799
|
-
emailType?: PreviewEmailTypeWithLiterals;
|
|
3800
|
-
}
|
|
3801
|
-
declare enum PreviewEmailType {
|
|
3802
|
-
ORDER_PLACED = "ORDER_PLACED",
|
|
3803
|
-
DOWNLOAD_LINKS = "DOWNLOAD_LINKS",
|
|
3804
|
-
ORDER_SHIPPED = "ORDER_SHIPPED",
|
|
3805
|
-
ORDER_READY_FOR_PICKUP = "ORDER_READY_FOR_PICKUP"
|
|
3806
|
-
}
|
|
3807
|
-
/** @enumType */
|
|
3808
|
-
type PreviewEmailTypeWithLiterals = PreviewEmailType | 'ORDER_PLACED' | 'DOWNLOAD_LINKS' | 'ORDER_SHIPPED' | 'ORDER_READY_FOR_PICKUP';
|
|
3809
|
-
interface PreviewEmailByTypeResponse {
|
|
3810
|
-
emailPreview?: string;
|
|
3811
|
-
}
|
|
3812
|
-
interface PreviewRefundEmailRequest {
|
|
3813
|
-
/**
|
|
3814
|
-
* @minLength 1
|
|
3815
|
-
* @maxLength 100
|
|
3816
|
-
*/
|
|
3817
|
-
orderId?: string;
|
|
3818
|
-
/** Refund amount */
|
|
3819
|
-
refundAmount?: Price;
|
|
3820
|
-
/** Refund business details */
|
|
3821
|
-
details?: RefundDetails;
|
|
3822
|
-
/**
|
|
3823
|
-
* Personal note added to the email (optional)
|
|
3824
|
-
* @minLength 1
|
|
3825
|
-
* @maxLength 1000
|
|
3826
|
-
*/
|
|
3827
|
-
customMessage?: string | null;
|
|
3828
|
-
/**
|
|
3829
|
-
* Refund ID. (Optional)
|
|
3830
|
-
* @format GUID
|
|
3831
|
-
*/
|
|
3832
|
-
refundId?: string | null;
|
|
3833
|
-
}
|
|
3834
|
-
interface PreviewRefundEmailResponse {
|
|
3835
|
-
emailPreview?: string;
|
|
3836
|
-
}
|
|
3837
|
-
interface PreviewCancelEmailRequest {
|
|
3838
|
-
/**
|
|
3839
|
-
* @minLength 1
|
|
3840
|
-
* @maxLength 100
|
|
3841
|
-
*/
|
|
3842
|
-
orderId?: string;
|
|
3843
|
-
/**
|
|
3844
|
-
* Personal note added to the email (optional)
|
|
3845
|
-
* @minLength 1
|
|
3846
|
-
* @maxLength 1000
|
|
3847
|
-
*/
|
|
3848
|
-
customMessage?: string | null;
|
|
3849
|
-
}
|
|
3850
|
-
interface PreviewCancelEmailResponse {
|
|
3851
|
-
emailPreview?: string;
|
|
3852
|
-
}
|
|
3853
|
-
interface PreviewCancelRefundEmailRequest {
|
|
3854
|
-
/**
|
|
3855
|
-
* @minLength 1
|
|
3856
|
-
* @maxLength 100
|
|
3857
|
-
*/
|
|
3858
|
-
orderId?: string;
|
|
3859
|
-
/**
|
|
3860
|
-
* Personal note added to the email (optional)
|
|
3861
|
-
* @minLength 1
|
|
3862
|
-
* @maxLength 1000
|
|
3863
|
-
*/
|
|
3864
|
-
customMessage?: string | null;
|
|
3865
|
-
/** Refund amount */
|
|
3866
|
-
refundAmount?: Price;
|
|
3867
|
-
/**
|
|
3868
|
-
* Refund ID. (Optional)
|
|
3869
|
-
* @format GUID
|
|
3870
|
-
*/
|
|
3871
|
-
refundId?: string | null;
|
|
3872
|
-
}
|
|
3873
|
-
interface PreviewCancelRefundEmailResponse {
|
|
3874
|
-
emailPreview?: string;
|
|
3875
|
-
}
|
|
3876
|
-
interface PreviewBuyerPaymentsReceivedEmailRequest {
|
|
3877
|
-
}
|
|
3878
|
-
interface PreviewBuyerPaymentsReceivedEmailResponse {
|
|
3879
|
-
emailPreview?: string;
|
|
3880
|
-
}
|
|
3881
|
-
interface PreviewBuyerConfirmationEmailRequest {
|
|
3882
|
-
}
|
|
3883
|
-
interface PreviewBuyerConfirmationEmailResponse {
|
|
3884
|
-
emailPreview?: string;
|
|
3885
|
-
}
|
|
3886
|
-
interface PreviewBuyerPickupConfirmationEmailRequest {
|
|
3887
|
-
}
|
|
3888
|
-
interface PreviewBuyerPickupConfirmationEmailResponse {
|
|
3889
|
-
emailPreview?: string;
|
|
3890
|
-
}
|
|
3891
|
-
interface PreviewShippingConfirmationEmailRequest {
|
|
3892
|
-
}
|
|
3893
|
-
interface PreviewShippingConfirmationEmailResponse {
|
|
3894
|
-
emailPreview?: string;
|
|
3895
|
-
}
|
|
3896
|
-
interface PreviewResendDownloadLinksEmailRequest {
|
|
3897
|
-
}
|
|
3898
|
-
interface PreviewResendDownloadLinksEmailResponse {
|
|
3899
|
-
emailPreview?: string;
|
|
3900
|
-
}
|
|
3901
|
-
interface TriggerReindexOrderRequest {
|
|
3902
|
-
/** @format GUID */
|
|
3903
|
-
metasiteId?: string;
|
|
3904
|
-
/**
|
|
3905
|
-
* @minLength 1
|
|
3906
|
-
* @maxLength 100
|
|
3907
|
-
*/
|
|
3908
|
-
orderId?: string;
|
|
3909
|
-
}
|
|
3910
|
-
interface SnapshotMessage {
|
|
3911
|
-
_id?: string;
|
|
3912
|
-
opType?: number;
|
|
3913
|
-
}
|
|
3914
|
-
/** Triggered when the payment status of an order is updated */
|
|
3915
|
-
interface PaymentStatusUpdated {
|
|
3916
|
-
/** The order that was updated */
|
|
3917
|
-
order?: Order;
|
|
3918
|
-
/** The previous status (before the update) */
|
|
3919
|
-
previousPaymentStatus?: PaymentStatusWithLiterals;
|
|
3920
|
-
}
|
|
3921
|
-
interface GetMetasiteDataRequest {
|
|
3922
|
-
/**
|
|
3923
|
-
* meta site Id for data to retrieve
|
|
3924
|
-
* @format GUID
|
|
3925
|
-
*/
|
|
3926
|
-
metasiteId?: string;
|
|
3927
|
-
}
|
|
3928
|
-
interface GetMetasiteDataResponse {
|
|
3929
|
-
/** meta site data */
|
|
3930
|
-
metasite?: MetaSite;
|
|
3931
|
-
/** is metasite added to new SDL population via population manager */
|
|
3932
|
-
isInNewPopulation?: boolean;
|
|
3933
|
-
/** metasite url */
|
|
3934
|
-
metasiteUrl?: string;
|
|
3935
|
-
/** owner data */
|
|
3936
|
-
userDataResponse?: UserDataResponse;
|
|
3937
|
-
}
|
|
3938
|
-
/**
|
|
3939
|
-
* Represents Meta Site.
|
|
3940
|
-
*
|
|
3941
|
-
* Meta Site is a legacy concept, it aggregates data from several domains. Generally, it contains and manages
|
|
3942
|
-
* relations between different entities related to the site (or, as a new concept, to the container).
|
|
3943
|
-
*
|
|
3944
|
-
* We prefer to pronounce it as 2 separate words, therefore we use terms "meta site" or "metaSite" or "meta_site" in code.
|
|
3945
|
-
*/
|
|
3946
|
-
interface MetaSite {
|
|
3947
|
-
/**
|
|
3948
|
-
* Identifier of meta site.
|
|
3949
|
-
* @format GUID
|
|
3950
|
-
* @readonly
|
|
3951
|
-
*/
|
|
3952
|
-
metaSiteId?: string;
|
|
3953
|
-
/**
|
|
3954
|
-
* Internal version of meta site. Monotonically increasing number.
|
|
3955
|
-
*
|
|
3956
|
-
* If passed within update request, it will be used for optimistic locking. In this case,
|
|
3957
|
-
* StaleStateException will be thrown if current version doesn't match.
|
|
3958
|
-
*
|
|
3959
|
-
* In old MetaSiteDTO -- revision.
|
|
3960
|
-
* @readonly
|
|
3961
|
-
*/
|
|
3962
|
-
version?: string;
|
|
3963
|
-
/**
|
|
3964
|
-
* Identifier of account that owns this meta site.
|
|
3965
|
-
* @readonly
|
|
3966
|
-
*/
|
|
3967
|
-
ownerId?: string;
|
|
3968
|
-
/**
|
|
3969
|
-
* Date and time when meta site was created.
|
|
3970
|
-
* @readonly
|
|
3971
|
-
*/
|
|
3972
|
-
dateCreated?: Date | null;
|
|
3973
|
-
/**
|
|
3974
|
-
* Date and time when meta site was updated for the last time.
|
|
3975
|
-
* @readonly
|
|
3976
|
-
*/
|
|
3977
|
-
dateUpdated?: Date | null;
|
|
3978
|
-
/**
|
|
3979
|
-
* All "applications" of this meta site.
|
|
3980
|
-
*
|
|
3981
|
-
* In old MetaSiteDTO -- embeddedServices.
|
|
3982
|
-
*/
|
|
3983
|
-
apps?: App[];
|
|
3984
|
-
/** Namespace of meta site. */
|
|
3985
|
-
namespace?: NamespaceWithLiterals;
|
|
3986
|
-
/**
|
|
3987
|
-
* Indicates whether https should be used for viewing a site.
|
|
3988
|
-
*
|
|
3989
|
-
* In old MetaSiteDTO -- flags.UseHttps.
|
|
3990
|
-
*/
|
|
3991
|
-
useHttps?: boolean;
|
|
3992
|
-
defaultSeoData?: SeoData;
|
|
3993
|
-
/**
|
|
3994
|
-
* Information about HTML application.
|
|
3995
|
-
*
|
|
3996
|
-
* In old MetaSiteDTO -- appplications.find(_.applicationType == HtmlWeb).
|
|
3997
|
-
*/
|
|
3998
|
-
htmlApp?: HtmlApplication;
|
|
3999
|
-
/**
|
|
4000
|
-
* @maxSize 10000
|
|
4001
|
-
* @deprecated
|
|
4002
|
-
*/
|
|
4003
|
-
externalUriMappings?: ExternalUriMapping[];
|
|
4004
|
-
/** Indicates whether meta site was published. If true - site should be accessible for viewing. */
|
|
4005
|
-
published?: boolean;
|
|
4006
|
-
/**
|
|
4007
|
-
* The name of meta site.
|
|
4008
|
-
*
|
|
4009
|
-
* Matches this regular expression: [a-z0-9_\-]{4,20} (but for some legacy sites might be shorted/longer).
|
|
4010
|
-
*/
|
|
4011
|
-
name?: string;
|
|
4012
|
-
/**
|
|
4013
|
-
* Indicates whether this site is managed by ADI editor
|
|
4014
|
-
*
|
|
4015
|
-
* Values:
|
|
4016
|
-
* None - not managed.
|
|
4017
|
-
* Some(false) - site was created via ADI editor, but later on user switched to regular editor.
|
|
4018
|
-
* Some(true) - site was created and still is managed by ADI editor.
|
|
4019
|
-
*
|
|
4020
|
-
* In old MetaSiteDTO: embeddedService[embeddedServiceType=Onboarding].attributes.isInUse.
|
|
4021
|
-
*/
|
|
4022
|
-
adi?: boolean | null;
|
|
4023
|
-
/**
|
|
4024
|
-
* Indicates whether this meta site is template.
|
|
4025
|
-
*
|
|
4026
|
-
* In old MetaSiteDTO: documentType == Template.
|
|
4027
|
-
* @readonly
|
|
4028
|
-
*/
|
|
4029
|
-
template?: boolean | null;
|
|
4030
|
-
/**
|
|
4031
|
-
* Identifier of a template (meta site) from which this site was created.
|
|
4032
|
-
*
|
|
4033
|
-
* 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
|
|
4034
|
-
* it back then.
|
|
4035
|
-
*
|
|
4036
|
-
* For example, if "site" was created from "template", then "template"'s id will be in origin_template_id.
|
|
4037
|
-
* When "site" is cloned, clone will also have "template"'s id in origin_instance_id.
|
|
4038
|
-
* @format GUID
|
|
4039
|
-
* @readonly
|
|
4040
|
-
*/
|
|
4041
|
-
originTemplateId?: string | null;
|
|
4042
|
-
/**
|
|
4043
|
-
* Indicates meta site blocked from publishing and added additional filtering in listing API (MSS). READ_ONLY.
|
|
4044
|
-
* @readonly
|
|
4045
|
-
*/
|
|
4046
|
-
blocked?: boolean;
|
|
4047
|
-
/**
|
|
4048
|
-
* If true - default meta site routing (connected domains, free url, ML) is not used for this meta site.
|
|
4049
|
-
*
|
|
4050
|
-
* Meaning, that if `example.org` is connected to this meta site, `router-server` will return 404 for `example.org`
|
|
4051
|
-
* anyway.
|
|
4052
|
-
*
|
|
4053
|
-
* This flag is set for some sites that have custom mapping in Routes API / wix-pages-bo.
|
|
4054
|
-
*/
|
|
4055
|
-
dontUseDefaultRouting?: boolean;
|
|
4056
|
-
/**
|
|
4057
|
-
* 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.
|
|
4058
|
-
* @readonly
|
|
4059
|
-
*/
|
|
4060
|
-
criticalAsset?: boolean;
|
|
4061
|
-
/**
|
|
4062
|
-
* Date and time when the account that owns this meta site was created.
|
|
4063
|
-
* @readonly
|
|
4064
|
-
*/
|
|
4065
|
-
accountCreatedDate?: Date | null;
|
|
4066
|
-
}
|
|
4067
|
-
interface App {
|
|
4068
|
-
/**
|
|
4069
|
-
* Identifier of application type (application definition id).
|
|
4070
|
-
*
|
|
4071
|
-
* Can be both UUID and non-UUID, for example: SiteMembers, Onboarding, CloudSiteExtension etc.
|
|
4072
|
-
* @maxLength 36
|
|
4073
|
-
*/
|
|
4074
|
-
appDefId?: string;
|
|
4075
|
-
/**
|
|
4076
|
-
* Identifier of the instance (concrete application, installed on a site).
|
|
4077
|
-
*
|
|
4078
|
-
* Mostly UUID, but for some specific legacy cases might be something else.
|
|
4079
|
-
* @maxLength 36
|
|
4080
|
-
*/
|
|
4081
|
-
instanceId?: string;
|
|
4082
|
-
/**
|
|
4083
|
-
* State of this app (see docs for state).
|
|
4084
|
-
* @readonly
|
|
4085
|
-
*/
|
|
4086
|
-
state?: StateWithLiterals;
|
|
4087
|
-
/**
|
|
4088
|
-
* Identifier of the originating application. For example, if this app was part of a template,
|
|
4089
|
-
* then an app will get instance_id of that app as origin instance id.
|
|
4090
|
-
*
|
|
4091
|
-
* If application was provisioned not from some template, it should be empty.
|
|
4092
|
-
*
|
|
4093
|
-
* Note, it could be == to instance_id (for old sites).
|
|
4094
|
-
* @maxLength 36
|
|
4095
|
-
*/
|
|
4096
|
-
originInstanceId?: string;
|
|
4097
|
-
}
|
|
4098
|
-
/**
|
|
4099
|
-
* Represents the actual state of the application on site. Do not confuse with the State in the old MetaSiteDTO,
|
|
4100
|
-
* which has less values and doesn't have 1-to-1 correspondence with this one (this one is exact and correct!)
|
|
4101
|
-
*/
|
|
4102
|
-
declare enum State {
|
|
4103
|
-
UNKNOWN = "UNKNOWN",
|
|
4104
|
-
/** App is installed on a site. */
|
|
4105
|
-
ENABLED = "ENABLED",
|
|
4106
|
-
/** App is removed from a site (but we preserve it just in case). */
|
|
4107
|
-
DISABLED = "DISABLED",
|
|
4108
|
-
/** App is in "demo" mode, meaning that it's in read-only mode (it's in a template OR not installed yet). */
|
|
4109
|
-
TEMPLATE = "TEMPLATE",
|
|
4110
|
-
/** App is not installed, there is a user intention for it only (user will see the pimpl in the editor). */
|
|
4111
|
-
PENDING = "PENDING"
|
|
4112
|
-
}
|
|
4113
|
-
/** @enumType */
|
|
4114
|
-
type StateWithLiterals = State | 'UNKNOWN' | 'ENABLED' | 'DISABLED' | 'TEMPLATE' | 'PENDING';
|
|
4115
|
-
declare enum Namespace {
|
|
4116
|
-
UNKNOWN_NAMESPACE = "UNKNOWN_NAMESPACE",
|
|
4117
|
-
/** Default namespace for UGC sites. MetaSites with this namespace will be shown in a user's site list by default. */
|
|
4118
|
-
WIX = "WIX",
|
|
4119
|
-
/** ShoutOut stand alone product. These are siteless (no actual Wix site, no HtmlWeb). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4120
|
-
SHOUT_OUT = "SHOUT_OUT",
|
|
4121
|
-
/** MetaSites created by the Albums product, they appear as part of the Albums app. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4122
|
-
ALBUMS = "ALBUMS",
|
|
4123
|
-
/** Part of the WixStores migration flow, a user tries to migrate and gets this site to view and if the user likes it then stores removes this namespace and deletes the old site with the old stores. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4124
|
-
WIX_STORES_TEST_DRIVE = "WIX_STORES_TEST_DRIVE",
|
|
4125
|
-
/** Hotels standalone (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4126
|
-
HOTELS = "HOTELS",
|
|
4127
|
-
/** Clubs siteless MetaSites, a club without a wix website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4128
|
-
CLUBS = "CLUBS",
|
|
4129
|
-
/** A partially created ADI website. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4130
|
-
ONBOARDING_DRAFT = "ONBOARDING_DRAFT",
|
|
4131
|
-
/** AppBuilder for AppStudio / shmite (c). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4132
|
-
DEV_SITE = "DEV_SITE",
|
|
4133
|
-
/** LogoMaker websites offered to the user after logo purchase. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4134
|
-
LOGOS = "LOGOS",
|
|
4135
|
-
/** VideoMaker websites offered to the user after video purchase. MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4136
|
-
VIDEO_MAKER = "VIDEO_MAKER",
|
|
4137
|
-
/** MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4138
|
-
PARTNER_DASHBOARD = "PARTNER_DASHBOARD",
|
|
4139
|
-
/** MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4140
|
-
DEV_CENTER_COMPANY = "DEV_CENTER_COMPANY",
|
|
4141
|
-
/**
|
|
4142
|
-
* A draft created by HTML editor on open. Upon "first save" it will be moved to be of WIX domain.
|
|
4143
|
-
*
|
|
4144
|
-
* Meta site with this namespace will *not* be shown in a user's site list by default.
|
|
4145
|
-
*/
|
|
4146
|
-
HTML_DRAFT = "HTML_DRAFT",
|
|
4147
|
-
/**
|
|
4148
|
-
* the user-journey for Fitness users who want to start from managing their business instead of designing their website.
|
|
4149
|
-
* Will be accessible from Site List and will not have a website app.
|
|
4150
|
-
* Once the user attaches a site, the site will become a regular wixsite.
|
|
4151
|
-
*/
|
|
4152
|
-
SITELESS_BUSINESS = "SITELESS_BUSINESS",
|
|
4153
|
-
/** Belongs to "strategic products" company. Supports new product in the creator's economy space. */
|
|
4154
|
-
CREATOR_ECONOMY = "CREATOR_ECONOMY",
|
|
4155
|
-
/** It is to be used in the Business First efforts. */
|
|
4156
|
-
DASHBOARD_FIRST = "DASHBOARD_FIRST",
|
|
4157
|
-
/** Bookings business flow with no site. */
|
|
4158
|
-
ANYWHERE = "ANYWHERE",
|
|
4159
|
-
/** Namespace for Headless Backoffice with no editor */
|
|
4160
|
-
HEADLESS = "HEADLESS",
|
|
4161
|
-
/**
|
|
4162
|
-
* Namespace for master site that will exist in parent account that will be referenced by subaccounts
|
|
4163
|
-
* The site will be used for account level CSM feature for enterprise
|
|
4164
|
-
*/
|
|
4165
|
-
ACCOUNT_MASTER_CMS = "ACCOUNT_MASTER_CMS",
|
|
4166
|
-
/** Rise.ai Siteless account management for Gift Cards and Store Credit. */
|
|
4167
|
-
RISE = "RISE",
|
|
4168
|
-
/**
|
|
4169
|
-
* As part of the branded app new funnel, users now can create a meta site that will be branded app first.
|
|
4170
|
-
* There's a blank site behind the scene but it's blank).
|
|
4171
|
-
* The Mobile company will be the owner of this namespace.
|
|
4172
|
-
*/
|
|
4173
|
-
BRANDED_FIRST = "BRANDED_FIRST",
|
|
4174
|
-
/** Nownia.com Siteless account management for Ai Scheduling Assistant. */
|
|
4175
|
-
NOWNIA = "NOWNIA",
|
|
4176
|
-
/**
|
|
4177
|
-
* UGC Templates are templates that are created by users for personal use and to sale to other users.
|
|
4178
|
-
* The Partners company owns this namespace.
|
|
4179
|
-
*/
|
|
4180
|
-
UGC_TEMPLATE = "UGC_TEMPLATE",
|
|
4181
|
-
/** Codux Headless Sites */
|
|
4182
|
-
CODUX = "CODUX",
|
|
4183
|
-
/** Bobb - AI Design Creator. */
|
|
4184
|
-
MEDIA_DESIGN_CREATOR = "MEDIA_DESIGN_CREATOR",
|
|
4185
|
-
/**
|
|
4186
|
-
* Shared Blog Site is a unique single site across Enterprise account,
|
|
4187
|
-
* This site will hold all Blog posts related to the Marketing product.
|
|
4188
|
-
*/
|
|
4189
|
-
SHARED_BLOG_ENTERPRISE = "SHARED_BLOG_ENTERPRISE",
|
|
4190
|
-
/** Standalone forms (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4191
|
-
STANDALONE_FORMS = "STANDALONE_FORMS",
|
|
4192
|
-
/** Standalone events (siteless). MetaSites with this namespace will *not* be shown in a user's site list by default. */
|
|
4193
|
-
STANDALONE_EVENTS = "STANDALONE_EVENTS",
|
|
4194
|
-
/** MIMIR - Siteless account for MIMIR Ai Job runner. */
|
|
4195
|
-
MIMIR = "MIMIR"
|
|
4196
|
-
}
|
|
4197
|
-
/** @enumType */
|
|
4198
|
-
type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR';
|
|
4199
|
-
interface SeoData {
|
|
4200
|
-
/**
|
|
4201
|
-
* A title.
|
|
4202
|
-
* @maxLength 255
|
|
4203
|
-
*/
|
|
4204
|
-
title?: string | null;
|
|
4205
|
-
/** Indicates whether the site should be indexable by bots. */
|
|
4206
|
-
indexable?: boolean;
|
|
4207
|
-
/** TDB. */
|
|
4208
|
-
suppressTrackingCookies?: boolean;
|
|
4209
|
-
/**
|
|
4210
|
-
* TDB.
|
|
4211
|
-
* @maxLength 300
|
|
4212
|
-
*/
|
|
4213
|
-
ogImage?: string | null;
|
|
4214
|
-
/**
|
|
4215
|
-
* A list of meta tags.
|
|
4216
|
-
* @maxSize 100
|
|
4217
|
-
*/
|
|
4218
|
-
metaTags?: MetaTag[];
|
|
4219
|
-
/**
|
|
4220
|
-
* A canonical URL for a site.
|
|
4221
|
-
* @maxLength 4000
|
|
4222
|
-
*/
|
|
4223
|
-
canonicalUrl?: string | null;
|
|
4224
|
-
}
|
|
4225
|
-
interface MetaTag {
|
|
4226
|
-
/**
|
|
4227
|
-
* A name.
|
|
4228
|
-
* @maxLength 50
|
|
4229
|
-
*/
|
|
4230
|
-
name?: string;
|
|
4231
|
-
/**
|
|
4232
|
-
* A value.
|
|
4233
|
-
* @maxLength 500
|
|
4234
|
-
*/
|
|
4235
|
-
value?: string;
|
|
4236
|
-
/** Indicates whether should be rendered as property. */
|
|
4237
|
-
property?: boolean;
|
|
4238
|
-
}
|
|
4239
|
-
/** Represents an HTML application (HTML site). */
|
|
4240
|
-
interface HtmlApplication {
|
|
4241
|
-
/** Legacy, don't use it if you can. */
|
|
4242
|
-
intId?: number;
|
|
4243
|
-
/** Identifier of the instance. */
|
|
4244
|
-
instanceId?: string;
|
|
4245
|
-
seoData?: SeoData;
|
|
4246
|
-
/** Language of this site. */
|
|
4247
|
-
languageCode?: string;
|
|
4248
|
-
/** File name for thumbnail. */
|
|
4249
|
-
thumbnail?: string | null;
|
|
4250
|
-
/** Indicates whether this site is managed by EditorX. */
|
|
4251
|
-
editorX?: boolean;
|
|
4252
|
-
/** Indicates whether this site is managed by Wix Studio. */
|
|
4253
|
-
studio?: boolean;
|
|
4254
|
-
/** Indicates that site is managed by Odeditor */
|
|
4255
|
-
odeditor?: boolean;
|
|
4256
|
-
/** Indicates that site is managed by Picasso */
|
|
4257
|
-
picasso?: boolean;
|
|
4258
|
-
}
|
|
4259
|
-
interface ExternalUriMapping {
|
|
4260
|
-
/**
|
|
4261
|
-
* Deprecated.
|
|
4262
|
-
* @maxLength 255
|
|
4263
|
-
*/
|
|
4264
|
-
fromExternalUri?: string;
|
|
4265
|
-
/**
|
|
4266
|
-
* Deprecated.
|
|
4267
|
-
* @maxLength 255
|
|
4268
|
-
*/
|
|
4269
|
-
toWixUri?: string;
|
|
4270
|
-
/**
|
|
4271
|
-
* Deprecated.
|
|
4272
|
-
* @maxLength 255
|
|
4273
|
-
*/
|
|
4274
|
-
oldToWixUri?: string | null;
|
|
4275
|
-
/** Deprecated. */
|
|
4276
|
-
requireDomain?: boolean | null;
|
|
4277
|
-
}
|
|
4278
|
-
interface UserDataResponse {
|
|
4279
|
-
userEmail?: string;
|
|
4280
|
-
/** owner name */
|
|
4281
|
-
userName?: string;
|
|
4282
|
-
/** owner status */
|
|
4283
|
-
userStatus?: string;
|
|
4284
|
-
/** owner language */
|
|
4285
|
-
userLanguage?: string;
|
|
4286
|
-
}
|
|
4287
|
-
interface QueryOrdersForMetasiteRequest {
|
|
4288
|
-
/**
|
|
4289
|
-
* meta site Id for EP orders to retrieve
|
|
4290
|
-
* @format GUID
|
|
4291
|
-
*/
|
|
4292
|
-
metasiteId?: string;
|
|
4293
|
-
/** paginated internal orders query request */
|
|
4294
|
-
internalQueryOrdersRequest?: InternalQueryOrdersRequest;
|
|
4295
|
-
}
|
|
4296
|
-
interface InternalQueryOrdersRequest {
|
|
4297
|
-
/** Query options. */
|
|
4298
|
-
query?: PlatformQuery;
|
|
4299
|
-
}
|
|
4300
|
-
interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
|
|
4301
|
-
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
4302
|
-
paging?: PlatformPaging;
|
|
4303
|
-
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
4304
|
-
cursorPaging?: CursorPaging;
|
|
4305
|
-
/** Filter object. */
|
|
4306
|
-
filter?: Record<string, any> | null;
|
|
4307
|
-
/** Sorting options. For example, `[{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]`. */
|
|
4308
|
-
sort?: Sorting[];
|
|
4309
|
-
}
|
|
4310
|
-
/** @oneof */
|
|
4311
|
-
interface PlatformQueryPagingMethodOneOf {
|
|
4312
|
-
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
4313
|
-
paging?: PlatformPaging;
|
|
4314
|
-
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
4315
|
-
cursorPaging?: CursorPaging;
|
|
4316
|
-
}
|
|
4317
|
-
interface Sorting {
|
|
4318
|
-
/**
|
|
4319
|
-
* Name of the field to sort by.
|
|
4320
|
-
* @maxLength 512
|
|
4321
|
-
*/
|
|
4322
|
-
fieldName?: string;
|
|
4323
|
-
/** Sort order. */
|
|
4324
|
-
order?: SortOrderWithLiterals;
|
|
4325
|
-
}
|
|
4326
|
-
declare enum SortOrder {
|
|
4327
|
-
ASC = "ASC",
|
|
4328
|
-
DESC = "DESC"
|
|
4329
|
-
}
|
|
4330
|
-
/** @enumType */
|
|
4331
|
-
type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
4332
|
-
interface PlatformPaging {
|
|
4333
|
-
/**
|
|
4334
|
-
* Number of items to load.
|
|
4335
|
-
* @max 100
|
|
4336
|
-
*/
|
|
4337
|
-
limit?: number | null;
|
|
4338
|
-
/** Number of items to skip in the current sort order. */
|
|
4339
|
-
offset?: number | null;
|
|
4340
|
-
}
|
|
4341
|
-
interface CursorPaging {
|
|
4342
|
-
/**
|
|
4343
|
-
* Maximum number of items to return in the results.
|
|
4344
|
-
* @max 100
|
|
4345
|
-
*/
|
|
4346
|
-
limit?: number | null;
|
|
4347
|
-
/**
|
|
4348
|
-
* Pointer to the next or previous page in the list of results.
|
|
4349
|
-
*
|
|
4350
|
-
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
4351
|
-
* Not relevant for the first request.
|
|
4352
|
-
* @maxLength 16000
|
|
4353
|
-
*/
|
|
4354
|
-
cursor?: string | null;
|
|
4355
|
-
}
|
|
4356
|
-
interface QueryOrdersForMetasiteResponse {
|
|
4357
|
-
/** found exisitng orders according to pagination and query provided. */
|
|
4358
|
-
orders?: Order[];
|
|
4359
|
-
/** Details on the paged set of results returned. */
|
|
4360
|
-
pagingMetadata?: PlatformPagingMetadata;
|
|
4361
|
-
}
|
|
4362
|
-
interface PlatformPagingMetadata {
|
|
4363
|
-
/** The number of items returned in this response. */
|
|
4364
|
-
count?: number | null;
|
|
4365
|
-
/** The offset which was requested. Returned if offset paging was used. */
|
|
4366
|
-
offset?: number | null;
|
|
4367
|
-
/** The total number of items that match the query. Returned if offset paging was used. */
|
|
4368
|
-
total?: number | null;
|
|
4369
|
-
/** Cursors to navigate through result pages. Returned if cursor paging was used. */
|
|
4370
|
-
cursors?: Cursors;
|
|
4371
|
-
}
|
|
4372
|
-
interface Cursors {
|
|
3547
|
+
eventTime?: Date | null;
|
|
4373
3548
|
/**
|
|
4374
|
-
*
|
|
4375
|
-
*
|
|
3549
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
3550
|
+
* (for example, GDPR).
|
|
4376
3551
|
*/
|
|
4377
|
-
|
|
3552
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
3553
|
+
/** If present, indicates the action that triggered the event. */
|
|
3554
|
+
originatedFrom?: string | null;
|
|
4378
3555
|
/**
|
|
4379
|
-
*
|
|
4380
|
-
*
|
|
3556
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
3557
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
4381
3558
|
*/
|
|
4382
|
-
|
|
3559
|
+
entityEventSequence?: string | null;
|
|
4383
3560
|
}
|
|
4384
|
-
|
|
4385
|
-
|
|
4386
|
-
|
|
4387
|
-
|
|
4388
|
-
|
|
4389
|
-
|
|
3561
|
+
/** @oneof */
|
|
3562
|
+
interface DomainEventBodyOneOf {
|
|
3563
|
+
createdEvent?: EntityCreatedEvent;
|
|
3564
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
3565
|
+
deletedEvent?: EntityDeletedEvent;
|
|
3566
|
+
actionEvent?: ActionEvent;
|
|
3567
|
+
}
|
|
3568
|
+
interface EntityCreatedEvent {
|
|
3569
|
+
entity?: string;
|
|
3570
|
+
}
|
|
3571
|
+
interface RestoreInfo {
|
|
3572
|
+
deletedDate?: Date | null;
|
|
3573
|
+
}
|
|
3574
|
+
interface EntityUpdatedEvent {
|
|
4390
3575
|
/**
|
|
4391
|
-
*
|
|
4392
|
-
*
|
|
4393
|
-
*
|
|
3576
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
3577
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
3578
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
4394
3579
|
*/
|
|
4395
|
-
|
|
3580
|
+
currentEntity?: string;
|
|
4396
3581
|
}
|
|
4397
|
-
interface
|
|
4398
|
-
/**
|
|
4399
|
-
|
|
3582
|
+
interface EntityDeletedEvent {
|
|
3583
|
+
/** Entity that was deleted. */
|
|
3584
|
+
deletedEntity?: string | null;
|
|
3585
|
+
}
|
|
3586
|
+
interface ActionEvent {
|
|
3587
|
+
body?: string;
|
|
3588
|
+
}
|
|
3589
|
+
interface Empty {
|
|
4400
3590
|
}
|
|
4401
|
-
interface
|
|
3591
|
+
interface MessageEnvelope {
|
|
4402
3592
|
/**
|
|
4403
|
-
*
|
|
3593
|
+
* App instance ID.
|
|
4404
3594
|
* @format GUID
|
|
4405
3595
|
*/
|
|
4406
|
-
|
|
3596
|
+
instanceId?: string | null;
|
|
4407
3597
|
/**
|
|
4408
|
-
*
|
|
4409
|
-
* @
|
|
3598
|
+
* Event type.
|
|
3599
|
+
* @maxLength 150
|
|
4410
3600
|
*/
|
|
4411
|
-
|
|
4412
|
-
|
|
4413
|
-
|
|
4414
|
-
/**
|
|
4415
|
-
|
|
3601
|
+
eventType?: string;
|
|
3602
|
+
/** The identification type and identity data. */
|
|
3603
|
+
identity?: IdentificationData;
|
|
3604
|
+
/** Stringify payload. */
|
|
3605
|
+
data?: string;
|
|
4416
3606
|
}
|
|
4417
|
-
interface
|
|
3607
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
4418
3608
|
/**
|
|
4419
|
-
*
|
|
3609
|
+
* ID of a site visitor that has not logged in to the site.
|
|
4420
3610
|
* @format GUID
|
|
4421
3611
|
*/
|
|
4422
|
-
|
|
3612
|
+
anonymousVisitorId?: string;
|
|
4423
3613
|
/**
|
|
4424
|
-
*
|
|
3614
|
+
* ID of a site visitor that has logged in to the site.
|
|
4425
3615
|
* @format GUID
|
|
4426
3616
|
*/
|
|
4427
|
-
|
|
4428
|
-
/** Refund to upsert. */
|
|
4429
|
-
refund?: Refund;
|
|
4430
|
-
}
|
|
4431
|
-
interface UpsertRefundResponse {
|
|
4432
|
-
/** Updated order transactions. */
|
|
4433
|
-
orderTransactions?: OrderTransactions;
|
|
4434
|
-
}
|
|
4435
|
-
interface GetOrderOutOfBoxRequest {
|
|
3617
|
+
memberId?: string;
|
|
4436
3618
|
/**
|
|
4437
|
-
*
|
|
4438
|
-
* @
|
|
4439
|
-
* @maxLength 100
|
|
3619
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3620
|
+
* @format GUID
|
|
4440
3621
|
*/
|
|
4441
|
-
|
|
4442
|
-
}
|
|
4443
|
-
interface GetOrderOutOfBoxResponse {
|
|
3622
|
+
wixUserId?: string;
|
|
4444
3623
|
/**
|
|
4445
|
-
*
|
|
4446
|
-
* @
|
|
4447
|
-
* @maxLength 100
|
|
3624
|
+
* ID of an app.
|
|
3625
|
+
* @format GUID
|
|
4448
3626
|
*/
|
|
4449
|
-
|
|
3627
|
+
appId?: string;
|
|
3628
|
+
/** @readonly */
|
|
3629
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
4450
3630
|
}
|
|
4451
|
-
|
|
3631
|
+
/** @oneof */
|
|
3632
|
+
interface IdentificationDataIdOneOf {
|
|
4452
3633
|
/**
|
|
4453
|
-
*
|
|
4454
|
-
* @
|
|
4455
|
-
* @maxLength 100
|
|
3634
|
+
* ID of a site visitor that has not logged in to the site.
|
|
3635
|
+
* @format GUID
|
|
4456
3636
|
*/
|
|
4457
|
-
|
|
4458
|
-
}
|
|
4459
|
-
interface GetOrderAgcResponse {
|
|
3637
|
+
anonymousVisitorId?: string;
|
|
4460
3638
|
/**
|
|
4461
|
-
*
|
|
4462
|
-
* @
|
|
4463
|
-
* @maxLength 100
|
|
3639
|
+
* ID of a site visitor that has logged in to the site.
|
|
3640
|
+
* @format GUID
|
|
4464
3641
|
*/
|
|
4465
|
-
|
|
4466
|
-
}
|
|
4467
|
-
interface GetOrderWithFilterByLocationRequest {
|
|
3642
|
+
memberId?: string;
|
|
4468
3643
|
/**
|
|
4469
|
-
*
|
|
4470
|
-
* @
|
|
4471
|
-
* @maxLength 100
|
|
3644
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
3645
|
+
* @format GUID
|
|
4472
3646
|
*/
|
|
4473
|
-
|
|
4474
|
-
}
|
|
4475
|
-
interface GetOrderWithFilterByLocationResponse {
|
|
3647
|
+
wixUserId?: string;
|
|
4476
3648
|
/**
|
|
4477
|
-
*
|
|
4478
|
-
* @
|
|
4479
|
-
* @maxLength 100
|
|
3649
|
+
* ID of an app.
|
|
3650
|
+
* @format GUID
|
|
4480
3651
|
*/
|
|
4481
|
-
|
|
4482
|
-
}
|
|
4483
|
-
interface V1UpdateOrderRequest {
|
|
4484
|
-
/** Order to be updated. */
|
|
4485
|
-
order?: Order;
|
|
3652
|
+
appId?: string;
|
|
4486
3653
|
}
|
|
4487
|
-
|
|
4488
|
-
|
|
4489
|
-
|
|
3654
|
+
declare enum WebhookIdentityType {
|
|
3655
|
+
UNKNOWN = "UNKNOWN",
|
|
3656
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
3657
|
+
MEMBER = "MEMBER",
|
|
3658
|
+
WIX_USER = "WIX_USER",
|
|
3659
|
+
APP = "APP"
|
|
4490
3660
|
}
|
|
3661
|
+
/** @enumType */
|
|
3662
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
4491
3663
|
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
4492
3664
|
/** insert/update documents */
|
|
4493
3665
|
update?: InternalDocumentUpdateOperation;
|
|
@@ -4639,6 +3811,15 @@ interface BatchOfTriggerReindexOrderRequest {
|
|
|
4639
3811
|
/** @maxSize 25 */
|
|
4640
3812
|
requests?: TriggerReindexOrderRequest[];
|
|
4641
3813
|
}
|
|
3814
|
+
interface TriggerReindexOrderRequest {
|
|
3815
|
+
/** @format GUID */
|
|
3816
|
+
metasiteId?: string;
|
|
3817
|
+
/**
|
|
3818
|
+
* @minLength 1
|
|
3819
|
+
* @maxLength 100
|
|
3820
|
+
*/
|
|
3821
|
+
orderId?: string;
|
|
3822
|
+
}
|
|
4642
3823
|
interface DiffmatokyPayload {
|
|
4643
3824
|
left?: string;
|
|
4644
3825
|
right?: string;
|
|
@@ -4655,6 +3836,10 @@ interface ContinueSideEffectsFlowInLegacyData {
|
|
|
4655
3836
|
orderId?: string;
|
|
4656
3837
|
ordersExperiments?: OrdersExperiments;
|
|
4657
3838
|
}
|
|
3839
|
+
interface SnapshotMessage {
|
|
3840
|
+
_id?: string;
|
|
3841
|
+
opType?: number;
|
|
3842
|
+
}
|
|
4658
3843
|
interface IndexingMessage {
|
|
4659
3844
|
_id?: string;
|
|
4660
3845
|
opType?: number;
|
|
@@ -4672,12 +3857,94 @@ interface GetOrderResponse {
|
|
|
4672
3857
|
/** The requested order. */
|
|
4673
3858
|
order?: Order;
|
|
4674
3859
|
}
|
|
3860
|
+
interface InternalQueryOrdersRequest {
|
|
3861
|
+
/** Query options. */
|
|
3862
|
+
query?: PlatformQuery;
|
|
3863
|
+
}
|
|
3864
|
+
interface PlatformQuery extends PlatformQueryPagingMethodOneOf {
|
|
3865
|
+
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
3866
|
+
paging?: PlatformPaging;
|
|
3867
|
+
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
3868
|
+
cursorPaging?: CursorPaging;
|
|
3869
|
+
/** Filter object. */
|
|
3870
|
+
filter?: Record<string, any> | null;
|
|
3871
|
+
/** Sorting options. For example, `[{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}]`. */
|
|
3872
|
+
sort?: Sorting[];
|
|
3873
|
+
}
|
|
3874
|
+
/** @oneof */
|
|
3875
|
+
interface PlatformQueryPagingMethodOneOf {
|
|
3876
|
+
/** Pointer to page of results using offset. Cannot be used together with `cursorPaging`. */
|
|
3877
|
+
paging?: PlatformPaging;
|
|
3878
|
+
/** Cursor pointing to page of results. Cannot be used together with `paging`. `cursorPaging.cursor` can not be used together with `filter` or `sort`. */
|
|
3879
|
+
cursorPaging?: CursorPaging;
|
|
3880
|
+
}
|
|
3881
|
+
interface Sorting {
|
|
3882
|
+
/**
|
|
3883
|
+
* Name of the field to sort by.
|
|
3884
|
+
* @maxLength 512
|
|
3885
|
+
*/
|
|
3886
|
+
fieldName?: string;
|
|
3887
|
+
/** Sort order. */
|
|
3888
|
+
order?: SortOrderWithLiterals;
|
|
3889
|
+
}
|
|
3890
|
+
declare enum SortOrder {
|
|
3891
|
+
ASC = "ASC",
|
|
3892
|
+
DESC = "DESC"
|
|
3893
|
+
}
|
|
3894
|
+
/** @enumType */
|
|
3895
|
+
type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
3896
|
+
interface PlatformPaging {
|
|
3897
|
+
/**
|
|
3898
|
+
* Number of items to load.
|
|
3899
|
+
* @max 100
|
|
3900
|
+
*/
|
|
3901
|
+
limit?: number | null;
|
|
3902
|
+
/** Number of items to skip in the current sort order. */
|
|
3903
|
+
offset?: number | null;
|
|
3904
|
+
}
|
|
3905
|
+
interface CursorPaging {
|
|
3906
|
+
/**
|
|
3907
|
+
* Maximum number of items to return in the results.
|
|
3908
|
+
* @max 100
|
|
3909
|
+
*/
|
|
3910
|
+
limit?: number | null;
|
|
3911
|
+
/**
|
|
3912
|
+
* Pointer to the next or previous page in the list of results.
|
|
3913
|
+
*
|
|
3914
|
+
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
3915
|
+
* Not relevant for the first request.
|
|
3916
|
+
* @maxLength 16000
|
|
3917
|
+
*/
|
|
3918
|
+
cursor?: string | null;
|
|
3919
|
+
}
|
|
4675
3920
|
interface InternalQueryOrdersResponse {
|
|
4676
3921
|
/** List of orders. */
|
|
4677
3922
|
orders?: Order[];
|
|
4678
3923
|
/** Details on the paged set of results returned. */
|
|
4679
3924
|
metadata?: PlatformPagingMetadata;
|
|
4680
3925
|
}
|
|
3926
|
+
interface PlatformPagingMetadata {
|
|
3927
|
+
/** The number of items returned in this response. */
|
|
3928
|
+
count?: number | null;
|
|
3929
|
+
/** The offset which was requested. Returned if offset paging was used. */
|
|
3930
|
+
offset?: number | null;
|
|
3931
|
+
/** The total number of items that match the query. Returned if offset paging was used. */
|
|
3932
|
+
total?: number | null;
|
|
3933
|
+
/** Cursors to navigate through result pages. Returned if cursor paging was used. */
|
|
3934
|
+
cursors?: Cursors;
|
|
3935
|
+
}
|
|
3936
|
+
interface Cursors {
|
|
3937
|
+
/**
|
|
3938
|
+
* Cursor string pointing to the next page in the list of results.
|
|
3939
|
+
* @maxLength 16000
|
|
3940
|
+
*/
|
|
3941
|
+
next?: string | null;
|
|
3942
|
+
/**
|
|
3943
|
+
* Cursor pointing to the previous page in the list of results.
|
|
3944
|
+
* @maxLength 16000
|
|
3945
|
+
*/
|
|
3946
|
+
prev?: string | null;
|
|
3947
|
+
}
|
|
4681
3948
|
interface QueryOrderRequest {
|
|
4682
3949
|
/** Query options. */
|
|
4683
3950
|
query?: PlatformQuery;
|
|
@@ -5834,6 +5101,13 @@ interface V1MarkOrderAsPaidResponse {
|
|
|
5834
5101
|
/** Updated order. */
|
|
5835
5102
|
order?: Order;
|
|
5836
5103
|
}
|
|
5104
|
+
/** Triggered when the payment status of an order is updated */
|
|
5105
|
+
interface PaymentStatusUpdated {
|
|
5106
|
+
/** The order that was updated */
|
|
5107
|
+
order?: Order;
|
|
5108
|
+
/** The previous status (before the update) */
|
|
5109
|
+
previousPaymentStatus?: PaymentStatusWithLiterals;
|
|
5110
|
+
}
|
|
5837
5111
|
interface V1BulkMarkOrdersAsPaidRequest {
|
|
5838
5112
|
/**
|
|
5839
5113
|
* IDs of orders to mark as paid.
|
|
@@ -6731,6 +6005,35 @@ interface OrderCreatedEnvelope {
|
|
|
6731
6005
|
* @slug created
|
|
6732
6006
|
*/
|
|
6733
6007
|
declare function onOrderCreated(handler: (event: OrderCreatedEnvelope) => void | Promise<void>): void;
|
|
6008
|
+
interface OrderPaymentStatusUpdatedEnvelope {
|
|
6009
|
+
data: PaymentStatusUpdated;
|
|
6010
|
+
metadata: EventMetadata;
|
|
6011
|
+
}
|
|
6012
|
+
/**
|
|
6013
|
+
* Triggered when an order's payment status is updated.
|
|
6014
|
+
* @permissionScope Manage Stores - all permissions
|
|
6015
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
6016
|
+
* @permissionScope Manage Stores
|
|
6017
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
6018
|
+
* @permissionScope Read eCommerce - all read permissions
|
|
6019
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
6020
|
+
* @permissionScope Read Orders
|
|
6021
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-ORDERS
|
|
6022
|
+
* @permissionScope Read Stores - all read permissions
|
|
6023
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
6024
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
6025
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
6026
|
+
* @permissionScope Manage eCommerce - all permissions
|
|
6027
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
6028
|
+
* @permissionScope Manage Orders
|
|
6029
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
6030
|
+
* @permissionId ECOM.READ_ORDERS
|
|
6031
|
+
* @webhook
|
|
6032
|
+
* @eventType wix.ecom.v1.order_payment_status_updated
|
|
6033
|
+
* @serviceIdentifier com.wix.ecom.orders.v1.Orders
|
|
6034
|
+
* @slug payment_status_updated
|
|
6035
|
+
*/
|
|
6036
|
+
declare function onOrderPaymentStatusUpdated(handler: (event: OrderPaymentStatusUpdatedEnvelope) => void | Promise<void>): void;
|
|
6734
6037
|
type OrderNonNullablePaths = `number` | `lineItems` | `lineItems.${number}._id` | `lineItems.${number}.productName.original` | `lineItems.${number}.catalogReference.catalogItemId` | `lineItems.${number}.catalogReference.appId` | `lineItems.${number}.quantity` | `lineItems.${number}.totalDiscount.amount` | `lineItems.${number}.totalDiscount.formattedAmount` | `lineItems.${number}.physicalProperties.shippable` | `lineItems.${number}.itemType.preset` | `lineItems.${number}.itemType.custom` | `lineItems.${number}.paymentOption` | `lineItems.${number}.taxDetails.taxRate` | `lineItems.${number}.taxInfo.taxIncludedInPrice` | `lineItems.${number}.digitalFile.fileId` | `lineItems.${number}.subscriptionInfo.cycleNumber` | `lineItems.${number}.subscriptionInfo.subscriptionOptionTitle` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.frequency` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.autoRenewal` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.enableCustomerCancellation` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.freeTrialPeriod.frequency` | `lineItems.${number}.subscriptionInfo.subscriptionSettings.freeTrialPeriod.interval` | `lineItems.${number}.priceDescription.original` | `lineItems.${number}.taxableAddress.addressType` | `buyerInfo.visitorId` | `buyerInfo.memberId` | `paymentStatus` | `fulfillmentStatus` | `weightUnit` | `taxIncludedInPrices` | `priceSummary.subtotal.amount` | `priceSummary.subtotal.formattedAmount` | `billingInfo.address.streetAddress.number` | `billingInfo.address.streetAddress.name` | `billingInfo.contactDetails.vatId._id` | `billingInfo.contactDetails.vatId.type` | `shippingInfo.title` | `shippingInfo.logistics.shippingDestination.address.streetAddress.number` | `shippingInfo.logistics.shippingDestination.address.streetAddress.name` | `shippingInfo.logistics.shippingDestination.contactDetails.vatId._id` | `shippingInfo.logistics.shippingDestination.contactDetails.vatId.type` | `shippingInfo.logistics.pickupDetails.pickupMethod` | `shippingInfo.cost.price.amount` | `shippingInfo.cost.price.formattedAmount` | `shippingInfo.cost.taxDetails.taxRate` | `status` | `taxSummary.totalTax.amount` | `taxSummary.totalTax.formattedAmount` | `taxInfo.totalTax.amount` | `taxInfo.totalTax.formattedAmount` | `taxInfo.taxBreakdown` | `taxInfo.taxBreakdown.${number}.taxName` | `taxInfo.taxBreakdown.${number}.taxType` | `taxInfo.taxBreakdown.${number}.jurisdiction` | `taxInfo.taxBreakdown.${number}.jurisdictionType` | `taxInfo.taxBreakdown.${number}.rate` | `appliedDiscounts` | `appliedDiscounts.${number}.coupon._id` | `appliedDiscounts.${number}.coupon.code` | `appliedDiscounts.${number}.coupon.name` | `appliedDiscounts.${number}.coupon.amount.amount` | `appliedDiscounts.${number}.coupon.amount.formattedAmount` | `appliedDiscounts.${number}.merchantDiscount.discountReason` | `appliedDiscounts.${number}.discountRule._id` | `appliedDiscounts.${number}.discountRule.name.original` | `appliedDiscounts.${number}.discountType` | `activities` | `activities.${number}.customActivity.appId` | `activities.${number}.customActivity.type` | `activities.${number}.merchantComment.message` | `activities.${number}.orderRefunded.manual` | `activities.${number}.orderRefunded.amount.amount` | `activities.${number}.orderRefunded.amount.formattedAmount` | `activities.${number}.orderRefunded.reason` | `activities.${number}.type` | `attributionSource` | `createdBy.userId` | `createdBy.memberId` | `createdBy.visitorId` | `createdBy.appId` | `channelInfo.type` | `customFields` | `customFields.${number}.title` | `balanceSummary.balance.amount` | `balanceSummary.balance.formattedAmount` | `balanceSummary.paid.amount` | `balanceSummary.paid.formattedAmount` | `additionalFees` | `additionalFees.${number}.name` | `additionalFees.${number}.price.amount` | `additionalFees.${number}.price.formattedAmount` | `additionalFees.${number}.taxDetails.taxRate` | `additionalFees.${number}._id` | `recipientInfo.address.streetAddress.number` | `recipientInfo.address.streetAddress.name` | `recipientInfo.contactDetails.vatId._id` | `recipientInfo.contactDetails.vatId.type` | `tags.privateTags.tagIds` | `businessLocation._id` | `businessLocation.name` | `payAfterFreeTrial.subtotal.amount` | `payAfterFreeTrial.subtotal.formattedAmount`;
|
|
6735
6038
|
/**
|
|
6736
6039
|
* Prepares payment collection for given ecom order. This is the first of 2-step process of payment collection.
|
|
@@ -7507,4 +6810,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
7507
6810
|
unassignTags?: Tags;
|
|
7508
6811
|
}
|
|
7509
6812
|
|
|
7510
|
-
export { NonRefundableReason as $, AdjustmentType as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, OrderStatus as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, DiscountType as H, ItemTypeItemType as I, JurisdictionType as J, DiscountReason as K, LineItemQuantityChangeType as L, type MaskedOrder as M, ActivityType as N, type Order as O, type Price as P, AttributionSource as Q, ChannelType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ScheduledAction as X, DurationUnit as Y, PaymentCollectabilityStatus as Z, RefundableStatus as _, type PreparePaymentCollectionOptions as a, type PriceSummary as a$, ManuallyRefundableReason as a0, RestockType as a1, TransactionStatus as a2, AuthorizationCaptureStatus as a3, AuthorizationVoidStatus as a4, Reason as a5, ActionType as a6, ChargebackStatus as a7, MembershipPaymentStatus as a8, RefundStatus as a9, type Color as aA, type FocalPoint as aB, type PhysicalProperties as aC, type ItemType as aD, type ItemTypeItemTypeDataOneOf as aE, type ItemTaxFullDetails as aF, type LineItemTaxInfo as aG, type LineItemTaxBreakdown as aH, type DigitalFile as aI, type SubscriptionInfo as aJ, type SubscriptionTitle as aK, type SubscriptionDescription as aL, type SubscriptionSettings as aM, type FreeTrialPeriod as aN, type BillingAdjustment as aO, type BillingAdjustmentPriceSummary as aP, type PriceDescription as aQ, type LocationAndQuantity as aR, type TaxableAddress as aS, type TaxableAddressTaxableAddressDataOneOf as aT, type ExtendedFields as aU, type ModifierGroup as aV, type TranslatableString as aW, type ItemModifier as aX, type BuyerInfo as aY, type BuyerInfoIdOneOf as aZ, type CurrencyConversionDetails as a_, WebhookIdentityType as aa, TextDetection as ab, AnimationDetection as ac, PreviewEmailType as ad, State as ae, Namespace as af, SortOrder as ag, VersioningMode as ah, OrderApprovalStrategy as ai, DeltaPaymentOptionType as aj, InventoryAction as ak, Placement as al, SubdivisionType as am, SourceType as an, CustomFieldGroup as ao, ValueType as ap, DepositType as aq, InvoiceStatus as ar, type OrderLineItem as as, type ProductName as at, type CatalogReference as au, type DescriptionLine as av, type DescriptionLineValueOneOf as aw, type DescriptionLineDescriptionLineValueOneOf as ax, type DescriptionLineName as ay, type PlainTextValue as az, type PreparePaymentCollectionResponse as b, type RegularPaymentPaymentMethodDetailsOneOf as b$, type AddressWithContact as b0, type Address as b1, type StreetAddress as b2, type AddressLocation as b3, type FullAddressContactDetails as b4, type VatId as b5, type V1ShippingInformation as b6, type DeliveryLogistics as b7, type DeliveryLogisticsAddressOneOf as b8, type PickupDetails as b9, type LineItemChanges as bA, type LineItemQuantityChange as bB, type LineItemPriceChange as bC, type ManagedLineItem as bD, type ManagedDiscount as bE, type TranslatedValue as bF, type LineItemAmount as bG, type ManagedAdditionalFee as bH, type TotalPriceChange as bI, type ShippingInformationChange as bJ, type ShippingInformation as bK, type SavedPaymentMethod as bL, type AuthorizedPaymentCreated as bM, type AuthorizedPaymentCaptured as bN, type AuthorizedPaymentVoided as bO, type RefundInitiated as bP, type RefundedPayment as bQ, type RefundedPaymentKindOneOf as bR, type RegularPaymentRefund as bS, type GiftCardPaymentRefund as bT, type MembershipPaymentRefund as bU, type PaymentRefunded as bV, type PaymentRefundFailed as bW, type RefundedAsStoreCredit as bX, type PaymentPending as bY, type PaymentPendingPaymentDetailsOneOf as bZ, type RegularPayment as b_, type PickupAddress as ba, type DeliveryTimeSlot as bb, type ShippingPrice as bc, type ShippingRegion as bd, type TaxSummary as be, type OrderTaxInfo as bf, type OrderTaxBreakdown as bg, type AppliedDiscount as bh, type AppliedDiscountDiscountSourceOneOf as bi, type Coupon as bj, type MerchantDiscount as bk, type MerchantDiscountMerchantDiscountReasonOneOf as bl, type DiscountRule as bm, type DiscountRuleName as bn, type LineItemDiscount as bo, type Activity as bp, type ActivityContentOneOf as bq, type CustomActivity as br, type MerchantComment as bs, type OrderRefunded as bt, type OrderCreatedFromExchange as bu, type NewExchangeOrderCreated as bv, type LineItemExchangeData as bw, type DraftOrderChangesApplied as bx, type OrderChange as by, type OrderChangeValueOneOf as bz, type PreparePaymentCollectionApplicationErrors as c, type RefundSideEffects as c$, type CreditCardDetails as c0, type PaymentCanceled as c1, type PaymentCanceledPaymentDetailsOneOf as c2, type PaymentDeclined as c3, type PaymentDeclinedPaymentDetailsOneOf as c4, type ReceiptCreated as c5, type ReceiptCreatedReceiptInfoOneOf as c6, type WixReceipt as c7, type ExternalReceipt as c8, type ReceiptSent as c9, type MarkOrderAsPaidRequest as cA, type MarkOrderAsPaidResponse as cB, type BulkMarkOrdersAsPaidRequest as cC, type BulkMarkOrdersAsPaidResponse as cD, type BulkOrderResult as cE, type ItemMetadata as cF, type ApplicationError as cG, type BulkActionMetadata as cH, type GetRefundabilityStatusRequest as cI, type GetRefundabilityStatusResponse as cJ, type Refundability as cK, type RefundabilityAdditionalRefundabilityInfoOneOf as cL, type CreatePaymentGatewayOrderRequest as cM, type ChargedBy as cN, type CreatePaymentGatewayOrderResponse as cO, type ChargeMembershipsRequest as cP, type MembershipChargeItem as cQ, type MembershipName as cR, type ServiceProperties as cS, type ChargeMembershipsResponse as cT, type TriggerRefundRequest as cU, type PaymentRefund as cV, type RefundDetails as cW, type RefundItem as cX, type LineItemRefund as cY, type AdditionalFeeRefund as cZ, type ShippingRefund as c_, type ReceiptSentReceiptInfoOneOf as ca, type ChargebackCreated as cb, type ChargebackReversed as cc, type CreatedBy as cd, type CreatedByStringOneOf as ce, type ChannelInfo as cf, type CustomField as cg, type BalanceSummary as ch, type Balance as ci, type AdditionalFee as cj, type FulfillmentStatusesAggregate as ck, type Tags as cl, type TagList as cm, type Location as cn, type OrderApproved as co, type OrdersExperiments as cp, type OrderRejectedEventOrderRejected as cq, type OrderItemsRestocked as cr, type V1RestockItem as cs, type PreparePaymentCollectionRequest as ct, type RedirectUrls as cu, type DelayedCaptureSettings as cv, type Duration as cw, type GetPaymentCollectabilityStatusRequest as cx, type RecordManuallyCollectedPaymentRequest as cy, type RecordManuallyCollectedPaymentResponse as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type SendRefundEmailRequest as d$, type RestockInfo as d0, type RestockItem as d1, type TriggerRefundResponse as d2, type OrderTransactions as d3, type Payment as d4, type PaymentPaymentDetailsOneOf as d5, type PaymentReceiptInfoOneOf as d6, type RegularPaymentDetails as d7, type RegularPaymentDetailsPaymentMethodDetailsOneOf as d8, type CreditCardPaymentMethodDetails as d9, type DomainEventBodyOneOf as dA, type EntityCreatedEvent as dB, type RestoreInfo as dC, type EntityUpdatedEvent as dD, type EntityDeletedEvent as dE, type ActionEvent as dF, type Empty as dG, type MessageEnvelope as dH, type IdentificationData as dI, type IdentificationDataIdOneOf as dJ, type ImageContent as dK, type SendBuyerConfirmationEmailRequest as dL, type SendBuyerConfirmationEmailResponse as dM, type SendBuyerPaymentsReceivedEmailRequest as dN, type SendBuyerPaymentsReceivedEmailResponse as dO, type SendBuyerPickupConfirmationEmailRequest as dP, type SendBuyerPickupConfirmationEmailResponse as dQ, type BulkSendBuyerPickupConfirmationEmailsRequest as dR, type BulkSendBuyerPickupConfirmationEmailsResponse as dS, type SendBuyerShippingConfirmationEmailRequest as dT, type SendBuyerShippingConfirmationEmailResponse as dU, type BulkSendBuyerShippingConfirmationEmailsRequest as dV, type BulkSendBuyerShippingConfirmationEmailsResponse as dW, type SendMerchantOrderReceivedNotificationRequest as dX, type SendMerchantOrderReceivedNotificationResponse as dY, type SendCancelRefundEmailRequest as dZ, type SendCancelRefundEmailResponse as d_, type AuthorizationDetails as da, type AuthorizationCapture as db, type AuthorizationActionFailureDetails as dc, type AuthorizationVoid as dd, type V1ScheduledAction as de, type Chargeback as df, type GiftCardPaymentDetails as dg, type MembershipPaymentDetails as dh, type WixReceiptInfo as di, type ExternalReceiptInfo as dj, type Refund as dk, type RefundTransaction as dl, type RefundStatusInfo as dm, type AggregatedRefundSummary as dn, type RefundItemsBreakdown as dp, type LineItemRefundSummary as dq, type CalculateRefundRequest as dr, type CalculateRefundItemRequest as ds, type CalculateRefundResponse as dt, type CalculateRefundItemResponse as du, type VoidAuthorizedPaymentsRequest as dv, type CaptureAuthorizedPaymentsRequest as dw, type ChargeSavedPaymentMethodRequest as dx, type ChargeSavedPaymentMethodResponse as dy, type DomainEvent as dz, type PaymentCapture as e, type InternalDocumentUpdateByFilterOperation as e$, type SendRefundEmailResponse as e0, type SendMerchantOrderReceivedPushRequest as e1, type SendMerchantOrderReceivedPushResponse as e2, type PreviewEmailByTypeRequest as e3, type PreviewEmailByTypeResponse as e4, type PreviewRefundEmailRequest as e5, type PreviewRefundEmailResponse as e6, type PreviewCancelEmailRequest as e7, type PreviewCancelEmailResponse as e8, type PreviewCancelRefundEmailRequest as e9, type PlatformQueryPagingMethodOneOf as eA, type Sorting as eB, type PlatformPaging as eC, type CursorPaging as eD, type QueryOrdersForMetasiteResponse as eE, type PlatformPagingMetadata as eF, type Cursors as eG, type GetOrderForMetasiteRequest as eH, type GetOrderForMetasiteResponse as eI, type ListOrderTransactionsForMetasiteRequest as eJ, type ListOrderTransactionsForMetasiteResponse as eK, type UpsertRefundRequest as eL, type UpsertRefundResponse as eM, type GetOrderOutOfBoxRequest as eN, type GetOrderOutOfBoxResponse as eO, type GetOrderAgcRequest as eP, type GetOrderAgcResponse as eQ, type GetOrderWithFilterByLocationRequest as eR, type GetOrderWithFilterByLocationResponse as eS, type V1UpdateOrderRequest as eT, type V1UpdateOrderResponse as eU, type UpdateInternalDocumentsEvent as eV, type UpdateInternalDocumentsEventOperationOneOf as eW, type InternalDocument as eX, type InternalDocumentUpdateOperation as eY, type DeleteByIdsOperation as eZ, type DeleteByFilterOperation as e_, type PreviewCancelRefundEmailResponse as ea, type PreviewBuyerPaymentsReceivedEmailRequest as eb, type PreviewBuyerPaymentsReceivedEmailResponse as ec, type PreviewBuyerConfirmationEmailRequest as ed, type PreviewBuyerConfirmationEmailResponse as ee, type PreviewBuyerPickupConfirmationEmailRequest as ef, type PreviewBuyerPickupConfirmationEmailResponse as eg, type PreviewShippingConfirmationEmailRequest as eh, type PreviewShippingConfirmationEmailResponse as ei, type PreviewResendDownloadLinksEmailRequest as ej, type PreviewResendDownloadLinksEmailResponse as ek, type TriggerReindexOrderRequest as el, type SnapshotMessage as em, type PaymentStatusUpdated as en, type GetMetasiteDataRequest as eo, type GetMetasiteDataResponse as ep, type MetaSite as eq, type App as er, type SeoData as es, type MetaTag as et, type HtmlApplication as eu, type ExternalUriMapping as ev, type UserDataResponse as ew, type QueryOrdersForMetasiteRequest as ex, type InternalQueryOrdersRequest as ey, type PlatformQuery as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type UpdateBuyerInfoResponse as f$, type InternalUpdateExistingOperation as f0, type VersionedDocumentUpdateOperation as f1, type VersionedDeleteByIdsOperation as f2, type VersionedDocumentId as f3, type TriggerReindexRequest as f4, type TriggerReindexResponse as f5, type BatchOfTriggerReindexOrderRequest as f6, type DiffmatokyPayload as f7, type ErrorInformation as f8, type ContinueSideEffectsFlowInLegacyData as f9, type ItemChangedDetails as fA, type AppliedDiscountDelta as fB, type AppliedDiscountDeltaDeltaOneOf as fC, type AdditionalFeeDelta as fD, type AdditionalFeeDeltaDeltaOneOf as fE, type DraftOrderCommitSettings as fF, type InventoryUpdateDetails as fG, type CommitDeltasResponse as fH, type OrderDeltasCommitted as fI, type CommittedDiffs as fJ, type CommittedDiffsShippingUpdateInfoOneOf as fK, type LineItemDelta as fL, type LineItemDeltaDeltaOneOf as fM, type ArchiveOrderRequest as fN, type ArchiveOrderResponse as fO, type BulkArchiveOrdersRequest as fP, type BulkArchiveOrdersResponse as fQ, type BulkArchiveOrdersByFilterRequest as fR, type BulkArchiveOrdersByFilterResponse as fS, type UnArchiveOrderRequest as fT, type UnArchiveOrderResponse as fU, type BulkUnArchiveOrdersRequest as fV, type BulkUnArchiveOrdersResponse as fW, type BulkUnArchiveOrdersByFilterRequest as fX, type BulkUnArchiveOrdersByFilterResponse as fY, type UpdateBuyerInfoRequest as fZ, type BuyerInfoUpdate as f_, type IndexingMessage as fa, type GetOrderRequest as fb, type GetOrderResponse as fc, type InternalQueryOrdersResponse as fd, type QueryOrderRequest as fe, type QueryOrderResponse as ff, type SearchOrdersRequest as fg, type CursorSearch as fh, type CursorSearchPagingMethodOneOf as fi, type CursorPagingMetadata as fj, type CreateOrderRequest as fk, type OrderCreationSettings as fl, type OrderCreateNotifications as fm, type CreateOrderResponse as fn, type UpdateOrderRequest as fo, type UpdateOrderResponse as fp, type BulkUpdateOrdersRequest as fq, type CommitDeltasRequest as fr, type DraftOrderDiffs as fs, type DraftOrderDiffsShippingUpdateInfoOneOf as ft, type DraftOrderDiffsBuyerUpdateInfoOneOf as fu, type DraftOrderDiffsBillingUpdateInfoOneOf as fv, type DraftOrderDiffsRecipientUpdateInfoOneOf as fw, type V1LineItemDelta as fx, type V1LineItemDeltaDeltaOneOf as fy, type OrderLineItemChangedDetails as fz, type GetOrderApplicationErrors as g, type BulkMarkAsUnfulfilledResponse as g$, type UpdateBuyerEmailRequest as g0, type UpdateBuyerEmailResponse as g1, type UpdateOrderShippingAddressRequest as g2, type UpdateOrderShippingAddressResponse as g3, type UpdateBillingContactDetailsRequest as g4, type UpdateBillingContactDetailsResponse as g5, type UpdateOrderLineItemRequest as g6, type UpdateOrderLineItemResponse as g7, type UpdateOrderLineItemsRequest as g8, type MaskedOrderLineItem as g9, type PublicActivityContentOneOf as gA, type AddActivityResponse as gB, type AddActivitiesRequest as gC, type AddActivitiesResponse as gD, type UpdateActivityRequest as gE, type UpdateActivityResponse as gF, type DeleteActivityRequest as gG, type DeleteActivityResponse as gH, type UpdateLineItemsDescriptionLinesRequest as gI, type LineItemUpdate as gJ, type UpdateLineItemsDescriptionLinesResponse as gK, type MarkOrderAsSeenByHumanRequest as gL, type MarkOrderAsSeenByHumanResponse as gM, type CancelOrderRequest as gN, type OrderCanceledEventOrderCanceled as gO, type UpdateOrderStatusRequest as gP, type UpdateOrderStatusResponse as gQ, type MarkAsFulfilledRequest as gR, type MarkAsFulfilledResponse as gS, type FulfillmentStatusUpdated as gT, type BulkMarkAsFulfilledRequest as gU, type BulkMarkAsFulfilledResponse as gV, type BulkMarkAsFulfilledByFilterRequest as gW, type BulkMarkAsFulfilledByFilterResponse as gX, type MarkAsUnfulfilledRequest as gY, type MarkAsUnfulfilledResponse as gZ, type BulkMarkAsUnfulfilledRequest as g_, type UpdateOrderLineItemsResponse as ga, type AddInternalActivityRequest as gb, type InternalActivity as gc, type InternalActivityContentOneOf as gd, type OrderPlaced as ge, type OrderPaid as gf, type OrderFulfilled as gg, type OrderNotFulfilled as gh, type OrderCanceled as gi, type DownloadLinkSent as gj, type TrackingNumberAdded as gk, type TrackingNumberEdited as gl, type TrackingLinkAdded as gm, type ShippingConfirmationEmailSent as gn, type InvoiceAdded as go, type InvoiceSent as gp, type FulfillerEmailSent as gq, type ShippingAddressEdited as gr, type EmailEdited as gs, type PickupReadyEmailSent as gt, type OrderPartiallyPaid as gu, type OrderPending as gv, type OrderRejected as gw, type AddInternalActivityResponse as gx, type AddActivityRequest as gy, type PublicActivity as gz, type OrderSearch as h, type EventMetadata as h$, type BulkMarkAsUnfulfilledByFilterRequest as h0, type BulkMarkAsUnfulfilledByFilterResponse as h1, type BulkSetBusinessLocationRequest as h2, type BulkSetBusinessLocationResponse as h3, type BulkSetBusinessLocationResult as h4, type V1MarkOrderAsPaidRequest as h5, type V1MarkOrderAsPaidResponse as h6, type V1BulkMarkOrdersAsPaidRequest as h7, type V1BulkMarkOrdersAsPaidResponse as h8, type V1CreatePaymentGatewayOrderRequest as h9, type CommonAddress as hA, type CommonAddressStreetOneOf as hB, type Subdivision as hC, type StandardDetails as hD, type InvoiceDates as hE, type LineItems as hF, type LineItem as hG, type BigDecimalWrapper as hH, type LineItemTax as hI, type Source as hJ, type LineItemMetaData as hK, type Locale as hL, type TotalPrice as hM, type ItemizedFee as hN, type Discount as hO, type DiscountOneDiscountTypeOneOf as hP, type CalculatedTaxes as hQ, type CalculatedTax as hR, type Payments as hS, type InvoicesPayment as hT, type MetaData as hU, type InvoiceDynamicPriceTotals as hV, type CustomFieldValue as hW, type Value as hX, type Deposit as hY, type TriggerSideEffectsFromLegacyData as hZ, type BaseEventMetadata as h_, type V1CreatePaymentGatewayOrderResponse as ha, type GetShipmentsRequest as hb, type GetShipmentsResponse as hc, type AggregateOrdersRequest as hd, type AggregateOrdersResponse as he, type DecrementItemsQuantityRequest as hf, type DecrementData as hg, type DecrementItemsQuantityResponse as hh, type BulkUpdateOrderTagsRequest as hi, type BulkUpdateOrderTagsResult as hj, type Task as hk, type TaskKey as hl, type TaskAction as hm, type TaskActionActionOneOf as hn, type Complete as ho, type Cancel as hp, type Reschedule as hq, type InvoiceSentEvent as hr, type IdAndVersion as hs, type InvoiceFields as ht, type Customer as hu, type Email as hv, type QuotesAddress as hw, type AddressDescription as hx, type Phone as hy, type Company as hz, type CreateOrderOptions as i, type InvoiceStatusWithLiterals as i$, type PaymentCollectionCreatePaymentGatewayOrderOptions as i0, type ChargeMembershipsOptions as i1, type TriggerRefundOptions as i2, type OrderSearchSpec as i3, type CommitDeltasOptions as i4, type UpdateOrderLineItemIdentifiers as i5, type UpdateOrderLineItem as i6, type UpdateActivityIdentifiers as i7, type DeleteActivityIdentifiers as i8, type AggregateOrdersOptions as i9, type ManuallyRefundableReasonWithLiterals as iA, type RestockTypeWithLiterals as iB, type TransactionStatusWithLiterals as iC, type AuthorizationCaptureStatusWithLiterals as iD, type AuthorizationVoidStatusWithLiterals as iE, type ReasonWithLiterals as iF, type ActionTypeWithLiterals as iG, type ChargebackStatusWithLiterals as iH, type MembershipPaymentStatusWithLiterals as iI, type RefundStatusWithLiterals as iJ, type WebhookIdentityTypeWithLiterals as iK, type TextDetectionWithLiterals as iL, type AnimationDetectionWithLiterals as iM, type PreviewEmailTypeWithLiterals as iN, type StateWithLiterals as iO, type NamespaceWithLiterals as iP, type SortOrderWithLiterals as iQ, type VersioningModeWithLiterals as iR, type OrderApprovalStrategyWithLiterals as iS, type DeltaPaymentOptionTypeWithLiterals as iT, type InventoryActionWithLiterals as iU, type PlacementWithLiterals as iV, type SubdivisionTypeWithLiterals as iW, type SourceTypeWithLiterals as iX, type CustomFieldGroupWithLiterals as iY, type ValueTypeWithLiterals as iZ, type DepositTypeWithLiterals as i_, type DescriptionLineTypeWithLiterals as ia, type ItemTypeItemTypeWithLiterals as ib, type PaymentOptionTypeWithLiterals as ic, type JurisdictionTypeWithLiterals as id, type SubscriptionFrequencyWithLiterals as ie, type AdjustmentTypeWithLiterals as ig, type TaxableAddressTypeWithLiterals as ih, type PaymentStatusWithLiterals as ii, type FulfillmentStatusWithLiterals as ij, type WeightUnitWithLiterals as ik, type VatTypeWithLiterals as il, type PickupMethodWithLiterals as im, type OrderStatusWithLiterals as io, type DiscountTypeWithLiterals as ip, type DiscountReasonWithLiterals as iq, type LineItemQuantityChangeTypeWithLiterals as ir, type ActivityTypeWithLiterals as is, type AttributionSourceWithLiterals as it, type ChannelTypeWithLiterals as iu, type ScheduledActionWithLiterals as iv, type DurationUnitWithLiterals as iw, type PaymentCollectabilityStatusWithLiterals as ix, type RefundableStatusWithLiterals as iy, type NonRefundableReasonWithLiterals as iz, type CreateOrderApplicationErrors as j, type RecordManuallyCollectedPaymentApplicationErrors as j0, type PaymentCollectionMarkOrderAsPaidApplicationErrors as j1, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as j2, type TriggerRefundApplicationErrors as j3, type CommitDeltasApplicationErrors as j4, type UpdateOrderStatusApplicationErrors as j5, onOrderApproved as j6, onOrderUpdated as j7, onOrderCanceled as j8, onOrderCreated as j9, preparePaymentCollection as ja, getPaymentCollectabilityStatus as jb, voidAuthorizedPayments as jc, captureAuthorizedPayments as jd, getOrder as je, type CommonSearchWithEntityContext as jf, createOrder as jg, updateOrder as jh, bulkUpdateOrders as ji, cancelOrder as jj, bulkUpdateOrderTags as jk, type UpdateOrderApplicationErrors as k, type BulkUpdateOrdersResponse as l, type CancelOrderOptions as m, type CancelOrderResponse as n, type CancelOrderApplicationErrors as o, type BulkUpdateOrderTagsOptions as p, type BulkUpdateOrderTagsResponse as q, type OrderApprovedEnvelope as r, type OrderUpdatedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCreatedEnvelope as u, PaymentOptionType as v, SubscriptionFrequency as w, PaymentStatus as x, VatType as y, PickupMethod as z };
|
|
6813
|
+
export { RefundableStatus as $, AdjustmentType as A, type BulkUpdateOrdersOptions as B, type CaptureAuthorizedPaymentsResponse as C, DescriptionLineType as D, PickupMethod as E, FulfillmentStatus as F, type GetPaymentCollectabilityStatusResponse as G, OrderStatus as H, ItemTypeItemType as I, JurisdictionType as J, DiscountType as K, DiscountReason as L, type MaskedOrder as M, LineItemQuantityChangeType as N, type Order as O, type Price as P, ActivityType as Q, AttributionSource as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, type VoidAuthorizedPaymentsResponse as V, WeightUnit as W, ChannelType as X, ScheduledAction as Y, DurationUnit as Z, PaymentCollectabilityStatus as _, type PreparePaymentCollectionOptions as a, type AddressLocation as a$, NonRefundableReason as a0, ManuallyRefundableReason as a1, RestockType as a2, TransactionStatus as a3, AuthorizationCaptureStatus as a4, AuthorizationVoidStatus as a5, Reason as a6, ActionType as a7, ChargebackStatus as a8, MembershipPaymentStatus as a9, type ItemTypeItemTypeDataOneOf as aA, type ItemTaxFullDetails as aB, type LineItemTaxInfo as aC, type LineItemTaxBreakdown as aD, type DigitalFile as aE, type SubscriptionInfo as aF, type SubscriptionTitle as aG, type SubscriptionDescription as aH, type SubscriptionSettings as aI, type FreeTrialPeriod as aJ, type BillingAdjustment as aK, type BillingAdjustmentPriceSummary as aL, type PriceDescription as aM, type LocationAndQuantity as aN, type TaxableAddress as aO, type TaxableAddressTaxableAddressDataOneOf as aP, type ExtendedFields as aQ, type ModifierGroup as aR, type TranslatableString as aS, type ItemModifier as aT, type BuyerInfo as aU, type BuyerInfoIdOneOf as aV, type CurrencyConversionDetails as aW, type PriceSummary as aX, type AddressWithContact as aY, type Address as aZ, type StreetAddress as a_, RefundStatus as aa, WebhookIdentityType as ab, VersioningMode as ac, SortOrder as ad, OrderApprovalStrategy as ae, DeltaPaymentOptionType as af, InventoryAction as ag, Placement as ah, SubdivisionType as ai, SourceType as aj, CustomFieldGroup as ak, ValueType as al, DepositType as am, InvoiceStatus as an, type OrderLineItem as ao, type ProductName as ap, type CatalogReference as aq, type DescriptionLine as ar, type DescriptionLineValueOneOf as as, type DescriptionLineDescriptionLineValueOneOf as at, type DescriptionLineName as au, type PlainTextValue as av, type Color as aw, type FocalPoint as ax, type PhysicalProperties as ay, type ItemType as az, type PreparePaymentCollectionResponse as b, type PaymentDeclined as b$, type FullAddressContactDetails as b0, type VatId as b1, type V1ShippingInformation as b2, type DeliveryLogistics as b3, type DeliveryLogisticsAddressOneOf as b4, type PickupDetails as b5, type PickupAddress as b6, type DeliveryTimeSlot as b7, type ShippingPrice as b8, type ShippingRegion as b9, type ManagedDiscount as bA, type TranslatedValue as bB, type LineItemAmount as bC, type ManagedAdditionalFee as bD, type TotalPriceChange as bE, type ShippingInformationChange as bF, type ShippingInformation as bG, type SavedPaymentMethod as bH, type AuthorizedPaymentCreated as bI, type AuthorizedPaymentCaptured as bJ, type AuthorizedPaymentVoided as bK, type RefundInitiated as bL, type RefundedPayment as bM, type RefundedPaymentKindOneOf as bN, type RegularPaymentRefund as bO, type GiftCardPaymentRefund as bP, type MembershipPaymentRefund as bQ, type PaymentRefunded as bR, type PaymentRefundFailed as bS, type RefundedAsStoreCredit as bT, type PaymentPending as bU, type PaymentPendingPaymentDetailsOneOf as bV, type RegularPayment as bW, type RegularPaymentPaymentMethodDetailsOneOf as bX, type CreditCardDetails as bY, type PaymentCanceled as bZ, type PaymentCanceledPaymentDetailsOneOf as b_, type TaxSummary as ba, type OrderTaxInfo as bb, type OrderTaxBreakdown as bc, type AppliedDiscount as bd, type AppliedDiscountDiscountSourceOneOf as be, type Coupon as bf, type MerchantDiscount as bg, type MerchantDiscountMerchantDiscountReasonOneOf as bh, type DiscountRule as bi, type DiscountRuleName as bj, type LineItemDiscount as bk, type Activity as bl, type ActivityContentOneOf as bm, type CustomActivity as bn, type MerchantComment as bo, type OrderRefunded as bp, type OrderCreatedFromExchange as bq, type NewExchangeOrderCreated as br, type LineItemExchangeData as bs, type DraftOrderChangesApplied as bt, type OrderChange as bu, type OrderChangeValueOneOf as bv, type LineItemChanges as bw, type LineItemQuantityChange as bx, type LineItemPriceChange as by, type ManagedLineItem as bz, type PreparePaymentCollectionApplicationErrors as c, type OrderTransactions as c$, type PaymentDeclinedPaymentDetailsOneOf as c0, type ReceiptCreated as c1, type ReceiptCreatedReceiptInfoOneOf as c2, type WixReceipt as c3, type ExternalReceipt as c4, type ReceiptSent as c5, type ReceiptSentReceiptInfoOneOf as c6, type ChargebackCreated as c7, type ChargebackReversed as c8, type CreatedBy as c9, type BulkOrderResult as cA, type ItemMetadata as cB, type ApplicationError as cC, type BulkActionMetadata as cD, type GetRefundabilityStatusRequest as cE, type GetRefundabilityStatusResponse as cF, type Refundability as cG, type RefundabilityAdditionalRefundabilityInfoOneOf as cH, type CreatePaymentGatewayOrderRequest as cI, type ChargedBy as cJ, type CreatePaymentGatewayOrderResponse as cK, type ChargeMembershipsRequest as cL, type MembershipChargeItem as cM, type MembershipName as cN, type ServiceProperties as cO, type ChargeMembershipsResponse as cP, type TriggerRefundRequest as cQ, type PaymentRefund as cR, type RefundDetails as cS, type RefundItem as cT, type LineItemRefund as cU, type AdditionalFeeRefund as cV, type ShippingRefund as cW, type RefundSideEffects as cX, type RestockInfo as cY, type RestockItem as cZ, type TriggerRefundResponse as c_, type CreatedByStringOneOf as ca, type ChannelInfo as cb, type CustomField as cc, type BalanceSummary as cd, type Balance as ce, type AdditionalFee as cf, type FulfillmentStatusesAggregate as cg, type Tags as ch, type TagList as ci, type Location as cj, type OrderApproved as ck, type OrdersExperiments as cl, type OrderRejectedEventOrderRejected as cm, type OrderItemsRestocked as cn, type V1RestockItem as co, type PreparePaymentCollectionRequest as cp, type RedirectUrls as cq, type DelayedCaptureSettings as cr, type Duration as cs, type GetPaymentCollectabilityStatusRequest as ct, type RecordManuallyCollectedPaymentRequest as cu, type RecordManuallyCollectedPaymentResponse as cv, type MarkOrderAsPaidRequest as cw, type MarkOrderAsPaidResponse as cx, type BulkMarkOrdersAsPaidRequest as cy, type BulkMarkOrdersAsPaidResponse as cz, type VoidAuthorizedPaymentsApplicationErrors as d, type GetOrderResponse as d$, type Payment as d0, type PaymentPaymentDetailsOneOf as d1, type PaymentReceiptInfoOneOf as d2, type RegularPaymentDetails as d3, type RegularPaymentDetailsPaymentMethodDetailsOneOf as d4, type CreditCardPaymentMethodDetails as d5, type AuthorizationDetails as d6, type AuthorizationCapture as d7, type AuthorizationActionFailureDetails as d8, type AuthorizationVoid as d9, type EntityDeletedEvent as dA, type ActionEvent as dB, type Empty as dC, type MessageEnvelope as dD, type IdentificationData as dE, type IdentificationDataIdOneOf as dF, type UpdateInternalDocumentsEvent as dG, type UpdateInternalDocumentsEventOperationOneOf as dH, type InternalDocument as dI, type InternalDocumentUpdateOperation as dJ, type DeleteByIdsOperation as dK, type DeleteByFilterOperation as dL, type InternalDocumentUpdateByFilterOperation as dM, type InternalUpdateExistingOperation as dN, type VersionedDocumentUpdateOperation as dO, type VersionedDeleteByIdsOperation as dP, type VersionedDocumentId as dQ, type TriggerReindexRequest as dR, type TriggerReindexResponse as dS, type BatchOfTriggerReindexOrderRequest as dT, type TriggerReindexOrderRequest as dU, type DiffmatokyPayload as dV, type ErrorInformation as dW, type ContinueSideEffectsFlowInLegacyData as dX, type SnapshotMessage as dY, type IndexingMessage as dZ, type GetOrderRequest as d_, type V1ScheduledAction as da, type Chargeback as db, type GiftCardPaymentDetails as dc, type MembershipPaymentDetails as dd, type WixReceiptInfo as de, type ExternalReceiptInfo as df, type Refund as dg, type RefundTransaction as dh, type RefundStatusInfo as di, type AggregatedRefundSummary as dj, type RefundItemsBreakdown as dk, type LineItemRefundSummary as dl, type CalculateRefundRequest as dm, type CalculateRefundItemRequest as dn, type CalculateRefundResponse as dp, type CalculateRefundItemResponse as dq, type VoidAuthorizedPaymentsRequest as dr, type CaptureAuthorizedPaymentsRequest as ds, type ChargeSavedPaymentMethodRequest as dt, type ChargeSavedPaymentMethodResponse as du, type DomainEvent as dv, type DomainEventBodyOneOf as dw, type EntityCreatedEvent as dx, type RestoreInfo as dy, type EntityUpdatedEvent as dz, type PaymentCapture as e, type UpdateBillingContactDetailsRequest as e$, type InternalQueryOrdersRequest as e0, type PlatformQuery as e1, type PlatformQueryPagingMethodOneOf as e2, type Sorting as e3, type PlatformPaging as e4, type CursorPaging as e5, type InternalQueryOrdersResponse as e6, type PlatformPagingMetadata as e7, type Cursors as e8, type QueryOrderRequest as e9, type DraftOrderCommitSettings as eA, type InventoryUpdateDetails as eB, type CommitDeltasResponse as eC, type OrderDeltasCommitted as eD, type CommittedDiffs as eE, type CommittedDiffsShippingUpdateInfoOneOf as eF, type LineItemDelta as eG, type LineItemDeltaDeltaOneOf as eH, type ArchiveOrderRequest as eI, type ArchiveOrderResponse as eJ, type BulkArchiveOrdersRequest as eK, type BulkArchiveOrdersResponse as eL, type BulkArchiveOrdersByFilterRequest as eM, type BulkArchiveOrdersByFilterResponse as eN, type UnArchiveOrderRequest as eO, type UnArchiveOrderResponse as eP, type BulkUnArchiveOrdersRequest as eQ, type BulkUnArchiveOrdersResponse as eR, type BulkUnArchiveOrdersByFilterRequest as eS, type BulkUnArchiveOrdersByFilterResponse as eT, type UpdateBuyerInfoRequest as eU, type BuyerInfoUpdate as eV, type UpdateBuyerInfoResponse as eW, type UpdateBuyerEmailRequest as eX, type UpdateBuyerEmailResponse as eY, type UpdateOrderShippingAddressRequest as eZ, type UpdateOrderShippingAddressResponse as e_, type QueryOrderResponse as ea, type SearchOrdersRequest as eb, type CursorSearch as ec, type CursorSearchPagingMethodOneOf as ed, type CursorPagingMetadata as ee, type CreateOrderRequest as ef, type OrderCreationSettings as eg, type OrderCreateNotifications as eh, type CreateOrderResponse as ei, type UpdateOrderRequest as ej, type UpdateOrderResponse as ek, type BulkUpdateOrdersRequest as el, type CommitDeltasRequest as em, type DraftOrderDiffs as en, type DraftOrderDiffsShippingUpdateInfoOneOf as eo, type DraftOrderDiffsBuyerUpdateInfoOneOf as ep, type DraftOrderDiffsBillingUpdateInfoOneOf as eq, type DraftOrderDiffsRecipientUpdateInfoOneOf as er, type V1LineItemDelta as es, type V1LineItemDeltaDeltaOneOf as et, type OrderLineItemChangedDetails as eu, type ItemChangedDetails as ev, type AppliedDiscountDelta as ew, type AppliedDiscountDeltaDeltaOneOf as ex, type AdditionalFeeDelta as ey, type AdditionalFeeDeltaDeltaOneOf as ez, type CaptureAuthorizedPaymentsApplicationErrors as f, type BulkSetBusinessLocationResult as f$, type UpdateBillingContactDetailsResponse as f0, type UpdateOrderLineItemRequest as f1, type UpdateOrderLineItemResponse as f2, type UpdateOrderLineItemsRequest as f3, type MaskedOrderLineItem as f4, type UpdateOrderLineItemsResponse as f5, type AddInternalActivityRequest as f6, type InternalActivity as f7, type InternalActivityContentOneOf as f8, type OrderPlaced as f9, type UpdateActivityResponse as fA, type DeleteActivityRequest as fB, type DeleteActivityResponse as fC, type UpdateLineItemsDescriptionLinesRequest as fD, type LineItemUpdate as fE, type UpdateLineItemsDescriptionLinesResponse as fF, type MarkOrderAsSeenByHumanRequest as fG, type MarkOrderAsSeenByHumanResponse as fH, type CancelOrderRequest as fI, type OrderCanceledEventOrderCanceled as fJ, type UpdateOrderStatusRequest as fK, type UpdateOrderStatusResponse as fL, type MarkAsFulfilledRequest as fM, type MarkAsFulfilledResponse as fN, type FulfillmentStatusUpdated as fO, type BulkMarkAsFulfilledRequest as fP, type BulkMarkAsFulfilledResponse as fQ, type BulkMarkAsFulfilledByFilterRequest as fR, type BulkMarkAsFulfilledByFilterResponse as fS, type MarkAsUnfulfilledRequest as fT, type MarkAsUnfulfilledResponse as fU, type BulkMarkAsUnfulfilledRequest as fV, type BulkMarkAsUnfulfilledResponse as fW, type BulkMarkAsUnfulfilledByFilterRequest as fX, type BulkMarkAsUnfulfilledByFilterResponse as fY, type BulkSetBusinessLocationRequest as fZ, type BulkSetBusinessLocationResponse as f_, type OrderPaid as fa, type OrderFulfilled as fb, type OrderNotFulfilled as fc, type OrderCanceled as fd, type DownloadLinkSent as fe, type TrackingNumberAdded as ff, type TrackingNumberEdited as fg, type TrackingLinkAdded as fh, type ShippingConfirmationEmailSent as fi, type InvoiceAdded as fj, type InvoiceSent as fk, type FulfillerEmailSent as fl, type ShippingAddressEdited as fm, type EmailEdited as fn, type PickupReadyEmailSent as fo, type OrderPartiallyPaid as fp, type OrderPending as fq, type OrderRejected as fr, type AddInternalActivityResponse as fs, type AddActivityRequest as ft, type PublicActivity as fu, type PublicActivityContentOneOf as fv, type AddActivityResponse as fw, type AddActivitiesRequest as fx, type AddActivitiesResponse as fy, type UpdateActivityRequest as fz, type GetOrderApplicationErrors as g, type OrderSearchSpec as g$, type V1MarkOrderAsPaidRequest as g0, type V1MarkOrderAsPaidResponse as g1, type PaymentStatusUpdated as g2, type V1BulkMarkOrdersAsPaidRequest as g3, type V1BulkMarkOrdersAsPaidResponse as g4, type V1CreatePaymentGatewayOrderRequest as g5, type V1CreatePaymentGatewayOrderResponse as g6, type GetShipmentsRequest as g7, type GetShipmentsResponse as g8, type AggregateOrdersRequest as g9, type InvoiceDates as gA, type LineItems as gB, type LineItem as gC, type BigDecimalWrapper as gD, type LineItemTax as gE, type Source as gF, type LineItemMetaData as gG, type Locale as gH, type TotalPrice as gI, type ItemizedFee as gJ, type Discount as gK, type DiscountOneDiscountTypeOneOf as gL, type CalculatedTaxes as gM, type CalculatedTax as gN, type Payments as gO, type InvoicesPayment as gP, type MetaData as gQ, type InvoiceDynamicPriceTotals as gR, type CustomFieldValue as gS, type Value as gT, type Deposit as gU, type TriggerSideEffectsFromLegacyData as gV, type BaseEventMetadata as gW, type EventMetadata as gX, type PaymentCollectionCreatePaymentGatewayOrderOptions as gY, type ChargeMembershipsOptions as gZ, type TriggerRefundOptions as g_, type AggregateOrdersResponse as ga, type DecrementItemsQuantityRequest as gb, type DecrementData as gc, type DecrementItemsQuantityResponse as gd, type BulkUpdateOrderTagsRequest as ge, type BulkUpdateOrderTagsResult as gf, type Task as gg, type TaskKey as gh, type TaskAction as gi, type TaskActionActionOneOf as gj, type Complete as gk, type Cancel as gl, type Reschedule as gm, type InvoiceSentEvent as gn, type IdAndVersion as go, type InvoiceFields as gp, type Customer as gq, type Email as gr, type QuotesAddress as gs, type AddressDescription as gt, type Phone as gu, type Company as gv, type CommonAddress as gw, type CommonAddressStreetOneOf as gx, type Subdivision as gy, type StandardDetails as gz, type OrderSearch as h, onOrderPaymentStatusUpdated as h$, type CommitDeltasOptions as h0, type UpdateOrderLineItemIdentifiers as h1, type UpdateOrderLineItem as h2, type UpdateActivityIdentifiers as h3, type DeleteActivityIdentifiers as h4, type AggregateOrdersOptions as h5, type DescriptionLineTypeWithLiterals as h6, type ItemTypeItemTypeWithLiterals as h7, type PaymentOptionTypeWithLiterals as h8, type JurisdictionTypeWithLiterals as h9, type ActionTypeWithLiterals as hA, type ChargebackStatusWithLiterals as hB, type MembershipPaymentStatusWithLiterals as hC, type RefundStatusWithLiterals as hD, type WebhookIdentityTypeWithLiterals as hE, type VersioningModeWithLiterals as hF, type SortOrderWithLiterals as hG, type OrderApprovalStrategyWithLiterals as hH, type DeltaPaymentOptionTypeWithLiterals as hI, type InventoryActionWithLiterals as hJ, type PlacementWithLiterals as hK, type SubdivisionTypeWithLiterals as hL, type SourceTypeWithLiterals as hM, type CustomFieldGroupWithLiterals as hN, type ValueTypeWithLiterals as hO, type DepositTypeWithLiterals as hP, type InvoiceStatusWithLiterals as hQ, type RecordManuallyCollectedPaymentApplicationErrors as hR, type PaymentCollectionMarkOrderAsPaidApplicationErrors as hS, type PaymentCollectionCreatePaymentGatewayOrderApplicationErrors as hT, type TriggerRefundApplicationErrors as hU, type CommitDeltasApplicationErrors as hV, type UpdateOrderStatusApplicationErrors as hW, onOrderApproved as hX, onOrderUpdated as hY, onOrderCanceled as hZ, onOrderCreated as h_, type SubscriptionFrequencyWithLiterals as ha, type AdjustmentTypeWithLiterals as hb, type TaxableAddressTypeWithLiterals as hc, type PaymentStatusWithLiterals as hd, type FulfillmentStatusWithLiterals as he, type WeightUnitWithLiterals as hf, type VatTypeWithLiterals as hg, type PickupMethodWithLiterals as hh, type OrderStatusWithLiterals as hi, type DiscountTypeWithLiterals as hj, type DiscountReasonWithLiterals as hk, type LineItemQuantityChangeTypeWithLiterals as hl, type ActivityTypeWithLiterals as hm, type AttributionSourceWithLiterals as hn, type ChannelTypeWithLiterals as ho, type ScheduledActionWithLiterals as hp, type DurationUnitWithLiterals as hq, type PaymentCollectabilityStatusWithLiterals as hr, type RefundableStatusWithLiterals as hs, type NonRefundableReasonWithLiterals as ht, type ManuallyRefundableReasonWithLiterals as hu, type RestockTypeWithLiterals as hv, type TransactionStatusWithLiterals as hw, type AuthorizationCaptureStatusWithLiterals as hx, type AuthorizationVoidStatusWithLiterals as hy, type ReasonWithLiterals as hz, type CreateOrderOptions as i, preparePaymentCollection as i0, getPaymentCollectabilityStatus as i1, voidAuthorizedPayments as i2, captureAuthorizedPayments as i3, getOrder as i4, type CommonSearchWithEntityContext as i5, createOrder as i6, updateOrder as i7, bulkUpdateOrders as i8, cancelOrder as i9, bulkUpdateOrderTags as ia, type CreateOrderApplicationErrors as j, type UpdateOrderApplicationErrors as k, type BulkUpdateOrdersResponse as l, type CancelOrderOptions as m, type CancelOrderResponse as n, type CancelOrderApplicationErrors as o, type BulkUpdateOrderTagsOptions as p, type BulkUpdateOrderTagsResponse as q, type OrderApprovedEnvelope as r, type OrderUpdatedEnvelope as s, type OrderCanceledEnvelope as t, type OrderCreatedEnvelope as u, type OrderPaymentStatusUpdatedEnvelope as v, PaymentOptionType as w, SubscriptionFrequency as x, PaymentStatus as y, VatType as z };
|