@final-commerce/common 2.0.11-beta.2 → 2.0.11
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 +8 -3
- package/dist/index.d.ts +8 -3
- package/dist/index.js +10 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -1
- package/dist/index.mjs.map +1 -1
- package/dist/pos-types/index.d.mts +9 -2
- package/dist/pos-types/index.d.ts +9 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -231,7 +231,6 @@ var InventorySpecificActionType = /* @__PURE__ */ ((InventorySpecificActionType2
|
|
|
231
231
|
InventorySpecificActionType2["TRANSFER"] = "TRANSFER";
|
|
232
232
|
InventorySpecificActionType2["BULK_RECOUNT"] = "BULK_RECOUNT";
|
|
233
233
|
InventorySpecificActionType2["APPLIED_FROM_WOO"] = "APPLIED_FROM_WOO";
|
|
234
|
-
InventorySpecificActionType2["PO_RECEIVED"] = "PO_RECEIVED";
|
|
235
234
|
return InventorySpecificActionType2;
|
|
236
235
|
})(InventorySpecificActionType || {});
|
|
237
236
|
var ExtensionCategory = /* @__PURE__ */ ((ExtensionCategory2) => {
|
|
@@ -426,6 +425,14 @@ var ProductStatus = /* @__PURE__ */ ((ProductStatus2) => {
|
|
|
426
425
|
return ProductStatus2;
|
|
427
426
|
})(ProductStatus || {});
|
|
428
427
|
|
|
428
|
+
// enums/payments.enum.ts
|
|
429
|
+
var PaymentProcessor = /* @__PURE__ */ ((PaymentProcessor2) => {
|
|
430
|
+
PaymentProcessor2["STRIPE"] = "stripe";
|
|
431
|
+
PaymentProcessor2["ADYEN"] = "adyen";
|
|
432
|
+
PaymentProcessor2["EXTERNAL"] = "external";
|
|
433
|
+
return PaymentProcessor2;
|
|
434
|
+
})(PaymentProcessor || {});
|
|
435
|
+
|
|
429
436
|
// utils/currency.util.ts
|
|
430
437
|
var CURRENCY_CONFIG = {
|
|
431
438
|
// Major currencies with 2 decimal places
|
|
@@ -2473,6 +2480,7 @@ export {
|
|
|
2473
2480
|
PAYMENT_STATES,
|
|
2474
2481
|
POS_VALID_INITIAL_STATES,
|
|
2475
2482
|
PaymentMethod,
|
|
2483
|
+
PaymentProcessor,
|
|
2476
2484
|
Platform,
|
|
2477
2485
|
PreviewImageMode,
|
|
2478
2486
|
PricingLevel,
|