@wix/auto_sdk_ecom_orders 1.0.69 → 1.0.71
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-Br3Nippn.d.ts → ecom-v1-order-orders.universal-B51dgVhk.d.ts} +349 -189
- package/build/cjs/index.d.ts +5 -5
- package/build/cjs/index.js +89 -54
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -2
- package/build/cjs/index.typings.js +44 -9
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -1
- package/build/cjs/meta.js +28 -1
- package/build/cjs/meta.js.map +1 -1
- package/build/es/{ecom-v1-order-orders.universal-Br3Nippn.d.mts → ecom-v1-order-orders.universal-B51dgVhk.d.mts} +349 -189
- package/build/es/index.d.mts +5 -5
- package/build/es/index.mjs +88 -54
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -2
- package/build/es/index.typings.mjs +43 -9
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -1
- package/build/es/meta.mjs +28 -1
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/{ecom-v1-order-orders.universal-BAE6DVkA.d.ts → ecom-v1-order-orders.universal-BuGgtT93.d.ts} +349 -189
- package/build/internal/cjs/index.d.ts +5 -5
- package/build/internal/cjs/index.js +89 -54
- 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 +44 -9
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +1 -1
- package/build/internal/cjs/meta.js +28 -1
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/{ecom-v1-order-orders.universal-BAE6DVkA.d.mts → ecom-v1-order-orders.universal-BuGgtT93.d.mts} +349 -189
- package/build/internal/es/index.d.mts +5 -5
- package/build/internal/es/index.mjs +88 -54
- 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 +43 -9
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +1 -1
- package/build/internal/es/meta.mjs +28 -1
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -2557,43 +2557,153 @@ interface Location {
|
|
|
2557
2557
|
*/
|
|
2558
2558
|
name?: string;
|
|
2559
2559
|
}
|
|
2560
|
-
interface
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2560
|
+
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
2561
|
+
/** insert/update documents */
|
|
2562
|
+
update?: InternalDocumentUpdateOperation;
|
|
2563
|
+
/** delete by document ids */
|
|
2564
|
+
deleteByIds?: DeleteByIdsOperation;
|
|
2565
|
+
/** delete documents matching filter */
|
|
2566
|
+
deleteByFilter?: DeleteByFilterOperation;
|
|
2567
|
+
/** update internal documents matching filter */
|
|
2568
|
+
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
2569
|
+
/** update only existing documents */
|
|
2570
|
+
updateExisting?: InternalUpdateExistingOperation;
|
|
2571
|
+
/** insert/update documents with versioning */
|
|
2572
|
+
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
2573
|
+
/** delete by document ids with versioning */
|
|
2574
|
+
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
2575
|
+
/**
|
|
2576
|
+
* type of the documents
|
|
2577
|
+
* @minLength 2
|
|
2578
|
+
*/
|
|
2579
|
+
documentType?: string;
|
|
2580
|
+
/**
|
|
2581
|
+
* language of the documents (mandatory)
|
|
2582
|
+
* @minLength 2
|
|
2583
|
+
*/
|
|
2584
|
+
language?: string | null;
|
|
2585
|
+
/**
|
|
2586
|
+
* one or more search documents
|
|
2587
|
+
* @deprecated
|
|
2588
|
+
*/
|
|
2589
|
+
addDocuments?: InternalDocument[];
|
|
2590
|
+
/**
|
|
2591
|
+
* one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
|
|
2592
|
+
* @deprecated
|
|
2593
|
+
*/
|
|
2594
|
+
removeDocumentIds?: string[];
|
|
2595
|
+
/** id to pass to processing notification */
|
|
2596
|
+
correlationId?: string | null;
|
|
2597
|
+
/** when event was created / issued */
|
|
2598
|
+
issuedAt?: Date | null;
|
|
2567
2599
|
}
|
|
2568
|
-
|
|
2569
|
-
|
|
2600
|
+
/** @oneof */
|
|
2601
|
+
interface UpdateInternalDocumentsEventOperationOneOf {
|
|
2602
|
+
/** insert/update documents */
|
|
2603
|
+
update?: InternalDocumentUpdateOperation;
|
|
2604
|
+
/** delete by document ids */
|
|
2605
|
+
deleteByIds?: DeleteByIdsOperation;
|
|
2606
|
+
/** delete documents matching filter */
|
|
2607
|
+
deleteByFilter?: DeleteByFilterOperation;
|
|
2608
|
+
/** update internal documents matching filter */
|
|
2609
|
+
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
2610
|
+
/** update only existing documents */
|
|
2611
|
+
updateExisting?: InternalUpdateExistingOperation;
|
|
2612
|
+
/** insert/update documents with versioning */
|
|
2613
|
+
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
2614
|
+
/** delete by document ids with versioning */
|
|
2615
|
+
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
2616
|
+
}
|
|
2617
|
+
interface InternalDocument {
|
|
2618
|
+
/** document with mandatory fields (id) and with fields specific to the type of the document */
|
|
2619
|
+
document?: Record<string, any> | null;
|
|
2620
|
+
}
|
|
2621
|
+
interface InternalDocumentUpdateOperation {
|
|
2622
|
+
/** documents to index or update */
|
|
2623
|
+
documents?: InternalDocument[];
|
|
2624
|
+
}
|
|
2625
|
+
interface DeleteByIdsOperation {
|
|
2626
|
+
/** ids of the documents to delete */
|
|
2627
|
+
documentIds?: string[];
|
|
2628
|
+
/**
|
|
2629
|
+
* tenant id for custom tenancy strategy
|
|
2630
|
+
* @minLength 2
|
|
2631
|
+
* @maxLength 300
|
|
2632
|
+
*/
|
|
2633
|
+
tenantId?: string | null;
|
|
2570
2634
|
}
|
|
2571
|
-
interface
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2635
|
+
interface DeleteByFilterOperation {
|
|
2636
|
+
/** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
|
|
2637
|
+
filter?: Record<string, any> | null;
|
|
2638
|
+
/**
|
|
2639
|
+
* tenant id for custom tenancy strategy
|
|
2640
|
+
* @minLength 2
|
|
2641
|
+
* @maxLength 300
|
|
2642
|
+
*/
|
|
2643
|
+
tenantId?: string | null;
|
|
2575
2644
|
}
|
|
2576
|
-
interface
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2645
|
+
interface InternalDocumentUpdateByFilterOperation {
|
|
2646
|
+
/** documents matching this filter will be updated */
|
|
2647
|
+
filter?: Record<string, any> | null;
|
|
2648
|
+
/** partial document to apply */
|
|
2649
|
+
document?: InternalDocument;
|
|
2650
|
+
/**
|
|
2651
|
+
* tenant id for custom tenancy strategy
|
|
2652
|
+
* @minLength 2
|
|
2653
|
+
* @maxLength 300
|
|
2654
|
+
*/
|
|
2655
|
+
tenantId?: string | null;
|
|
2582
2656
|
}
|
|
2583
|
-
interface
|
|
2584
|
-
|
|
2585
|
-
|
|
2657
|
+
interface InternalUpdateExistingOperation {
|
|
2658
|
+
/** documents to update */
|
|
2659
|
+
documents?: InternalDocument[];
|
|
2586
2660
|
}
|
|
2587
|
-
interface
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2661
|
+
interface VersionedDocumentUpdateOperation {
|
|
2662
|
+
/** documents to create or overwrite */
|
|
2663
|
+
documents?: InternalDocument[];
|
|
2664
|
+
/** versioning mode to use instead of default */
|
|
2665
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
2666
|
+
}
|
|
2667
|
+
declare enum VersioningMode {
|
|
2668
|
+
/** use default versioning mode agreed with search team */
|
|
2669
|
+
DEFAULT = "DEFAULT",
|
|
2670
|
+
/** execute only if version is greater than existing */
|
|
2671
|
+
GREATER_THAN = "GREATER_THAN",
|
|
2672
|
+
/** execute only if version is greater or equal to existing */
|
|
2673
|
+
GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
|
|
2674
|
+
}
|
|
2675
|
+
/** @enumType */
|
|
2676
|
+
type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
|
|
2677
|
+
interface VersionedDeleteByIdsOperation {
|
|
2678
|
+
/** ids with version of the documents to delete */
|
|
2679
|
+
documentIds?: VersionedDocumentId[];
|
|
2680
|
+
/**
|
|
2681
|
+
* tenant id for custom tenancy strategy
|
|
2682
|
+
* @minLength 2
|
|
2683
|
+
* @maxLength 300
|
|
2684
|
+
*/
|
|
2685
|
+
tenantId?: string | null;
|
|
2686
|
+
}
|
|
2687
|
+
interface VersionedDocumentId {
|
|
2688
|
+
/** document id */
|
|
2689
|
+
documentId?: string;
|
|
2690
|
+
/** document version */
|
|
2691
|
+
version?: string;
|
|
2692
|
+
/** versioning mode to use instead of default */
|
|
2693
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
2591
2694
|
}
|
|
2592
2695
|
/** Triggered when the order status changes to approved */
|
|
2593
2696
|
interface OrderApproved {
|
|
2594
2697
|
/** The order that was updated */
|
|
2595
2698
|
order?: Order;
|
|
2596
2699
|
}
|
|
2700
|
+
interface OrdersExperiments {
|
|
2701
|
+
epCommitTax?: boolean;
|
|
2702
|
+
moveMerchantEmailToEp?: boolean;
|
|
2703
|
+
moveBuyerOrderConfirmationEmailToEp?: boolean;
|
|
2704
|
+
producedByEpBridge?: boolean;
|
|
2705
|
+
enableRewrittenSideEffects?: boolean;
|
|
2706
|
+
}
|
|
2597
2707
|
interface OrderRejectedEventOrderRejected {
|
|
2598
2708
|
/** The order that was rejected */
|
|
2599
2709
|
order?: Order;
|
|
@@ -2618,6 +2728,192 @@ interface RestockItem {
|
|
|
2618
2728
|
*/
|
|
2619
2729
|
quantity?: number;
|
|
2620
2730
|
}
|
|
2731
|
+
interface TriggerReindexRequest {
|
|
2732
|
+
/** @format GUID */
|
|
2733
|
+
metasiteId?: string;
|
|
2734
|
+
/**
|
|
2735
|
+
* @minLength 1
|
|
2736
|
+
* @maxLength 100
|
|
2737
|
+
* @maxSize 100
|
|
2738
|
+
*/
|
|
2739
|
+
orderIds?: string[];
|
|
2740
|
+
}
|
|
2741
|
+
interface TriggerReindexResponse {
|
|
2742
|
+
}
|
|
2743
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
2744
|
+
createdEvent?: EntityCreatedEvent;
|
|
2745
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2746
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2747
|
+
actionEvent?: ActionEvent;
|
|
2748
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
2749
|
+
_id?: string;
|
|
2750
|
+
/**
|
|
2751
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
2752
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
2753
|
+
*/
|
|
2754
|
+
entityFqdn?: string;
|
|
2755
|
+
/**
|
|
2756
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
2757
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
2758
|
+
*/
|
|
2759
|
+
slug?: string;
|
|
2760
|
+
/** ID of the entity associated with the event. */
|
|
2761
|
+
entityId?: string;
|
|
2762
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
2763
|
+
eventTime?: Date | null;
|
|
2764
|
+
/**
|
|
2765
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
2766
|
+
* (for example, GDPR).
|
|
2767
|
+
*/
|
|
2768
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
2769
|
+
/** If present, indicates the action that triggered the event. */
|
|
2770
|
+
originatedFrom?: string | null;
|
|
2771
|
+
/**
|
|
2772
|
+
* 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.
|
|
2773
|
+
* 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.
|
|
2774
|
+
*/
|
|
2775
|
+
entityEventSequence?: string | null;
|
|
2776
|
+
}
|
|
2777
|
+
/** @oneof */
|
|
2778
|
+
interface DomainEventBodyOneOf {
|
|
2779
|
+
createdEvent?: EntityCreatedEvent;
|
|
2780
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2781
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2782
|
+
actionEvent?: ActionEvent;
|
|
2783
|
+
}
|
|
2784
|
+
interface EntityCreatedEvent {
|
|
2785
|
+
entity?: string;
|
|
2786
|
+
}
|
|
2787
|
+
interface RestoreInfo {
|
|
2788
|
+
deletedDate?: Date | null;
|
|
2789
|
+
}
|
|
2790
|
+
interface EntityUpdatedEvent {
|
|
2791
|
+
/**
|
|
2792
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
2793
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
2794
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
2795
|
+
*/
|
|
2796
|
+
currentEntity?: string;
|
|
2797
|
+
}
|
|
2798
|
+
interface EntityDeletedEvent {
|
|
2799
|
+
/** Entity that was deleted. */
|
|
2800
|
+
deletedEntity?: string | null;
|
|
2801
|
+
}
|
|
2802
|
+
interface ActionEvent {
|
|
2803
|
+
body?: string;
|
|
2804
|
+
}
|
|
2805
|
+
interface Empty {
|
|
2806
|
+
}
|
|
2807
|
+
interface BatchOfTriggerReindexOrderRequest {
|
|
2808
|
+
/** @maxSize 25 */
|
|
2809
|
+
requests?: TriggerReindexOrderRequest[];
|
|
2810
|
+
}
|
|
2811
|
+
interface TriggerReindexOrderRequest {
|
|
2812
|
+
/** @format GUID */
|
|
2813
|
+
metasiteId?: string;
|
|
2814
|
+
/**
|
|
2815
|
+
* @minLength 1
|
|
2816
|
+
* @maxLength 100
|
|
2817
|
+
*/
|
|
2818
|
+
orderId?: string;
|
|
2819
|
+
}
|
|
2820
|
+
interface MessageEnvelope {
|
|
2821
|
+
/**
|
|
2822
|
+
* App instance ID.
|
|
2823
|
+
* @format GUID
|
|
2824
|
+
*/
|
|
2825
|
+
instanceId?: string | null;
|
|
2826
|
+
/**
|
|
2827
|
+
* Event type.
|
|
2828
|
+
* @maxLength 150
|
|
2829
|
+
*/
|
|
2830
|
+
eventType?: string;
|
|
2831
|
+
/** The identification type and identity data. */
|
|
2832
|
+
identity?: IdentificationData;
|
|
2833
|
+
/** Stringify payload. */
|
|
2834
|
+
data?: string;
|
|
2835
|
+
}
|
|
2836
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
2837
|
+
/**
|
|
2838
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2839
|
+
* @format GUID
|
|
2840
|
+
*/
|
|
2841
|
+
anonymousVisitorId?: string;
|
|
2842
|
+
/**
|
|
2843
|
+
* ID of a site visitor that has logged in to the site.
|
|
2844
|
+
* @format GUID
|
|
2845
|
+
*/
|
|
2846
|
+
memberId?: string;
|
|
2847
|
+
/**
|
|
2848
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2849
|
+
* @format GUID
|
|
2850
|
+
*/
|
|
2851
|
+
wixUserId?: string;
|
|
2852
|
+
/**
|
|
2853
|
+
* ID of an app.
|
|
2854
|
+
* @format GUID
|
|
2855
|
+
*/
|
|
2856
|
+
appId?: string;
|
|
2857
|
+
/** @readonly */
|
|
2858
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
2859
|
+
}
|
|
2860
|
+
/** @oneof */
|
|
2861
|
+
interface IdentificationDataIdOneOf {
|
|
2862
|
+
/**
|
|
2863
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2864
|
+
* @format GUID
|
|
2865
|
+
*/
|
|
2866
|
+
anonymousVisitorId?: string;
|
|
2867
|
+
/**
|
|
2868
|
+
* ID of a site visitor that has logged in to the site.
|
|
2869
|
+
* @format GUID
|
|
2870
|
+
*/
|
|
2871
|
+
memberId?: string;
|
|
2872
|
+
/**
|
|
2873
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2874
|
+
* @format GUID
|
|
2875
|
+
*/
|
|
2876
|
+
wixUserId?: string;
|
|
2877
|
+
/**
|
|
2878
|
+
* ID of an app.
|
|
2879
|
+
* @format GUID
|
|
2880
|
+
*/
|
|
2881
|
+
appId?: string;
|
|
2882
|
+
}
|
|
2883
|
+
declare enum WebhookIdentityType {
|
|
2884
|
+
UNKNOWN = "UNKNOWN",
|
|
2885
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
2886
|
+
MEMBER = "MEMBER",
|
|
2887
|
+
WIX_USER = "WIX_USER",
|
|
2888
|
+
APP = "APP"
|
|
2889
|
+
}
|
|
2890
|
+
/** @enumType */
|
|
2891
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
2892
|
+
interface DiffmatokyPayload {
|
|
2893
|
+
left?: string;
|
|
2894
|
+
right?: string;
|
|
2895
|
+
compareChannel?: string;
|
|
2896
|
+
entityId?: string;
|
|
2897
|
+
errorInformation?: ErrorInformation;
|
|
2898
|
+
tags?: string[];
|
|
2899
|
+
}
|
|
2900
|
+
interface ErrorInformation {
|
|
2901
|
+
stackTrace?: string;
|
|
2902
|
+
}
|
|
2903
|
+
interface ContinueSideEffectsFlowInLegacyData {
|
|
2904
|
+
storeId?: string;
|
|
2905
|
+
orderId?: string;
|
|
2906
|
+
ordersExperiments?: OrdersExperiments;
|
|
2907
|
+
}
|
|
2908
|
+
interface SnapshotMessage {
|
|
2909
|
+
_id?: string;
|
|
2910
|
+
opType?: number;
|
|
2911
|
+
}
|
|
2912
|
+
interface IndexingMessage {
|
|
2913
|
+
_id?: string;
|
|
2914
|
+
opType?: number;
|
|
2915
|
+
requiredVersions?: string[];
|
|
2916
|
+
}
|
|
2621
2917
|
interface GetOrderRequest {
|
|
2622
2918
|
/**
|
|
2623
2919
|
* ID of the order to retrieve.
|
|
@@ -4205,70 +4501,6 @@ interface BulkUpdateOrderTagsResponse {
|
|
|
4205
4501
|
interface BulkUpdateOrderTagsResult {
|
|
4206
4502
|
itemMetadata?: ItemMetadata;
|
|
4207
4503
|
}
|
|
4208
|
-
interface DomainEvent extends DomainEventBodyOneOf {
|
|
4209
|
-
createdEvent?: EntityCreatedEvent;
|
|
4210
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
4211
|
-
deletedEvent?: EntityDeletedEvent;
|
|
4212
|
-
actionEvent?: ActionEvent;
|
|
4213
|
-
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
4214
|
-
_id?: string;
|
|
4215
|
-
/**
|
|
4216
|
-
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
4217
|
-
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
4218
|
-
*/
|
|
4219
|
-
entityFqdn?: string;
|
|
4220
|
-
/**
|
|
4221
|
-
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
4222
|
-
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
4223
|
-
*/
|
|
4224
|
-
slug?: string;
|
|
4225
|
-
/** ID of the entity associated with the event. */
|
|
4226
|
-
entityId?: string;
|
|
4227
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
4228
|
-
eventTime?: Date | null;
|
|
4229
|
-
/**
|
|
4230
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
4231
|
-
* (for example, GDPR).
|
|
4232
|
-
*/
|
|
4233
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
4234
|
-
/** If present, indicates the action that triggered the event. */
|
|
4235
|
-
originatedFrom?: string | null;
|
|
4236
|
-
/**
|
|
4237
|
-
* 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.
|
|
4238
|
-
* 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.
|
|
4239
|
-
*/
|
|
4240
|
-
entityEventSequence?: string | null;
|
|
4241
|
-
}
|
|
4242
|
-
/** @oneof */
|
|
4243
|
-
interface DomainEventBodyOneOf {
|
|
4244
|
-
createdEvent?: EntityCreatedEvent;
|
|
4245
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
4246
|
-
deletedEvent?: EntityDeletedEvent;
|
|
4247
|
-
actionEvent?: ActionEvent;
|
|
4248
|
-
}
|
|
4249
|
-
interface EntityCreatedEvent {
|
|
4250
|
-
entity?: string;
|
|
4251
|
-
}
|
|
4252
|
-
interface RestoreInfo {
|
|
4253
|
-
deletedDate?: Date | null;
|
|
4254
|
-
}
|
|
4255
|
-
interface EntityUpdatedEvent {
|
|
4256
|
-
/**
|
|
4257
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
4258
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
4259
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
4260
|
-
*/
|
|
4261
|
-
currentEntity?: string;
|
|
4262
|
-
}
|
|
4263
|
-
interface EntityDeletedEvent {
|
|
4264
|
-
/** Entity that was deleted. */
|
|
4265
|
-
deletedEntity?: string | null;
|
|
4266
|
-
}
|
|
4267
|
-
interface ActionEvent {
|
|
4268
|
-
body?: string;
|
|
4269
|
-
}
|
|
4270
|
-
interface Empty {
|
|
4271
|
-
}
|
|
4272
4504
|
interface Task {
|
|
4273
4505
|
key?: TaskKey;
|
|
4274
4506
|
executeAt?: Date | null;
|
|
@@ -4724,78 +4956,6 @@ interface TriggerSideEffectsFromLegacyData {
|
|
|
4724
4956
|
orderId?: string;
|
|
4725
4957
|
ordersExperiments?: OrdersExperiments;
|
|
4726
4958
|
}
|
|
4727
|
-
interface MessageEnvelope {
|
|
4728
|
-
/**
|
|
4729
|
-
* App instance ID.
|
|
4730
|
-
* @format GUID
|
|
4731
|
-
*/
|
|
4732
|
-
instanceId?: string | null;
|
|
4733
|
-
/**
|
|
4734
|
-
* Event type.
|
|
4735
|
-
* @maxLength 150
|
|
4736
|
-
*/
|
|
4737
|
-
eventType?: string;
|
|
4738
|
-
/** The identification type and identity data. */
|
|
4739
|
-
identity?: IdentificationData;
|
|
4740
|
-
/** Stringify payload. */
|
|
4741
|
-
data?: string;
|
|
4742
|
-
}
|
|
4743
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
4744
|
-
/**
|
|
4745
|
-
* ID of a site visitor that has not logged in to the site.
|
|
4746
|
-
* @format GUID
|
|
4747
|
-
*/
|
|
4748
|
-
anonymousVisitorId?: string;
|
|
4749
|
-
/**
|
|
4750
|
-
* ID of a site visitor that has logged in to the site.
|
|
4751
|
-
* @format GUID
|
|
4752
|
-
*/
|
|
4753
|
-
memberId?: string;
|
|
4754
|
-
/**
|
|
4755
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
4756
|
-
* @format GUID
|
|
4757
|
-
*/
|
|
4758
|
-
wixUserId?: string;
|
|
4759
|
-
/**
|
|
4760
|
-
* ID of an app.
|
|
4761
|
-
* @format GUID
|
|
4762
|
-
*/
|
|
4763
|
-
appId?: string;
|
|
4764
|
-
/** @readonly */
|
|
4765
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
4766
|
-
}
|
|
4767
|
-
/** @oneof */
|
|
4768
|
-
interface IdentificationDataIdOneOf {
|
|
4769
|
-
/**
|
|
4770
|
-
* ID of a site visitor that has not logged in to the site.
|
|
4771
|
-
* @format GUID
|
|
4772
|
-
*/
|
|
4773
|
-
anonymousVisitorId?: string;
|
|
4774
|
-
/**
|
|
4775
|
-
* ID of a site visitor that has logged in to the site.
|
|
4776
|
-
* @format GUID
|
|
4777
|
-
*/
|
|
4778
|
-
memberId?: string;
|
|
4779
|
-
/**
|
|
4780
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
4781
|
-
* @format GUID
|
|
4782
|
-
*/
|
|
4783
|
-
wixUserId?: string;
|
|
4784
|
-
/**
|
|
4785
|
-
* ID of an app.
|
|
4786
|
-
* @format GUID
|
|
4787
|
-
*/
|
|
4788
|
-
appId?: string;
|
|
4789
|
-
}
|
|
4790
|
-
declare enum WebhookIdentityType {
|
|
4791
|
-
UNKNOWN = "UNKNOWN",
|
|
4792
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
4793
|
-
MEMBER = "MEMBER",
|
|
4794
|
-
WIX_USER = "WIX_USER",
|
|
4795
|
-
APP = "APP"
|
|
4796
|
-
}
|
|
4797
|
-
/** @enumType */
|
|
4798
|
-
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
4799
4959
|
type GetOrderApplicationErrors = {
|
|
4800
4960
|
code?: 'ORDER_NOT_FOUND';
|
|
4801
4961
|
description?: string;
|
|
@@ -4916,6 +5076,32 @@ interface OrderApprovedEnvelope {
|
|
|
4916
5076
|
* @slug approved
|
|
4917
5077
|
*/
|
|
4918
5078
|
declare function onOrderApproved(handler: (event: OrderApprovedEnvelope) => void | Promise<void>): void;
|
|
5079
|
+
interface OrderUpdatedEnvelope {
|
|
5080
|
+
entity: Order;
|
|
5081
|
+
metadata: EventMetadata;
|
|
5082
|
+
}
|
|
5083
|
+
/** @permissionScope Manage Stores - all permissions
|
|
5084
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
5085
|
+
* @permissionScope Manage Stores
|
|
5086
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
5087
|
+
* @permissionScope Read eCommerce - all read permissions
|
|
5088
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
5089
|
+
* @permissionScope Read Orders
|
|
5090
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-ORDERS
|
|
5091
|
+
* @permissionScope Read Stores - all read permissions
|
|
5092
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
5093
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
5094
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
5095
|
+
* @permissionScope Manage eCommerce - all permissions
|
|
5096
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
5097
|
+
* @permissionScope Manage Orders
|
|
5098
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
5099
|
+
* @permissionId ECOM.READ_ORDERS
|
|
5100
|
+
* @webhook
|
|
5101
|
+
* @eventType wix.ecom.v1.order_updated
|
|
5102
|
+
* @slug updated
|
|
5103
|
+
*/
|
|
5104
|
+
declare function onOrderUpdated(handler: (event: OrderUpdatedEnvelope) => void | Promise<void>): void;
|
|
4919
5105
|
interface OrderCanceledEnvelope {
|
|
4920
5106
|
data: OrderCanceledEventOrderCanceled;
|
|
4921
5107
|
metadata: EventMetadata;
|
|
@@ -5005,32 +5191,6 @@ interface OrderPaymentStatusUpdatedEnvelope {
|
|
|
5005
5191
|
* @slug payment_status_updated
|
|
5006
5192
|
*/
|
|
5007
5193
|
declare function onOrderPaymentStatusUpdated(handler: (event: OrderPaymentStatusUpdatedEnvelope) => void | Promise<void>): void;
|
|
5008
|
-
interface OrderUpdatedEnvelope {
|
|
5009
|
-
entity: Order;
|
|
5010
|
-
metadata: EventMetadata;
|
|
5011
|
-
}
|
|
5012
|
-
/** @permissionScope Manage Stores - all permissions
|
|
5013
|
-
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
5014
|
-
* @permissionScope Manage Stores
|
|
5015
|
-
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
5016
|
-
* @permissionScope Read eCommerce - all read permissions
|
|
5017
|
-
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
5018
|
-
* @permissionScope Read Orders
|
|
5019
|
-
* @permissionScopeId SCOPE.DC-STORES.READ-ORDERS
|
|
5020
|
-
* @permissionScope Read Stores - all read permissions
|
|
5021
|
-
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
5022
|
-
* @permissionScope Manage Restaurants - all permissions
|
|
5023
|
-
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
5024
|
-
* @permissionScope Manage eCommerce - all permissions
|
|
5025
|
-
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
5026
|
-
* @permissionScope Manage Orders
|
|
5027
|
-
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
5028
|
-
* @permissionId ECOM.READ_ORDERS
|
|
5029
|
-
* @webhook
|
|
5030
|
-
* @eventType wix.ecom.v1.order_updated
|
|
5031
|
-
* @slug updated
|
|
5032
|
-
*/
|
|
5033
|
-
declare function onOrderUpdated(handler: (event: OrderUpdatedEnvelope) => void | Promise<void>): void;
|
|
5034
5194
|
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`;
|
|
5035
5195
|
/**
|
|
5036
5196
|
* Retrieves an order.
|
|
@@ -5838,4 +5998,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
5838
5998
|
unassignTags?: Tags;
|
|
5839
5999
|
}
|
|
5840
6000
|
|
|
5841
|
-
export { LineItemQuantityChangeType as $, type AddActivityResponse as A, type BulkUpdateOrdersOptions as B, type CreateOrderOptions as C, type DeleteActivityIdentifiers as D, type OrderPaymentStatusUpdatedEnvelope as E, type OrderUpdatedEnvelope as F, type GetOrderApplicationErrors as G, DescriptionLineType as H, ItemTypeItemType as I, PaymentOptionType as J, JurisdictionType as K, SubscriptionFrequency as L, type MaskedOrder as M, AdjustmentType as N, type Order as O, type PublicActivity as P, PaymentStatus as Q, FulfillmentStatus as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, VatType as V, WeightUnit as W, PickupMethod as X, OrderStatus as Y, DiscountType as Z, DiscountReason as _, type OrderSearch as a, type DeliveryTimeSlot as a$, ActivityType as a0, AttributionSource as a1, ChannelType as a2, SortOrder as a3, OrderApprovalStrategy as a4, DeltaPaymentOptionType as a5, InventoryAction as a6, Placement as a7, SubdivisionType as a8, SourceType as a9, type SubscriptionSettings as aA, type FreeTrialPeriod as aB, type BillingAdjustment as aC, type BillingAdjustmentPriceSummary as aD, type PriceDescription as aE, type LocationAndQuantity as aF, type TaxableAddress as aG, type TaxableAddressTaxableAddressDataOneOf as aH, type ExtendedFields as aI, type ModifierGroup as aJ, type TranslatableString as aK, type ItemModifier as aL, type BuyerInfo as aM, type BuyerInfoIdOneOf as aN, type CurrencyConversionDetails as aO, type PriceSummary as aP, type AddressWithContact as aQ, type Address as aR, type StreetAddress as aS, type AddressLocation as aT, type FullAddressContactDetails as aU, type VatId as aV, type V1ShippingInformation as aW, type DeliveryLogistics as aX, type DeliveryLogisticsAddressOneOf as aY, type PickupDetails as aZ, type PickupAddress as a_, CustomFieldGroup as aa, ValueType as ab, DepositType as ac, InvoiceStatus as ad, WebhookIdentityType as ae, type OrderLineItem as af, type ProductName as ag, type CatalogReference as ah, type Price as ai, type DescriptionLine as aj, type DescriptionLineValueOneOf as ak, type DescriptionLineDescriptionLineValueOneOf as al, type DescriptionLineName as am, type PlainTextValue as an, type Color as ao, type FocalPoint as ap, type PhysicalProperties as aq, type ItemType as ar, type ItemTypeItemTypeDataOneOf as as, type ItemTaxFullDetails as at, type LineItemTaxInfo as au, type LineItemTaxBreakdown as av, type DigitalFile as aw, type SubscriptionInfo as ax, type SubscriptionTitle as ay, type SubscriptionDescription as az, type CreateOrderApplicationErrors as b, type ChargebackCreated as b$, type ShippingPrice as b0, type ShippingRegion as b1, type TaxSummary as b2, type OrderTaxInfo as b3, type OrderTaxBreakdown as b4, type AppliedDiscount as b5, type AppliedDiscountDiscountSourceOneOf as b6, type Coupon as b7, type MerchantDiscount as b8, type MerchantDiscountMerchantDiscountReasonOneOf as b9, type AuthorizedPaymentCreated as bA, type AuthorizedPaymentCaptured as bB, type AuthorizedPaymentVoided as bC, type RefundInitiated as bD, type RefundedPayment as bE, type RefundedPaymentKindOneOf as bF, type RegularPaymentRefund as bG, type GiftCardPaymentRefund as bH, type MembershipPaymentRefund as bI, type PaymentRefunded as bJ, type PaymentRefundFailed as bK, type RefundedAsStoreCredit as bL, type PaymentPending as bM, type PaymentPendingPaymentDetailsOneOf as bN, type RegularPayment as bO, type RegularPaymentPaymentMethodDetailsOneOf as bP, type CreditCardDetails as bQ, type PaymentCanceled as bR, type PaymentCanceledPaymentDetailsOneOf as bS, type PaymentDeclined as bT, type PaymentDeclinedPaymentDetailsOneOf as bU, type ReceiptCreated as bV, type ReceiptCreatedReceiptInfoOneOf as bW, type WixReceipt as bX, type ExternalReceipt as bY, type ReceiptSent as bZ, type ReceiptSentReceiptInfoOneOf as b_, type DiscountRule as ba, type DiscountRuleName as bb, type LineItemDiscount as bc, type Activity as bd, type ActivityContentOneOf as be, type CustomActivity as bf, type MerchantComment as bg, type OrderRefunded as bh, type OrderCreatedFromExchange as bi, type NewExchangeOrderCreated as bj, type LineItemExchangeData as bk, type DraftOrderChangesApplied as bl, type OrderChange as bm, type OrderChangeValueOneOf as bn, type LineItemChanges as bo, type LineItemQuantityChange as bp, type LineItemPriceChange as bq, type ManagedLineItem as br, type ManagedDiscount as bs, type TranslatedValue as bt, type LineItemAmount as bu, type ManagedAdditionalFee as bv, type TotalPriceChange as bw, type ShippingInformationChange as bx, type ShippingInformation as by, type SavedPaymentMethod as bz, type UpdateOrderApplicationErrors as c, type AdditionalFeeDeltaDeltaOneOf as c$, type ChargebackReversed as c0, type CreatedBy as c1, type CreatedByStringOneOf as c2, type ChannelInfo as c3, type CustomField as c4, type BalanceSummary as c5, type Balance as c6, type AdditionalFee as c7, type FulfillmentStatusesAggregate as c8, type Tags as c9, type CursorSearch as cA, type CursorSearchPagingMethodOneOf as cB, type CursorPagingMetadata as cC, type CreateOrderRequest as cD, type OrderCreationSettings as cE, type OrderCreateNotifications as cF, type CreateOrderResponse as cG, type UpdateOrderRequest as cH, type UpdateOrderResponse as cI, type BulkUpdateOrdersRequest as cJ, type BulkOrderResult as cK, type ItemMetadata as cL, type ApplicationError as cM, type BulkActionMetadata as cN, type CommitDeltasRequest as cO, type DraftOrderDiffs as cP, type DraftOrderDiffsShippingUpdateInfoOneOf as cQ, type DraftOrderDiffsBuyerUpdateInfoOneOf as cR, type DraftOrderDiffsBillingUpdateInfoOneOf as cS, type DraftOrderDiffsRecipientUpdateInfoOneOf as cT, type V1LineItemDelta as cU, type V1LineItemDeltaDeltaOneOf as cV, type OrderLineItemChangedDetails as cW, type ItemChangedDetails as cX, type AppliedDiscountDelta as cY, type AppliedDiscountDeltaDeltaOneOf as cZ, type AdditionalFeeDelta as c_, type TagList as ca, type Location as cb, type DiffmatokyPayload as cc, type ErrorInformation as cd, type ContinueSideEffectsFlowInLegacyData as ce, type OrdersExperiments as cf, type SnapshotMessage as cg, type IndexingMessage as ch, type OrderApproved as ci, type OrderRejectedEventOrderRejected as cj, type OrderItemsRestocked as ck, type RestockItem as cl, type GetOrderRequest as cm, type GetOrderResponse as cn, type InternalQueryOrdersRequest as co, type PlatformQuery as cp, type PlatformQueryPagingMethodOneOf as cq, type Sorting as cr, type PlatformPaging as cs, type CursorPaging as ct, type InternalQueryOrdersResponse as cu, type PlatformPagingMetadata as cv, type Cursors as cw, type QueryOrderRequest as cx, type QueryOrderResponse as cy, type SearchOrdersRequest as cz, type BulkUpdateOrdersResponse as d, type LineItemUpdate as d$, type DraftOrderCommitSettings as d0, type InventoryUpdateDetails as d1, type OrderDeltasCommitted as d2, type CommittedDiffs as d3, type CommittedDiffsShippingUpdateInfoOneOf as d4, type LineItemDelta as d5, type LineItemDeltaDeltaOneOf as d6, type ArchiveOrderRequest as d7, type ArchiveOrderResponse as d8, type BulkArchiveOrdersRequest as d9, type OrderPlaced as dA, type OrderPaid as dB, type OrderFulfilled as dC, type OrderNotFulfilled as dD, type OrderCanceled as dE, type DownloadLinkSent as dF, type TrackingNumberAdded as dG, type TrackingNumberEdited as dH, type TrackingLinkAdded as dI, type ShippingConfirmationEmailSent as dJ, type InvoiceAdded as dK, type InvoiceSent as dL, type FulfillerEmailSent as dM, type ShippingAddressEdited as dN, type EmailEdited as dO, type PickupReadyEmailSent as dP, type OrderPartiallyPaid as dQ, type OrderPending as dR, type OrderRejected as dS, type AddInternalActivityResponse as dT, type AddActivityRequest as dU, type PublicActivityContentOneOf as dV, type AddActivitiesRequest as dW, type AddActivitiesResponse as dX, type UpdateActivityRequest as dY, type DeleteActivityRequest as dZ, type UpdateLineItemsDescriptionLinesRequest as d_, type BulkArchiveOrdersResponse as da, type BulkArchiveOrdersByFilterRequest as db, type BulkArchiveOrdersByFilterResponse as dc, type UnArchiveOrderRequest as dd, type UnArchiveOrderResponse as de, type BulkUnArchiveOrdersRequest as df, type BulkUnArchiveOrdersResponse as dg, type BulkUnArchiveOrdersByFilterRequest as dh, type BulkUnArchiveOrdersByFilterResponse as di, type UpdateBuyerInfoRequest as dj, type BuyerInfoUpdate as dk, type UpdateBuyerInfoResponse as dl, type UpdateBuyerEmailRequest as dm, type UpdateBuyerEmailResponse as dn, type UpdateOrderShippingAddressRequest as dp, type UpdateOrderShippingAddressResponse as dq, type UpdateBillingContactDetailsRequest as dr, type UpdateBillingContactDetailsResponse as ds, type UpdateOrderLineItemRequest as dt, type UpdateOrderLineItemsRequest as du, type MaskedOrderLineItem as dv, type UpdateOrderLineItemsResponse as dw, type AddInternalActivityRequest as dx, type InternalActivity as dy, type InternalActivityContentOneOf as dz, type CommitDeltasOptions as e, type Subdivision as e$, type UpdateLineItemsDescriptionLinesResponse as e0, type MarkOrderAsSeenByHumanRequest as e1, type MarkOrderAsSeenByHumanResponse as e2, type CancelOrderRequest as e3, type OrderCanceledEventOrderCanceled as e4, type UpdateOrderStatusRequest as e5, type MarkAsFulfilledRequest as e6, type MarkAsFulfilledResponse as e7, type FulfillmentStatusUpdated as e8, type BulkMarkAsFulfilledRequest as e9, type BulkUpdateOrderTagsResult as eA, type DomainEvent as eB, type DomainEventBodyOneOf as eC, type EntityCreatedEvent as eD, type RestoreInfo as eE, type EntityUpdatedEvent as eF, type EntityDeletedEvent as eG, type ActionEvent as eH, type Empty as eI, type Task as eJ, type TaskKey as eK, type TaskAction as eL, type TaskActionActionOneOf as eM, type Complete as eN, type Cancel as eO, type Reschedule as eP, type InvoiceSentEvent as eQ, type IdAndVersion as eR, type InvoiceFields as eS, type Customer as eT, type Email as eU, type QuotesAddress as eV, type AddressDescription as eW, type Phone as eX, type Company as eY, type CommonAddress as eZ, type CommonAddressStreetOneOf as e_, type BulkMarkAsFulfilledResponse as ea, type BulkMarkAsFulfilledByFilterRequest as eb, type BulkMarkAsFulfilledByFilterResponse as ec, type MarkAsUnfulfilledRequest as ed, type MarkAsUnfulfilledResponse as ee, type BulkMarkAsUnfulfilledRequest as ef, type BulkMarkAsUnfulfilledResponse as eg, type BulkMarkAsUnfulfilledByFilterRequest as eh, type BulkMarkAsUnfulfilledByFilterResponse as ei, type BulkSetBusinessLocationRequest as ej, type BulkSetBusinessLocationResponse as ek, type BulkSetBusinessLocationResult as el, type MarkOrderAsPaidRequest as em, type MarkOrderAsPaidResponse as en, type PaymentStatusUpdated as eo, type BulkMarkOrdersAsPaidRequest as ep, type BulkMarkOrdersAsPaidResponse as eq, type CreatePaymentGatewayOrderRequest as er, type CreatePaymentGatewayOrderResponse as es, type GetShipmentsRequest as et, type GetShipmentsResponse as eu, type AggregateOrdersRequest as ev, type DecrementItemsQuantityRequest as ew, type DecrementData as ex, type DecrementItemsQuantityResponse as ey, type BulkUpdateOrderTagsRequest as ez, type CommitDeltasResponse as f, onOrderUpdated as f$, type StandardDetails as f0, type InvoiceDates as f1, type LineItems as f2, type LineItem as f3, type BigDecimalWrapper as f4, type LineItemTax as f5, type Source as f6, type LineItemMetaData as f7, type Locale as f8, type TotalPrice as f9, type PaymentStatusWithLiterals as fA, type FulfillmentStatusWithLiterals as fB, type WeightUnitWithLiterals as fC, type VatTypeWithLiterals as fD, type PickupMethodWithLiterals as fE, type DiscountTypeWithLiterals as fF, type DiscountReasonWithLiterals as fG, type LineItemQuantityChangeTypeWithLiterals as fH, type ActivityTypeWithLiterals as fI, type AttributionSourceWithLiterals as fJ, type ChannelTypeWithLiterals as fK, type SortOrderWithLiterals as fL, type OrderApprovalStrategyWithLiterals as fM, type DeltaPaymentOptionTypeWithLiterals as fN, type InventoryActionWithLiterals as fO, type PlacementWithLiterals as fP, type SubdivisionTypeWithLiterals as fQ, type SourceTypeWithLiterals as fR, type CustomFieldGroupWithLiterals as fS, type ValueTypeWithLiterals as fT, type DepositTypeWithLiterals as fU, type InvoiceStatusWithLiterals as fV, type WebhookIdentityTypeWithLiterals as fW, onOrderApproved as fX, onOrderCanceled as fY, onOrderCreated as fZ, onOrderPaymentStatusUpdated as f_, type ItemizedFee as fa, type Discount as fb, type DiscountOneDiscountTypeOneOf as fc, type CalculatedTaxes as fd, type CalculatedTax as fe, type Payments as ff, type Payment as fg, type MetaData as fh, type InvoiceDynamicPriceTotals as fi, type CustomFieldValue as fj, type Value as fk, type Deposit as fl, type TriggerSideEffectsFromLegacyData as fm, type MessageEnvelope as fn, type IdentificationData as fo, type IdentificationDataIdOneOf as fp, type BaseEventMetadata as fq, type EventMetadata as fr, type OrderSearchSpec as fs, type DescriptionLineTypeWithLiterals as ft, type ItemTypeItemTypeWithLiterals as fu, type PaymentOptionTypeWithLiterals as fv, type JurisdictionTypeWithLiterals as fw, type SubscriptionFrequencyWithLiterals as fx, type AdjustmentTypeWithLiterals as fy, type TaxableAddressTypeWithLiterals as fz, type CommitDeltasApplicationErrors as g, getOrder as g0, type CommonSearchWithEntityContext as g1, createOrder as g2, updateOrder as g3, bulkUpdateOrders as g4, commitDeltas as g5, updateOrderLineItem as g6, addActivity as g7, updateActivity as g8, deleteActivity as g9, cancelOrder as ga, updateOrderStatus as gb, aggregateOrders as gc, bulkUpdateOrderTags as gd, type UpdateOrderLineItemIdentifiers as h, type UpdateOrderLineItem as i, type UpdateOrderLineItemResponse as j, type UpdateActivityIdentifiers as k, type UpdateActivityResponse as l, type DeleteActivityResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type OrderStatusWithLiterals as q, type UpdateOrderStatusResponse as r, type UpdateOrderStatusApplicationErrors as s, type AggregateOrdersOptions as t, type AggregateOrdersResponse as u, type BulkUpdateOrderTagsOptions as v, type BulkUpdateOrderTagsResponse as w, type OrderApprovedEnvelope as x, type OrderCanceledEnvelope as y, type OrderCreatedEnvelope as z };
|
|
6001
|
+
export { LineItemQuantityChangeType as $, type AddActivityResponse as A, type BulkUpdateOrdersOptions as B, type CreateOrderOptions as C, type DeleteActivityIdentifiers as D, type OrderCreatedEnvelope as E, type OrderPaymentStatusUpdatedEnvelope as F, type GetOrderApplicationErrors as G, DescriptionLineType as H, ItemTypeItemType as I, PaymentOptionType as J, JurisdictionType as K, SubscriptionFrequency as L, type MaskedOrder as M, AdjustmentType as N, type Order as O, type PublicActivity as P, PaymentStatus as Q, FulfillmentStatus as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, VatType as V, WeightUnit as W, PickupMethod as X, OrderStatus as Y, DiscountType as Z, DiscountReason as _, type OrderSearch as a, type PickupAddress as a$, ActivityType as a0, AttributionSource as a1, ChannelType as a2, VersioningMode as a3, WebhookIdentityType as a4, SortOrder as a5, OrderApprovalStrategy as a6, DeltaPaymentOptionType as a7, InventoryAction as a8, Placement as a9, type SubscriptionDescription as aA, type SubscriptionSettings as aB, type FreeTrialPeriod as aC, type BillingAdjustment as aD, type BillingAdjustmentPriceSummary as aE, type PriceDescription as aF, type LocationAndQuantity as aG, type TaxableAddress as aH, type TaxableAddressTaxableAddressDataOneOf as aI, type ExtendedFields as aJ, type ModifierGroup as aK, type TranslatableString as aL, type ItemModifier as aM, type BuyerInfo as aN, type BuyerInfoIdOneOf as aO, type CurrencyConversionDetails as aP, type PriceSummary as aQ, type AddressWithContact as aR, type Address as aS, type StreetAddress as aT, type AddressLocation as aU, type FullAddressContactDetails as aV, type VatId as aW, type V1ShippingInformation as aX, type DeliveryLogistics as aY, type DeliveryLogisticsAddressOneOf as aZ, type PickupDetails as a_, SubdivisionType as aa, SourceType as ab, CustomFieldGroup as ac, ValueType as ad, DepositType as ae, InvoiceStatus as af, type OrderLineItem as ag, type ProductName as ah, type CatalogReference as ai, type Price as aj, type DescriptionLine as ak, type DescriptionLineValueOneOf as al, type DescriptionLineDescriptionLineValueOneOf as am, type DescriptionLineName as an, type PlainTextValue as ao, type Color as ap, type FocalPoint as aq, type PhysicalProperties as ar, type ItemType as as, type ItemTypeItemTypeDataOneOf as at, type ItemTaxFullDetails as au, type LineItemTaxInfo as av, type LineItemTaxBreakdown as aw, type DigitalFile as ax, type SubscriptionInfo as ay, type SubscriptionTitle as az, type CreateOrderApplicationErrors as b, type ReceiptSentReceiptInfoOneOf as b$, type DeliveryTimeSlot as b0, type ShippingPrice as b1, type ShippingRegion as b2, type TaxSummary as b3, type OrderTaxInfo as b4, type OrderTaxBreakdown as b5, type AppliedDiscount as b6, type AppliedDiscountDiscountSourceOneOf as b7, type Coupon as b8, type MerchantDiscount as b9, type SavedPaymentMethod as bA, type AuthorizedPaymentCreated as bB, type AuthorizedPaymentCaptured as bC, type AuthorizedPaymentVoided as bD, type RefundInitiated as bE, type RefundedPayment as bF, type RefundedPaymentKindOneOf as bG, type RegularPaymentRefund as bH, type GiftCardPaymentRefund as bI, type MembershipPaymentRefund as bJ, type PaymentRefunded as bK, type PaymentRefundFailed as bL, type RefundedAsStoreCredit as bM, type PaymentPending as bN, type PaymentPendingPaymentDetailsOneOf as bO, type RegularPayment as bP, type RegularPaymentPaymentMethodDetailsOneOf as bQ, type CreditCardDetails as bR, type PaymentCanceled as bS, type PaymentCanceledPaymentDetailsOneOf as bT, type PaymentDeclined as bU, type PaymentDeclinedPaymentDetailsOneOf as bV, type ReceiptCreated as bW, type ReceiptCreatedReceiptInfoOneOf as bX, type WixReceipt as bY, type ExternalReceipt as bZ, type ReceiptSent as b_, type MerchantDiscountMerchantDiscountReasonOneOf as ba, type DiscountRule as bb, type DiscountRuleName as bc, type LineItemDiscount as bd, type Activity as be, type ActivityContentOneOf as bf, type CustomActivity as bg, type MerchantComment as bh, type OrderRefunded as bi, type OrderCreatedFromExchange as bj, type NewExchangeOrderCreated as bk, type LineItemExchangeData as bl, type DraftOrderChangesApplied as bm, type OrderChange as bn, type OrderChangeValueOneOf as bo, type LineItemChanges as bp, type LineItemQuantityChange as bq, type LineItemPriceChange as br, type ManagedLineItem as bs, type ManagedDiscount as bt, type TranslatedValue as bu, type LineItemAmount as bv, type ManagedAdditionalFee as bw, type TotalPriceChange as bx, type ShippingInformationChange as by, type ShippingInformation as bz, type UpdateOrderApplicationErrors as c, type CursorSearch as c$, type ChargebackCreated as c0, type ChargebackReversed as c1, type CreatedBy as c2, type CreatedByStringOneOf as c3, type ChannelInfo as c4, type CustomField as c5, type BalanceSummary as c6, type Balance as c7, type AdditionalFee as c8, type FulfillmentStatusesAggregate as c9, type EntityDeletedEvent as cA, type ActionEvent as cB, type Empty as cC, type BatchOfTriggerReindexOrderRequest as cD, type TriggerReindexOrderRequest as cE, type MessageEnvelope as cF, type IdentificationData as cG, type IdentificationDataIdOneOf as cH, type DiffmatokyPayload as cI, type ErrorInformation as cJ, type ContinueSideEffectsFlowInLegacyData as cK, type SnapshotMessage as cL, type IndexingMessage as cM, type GetOrderRequest as cN, type GetOrderResponse as cO, type InternalQueryOrdersRequest as cP, type PlatformQuery as cQ, type PlatformQueryPagingMethodOneOf as cR, type Sorting as cS, type PlatformPaging as cT, type CursorPaging as cU, type InternalQueryOrdersResponse as cV, type PlatformPagingMetadata as cW, type Cursors as cX, type QueryOrderRequest as cY, type QueryOrderResponse as cZ, type SearchOrdersRequest as c_, type Tags as ca, type TagList as cb, type Location as cc, type UpdateInternalDocumentsEvent as cd, type UpdateInternalDocumentsEventOperationOneOf as ce, type InternalDocument as cf, type InternalDocumentUpdateOperation as cg, type DeleteByIdsOperation as ch, type DeleteByFilterOperation as ci, type InternalDocumentUpdateByFilterOperation as cj, type InternalUpdateExistingOperation as ck, type VersionedDocumentUpdateOperation as cl, type VersionedDeleteByIdsOperation as cm, type VersionedDocumentId as cn, type OrderApproved as co, type OrdersExperiments as cp, type OrderRejectedEventOrderRejected as cq, type OrderItemsRestocked as cr, type RestockItem as cs, type TriggerReindexRequest as ct, type TriggerReindexResponse as cu, type DomainEvent as cv, type DomainEventBodyOneOf as cw, type EntityCreatedEvent as cx, type RestoreInfo as cy, type EntityUpdatedEvent as cz, type BulkUpdateOrdersResponse as d, type OrderPlaced as d$, type CursorSearchPagingMethodOneOf as d0, type CursorPagingMetadata as d1, type CreateOrderRequest as d2, type OrderCreationSettings as d3, type OrderCreateNotifications as d4, type CreateOrderResponse as d5, type UpdateOrderRequest as d6, type UpdateOrderResponse as d7, type BulkUpdateOrdersRequest as d8, type BulkOrderResult as d9, type ArchiveOrderResponse as dA, type BulkArchiveOrdersRequest as dB, type BulkArchiveOrdersResponse as dC, type BulkArchiveOrdersByFilterRequest as dD, type BulkArchiveOrdersByFilterResponse as dE, type UnArchiveOrderRequest as dF, type UnArchiveOrderResponse as dG, type BulkUnArchiveOrdersRequest as dH, type BulkUnArchiveOrdersResponse as dI, type BulkUnArchiveOrdersByFilterRequest as dJ, type BulkUnArchiveOrdersByFilterResponse as dK, type UpdateBuyerInfoRequest as dL, type BuyerInfoUpdate as dM, type UpdateBuyerInfoResponse as dN, type UpdateBuyerEmailRequest as dO, type UpdateBuyerEmailResponse as dP, type UpdateOrderShippingAddressRequest as dQ, type UpdateOrderShippingAddressResponse as dR, type UpdateBillingContactDetailsRequest as dS, type UpdateBillingContactDetailsResponse as dT, type UpdateOrderLineItemRequest as dU, type UpdateOrderLineItemsRequest as dV, type MaskedOrderLineItem as dW, type UpdateOrderLineItemsResponse as dX, type AddInternalActivityRequest as dY, type InternalActivity as dZ, type InternalActivityContentOneOf as d_, type ItemMetadata as da, type ApplicationError as db, type BulkActionMetadata as dc, type CommitDeltasRequest as dd, type DraftOrderDiffs as de, type DraftOrderDiffsShippingUpdateInfoOneOf as df, type DraftOrderDiffsBuyerUpdateInfoOneOf as dg, type DraftOrderDiffsBillingUpdateInfoOneOf as dh, type DraftOrderDiffsRecipientUpdateInfoOneOf as di, type V1LineItemDelta as dj, type V1LineItemDeltaDeltaOneOf as dk, type OrderLineItemChangedDetails as dl, type ItemChangedDetails as dm, type AppliedDiscountDelta as dn, type AppliedDiscountDeltaDeltaOneOf as dp, type AdditionalFeeDelta as dq, type AdditionalFeeDeltaDeltaOneOf as dr, type DraftOrderCommitSettings as ds, type InventoryUpdateDetails as dt, type OrderDeltasCommitted as du, type CommittedDiffs as dv, type CommittedDiffsShippingUpdateInfoOneOf as dw, type LineItemDelta as dx, type LineItemDeltaDeltaOneOf as dy, type ArchiveOrderRequest as dz, type CommitDeltasOptions as e, type BulkUpdateOrderTagsResult as e$, type OrderPaid as e0, type OrderFulfilled as e1, type OrderNotFulfilled as e2, type OrderCanceled as e3, type DownloadLinkSent as e4, type TrackingNumberAdded as e5, type TrackingNumberEdited as e6, type TrackingLinkAdded as e7, type ShippingConfirmationEmailSent as e8, type InvoiceAdded as e9, type BulkMarkAsFulfilledRequest as eA, type BulkMarkAsFulfilledResponse as eB, type BulkMarkAsFulfilledByFilterRequest as eC, type BulkMarkAsFulfilledByFilterResponse as eD, type MarkAsUnfulfilledRequest as eE, type MarkAsUnfulfilledResponse as eF, type BulkMarkAsUnfulfilledRequest as eG, type BulkMarkAsUnfulfilledResponse as eH, type BulkMarkAsUnfulfilledByFilterRequest as eI, type BulkMarkAsUnfulfilledByFilterResponse as eJ, type BulkSetBusinessLocationRequest as eK, type BulkSetBusinessLocationResponse as eL, type BulkSetBusinessLocationResult as eM, type MarkOrderAsPaidRequest as eN, type MarkOrderAsPaidResponse as eO, type PaymentStatusUpdated as eP, type BulkMarkOrdersAsPaidRequest as eQ, type BulkMarkOrdersAsPaidResponse as eR, type CreatePaymentGatewayOrderRequest as eS, type CreatePaymentGatewayOrderResponse as eT, type GetShipmentsRequest as eU, type GetShipmentsResponse as eV, type AggregateOrdersRequest as eW, type DecrementItemsQuantityRequest as eX, type DecrementData as eY, type DecrementItemsQuantityResponse as eZ, type BulkUpdateOrderTagsRequest as e_, type InvoiceSent as ea, type FulfillerEmailSent as eb, type ShippingAddressEdited as ec, type EmailEdited as ed, type PickupReadyEmailSent as ee, type OrderPartiallyPaid as ef, type OrderPending as eg, type OrderRejected as eh, type AddInternalActivityResponse as ei, type AddActivityRequest as ej, type PublicActivityContentOneOf as ek, type AddActivitiesRequest as el, type AddActivitiesResponse as em, type UpdateActivityRequest as en, type DeleteActivityRequest as eo, type UpdateLineItemsDescriptionLinesRequest as ep, type LineItemUpdate as eq, type UpdateLineItemsDescriptionLinesResponse as er, type MarkOrderAsSeenByHumanRequest as es, type MarkOrderAsSeenByHumanResponse as et, type CancelOrderRequest as eu, type OrderCanceledEventOrderCanceled as ev, type UpdateOrderStatusRequest as ew, type MarkAsFulfilledRequest as ex, type MarkAsFulfilledResponse as ey, type FulfillmentStatusUpdated as ez, type CommitDeltasResponse as f, type VersioningModeWithLiterals as f$, type Task as f0, type TaskKey as f1, type TaskAction as f2, type TaskActionActionOneOf as f3, type Complete as f4, type Cancel as f5, type Reschedule as f6, type InvoiceSentEvent as f7, type IdAndVersion as f8, type InvoiceFields as f9, type MetaData as fA, type InvoiceDynamicPriceTotals as fB, type CustomFieldValue as fC, type Value as fD, type Deposit as fE, type TriggerSideEffectsFromLegacyData as fF, type BaseEventMetadata as fG, type EventMetadata as fH, type OrderSearchSpec as fI, type DescriptionLineTypeWithLiterals as fJ, type ItemTypeItemTypeWithLiterals as fK, type PaymentOptionTypeWithLiterals as fL, type JurisdictionTypeWithLiterals as fM, type SubscriptionFrequencyWithLiterals as fN, type AdjustmentTypeWithLiterals as fO, type TaxableAddressTypeWithLiterals as fP, type PaymentStatusWithLiterals as fQ, type FulfillmentStatusWithLiterals as fR, type WeightUnitWithLiterals as fS, type VatTypeWithLiterals as fT, type PickupMethodWithLiterals as fU, type DiscountTypeWithLiterals as fV, type DiscountReasonWithLiterals as fW, type LineItemQuantityChangeTypeWithLiterals as fX, type ActivityTypeWithLiterals as fY, type AttributionSourceWithLiterals as fZ, type ChannelTypeWithLiterals as f_, type Customer as fa, type Email as fb, type QuotesAddress as fc, type AddressDescription as fd, type Phone as fe, type Company as ff, type CommonAddress as fg, type CommonAddressStreetOneOf as fh, type Subdivision as fi, type StandardDetails as fj, type InvoiceDates as fk, type LineItems as fl, type LineItem as fm, type BigDecimalWrapper as fn, type LineItemTax as fo, type Source as fp, type LineItemMetaData as fq, type Locale as fr, type TotalPrice as fs, type ItemizedFee as ft, type Discount as fu, type DiscountOneDiscountTypeOneOf as fv, type CalculatedTaxes as fw, type CalculatedTax as fx, type Payments as fy, type Payment as fz, type CommitDeltasApplicationErrors as g, type WebhookIdentityTypeWithLiterals as g0, type SortOrderWithLiterals as g1, type OrderApprovalStrategyWithLiterals as g2, type DeltaPaymentOptionTypeWithLiterals as g3, type InventoryActionWithLiterals as g4, type PlacementWithLiterals as g5, type SubdivisionTypeWithLiterals as g6, type SourceTypeWithLiterals as g7, type CustomFieldGroupWithLiterals as g8, type ValueTypeWithLiterals as g9, type DepositTypeWithLiterals as ga, type InvoiceStatusWithLiterals as gb, onOrderApproved as gc, onOrderUpdated as gd, onOrderCanceled as ge, onOrderCreated as gf, onOrderPaymentStatusUpdated as gg, getOrder as gh, type CommonSearchWithEntityContext as gi, createOrder as gj, updateOrder as gk, bulkUpdateOrders as gl, commitDeltas as gm, updateOrderLineItem as gn, addActivity as go, updateActivity as gp, deleteActivity as gq, cancelOrder as gr, updateOrderStatus as gs, aggregateOrders as gt, bulkUpdateOrderTags as gu, type UpdateOrderLineItemIdentifiers as h, type UpdateOrderLineItem as i, type UpdateOrderLineItemResponse as j, type UpdateActivityIdentifiers as k, type UpdateActivityResponse as l, type DeleteActivityResponse as m, type CancelOrderOptions as n, type CancelOrderResponse as o, type CancelOrderApplicationErrors as p, type OrderStatusWithLiterals as q, type UpdateOrderStatusResponse as r, type UpdateOrderStatusApplicationErrors as s, type AggregateOrdersOptions as t, type AggregateOrdersResponse as u, type BulkUpdateOrderTagsOptions as v, type BulkUpdateOrderTagsResponse as w, type OrderApprovedEnvelope as x, type OrderUpdatedEnvelope as y, type OrderCanceledEnvelope as z };
|