@wix/auto_sdk_ecom_draft-orders 1.0.162 → 1.0.163
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/index.js.map +1 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +15 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +15 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -3391,6 +3391,21 @@ interface Order {
|
|
|
3391
3391
|
forms?: FormInfo[];
|
|
3392
3392
|
/** Summary of platform fees for this order, including totals by charge type and a breakdown of individual fees. */
|
|
3393
3393
|
platformFeeSummary?: PlatformFeeSummary;
|
|
3394
|
+
/**
|
|
3395
|
+
* Whether the order was imported from an external system using the Order Import API.
|
|
3396
|
+
*
|
|
3397
|
+
* When `true`, the order originated outside of Wix (for example, during a migration from another
|
|
3398
|
+
* eCommerce platform) rather than being placed through the Wix checkout flow or created manually.
|
|
3399
|
+
* Imported orders trigger the dedicated `OrderImported` and `ImportedOrderDeleted` domain events.
|
|
3400
|
+
*
|
|
3401
|
+
* Set automatically at import time and cannot be changed afterwards.
|
|
3402
|
+
*
|
|
3403
|
+
* Default: `false`
|
|
3404
|
+
* @internal
|
|
3405
|
+
* @readonly
|
|
3406
|
+
* @immutable
|
|
3407
|
+
*/
|
|
3408
|
+
imported?: boolean;
|
|
3394
3409
|
}
|
|
3395
3410
|
declare enum PaymentStatus {
|
|
3396
3411
|
UNSPECIFIED = "UNSPECIFIED",
|