@final-commerce/common 2.0.11-beta.1 → 2.0.11-beta.2
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/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/dist/pos-types/index.d.mts +2 -1
- package/dist/pos-types/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -218,7 +218,8 @@ declare enum InventorySpecificActionType {
|
|
|
218
218
|
SALE = "SALE",
|
|
219
219
|
TRANSFER = "TRANSFER",
|
|
220
220
|
BULK_RECOUNT = "BULK_RECOUNT",
|
|
221
|
-
APPLIED_FROM_WOO = "APPLIED_FROM_WOO"
|
|
221
|
+
APPLIED_FROM_WOO = "APPLIED_FROM_WOO",
|
|
222
|
+
PO_RECEIVED = "PO_RECEIVED"
|
|
222
223
|
}
|
|
223
224
|
declare enum ExtensionCategory {
|
|
224
225
|
SYNC = "sync",
|
package/dist/index.d.ts
CHANGED
|
@@ -218,7 +218,8 @@ declare enum InventorySpecificActionType {
|
|
|
218
218
|
SALE = "SALE",
|
|
219
219
|
TRANSFER = "TRANSFER",
|
|
220
220
|
BULK_RECOUNT = "BULK_RECOUNT",
|
|
221
|
-
APPLIED_FROM_WOO = "APPLIED_FROM_WOO"
|
|
221
|
+
APPLIED_FROM_WOO = "APPLIED_FROM_WOO",
|
|
222
|
+
PO_RECEIVED = "PO_RECEIVED"
|
|
222
223
|
}
|
|
223
224
|
declare enum ExtensionCategory {
|
|
224
225
|
SYNC = "sync",
|
package/dist/index.js
CHANGED
|
@@ -366,6 +366,7 @@ var InventorySpecificActionType = /* @__PURE__ */ ((InventorySpecificActionType2
|
|
|
366
366
|
InventorySpecificActionType2["TRANSFER"] = "TRANSFER";
|
|
367
367
|
InventorySpecificActionType2["BULK_RECOUNT"] = "BULK_RECOUNT";
|
|
368
368
|
InventorySpecificActionType2["APPLIED_FROM_WOO"] = "APPLIED_FROM_WOO";
|
|
369
|
+
InventorySpecificActionType2["PO_RECEIVED"] = "PO_RECEIVED";
|
|
369
370
|
return InventorySpecificActionType2;
|
|
370
371
|
})(InventorySpecificActionType || {});
|
|
371
372
|
var ExtensionCategory = /* @__PURE__ */ ((ExtensionCategory2) => {
|