@final-commerce/common 2.0.6 → 2.0.8-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.
- package/dist/index.d.mts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -0
- package/dist/index.mjs.map +1 -1
- package/dist/pos-types/index.d.mts +1 -1
- package/dist/pos-types/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -425,6 +425,13 @@ var ProductStatus = /* @__PURE__ */ ((ProductStatus2) => {
|
|
|
425
425
|
return ProductStatus2;
|
|
426
426
|
})(ProductStatus || {});
|
|
427
427
|
|
|
428
|
+
// enums/payments.enum.ts
|
|
429
|
+
var PaymentProcessor = /* @__PURE__ */ ((PaymentProcessor2) => {
|
|
430
|
+
PaymentProcessor2["STRIPE"] = "stripe";
|
|
431
|
+
PaymentProcessor2["ADYEN"] = "adyen";
|
|
432
|
+
return PaymentProcessor2;
|
|
433
|
+
})(PaymentProcessor || {});
|
|
434
|
+
|
|
428
435
|
// utils/currency.util.ts
|
|
429
436
|
var CURRENCY_CONFIG = {
|
|
430
437
|
// Major currencies with 2 decimal places
|
|
@@ -2472,6 +2479,7 @@ export {
|
|
|
2472
2479
|
PAYMENT_STATES,
|
|
2473
2480
|
POS_VALID_INITIAL_STATES,
|
|
2474
2481
|
PaymentMethod,
|
|
2482
|
+
PaymentProcessor,
|
|
2475
2483
|
Platform,
|
|
2476
2484
|
PreviewImageMode,
|
|
2477
2485
|
PricingLevel,
|