@final-commerce/common 2.2.0-staging.3 → 2.2.0

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.
@@ -391,6 +391,10 @@ declare enum Platform {
391
391
  OLIVER = "oliver",
392
392
  STANDALONE = "standalone"
393
393
  }
394
+ declare enum CustomerPlatform {
395
+ POS = "in-store",
396
+ WOO_COMMERCE = "woo-commerce"
397
+ }
394
398
  declare enum StationStatus {
395
399
  IN_USE = "IN_USE",
396
400
  AVAILABLE = "AVAILABLE"
@@ -406,6 +410,7 @@ declare enum InventorySpecificActionType {
406
410
  REFUND_DAMAGE = "REFUND_DAMAGE",
407
411
  SALE = "SALE",
408
412
  COMPOSED_FOR_SALE = "COMPOSED_FOR_SALE",
413
+ UNIT_FAMILY_CHANGED = "UNIT_FAMILY_CHANGED",
409
414
  TRANSFER = "TRANSFER",
410
415
  BULK_RECOUNT = "BULK_RECOUNT",
411
416
  APPLIED_FROM_WOO = "APPLIED_FROM_WOO",
@@ -1134,6 +1139,7 @@ type ActiveCustomer = Enrich<Customer, {
1134
1139
  shipping: Address | null;
1135
1140
  createdAt?: string;
1136
1141
  updatedAt?: string;
1142
+ source?: CustomerPlatform;
1137
1143
  }>;
1138
1144
 
1139
1145
  interface ActiveOutlet {
@@ -391,6 +391,10 @@ declare enum Platform {
391
391
  OLIVER = "oliver",
392
392
  STANDALONE = "standalone"
393
393
  }
394
+ declare enum CustomerPlatform {
395
+ POS = "in-store",
396
+ WOO_COMMERCE = "woo-commerce"
397
+ }
394
398
  declare enum StationStatus {
395
399
  IN_USE = "IN_USE",
396
400
  AVAILABLE = "AVAILABLE"
@@ -406,6 +410,7 @@ declare enum InventorySpecificActionType {
406
410
  REFUND_DAMAGE = "REFUND_DAMAGE",
407
411
  SALE = "SALE",
408
412
  COMPOSED_FOR_SALE = "COMPOSED_FOR_SALE",
413
+ UNIT_FAMILY_CHANGED = "UNIT_FAMILY_CHANGED",
409
414
  TRANSFER = "TRANSFER",
410
415
  BULK_RECOUNT = "BULK_RECOUNT",
411
416
  APPLIED_FROM_WOO = "APPLIED_FROM_WOO",
@@ -1134,6 +1139,7 @@ type ActiveCustomer = Enrich<Customer, {
1134
1139
  shipping: Address | null;
1135
1140
  createdAt?: string;
1136
1141
  updatedAt?: string;
1142
+ source?: CustomerPlatform;
1137
1143
  }>;
1138
1144
 
1139
1145
  interface ActiveOutlet {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@final-commerce/common",
3
- "version": "2.2.0-staging.3",
3
+ "version": "2.2.0",
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": {