@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.
@@ -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",