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