@final-commerce/common 2.0.16 → 2.0.17-beta.1

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.
@@ -386,6 +386,10 @@ declare enum Platform {
386
386
  OLIVER = "oliver",
387
387
  STANDALONE = "standalone"
388
388
  }
389
+ declare enum CustomerPlatform {
390
+ POS = "in-store",
391
+ WOO_COMMERCE = "woo-commerce"
392
+ }
389
393
  declare enum StationStatus {
390
394
  IN_USE = "IN_USE",
391
395
  AVAILABLE = "AVAILABLE"
@@ -1121,6 +1125,7 @@ type ActiveCustomer = Enrich<Customer, {
1121
1125
  shipping: Address | null;
1122
1126
  createdAt?: string;
1123
1127
  updatedAt?: string;
1128
+ source?: CustomerPlatform;
1124
1129
  }>;
1125
1130
 
1126
1131
  interface ActiveOutlet {
@@ -386,6 +386,10 @@ declare enum Platform {
386
386
  OLIVER = "oliver",
387
387
  STANDALONE = "standalone"
388
388
  }
389
+ declare enum CustomerPlatform {
390
+ POS = "in-store",
391
+ WOO_COMMERCE = "woo-commerce"
392
+ }
389
393
  declare enum StationStatus {
390
394
  IN_USE = "IN_USE",
391
395
  AVAILABLE = "AVAILABLE"
@@ -1121,6 +1125,7 @@ type ActiveCustomer = Enrich<Customer, {
1121
1125
  shipping: Address | null;
1122
1126
  createdAt?: string;
1123
1127
  updatedAt?: string;
1128
+ source?: CustomerPlatform;
1124
1129
  }>;
1125
1130
 
1126
1131
  interface ActiveOutlet {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@final-commerce/common",
3
- "version": "2.0.16",
3
+ "version": "2.0.17-beta.1",
4
4
  "description": "Shared utilities, types, constants, and engineering governance configs for the Final Commerce platform.",
5
5
  "homepage": "https://github.com/Final-Commerce/common#readme",
6
6
  "bugs": {