@final-commerce/common 2.0.2 → 2.0.3
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 +597 -3
- package/dist/index.d.ts +597 -3
- package/dist/index.js +15 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -0
- package/dist/index.mjs.map +1 -1
- package/dist/pos-types/index.d.mts +292 -2
- package/dist/pos-types/index.d.ts +292 -2
- package/dist/pos-types/index.js +3 -3
- package/package.json +3 -3
- package/dist/interfaces-DIX_ROSP.d.mts +0 -589
- package/dist/interfaces-DIX_ROSP.d.ts +0 -589
package/dist/index.mjs
CHANGED
|
@@ -347,6 +347,11 @@ var ReceiptSendChannel = /* @__PURE__ */ ((ReceiptSendChannel2) => {
|
|
|
347
347
|
ReceiptSendChannel2["TEXT"] = "text";
|
|
348
348
|
return ReceiptSendChannel2;
|
|
349
349
|
})(ReceiptSendChannel || {});
|
|
350
|
+
var ReceiptType = /* @__PURE__ */ ((ReceiptType2) => {
|
|
351
|
+
ReceiptType2["ORDER"] = "order";
|
|
352
|
+
ReceiptType2["REFUND"] = "refund";
|
|
353
|
+
return ReceiptType2;
|
|
354
|
+
})(ReceiptType || {});
|
|
350
355
|
var StripeStatus = /* @__PURE__ */ ((StripeStatus2) => {
|
|
351
356
|
StripeStatus2["ACTIVE"] = "active";
|
|
352
357
|
StripeStatus2["INACTIVE"] = "inactive";
|
|
@@ -354,6 +359,12 @@ var StripeStatus = /* @__PURE__ */ ((StripeStatus2) => {
|
|
|
354
359
|
StripeStatus2["PAYMENT_METHOD_ADDED"] = "payment_method_added";
|
|
355
360
|
return StripeStatus2;
|
|
356
361
|
})(StripeStatus || {});
|
|
362
|
+
var InvoiceStatus = /* @__PURE__ */ ((InvoiceStatus2) => {
|
|
363
|
+
InvoiceStatus2["PAID"] = "paid";
|
|
364
|
+
InvoiceStatus2["PENDING"] = "pending";
|
|
365
|
+
InvoiceStatus2["EXPIRED"] = "expired";
|
|
366
|
+
return InvoiceStatus2;
|
|
367
|
+
})(InvoiceStatus || {});
|
|
357
368
|
|
|
358
369
|
// enums/stripe-currencies.enum.ts
|
|
359
370
|
var StripeCurrencyCode = /* @__PURE__ */ ((StripeCurrencyCode2) => {
|
|
@@ -2458,6 +2469,7 @@ export {
|
|
|
2458
2469
|
FeesCustomBillingStatus,
|
|
2459
2470
|
InventoryBaseActionEnum,
|
|
2460
2471
|
InventorySpecificActionType,
|
|
2472
|
+
InvoiceStatus,
|
|
2461
2473
|
LibraryItemType,
|
|
2462
2474
|
MenuProject,
|
|
2463
2475
|
NAFixedRates,
|
|
@@ -2486,6 +2498,7 @@ export {
|
|
|
2486
2498
|
REGION_MAPPING,
|
|
2487
2499
|
REPORT_NEGATE_PATHS,
|
|
2488
2500
|
ReceiptSendChannel,
|
|
2501
|
+
ReceiptType,
|
|
2489
2502
|
ResidualPaymentMethod,
|
|
2490
2503
|
ResidualStatus,
|
|
2491
2504
|
STATE_SCHEMA,
|