@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
|
@@ -2350,43 +2350,153 @@ interface Location {
|
|
|
2350
2350
|
*/
|
|
2351
2351
|
name?: string;
|
|
2352
2352
|
}
|
|
2353
|
-
interface
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2353
|
+
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
2354
|
+
/** insert/update documents */
|
|
2355
|
+
update?: InternalDocumentUpdateOperation;
|
|
2356
|
+
/** delete by document ids */
|
|
2357
|
+
deleteByIds?: DeleteByIdsOperation;
|
|
2358
|
+
/** delete documents matching filter */
|
|
2359
|
+
deleteByFilter?: DeleteByFilterOperation;
|
|
2360
|
+
/** update internal documents matching filter */
|
|
2361
|
+
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
2362
|
+
/** update only existing documents */
|
|
2363
|
+
updateExisting?: InternalUpdateExistingOperation;
|
|
2364
|
+
/** insert/update documents with versioning */
|
|
2365
|
+
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
2366
|
+
/** delete by document ids with versioning */
|
|
2367
|
+
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
2368
|
+
/**
|
|
2369
|
+
* type of the documents
|
|
2370
|
+
* @minLength 2
|
|
2371
|
+
*/
|
|
2372
|
+
documentType?: string;
|
|
2373
|
+
/**
|
|
2374
|
+
* language of the documents (mandatory)
|
|
2375
|
+
* @minLength 2
|
|
2376
|
+
*/
|
|
2377
|
+
language?: string | null;
|
|
2378
|
+
/**
|
|
2379
|
+
* one or more search documents
|
|
2380
|
+
* @deprecated
|
|
2381
|
+
*/
|
|
2382
|
+
addDocuments?: InternalDocument[];
|
|
2383
|
+
/**
|
|
2384
|
+
* one or more ids of indexed documents to be removed. Removal will happen before addition (if both provided)
|
|
2385
|
+
* @deprecated
|
|
2386
|
+
*/
|
|
2387
|
+
removeDocumentIds?: string[];
|
|
2388
|
+
/** id to pass to processing notification */
|
|
2389
|
+
correlationId?: string | null;
|
|
2390
|
+
/** when event was created / issued */
|
|
2391
|
+
issuedAt?: Date | null;
|
|
2360
2392
|
}
|
|
2361
|
-
|
|
2362
|
-
|
|
2393
|
+
/** @oneof */
|
|
2394
|
+
interface UpdateInternalDocumentsEventOperationOneOf {
|
|
2395
|
+
/** insert/update documents */
|
|
2396
|
+
update?: InternalDocumentUpdateOperation;
|
|
2397
|
+
/** delete by document ids */
|
|
2398
|
+
deleteByIds?: DeleteByIdsOperation;
|
|
2399
|
+
/** delete documents matching filter */
|
|
2400
|
+
deleteByFilter?: DeleteByFilterOperation;
|
|
2401
|
+
/** update internal documents matching filter */
|
|
2402
|
+
updateByFilter?: InternalDocumentUpdateByFilterOperation;
|
|
2403
|
+
/** update only existing documents */
|
|
2404
|
+
updateExisting?: InternalUpdateExistingOperation;
|
|
2405
|
+
/** insert/update documents with versioning */
|
|
2406
|
+
versionedUpdate?: VersionedDocumentUpdateOperation;
|
|
2407
|
+
/** delete by document ids with versioning */
|
|
2408
|
+
versionedDeleteByIds?: VersionedDeleteByIdsOperation;
|
|
2409
|
+
}
|
|
2410
|
+
interface InternalDocument {
|
|
2411
|
+
/** document with mandatory fields (id) and with fields specific to the type of the document */
|
|
2412
|
+
document?: Record<string, any> | null;
|
|
2413
|
+
}
|
|
2414
|
+
interface InternalDocumentUpdateOperation {
|
|
2415
|
+
/** documents to index or update */
|
|
2416
|
+
documents?: InternalDocument[];
|
|
2417
|
+
}
|
|
2418
|
+
interface DeleteByIdsOperation {
|
|
2419
|
+
/** ids of the documents to delete */
|
|
2420
|
+
documentIds?: string[];
|
|
2421
|
+
/**
|
|
2422
|
+
* tenant id for custom tenancy strategy
|
|
2423
|
+
* @minLength 2
|
|
2424
|
+
* @maxLength 300
|
|
2425
|
+
*/
|
|
2426
|
+
tenantId?: string | null;
|
|
2363
2427
|
}
|
|
2364
|
-
interface
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2428
|
+
interface DeleteByFilterOperation {
|
|
2429
|
+
/** documents matching this filter wil be deleted. only filterable documents defined in document_type can be used for filtering */
|
|
2430
|
+
filter?: Record<string, any> | null;
|
|
2431
|
+
/**
|
|
2432
|
+
* tenant id for custom tenancy strategy
|
|
2433
|
+
* @minLength 2
|
|
2434
|
+
* @maxLength 300
|
|
2435
|
+
*/
|
|
2436
|
+
tenantId?: string | null;
|
|
2368
2437
|
}
|
|
2369
|
-
interface
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2438
|
+
interface InternalDocumentUpdateByFilterOperation {
|
|
2439
|
+
/** documents matching this filter will be updated */
|
|
2440
|
+
filter?: Record<string, any> | null;
|
|
2441
|
+
/** partial document to apply */
|
|
2442
|
+
document?: InternalDocument;
|
|
2443
|
+
/**
|
|
2444
|
+
* tenant id for custom tenancy strategy
|
|
2445
|
+
* @minLength 2
|
|
2446
|
+
* @maxLength 300
|
|
2447
|
+
*/
|
|
2448
|
+
tenantId?: string | null;
|
|
2375
2449
|
}
|
|
2376
|
-
interface
|
|
2377
|
-
|
|
2378
|
-
|
|
2450
|
+
interface InternalUpdateExistingOperation {
|
|
2451
|
+
/** documents to update */
|
|
2452
|
+
documents?: InternalDocument[];
|
|
2379
2453
|
}
|
|
2380
|
-
interface
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2454
|
+
interface VersionedDocumentUpdateOperation {
|
|
2455
|
+
/** documents to create or overwrite */
|
|
2456
|
+
documents?: InternalDocument[];
|
|
2457
|
+
/** versioning mode to use instead of default */
|
|
2458
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
2459
|
+
}
|
|
2460
|
+
declare enum VersioningMode {
|
|
2461
|
+
/** use default versioning mode agreed with search team */
|
|
2462
|
+
DEFAULT = "DEFAULT",
|
|
2463
|
+
/** execute only if version is greater than existing */
|
|
2464
|
+
GREATER_THAN = "GREATER_THAN",
|
|
2465
|
+
/** execute only if version is greater or equal to existing */
|
|
2466
|
+
GREATER_OR_EQUAL = "GREATER_OR_EQUAL"
|
|
2467
|
+
}
|
|
2468
|
+
/** @enumType */
|
|
2469
|
+
type VersioningModeWithLiterals = VersioningMode | 'DEFAULT' | 'GREATER_THAN' | 'GREATER_OR_EQUAL';
|
|
2470
|
+
interface VersionedDeleteByIdsOperation {
|
|
2471
|
+
/** ids with version of the documents to delete */
|
|
2472
|
+
documentIds?: VersionedDocumentId[];
|
|
2473
|
+
/**
|
|
2474
|
+
* tenant id for custom tenancy strategy
|
|
2475
|
+
* @minLength 2
|
|
2476
|
+
* @maxLength 300
|
|
2477
|
+
*/
|
|
2478
|
+
tenantId?: string | null;
|
|
2479
|
+
}
|
|
2480
|
+
interface VersionedDocumentId {
|
|
2481
|
+
/** document id */
|
|
2482
|
+
documentId?: string;
|
|
2483
|
+
/** document version */
|
|
2484
|
+
version?: string;
|
|
2485
|
+
/** versioning mode to use instead of default */
|
|
2486
|
+
versioningMode?: VersioningModeWithLiterals;
|
|
2384
2487
|
}
|
|
2385
2488
|
/** Triggered when the order status changes to approved */
|
|
2386
2489
|
interface OrderApproved {
|
|
2387
2490
|
/** The order that was updated */
|
|
2388
2491
|
order?: Order;
|
|
2389
2492
|
}
|
|
2493
|
+
interface OrdersExperiments {
|
|
2494
|
+
epCommitTax?: boolean;
|
|
2495
|
+
moveMerchantEmailToEp?: boolean;
|
|
2496
|
+
moveBuyerOrderConfirmationEmailToEp?: boolean;
|
|
2497
|
+
producedByEpBridge?: boolean;
|
|
2498
|
+
enableRewrittenSideEffects?: boolean;
|
|
2499
|
+
}
|
|
2390
2500
|
interface OrderRejectedEventOrderRejected {
|
|
2391
2501
|
/** The order that was rejected */
|
|
2392
2502
|
order?: Order;
|
|
@@ -2411,6 +2521,192 @@ interface RestockItem {
|
|
|
2411
2521
|
*/
|
|
2412
2522
|
quantity?: number;
|
|
2413
2523
|
}
|
|
2524
|
+
interface TriggerReindexRequest {
|
|
2525
|
+
/** @format GUID */
|
|
2526
|
+
metasiteId?: string;
|
|
2527
|
+
/**
|
|
2528
|
+
* @minLength 1
|
|
2529
|
+
* @maxLength 100
|
|
2530
|
+
* @maxSize 100
|
|
2531
|
+
*/
|
|
2532
|
+
orderIds?: string[];
|
|
2533
|
+
}
|
|
2534
|
+
interface TriggerReindexResponse {
|
|
2535
|
+
}
|
|
2536
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
2537
|
+
createdEvent?: EntityCreatedEvent;
|
|
2538
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2539
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2540
|
+
actionEvent?: ActionEvent;
|
|
2541
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
2542
|
+
_id?: string;
|
|
2543
|
+
/**
|
|
2544
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
2545
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
2546
|
+
*/
|
|
2547
|
+
entityFqdn?: string;
|
|
2548
|
+
/**
|
|
2549
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
2550
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
2551
|
+
*/
|
|
2552
|
+
slug?: string;
|
|
2553
|
+
/** ID of the entity associated with the event. */
|
|
2554
|
+
entityId?: string;
|
|
2555
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
2556
|
+
eventTime?: Date | null;
|
|
2557
|
+
/**
|
|
2558
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
2559
|
+
* (for example, GDPR).
|
|
2560
|
+
*/
|
|
2561
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
2562
|
+
/** If present, indicates the action that triggered the event. */
|
|
2563
|
+
originatedFrom?: string | null;
|
|
2564
|
+
/**
|
|
2565
|
+
* 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.
|
|
2566
|
+
* 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.
|
|
2567
|
+
*/
|
|
2568
|
+
entityEventSequence?: string | null;
|
|
2569
|
+
}
|
|
2570
|
+
/** @oneof */
|
|
2571
|
+
interface DomainEventBodyOneOf {
|
|
2572
|
+
createdEvent?: EntityCreatedEvent;
|
|
2573
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2574
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2575
|
+
actionEvent?: ActionEvent;
|
|
2576
|
+
}
|
|
2577
|
+
interface EntityCreatedEvent {
|
|
2578
|
+
entity?: string;
|
|
2579
|
+
}
|
|
2580
|
+
interface RestoreInfo {
|
|
2581
|
+
deletedDate?: Date | null;
|
|
2582
|
+
}
|
|
2583
|
+
interface EntityUpdatedEvent {
|
|
2584
|
+
/**
|
|
2585
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
2586
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
2587
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
2588
|
+
*/
|
|
2589
|
+
currentEntity?: string;
|
|
2590
|
+
}
|
|
2591
|
+
interface EntityDeletedEvent {
|
|
2592
|
+
/** Entity that was deleted. */
|
|
2593
|
+
deletedEntity?: string | null;
|
|
2594
|
+
}
|
|
2595
|
+
interface ActionEvent {
|
|
2596
|
+
body?: string;
|
|
2597
|
+
}
|
|
2598
|
+
interface Empty {
|
|
2599
|
+
}
|
|
2600
|
+
interface BatchOfTriggerReindexOrderRequest {
|
|
2601
|
+
/** @maxSize 25 */
|
|
2602
|
+
requests?: TriggerReindexOrderRequest[];
|
|
2603
|
+
}
|
|
2604
|
+
interface TriggerReindexOrderRequest {
|
|
2605
|
+
/** @format GUID */
|
|
2606
|
+
metasiteId?: string;
|
|
2607
|
+
/**
|
|
2608
|
+
* @minLength 1
|
|
2609
|
+
* @maxLength 100
|
|
2610
|
+
*/
|
|
2611
|
+
orderId?: string;
|
|
2612
|
+
}
|
|
2613
|
+
interface MessageEnvelope {
|
|
2614
|
+
/**
|
|
2615
|
+
* App instance ID.
|
|
2616
|
+
* @format GUID
|
|
2617
|
+
*/
|
|
2618
|
+
instanceId?: string | null;
|
|
2619
|
+
/**
|
|
2620
|
+
* Event type.
|
|
2621
|
+
* @maxLength 150
|
|
2622
|
+
*/
|
|
2623
|
+
eventType?: string;
|
|
2624
|
+
/** The identification type and identity data. */
|
|
2625
|
+
identity?: IdentificationData;
|
|
2626
|
+
/** Stringify payload. */
|
|
2627
|
+
data?: string;
|
|
2628
|
+
}
|
|
2629
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
2630
|
+
/**
|
|
2631
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2632
|
+
* @format GUID
|
|
2633
|
+
*/
|
|
2634
|
+
anonymousVisitorId?: string;
|
|
2635
|
+
/**
|
|
2636
|
+
* ID of a site visitor that has logged in to the site.
|
|
2637
|
+
* @format GUID
|
|
2638
|
+
*/
|
|
2639
|
+
memberId?: string;
|
|
2640
|
+
/**
|
|
2641
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2642
|
+
* @format GUID
|
|
2643
|
+
*/
|
|
2644
|
+
wixUserId?: string;
|
|
2645
|
+
/**
|
|
2646
|
+
* ID of an app.
|
|
2647
|
+
* @format GUID
|
|
2648
|
+
*/
|
|
2649
|
+
appId?: string;
|
|
2650
|
+
/** @readonly */
|
|
2651
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
2652
|
+
}
|
|
2653
|
+
/** @oneof */
|
|
2654
|
+
interface IdentificationDataIdOneOf {
|
|
2655
|
+
/**
|
|
2656
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2657
|
+
* @format GUID
|
|
2658
|
+
*/
|
|
2659
|
+
anonymousVisitorId?: string;
|
|
2660
|
+
/**
|
|
2661
|
+
* ID of a site visitor that has logged in to the site.
|
|
2662
|
+
* @format GUID
|
|
2663
|
+
*/
|
|
2664
|
+
memberId?: string;
|
|
2665
|
+
/**
|
|
2666
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2667
|
+
* @format GUID
|
|
2668
|
+
*/
|
|
2669
|
+
wixUserId?: string;
|
|
2670
|
+
/**
|
|
2671
|
+
* ID of an app.
|
|
2672
|
+
* @format GUID
|
|
2673
|
+
*/
|
|
2674
|
+
appId?: string;
|
|
2675
|
+
}
|
|
2676
|
+
declare enum WebhookIdentityType {
|
|
2677
|
+
UNKNOWN = "UNKNOWN",
|
|
2678
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
2679
|
+
MEMBER = "MEMBER",
|
|
2680
|
+
WIX_USER = "WIX_USER",
|
|
2681
|
+
APP = "APP"
|
|
2682
|
+
}
|
|
2683
|
+
/** @enumType */
|
|
2684
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
2685
|
+
interface DiffmatokyPayload {
|
|
2686
|
+
left?: string;
|
|
2687
|
+
right?: string;
|
|
2688
|
+
compareChannel?: string;
|
|
2689
|
+
entityId?: string;
|
|
2690
|
+
errorInformation?: ErrorInformation;
|
|
2691
|
+
tags?: string[];
|
|
2692
|
+
}
|
|
2693
|
+
interface ErrorInformation {
|
|
2694
|
+
stackTrace?: string;
|
|
2695
|
+
}
|
|
2696
|
+
interface ContinueSideEffectsFlowInLegacyData {
|
|
2697
|
+
storeId?: string;
|
|
2698
|
+
orderId?: string;
|
|
2699
|
+
ordersExperiments?: OrdersExperiments;
|
|
2700
|
+
}
|
|
2701
|
+
interface SnapshotMessage {
|
|
2702
|
+
_id?: string;
|
|
2703
|
+
opType?: number;
|
|
2704
|
+
}
|
|
2705
|
+
interface IndexingMessage {
|
|
2706
|
+
_id?: string;
|
|
2707
|
+
opType?: number;
|
|
2708
|
+
requiredVersions?: string[];
|
|
2709
|
+
}
|
|
2414
2710
|
interface GetOrderRequest {
|
|
2415
2711
|
/**
|
|
2416
2712
|
* ID of the order to retrieve.
|
|
@@ -3827,70 +4123,6 @@ interface BulkUpdateOrderTagsResponse {
|
|
|
3827
4123
|
interface BulkUpdateOrderTagsResult {
|
|
3828
4124
|
itemMetadata?: ItemMetadata;
|
|
3829
4125
|
}
|
|
3830
|
-
interface DomainEvent extends DomainEventBodyOneOf {
|
|
3831
|
-
createdEvent?: EntityCreatedEvent;
|
|
3832
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
3833
|
-
deletedEvent?: EntityDeletedEvent;
|
|
3834
|
-
actionEvent?: ActionEvent;
|
|
3835
|
-
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
3836
|
-
_id?: string;
|
|
3837
|
-
/**
|
|
3838
|
-
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
3839
|
-
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
3840
|
-
*/
|
|
3841
|
-
entityFqdn?: string;
|
|
3842
|
-
/**
|
|
3843
|
-
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
3844
|
-
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
3845
|
-
*/
|
|
3846
|
-
slug?: string;
|
|
3847
|
-
/** ID of the entity associated with the event. */
|
|
3848
|
-
entityId?: string;
|
|
3849
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
3850
|
-
eventTime?: Date | null;
|
|
3851
|
-
/**
|
|
3852
|
-
* Whether the event was triggered as a result of a privacy regulation application
|
|
3853
|
-
* (for example, GDPR).
|
|
3854
|
-
*/
|
|
3855
|
-
triggeredByAnonymizeRequest?: boolean | null;
|
|
3856
|
-
/** If present, indicates the action that triggered the event. */
|
|
3857
|
-
originatedFrom?: string | null;
|
|
3858
|
-
/**
|
|
3859
|
-
* 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.
|
|
3860
|
-
* 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.
|
|
3861
|
-
*/
|
|
3862
|
-
entityEventSequence?: string | null;
|
|
3863
|
-
}
|
|
3864
|
-
/** @oneof */
|
|
3865
|
-
interface DomainEventBodyOneOf {
|
|
3866
|
-
createdEvent?: EntityCreatedEvent;
|
|
3867
|
-
updatedEvent?: EntityUpdatedEvent;
|
|
3868
|
-
deletedEvent?: EntityDeletedEvent;
|
|
3869
|
-
actionEvent?: ActionEvent;
|
|
3870
|
-
}
|
|
3871
|
-
interface EntityCreatedEvent {
|
|
3872
|
-
entity?: string;
|
|
3873
|
-
}
|
|
3874
|
-
interface RestoreInfo {
|
|
3875
|
-
deletedDate?: Date | null;
|
|
3876
|
-
}
|
|
3877
|
-
interface EntityUpdatedEvent {
|
|
3878
|
-
/**
|
|
3879
|
-
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
3880
|
-
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
3881
|
-
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
3882
|
-
*/
|
|
3883
|
-
currentEntity?: string;
|
|
3884
|
-
}
|
|
3885
|
-
interface EntityDeletedEvent {
|
|
3886
|
-
/** Entity that was deleted. */
|
|
3887
|
-
deletedEntity?: string | null;
|
|
3888
|
-
}
|
|
3889
|
-
interface ActionEvent {
|
|
3890
|
-
body?: string;
|
|
3891
|
-
}
|
|
3892
|
-
interface Empty {
|
|
3893
|
-
}
|
|
3894
4126
|
interface Task {
|
|
3895
4127
|
key?: TaskKey;
|
|
3896
4128
|
executeAt?: Date | null;
|
|
@@ -4346,78 +4578,6 @@ interface TriggerSideEffectsFromLegacyData {
|
|
|
4346
4578
|
orderId?: string;
|
|
4347
4579
|
ordersExperiments?: OrdersExperiments;
|
|
4348
4580
|
}
|
|
4349
|
-
interface MessageEnvelope {
|
|
4350
|
-
/**
|
|
4351
|
-
* App instance ID.
|
|
4352
|
-
* @format GUID
|
|
4353
|
-
*/
|
|
4354
|
-
instanceId?: string | null;
|
|
4355
|
-
/**
|
|
4356
|
-
* Event type.
|
|
4357
|
-
* @maxLength 150
|
|
4358
|
-
*/
|
|
4359
|
-
eventType?: string;
|
|
4360
|
-
/** The identification type and identity data. */
|
|
4361
|
-
identity?: IdentificationData;
|
|
4362
|
-
/** Stringify payload. */
|
|
4363
|
-
data?: string;
|
|
4364
|
-
}
|
|
4365
|
-
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
4366
|
-
/**
|
|
4367
|
-
* ID of a site visitor that has not logged in to the site.
|
|
4368
|
-
* @format GUID
|
|
4369
|
-
*/
|
|
4370
|
-
anonymousVisitorId?: string;
|
|
4371
|
-
/**
|
|
4372
|
-
* ID of a site visitor that has logged in to the site.
|
|
4373
|
-
* @format GUID
|
|
4374
|
-
*/
|
|
4375
|
-
memberId?: string;
|
|
4376
|
-
/**
|
|
4377
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
4378
|
-
* @format GUID
|
|
4379
|
-
*/
|
|
4380
|
-
wixUserId?: string;
|
|
4381
|
-
/**
|
|
4382
|
-
* ID of an app.
|
|
4383
|
-
* @format GUID
|
|
4384
|
-
*/
|
|
4385
|
-
appId?: string;
|
|
4386
|
-
/** @readonly */
|
|
4387
|
-
identityType?: WebhookIdentityTypeWithLiterals;
|
|
4388
|
-
}
|
|
4389
|
-
/** @oneof */
|
|
4390
|
-
interface IdentificationDataIdOneOf {
|
|
4391
|
-
/**
|
|
4392
|
-
* ID of a site visitor that has not logged in to the site.
|
|
4393
|
-
* @format GUID
|
|
4394
|
-
*/
|
|
4395
|
-
anonymousVisitorId?: string;
|
|
4396
|
-
/**
|
|
4397
|
-
* ID of a site visitor that has logged in to the site.
|
|
4398
|
-
* @format GUID
|
|
4399
|
-
*/
|
|
4400
|
-
memberId?: string;
|
|
4401
|
-
/**
|
|
4402
|
-
* ID of a Wix user (site owner, contributor, etc.).
|
|
4403
|
-
* @format GUID
|
|
4404
|
-
*/
|
|
4405
|
-
wixUserId?: string;
|
|
4406
|
-
/**
|
|
4407
|
-
* ID of an app.
|
|
4408
|
-
* @format GUID
|
|
4409
|
-
*/
|
|
4410
|
-
appId?: string;
|
|
4411
|
-
}
|
|
4412
|
-
declare enum WebhookIdentityType {
|
|
4413
|
-
UNKNOWN = "UNKNOWN",
|
|
4414
|
-
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
4415
|
-
MEMBER = "MEMBER",
|
|
4416
|
-
WIX_USER = "WIX_USER",
|
|
4417
|
-
APP = "APP"
|
|
4418
|
-
}
|
|
4419
|
-
/** @enumType */
|
|
4420
|
-
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
4421
4581
|
type GetOrderApplicationErrors = {
|
|
4422
4582
|
code?: 'ORDER_NOT_FOUND';
|
|
4423
4583
|
description?: string;
|
|
@@ -4538,6 +4698,32 @@ interface OrderApprovedEnvelope {
|
|
|
4538
4698
|
* @slug approved
|
|
4539
4699
|
*/
|
|
4540
4700
|
declare function onOrderApproved(handler: (event: OrderApprovedEnvelope) => void | Promise<void>): void;
|
|
4701
|
+
interface OrderUpdatedEnvelope {
|
|
4702
|
+
entity: Order;
|
|
4703
|
+
metadata: EventMetadata;
|
|
4704
|
+
}
|
|
4705
|
+
/** @permissionScope Manage Stores - all permissions
|
|
4706
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4707
|
+
* @permissionScope Manage Stores
|
|
4708
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
4709
|
+
* @permissionScope Read eCommerce - all read permissions
|
|
4710
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
4711
|
+
* @permissionScope Read Orders
|
|
4712
|
+
* @permissionScopeId SCOPE.DC-STORES.READ-ORDERS
|
|
4713
|
+
* @permissionScope Read Stores - all read permissions
|
|
4714
|
+
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
4715
|
+
* @permissionScope Manage Restaurants - all permissions
|
|
4716
|
+
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
4717
|
+
* @permissionScope Manage eCommerce - all permissions
|
|
4718
|
+
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
4719
|
+
* @permissionScope Manage Orders
|
|
4720
|
+
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
4721
|
+
* @permissionId ECOM.READ_ORDERS
|
|
4722
|
+
* @webhook
|
|
4723
|
+
* @eventType wix.ecom.v1.order_updated
|
|
4724
|
+
* @slug updated
|
|
4725
|
+
*/
|
|
4726
|
+
declare function onOrderUpdated(handler: (event: OrderUpdatedEnvelope) => void | Promise<void>): void;
|
|
4541
4727
|
interface OrderCanceledEnvelope {
|
|
4542
4728
|
data: OrderCanceledEventOrderCanceled;
|
|
4543
4729
|
metadata: EventMetadata;
|
|
@@ -4627,32 +4813,6 @@ interface OrderPaymentStatusUpdatedEnvelope {
|
|
|
4627
4813
|
* @slug payment_status_updated
|
|
4628
4814
|
*/
|
|
4629
4815
|
declare function onOrderPaymentStatusUpdated(handler: (event: OrderPaymentStatusUpdatedEnvelope) => void | Promise<void>): void;
|
|
4630
|
-
interface OrderUpdatedEnvelope {
|
|
4631
|
-
entity: Order;
|
|
4632
|
-
metadata: EventMetadata;
|
|
4633
|
-
}
|
|
4634
|
-
/** @permissionScope Manage Stores - all permissions
|
|
4635
|
-
* @permissionScopeId SCOPE.DC-STORES-MEGA.MANAGE-STORES
|
|
4636
|
-
* @permissionScope Manage Stores
|
|
4637
|
-
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
4638
|
-
* @permissionScope Read eCommerce - all read permissions
|
|
4639
|
-
* @permissionScopeId SCOPE.DC-ECOM-MEGA.READ-ECOM
|
|
4640
|
-
* @permissionScope Read Orders
|
|
4641
|
-
* @permissionScopeId SCOPE.DC-STORES.READ-ORDERS
|
|
4642
|
-
* @permissionScope Read Stores - all read permissions
|
|
4643
|
-
* @permissionScopeId SCOPE.DC-STORES-MEGA.READ-STORES
|
|
4644
|
-
* @permissionScope Manage Restaurants - all permissions
|
|
4645
|
-
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
4646
|
-
* @permissionScope Manage eCommerce - all permissions
|
|
4647
|
-
* @permissionScopeId SCOPE.DC-ECOM-MEGA.MANAGE-ECOM
|
|
4648
|
-
* @permissionScope Manage Orders
|
|
4649
|
-
* @permissionScopeId SCOPE.DC-STORES.MANAGE-ORDERS
|
|
4650
|
-
* @permissionId ECOM.READ_ORDERS
|
|
4651
|
-
* @webhook
|
|
4652
|
-
* @eventType wix.ecom.v1.order_updated
|
|
4653
|
-
* @slug updated
|
|
4654
|
-
*/
|
|
4655
|
-
declare function onOrderUpdated(handler: (event: OrderUpdatedEnvelope) => void | Promise<void>): void;
|
|
4656
4816
|
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`;
|
|
4657
4817
|
/**
|
|
4658
4818
|
* Retrieves an order.
|
|
@@ -5327,4 +5487,4 @@ interface BulkUpdateOrderTagsOptions {
|
|
|
5327
5487
|
unassignTags?: Tags;
|
|
5328
5488
|
}
|
|
5329
5489
|
|
|
5330
|
-
export { type ProductName as $, AdjustmentType as A, type BulkUpdateOrdersOptions as B, type CreateOrderOptions as C, DescriptionLineType as D, InventoryAction as E, FulfillmentStatus as F, type GetOrderApplicationErrors as G, Placement as H, ItemTypeItemType as I, JurisdictionType as J, SubdivisionType as K, LineItemQuantityChangeType as L, type MaskedOrder as M, SourceType as N, type Order as O, PaymentOptionType as P, CustomFieldGroup as Q, ValueType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, VatType as V, WeightUnit as W, DepositType as X, InvoiceStatus as Y, WebhookIdentityType as Z, type OrderLineItem as _, type OrderSearch as a, type MerchantComment as a$, type CatalogReference as a0, type Price as a1, type DescriptionLine as a2, type DescriptionLineValueOneOf as a3, type DescriptionLineDescriptionLineValueOneOf as a4, type DescriptionLineName as a5, type PlainTextValue as a6, type Color as a7, type FocalPoint as a8, type PhysicalProperties as a9, type Address as aA, type StreetAddress as aB, type AddressLocation as aC, type FullAddressContactDetails as aD, type VatId as aE, type V1ShippingInformation as aF, type DeliveryLogistics as aG, type DeliveryLogisticsAddressOneOf as aH, type PickupDetails as aI, type PickupAddress as aJ, type DeliveryTimeSlot as aK, type ShippingPrice as aL, type ShippingRegion as aM, type TaxSummary as aN, type OrderTaxInfo as aO, type OrderTaxBreakdown as aP, type AppliedDiscount as aQ, type AppliedDiscountDiscountSourceOneOf as aR, type Coupon as aS, type MerchantDiscount as aT, type MerchantDiscountMerchantDiscountReasonOneOf as aU, type DiscountRule as aV, type DiscountRuleName as aW, type LineItemDiscount as aX, type Activity as aY, type ActivityContentOneOf as aZ, type CustomActivity as a_, type ItemType as aa, type ItemTypeItemTypeDataOneOf as ab, type ItemTaxFullDetails as ac, type LineItemTaxInfo as ad, type LineItemTaxBreakdown as ae, type DigitalFile as af, type SubscriptionInfo as ag, type SubscriptionTitle as ah, type SubscriptionDescription as ai, type SubscriptionSettings as aj, type FreeTrialPeriod as ak, type BillingAdjustment as al, type BillingAdjustmentPriceSummary as am, type PriceDescription as an, type LocationAndQuantity as ao, type TaxableAddress as ap, type TaxableAddressTaxableAddressDataOneOf as aq, type ExtendedFields as ar, type ModifierGroup as as, type TranslatableString as at, type ItemModifier as au, type BuyerInfo as av, type BuyerInfoIdOneOf as aw, type CurrencyConversionDetails as ax, type PriceSummary as ay, type AddressWithContact as az, type CreateOrderApplicationErrors as b, type SnapshotMessage as b$, type OrderRefunded as b0, type OrderCreatedFromExchange as b1, type NewExchangeOrderCreated as b2, type LineItemExchangeData as b3, type DraftOrderChangesApplied as b4, type OrderChange as b5, type OrderChangeValueOneOf as b6, type LineItemChanges as b7, type LineItemQuantityChange as b8, type LineItemPriceChange as b9, type PaymentCanceled as bA, type PaymentCanceledPaymentDetailsOneOf as bB, type PaymentDeclined as bC, type PaymentDeclinedPaymentDetailsOneOf as bD, type ReceiptCreated as bE, type ReceiptCreatedReceiptInfoOneOf as bF, type WixReceipt as bG, type ExternalReceipt as bH, type ReceiptSent as bI, type ReceiptSentReceiptInfoOneOf as bJ, type ChargebackCreated as bK, type ChargebackReversed as bL, type CreatedBy as bM, type CreatedByStringOneOf as bN, type ChannelInfo as bO, type CustomField as bP, type BalanceSummary as bQ, type Balance as bR, type AdditionalFee as bS, type FulfillmentStatusesAggregate as bT, type Tags as bU, type TagList as bV, type Location as bW, type DiffmatokyPayload as bX, type ErrorInformation as bY, type ContinueSideEffectsFlowInLegacyData as bZ, type OrdersExperiments as b_, type ManagedLineItem as ba, type ManagedDiscount as bb, type TranslatedValue as bc, type LineItemAmount as bd, type ManagedAdditionalFee as be, type TotalPriceChange as bf, type ShippingInformationChange as bg, type ShippingInformation as bh, type SavedPaymentMethod as bi, type AuthorizedPaymentCreated as bj, type AuthorizedPaymentCaptured as bk, type AuthorizedPaymentVoided as bl, type RefundInitiated as bm, type RefundedPayment as bn, type RefundedPaymentKindOneOf as bo, type RegularPaymentRefund as bp, type GiftCardPaymentRefund as bq, type MembershipPaymentRefund as br, type PaymentRefunded as bs, type PaymentRefundFailed as bt, type RefundedAsStoreCredit as bu, type PaymentPending as bv, type PaymentPendingPaymentDetailsOneOf as bw, type RegularPayment as bx, type RegularPaymentPaymentMethodDetailsOneOf as by, type CreditCardDetails as bz, type UpdateOrderApplicationErrors as c, type BulkUnArchiveOrdersRequest as c$, type IndexingMessage as c0, type OrderApproved as c1, type OrderRejectedEventOrderRejected as c2, type OrderItemsRestocked as c3, type RestockItem as c4, type GetOrderRequest as c5, type GetOrderResponse as c6, type InternalQueryOrdersRequest as c7, type PlatformQuery as c8, type PlatformQueryPagingMethodOneOf as c9, type DraftOrderDiffsBuyerUpdateInfoOneOf as cA, type DraftOrderDiffsBillingUpdateInfoOneOf as cB, type DraftOrderDiffsRecipientUpdateInfoOneOf as cC, type V1LineItemDelta as cD, type V1LineItemDeltaDeltaOneOf as cE, type OrderLineItemChangedDetails as cF, type ItemChangedDetails as cG, type AppliedDiscountDelta as cH, type AppliedDiscountDeltaDeltaOneOf as cI, type AdditionalFeeDelta as cJ, type AdditionalFeeDeltaDeltaOneOf as cK, type DraftOrderCommitSettings as cL, type InventoryUpdateDetails as cM, type CommitDeltasResponse as cN, type OrderDeltasCommitted as cO, type CommittedDiffs as cP, type CommittedDiffsShippingUpdateInfoOneOf as cQ, type LineItemDelta as cR, type LineItemDeltaDeltaOneOf as cS, type ArchiveOrderRequest as cT, type ArchiveOrderResponse as cU, type BulkArchiveOrdersRequest as cV, type BulkArchiveOrdersResponse as cW, type BulkArchiveOrdersByFilterRequest as cX, type BulkArchiveOrdersByFilterResponse as cY, type UnArchiveOrderRequest as cZ, type UnArchiveOrderResponse as c_, type Sorting as ca, type PlatformPaging as cb, type CursorPaging as cc, type InternalQueryOrdersResponse as cd, type PlatformPagingMetadata as ce, type Cursors as cf, type QueryOrderRequest as cg, type QueryOrderResponse as ch, type SearchOrdersRequest as ci, type CursorSearch as cj, type CursorSearchPagingMethodOneOf as ck, type CursorPagingMetadata as cl, type CreateOrderRequest as cm, type OrderCreationSettings as cn, type OrderCreateNotifications as co, type CreateOrderResponse as cp, type UpdateOrderRequest as cq, type UpdateOrderResponse as cr, type BulkUpdateOrdersRequest as cs, type BulkOrderResult as ct, type ItemMetadata as cu, type ApplicationError as cv, type BulkActionMetadata as cw, type CommitDeltasRequest as cx, type DraftOrderDiffs as cy, type DraftOrderDiffsShippingUpdateInfoOneOf as cz, type BulkUpdateOrdersResponse as d, type BulkMarkAsFulfilledRequest as d$, type BulkUnArchiveOrdersResponse as d0, type BulkUnArchiveOrdersByFilterRequest as d1, type BulkUnArchiveOrdersByFilterResponse as d2, type UpdateBuyerInfoRequest as d3, type BuyerInfoUpdate as d4, type UpdateBuyerInfoResponse as d5, type UpdateBuyerEmailRequest as d6, type UpdateBuyerEmailResponse as d7, type UpdateOrderShippingAddressRequest as d8, type UpdateOrderShippingAddressResponse as d9, type PickupReadyEmailSent as dA, type OrderPartiallyPaid as dB, type OrderPending as dC, type OrderRejected as dD, type AddInternalActivityResponse as dE, type AddActivityRequest as dF, type PublicActivity as dG, type PublicActivityContentOneOf as dH, type AddActivityResponse as dI, type AddActivitiesRequest as dJ, type AddActivitiesResponse as dK, type UpdateActivityRequest as dL, type UpdateActivityResponse as dM, type DeleteActivityRequest as dN, type DeleteActivityResponse as dO, type UpdateLineItemsDescriptionLinesRequest as dP, type LineItemUpdate as dQ, type UpdateLineItemsDescriptionLinesResponse as dR, type MarkOrderAsSeenByHumanRequest as dS, type MarkOrderAsSeenByHumanResponse as dT, type CancelOrderRequest as dU, type OrderCanceledEventOrderCanceled as dV, type UpdateOrderStatusRequest as dW, type UpdateOrderStatusResponse as dX, type MarkAsFulfilledRequest as dY, type MarkAsFulfilledResponse as dZ, type FulfillmentStatusUpdated as d_, type UpdateBillingContactDetailsRequest as da, type UpdateBillingContactDetailsResponse as db, type UpdateOrderLineItemRequest as dc, type UpdateOrderLineItemResponse as dd, type UpdateOrderLineItemsRequest as de, type MaskedOrderLineItem as df, type UpdateOrderLineItemsResponse as dg, type AddInternalActivityRequest as dh, type InternalActivity as di, type InternalActivityContentOneOf as dj, type OrderPlaced as dk, type OrderPaid as dl, type OrderFulfilled as dm, type OrderNotFulfilled as dn, type OrderCanceled as dp, type DownloadLinkSent as dq, type TrackingNumberAdded as dr, type TrackingNumberEdited as ds, type TrackingLinkAdded as dt, type ShippingConfirmationEmailSent as du, type InvoiceAdded as dv, type InvoiceSent as dw, type FulfillerEmailSent as dx, type ShippingAddressEdited as dy, type EmailEdited as dz, type CancelOrderOptions as e, type Locale as e$, type BulkMarkAsFulfilledResponse as e0, type BulkMarkAsFulfilledByFilterRequest as e1, type BulkMarkAsFulfilledByFilterResponse as e2, type MarkAsUnfulfilledRequest as e3, type MarkAsUnfulfilledResponse as e4, type BulkMarkAsUnfulfilledRequest as e5, type BulkMarkAsUnfulfilledResponse as e6, type BulkMarkAsUnfulfilledByFilterRequest as e7, type BulkMarkAsUnfulfilledByFilterResponse as e8, type BulkSetBusinessLocationRequest as e9, type Task as eA, type TaskKey as eB, type TaskAction as eC, type TaskActionActionOneOf as eD, type Complete as eE, type Cancel as eF, type Reschedule as eG, type InvoiceSentEvent as eH, type IdAndVersion as eI, type InvoiceFields as eJ, type Customer as eK, type Email as eL, type QuotesAddress as eM, type AddressDescription as eN, type Phone as eO, type Company as eP, type CommonAddress as eQ, type CommonAddressStreetOneOf as eR, type Subdivision as eS, type StandardDetails as eT, type InvoiceDates as eU, type LineItems as eV, type LineItem as eW, type BigDecimalWrapper as eX, type LineItemTax as eY, type Source as eZ, type LineItemMetaData as e_, type BulkSetBusinessLocationResponse as ea, type BulkSetBusinessLocationResult as eb, type MarkOrderAsPaidRequest as ec, type MarkOrderAsPaidResponse as ed, type PaymentStatusUpdated as ee, type BulkMarkOrdersAsPaidRequest as ef, type BulkMarkOrdersAsPaidResponse as eg, type CreatePaymentGatewayOrderRequest as eh, type CreatePaymentGatewayOrderResponse as ei, type GetShipmentsRequest as ej, type GetShipmentsResponse as ek, type AggregateOrdersRequest as el, type AggregateOrdersResponse as em, type DecrementItemsQuantityRequest as en, type DecrementData as eo, type DecrementItemsQuantityResponse as ep, type BulkUpdateOrderTagsRequest as eq, type BulkUpdateOrderTagsResult as er, type DomainEvent as es, type DomainEventBodyOneOf as et, type EntityCreatedEvent as eu, type RestoreInfo as ev, type EntityUpdatedEvent as ew, type EntityDeletedEvent as ex, type ActionEvent as ey, type Empty as ez, type CancelOrderResponse as f, onOrderUpdated as f$, type TotalPrice as f0, type ItemizedFee as f1, type Discount as f2, type DiscountOneDiscountTypeOneOf as f3, type CalculatedTaxes as f4, type CalculatedTax as f5, type Payments as f6, type Payment as f7, type MetaData as f8, type InvoiceDynamicPriceTotals as f9, type VatTypeWithLiterals as fA, type PickupMethodWithLiterals as fB, type OrderStatusWithLiterals as fC, type DiscountTypeWithLiterals as fD, type DiscountReasonWithLiterals as fE, type LineItemQuantityChangeTypeWithLiterals as fF, type ActivityTypeWithLiterals as fG, type AttributionSourceWithLiterals as fH, type ChannelTypeWithLiterals as fI, type SortOrderWithLiterals as fJ, type OrderApprovalStrategyWithLiterals as fK, type DeltaPaymentOptionTypeWithLiterals as fL, type InventoryActionWithLiterals as fM, type PlacementWithLiterals as fN, type SubdivisionTypeWithLiterals as fO, type SourceTypeWithLiterals as fP, type CustomFieldGroupWithLiterals as fQ, type ValueTypeWithLiterals as fR, type DepositTypeWithLiterals as fS, type InvoiceStatusWithLiterals as fT, type WebhookIdentityTypeWithLiterals as fU, type CommitDeltasApplicationErrors as fV, type UpdateOrderStatusApplicationErrors as fW, onOrderApproved as fX, onOrderCanceled as fY, onOrderCreated as fZ, onOrderPaymentStatusUpdated as f_, type CustomFieldValue as fa, type Value as fb, type Deposit as fc, type TriggerSideEffectsFromLegacyData as fd, type MessageEnvelope as fe, type IdentificationData as ff, type IdentificationDataIdOneOf as fg, type BaseEventMetadata as fh, type EventMetadata as fi, type OrderSearchSpec as fj, type CommitDeltasOptions as fk, type UpdateOrderLineItemIdentifiers as fl, type UpdateOrderLineItem as fm, type UpdateActivityIdentifiers as fn, type DeleteActivityIdentifiers as fo, type AggregateOrdersOptions as fp, type DescriptionLineTypeWithLiterals as fq, type ItemTypeItemTypeWithLiterals as fr, type PaymentOptionTypeWithLiterals as fs, type JurisdictionTypeWithLiterals as ft, type SubscriptionFrequencyWithLiterals as fu, type AdjustmentTypeWithLiterals as fv, type TaxableAddressTypeWithLiterals as fw, type PaymentStatusWithLiterals as fx, type FulfillmentStatusWithLiterals as fy, type WeightUnitWithLiterals as fz, type CancelOrderApplicationErrors as g, getOrder as g0, type CommonSearchWithEntityContext as g1, createOrder as g2, updateOrder as g3, bulkUpdateOrders as g4, cancelOrder as g5, bulkUpdateOrderTags as g6, type BulkUpdateOrderTagsOptions as h, type BulkUpdateOrderTagsResponse as i, type OrderApprovedEnvelope as j, type OrderCanceledEnvelope as k, type OrderCreatedEnvelope as l, type OrderPaymentStatusUpdatedEnvelope as m, type OrderUpdatedEnvelope as n, SubscriptionFrequency as o, PaymentStatus as p, PickupMethod as q, OrderStatus as r, DiscountType as s, DiscountReason as t, ActivityType as u, AttributionSource as v, ChannelType as w, SortOrder as x, OrderApprovalStrategy as y, DeltaPaymentOptionType as z };
|
|
5490
|
+
export { type OrderLineItem as $, AdjustmentType as A, type BulkUpdateOrdersOptions as B, type CreateOrderOptions as C, DescriptionLineType as D, OrderApprovalStrategy as E, FulfillmentStatus as F, type GetOrderApplicationErrors as G, DeltaPaymentOptionType as H, ItemTypeItemType as I, JurisdictionType as J, InventoryAction as K, LineItemQuantityChangeType as L, type MaskedOrder as M, Placement as N, type Order as O, PaymentOptionType as P, SubdivisionType as Q, SourceType as R, type SearchOrdersResponse as S, TaxableAddressType as T, type UpdateOrder as U, VatType as V, WeightUnit as W, CustomFieldGroup as X, ValueType as Y, DepositType as Z, InvoiceStatus as _, type OrderSearch as a, type CustomActivity as a$, type ProductName as a0, type CatalogReference as a1, type Price as a2, type DescriptionLine as a3, type DescriptionLineValueOneOf as a4, type DescriptionLineDescriptionLineValueOneOf as a5, type DescriptionLineName as a6, type PlainTextValue as a7, type Color as a8, type FocalPoint as a9, type AddressWithContact as aA, type Address as aB, type StreetAddress as aC, type AddressLocation as aD, type FullAddressContactDetails as aE, type VatId as aF, type V1ShippingInformation as aG, type DeliveryLogistics as aH, type DeliveryLogisticsAddressOneOf as aI, type PickupDetails as aJ, type PickupAddress as aK, type DeliveryTimeSlot as aL, type ShippingPrice as aM, type ShippingRegion as aN, type TaxSummary as aO, type OrderTaxInfo as aP, type OrderTaxBreakdown as aQ, type AppliedDiscount as aR, type AppliedDiscountDiscountSourceOneOf as aS, type Coupon as aT, type MerchantDiscount as aU, type MerchantDiscountMerchantDiscountReasonOneOf as aV, type DiscountRule as aW, type DiscountRuleName as aX, type LineItemDiscount as aY, type Activity as aZ, type ActivityContentOneOf as a_, type PhysicalProperties as aa, type ItemType as ab, type ItemTypeItemTypeDataOneOf as ac, type ItemTaxFullDetails as ad, type LineItemTaxInfo as ae, type LineItemTaxBreakdown as af, type DigitalFile as ag, type SubscriptionInfo as ah, type SubscriptionTitle as ai, type SubscriptionDescription as aj, type SubscriptionSettings as ak, type FreeTrialPeriod as al, type BillingAdjustment as am, type BillingAdjustmentPriceSummary as an, type PriceDescription as ao, type LocationAndQuantity as ap, type TaxableAddress as aq, type TaxableAddressTaxableAddressDataOneOf as ar, type ExtendedFields as as, type ModifierGroup as at, type TranslatableString as au, type ItemModifier as av, type BuyerInfo as aw, type BuyerInfoIdOneOf as ax, type CurrencyConversionDetails as ay, type PriceSummary as az, type CreateOrderApplicationErrors as b, type InternalDocumentUpdateOperation as b$, type MerchantComment as b0, type OrderRefunded as b1, type OrderCreatedFromExchange as b2, type NewExchangeOrderCreated as b3, type LineItemExchangeData as b4, type DraftOrderChangesApplied as b5, type OrderChange as b6, type OrderChangeValueOneOf as b7, type LineItemChanges as b8, type LineItemQuantityChange as b9, type CreditCardDetails as bA, type PaymentCanceled as bB, type PaymentCanceledPaymentDetailsOneOf as bC, type PaymentDeclined as bD, type PaymentDeclinedPaymentDetailsOneOf as bE, type ReceiptCreated as bF, type ReceiptCreatedReceiptInfoOneOf as bG, type WixReceipt as bH, type ExternalReceipt as bI, type ReceiptSent as bJ, type ReceiptSentReceiptInfoOneOf as bK, type ChargebackCreated as bL, type ChargebackReversed as bM, type CreatedBy as bN, type CreatedByStringOneOf as bO, type ChannelInfo as bP, type CustomField as bQ, type BalanceSummary as bR, type Balance as bS, type AdditionalFee as bT, type FulfillmentStatusesAggregate as bU, type Tags as bV, type TagList as bW, type Location as bX, type UpdateInternalDocumentsEvent as bY, type UpdateInternalDocumentsEventOperationOneOf as bZ, type InternalDocument as b_, type LineItemPriceChange as ba, type ManagedLineItem as bb, type ManagedDiscount as bc, type TranslatedValue as bd, type LineItemAmount as be, type ManagedAdditionalFee as bf, type TotalPriceChange as bg, type ShippingInformationChange as bh, type ShippingInformation as bi, type SavedPaymentMethod as bj, type AuthorizedPaymentCreated as bk, type AuthorizedPaymentCaptured as bl, type AuthorizedPaymentVoided as bm, type RefundInitiated as bn, type RefundedPayment as bo, type RefundedPaymentKindOneOf as bp, type RegularPaymentRefund as bq, type GiftCardPaymentRefund as br, type MembershipPaymentRefund as bs, type PaymentRefunded as bt, type PaymentRefundFailed as bu, type RefundedAsStoreCredit as bv, type PaymentPending as bw, type PaymentPendingPaymentDetailsOneOf as bx, type RegularPayment as by, type RegularPaymentPaymentMethodDetailsOneOf as bz, type UpdateOrderApplicationErrors as c, type DraftOrderDiffsBuyerUpdateInfoOneOf as c$, type DeleteByIdsOperation as c0, type DeleteByFilterOperation as c1, type InternalDocumentUpdateByFilterOperation as c2, type InternalUpdateExistingOperation as c3, type VersionedDocumentUpdateOperation as c4, type VersionedDeleteByIdsOperation as c5, type VersionedDocumentId as c6, type OrderApproved as c7, type OrdersExperiments as c8, type OrderRejectedEventOrderRejected as c9, type PlatformQueryPagingMethodOneOf as cA, type Sorting as cB, type PlatformPaging as cC, type CursorPaging as cD, type InternalQueryOrdersResponse as cE, type PlatformPagingMetadata as cF, type Cursors as cG, type QueryOrderRequest as cH, type QueryOrderResponse as cI, type SearchOrdersRequest as cJ, type CursorSearch as cK, type CursorSearchPagingMethodOneOf as cL, type CursorPagingMetadata as cM, type CreateOrderRequest as cN, type OrderCreationSettings as cO, type OrderCreateNotifications as cP, type CreateOrderResponse as cQ, type UpdateOrderRequest as cR, type UpdateOrderResponse as cS, type BulkUpdateOrdersRequest as cT, type BulkOrderResult as cU, type ItemMetadata as cV, type ApplicationError as cW, type BulkActionMetadata as cX, type CommitDeltasRequest as cY, type DraftOrderDiffs as cZ, type DraftOrderDiffsShippingUpdateInfoOneOf as c_, type OrderItemsRestocked as ca, type RestockItem as cb, type TriggerReindexRequest as cc, type TriggerReindexResponse as cd, type DomainEvent as ce, type DomainEventBodyOneOf as cf, type EntityCreatedEvent as cg, type RestoreInfo as ch, type EntityUpdatedEvent as ci, type EntityDeletedEvent as cj, type ActionEvent as ck, type Empty as cl, type BatchOfTriggerReindexOrderRequest as cm, type TriggerReindexOrderRequest as cn, type MessageEnvelope as co, type IdentificationData as cp, type IdentificationDataIdOneOf as cq, type DiffmatokyPayload as cr, type ErrorInformation as cs, type ContinueSideEffectsFlowInLegacyData as ct, type SnapshotMessage as cu, type IndexingMessage as cv, type GetOrderRequest as cw, type GetOrderResponse as cx, type InternalQueryOrdersRequest as cy, type PlatformQuery as cz, type BulkUpdateOrdersResponse as d, type PickupReadyEmailSent as d$, type DraftOrderDiffsBillingUpdateInfoOneOf as d0, type DraftOrderDiffsRecipientUpdateInfoOneOf as d1, type V1LineItemDelta as d2, type V1LineItemDeltaDeltaOneOf as d3, type OrderLineItemChangedDetails as d4, type ItemChangedDetails as d5, type AppliedDiscountDelta as d6, type AppliedDiscountDeltaDeltaOneOf as d7, type AdditionalFeeDelta as d8, type AdditionalFeeDeltaDeltaOneOf as d9, type UpdateOrderShippingAddressRequest as dA, type UpdateOrderShippingAddressResponse as dB, type UpdateBillingContactDetailsRequest as dC, type UpdateBillingContactDetailsResponse as dD, type UpdateOrderLineItemRequest as dE, type UpdateOrderLineItemResponse as dF, type UpdateOrderLineItemsRequest as dG, type MaskedOrderLineItem as dH, type UpdateOrderLineItemsResponse as dI, type AddInternalActivityRequest as dJ, type InternalActivity as dK, type InternalActivityContentOneOf as dL, type OrderPlaced as dM, type OrderPaid as dN, type OrderFulfilled as dO, type OrderNotFulfilled as dP, type OrderCanceled as dQ, type DownloadLinkSent as dR, type TrackingNumberAdded as dS, type TrackingNumberEdited as dT, type TrackingLinkAdded as dU, type ShippingConfirmationEmailSent as dV, type InvoiceAdded as dW, type InvoiceSent as dX, type FulfillerEmailSent as dY, type ShippingAddressEdited as dZ, type EmailEdited as d_, type DraftOrderCommitSettings as da, type InventoryUpdateDetails as db, type CommitDeltasResponse as dc, type OrderDeltasCommitted as dd, type CommittedDiffs as de, type CommittedDiffsShippingUpdateInfoOneOf as df, type LineItemDelta as dg, type LineItemDeltaDeltaOneOf as dh, type ArchiveOrderRequest as di, type ArchiveOrderResponse as dj, type BulkArchiveOrdersRequest as dk, type BulkArchiveOrdersResponse as dl, type BulkArchiveOrdersByFilterRequest as dm, type BulkArchiveOrdersByFilterResponse as dn, type UnArchiveOrderRequest as dp, type UnArchiveOrderResponse as dq, type BulkUnArchiveOrdersRequest as dr, type BulkUnArchiveOrdersResponse as ds, type BulkUnArchiveOrdersByFilterRequest as dt, type BulkUnArchiveOrdersByFilterResponse as du, type UpdateBuyerInfoRequest as dv, type BuyerInfoUpdate as dw, type UpdateBuyerInfoResponse as dx, type UpdateBuyerEmailRequest as dy, type UpdateBuyerEmailResponse as dz, type CancelOrderOptions as e, type IdAndVersion as e$, type OrderPartiallyPaid as e0, type OrderPending as e1, type OrderRejected as e2, type AddInternalActivityResponse as e3, type AddActivityRequest as e4, type PublicActivity as e5, type PublicActivityContentOneOf as e6, type AddActivityResponse as e7, type AddActivitiesRequest as e8, type AddActivitiesResponse as e9, type BulkSetBusinessLocationRequest as eA, type BulkSetBusinessLocationResponse as eB, type BulkSetBusinessLocationResult as eC, type MarkOrderAsPaidRequest as eD, type MarkOrderAsPaidResponse as eE, type PaymentStatusUpdated as eF, type BulkMarkOrdersAsPaidRequest as eG, type BulkMarkOrdersAsPaidResponse as eH, type CreatePaymentGatewayOrderRequest as eI, type CreatePaymentGatewayOrderResponse as eJ, type GetShipmentsRequest as eK, type GetShipmentsResponse as eL, type AggregateOrdersRequest as eM, type AggregateOrdersResponse as eN, type DecrementItemsQuantityRequest as eO, type DecrementData as eP, type DecrementItemsQuantityResponse as eQ, type BulkUpdateOrderTagsRequest as eR, type BulkUpdateOrderTagsResult as eS, type Task as eT, type TaskKey as eU, type TaskAction as eV, type TaskActionActionOneOf as eW, type Complete as eX, type Cancel as eY, type Reschedule as eZ, type InvoiceSentEvent as e_, type UpdateActivityRequest as ea, type UpdateActivityResponse as eb, type DeleteActivityRequest as ec, type DeleteActivityResponse as ed, type UpdateLineItemsDescriptionLinesRequest as ee, type LineItemUpdate as ef, type UpdateLineItemsDescriptionLinesResponse as eg, type MarkOrderAsSeenByHumanRequest as eh, type MarkOrderAsSeenByHumanResponse as ei, type CancelOrderRequest as ej, type OrderCanceledEventOrderCanceled as ek, type UpdateOrderStatusRequest as el, type UpdateOrderStatusResponse as em, type MarkAsFulfilledRequest as en, type MarkAsFulfilledResponse as eo, type FulfillmentStatusUpdated as ep, type BulkMarkAsFulfilledRequest as eq, type BulkMarkAsFulfilledResponse as er, type BulkMarkAsFulfilledByFilterRequest as es, type BulkMarkAsFulfilledByFilterResponse as et, type MarkAsUnfulfilledRequest as eu, type MarkAsUnfulfilledResponse as ev, type BulkMarkAsUnfulfilledRequest as ew, type BulkMarkAsUnfulfilledResponse as ex, type BulkMarkAsUnfulfilledByFilterRequest as ey, type BulkMarkAsUnfulfilledByFilterResponse as ez, type CancelOrderResponse as f, type SortOrderWithLiterals as f$, type InvoiceFields as f0, type Customer as f1, type Email as f2, type QuotesAddress as f3, type AddressDescription as f4, type Phone as f5, type Company as f6, type CommonAddress as f7, type CommonAddressStreetOneOf as f8, type Subdivision as f9, type CommitDeltasOptions as fA, type UpdateOrderLineItemIdentifiers as fB, type UpdateOrderLineItem as fC, type UpdateActivityIdentifiers as fD, type DeleteActivityIdentifiers as fE, type AggregateOrdersOptions as fF, type DescriptionLineTypeWithLiterals as fG, type ItemTypeItemTypeWithLiterals as fH, type PaymentOptionTypeWithLiterals as fI, type JurisdictionTypeWithLiterals as fJ, type SubscriptionFrequencyWithLiterals as fK, type AdjustmentTypeWithLiterals as fL, type TaxableAddressTypeWithLiterals as fM, type PaymentStatusWithLiterals as fN, type FulfillmentStatusWithLiterals as fO, type WeightUnitWithLiterals as fP, type VatTypeWithLiterals as fQ, type PickupMethodWithLiterals as fR, type OrderStatusWithLiterals as fS, type DiscountTypeWithLiterals as fT, type DiscountReasonWithLiterals as fU, type LineItemQuantityChangeTypeWithLiterals as fV, type ActivityTypeWithLiterals as fW, type AttributionSourceWithLiterals as fX, type ChannelTypeWithLiterals as fY, type VersioningModeWithLiterals as fZ, type WebhookIdentityTypeWithLiterals as f_, type StandardDetails as fa, type InvoiceDates as fb, type LineItems as fc, type LineItem as fd, type BigDecimalWrapper as fe, type LineItemTax as ff, type Source as fg, type LineItemMetaData as fh, type Locale as fi, type TotalPrice as fj, type ItemizedFee as fk, type Discount as fl, type DiscountOneDiscountTypeOneOf as fm, type CalculatedTaxes as fn, type CalculatedTax as fo, type Payments as fp, type Payment as fq, type MetaData as fr, type InvoiceDynamicPriceTotals as fs, type CustomFieldValue as ft, type Value as fu, type Deposit as fv, type TriggerSideEffectsFromLegacyData as fw, type BaseEventMetadata as fx, type EventMetadata as fy, type OrderSearchSpec as fz, type CancelOrderApplicationErrors as g, type OrderApprovalStrategyWithLiterals as g0, type DeltaPaymentOptionTypeWithLiterals as g1, type InventoryActionWithLiterals as g2, type PlacementWithLiterals as g3, type SubdivisionTypeWithLiterals as g4, type SourceTypeWithLiterals as g5, type CustomFieldGroupWithLiterals as g6, type ValueTypeWithLiterals as g7, type DepositTypeWithLiterals as g8, type InvoiceStatusWithLiterals as g9, type CommitDeltasApplicationErrors as ga, type UpdateOrderStatusApplicationErrors 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, cancelOrder as gm, bulkUpdateOrderTags as gn, type BulkUpdateOrderTagsOptions as h, type BulkUpdateOrderTagsResponse as i, type OrderApprovedEnvelope as j, type OrderUpdatedEnvelope as k, type OrderCanceledEnvelope as l, type OrderCreatedEnvelope as m, type OrderPaymentStatusUpdatedEnvelope as n, SubscriptionFrequency as o, PaymentStatus as p, PickupMethod as q, OrderStatus as r, DiscountType as s, DiscountReason as t, ActivityType as u, AttributionSource as v, ChannelType as w, VersioningMode as x, WebhookIdentityType as y, SortOrder as z };
|