@ancon/wildcat-utils 1.18.5 → 1.18.7
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/checkout/getCheckoutItemModifications.js +1 -1
- package/checkout/getCheckoutItemModifications.mjs +39 -26
- package/index.d.ts +1 -0
- package/index.js +1 -1
- package/index.mjs +68 -62
- package/inventory/index.d.ts +4 -0
- package/inventory/index.js +1 -0
- package/inventory/index.mjs +8 -0
- package/inventory/isDetailedProductOutOfStock.d.ts +2 -0
- package/inventory/isDetailedProductOutOfStock.js +1 -0
- package/inventory/isDetailedProductOutOfStock.mjs +10 -0
- package/inventory/isDetailedProductVariantOutOfStocks.d.ts +2 -0
- package/inventory/isDetailedProductVariantOutOfStocks.js +1 -0
- package/inventory/isDetailedProductVariantOutOfStocks.mjs +9 -0
- package/inventory/isMenuTreeProductOutOfStock.d.ts +2 -0
- package/inventory/isMenuTreeProductOutOfStock.js +1 -0
- package/inventory/isMenuTreeProductOutOfStock.mjs +9 -0
- package/outlet/getOutletFormattedDistance.js +1 -1
- package/outlet/getOutletFormattedDistance.mjs +1 -1
- package/outlet/getOutletOrderFormats.d.ts +2 -2
- package/package.json +21 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";const
|
|
1
|
+
"use strict";const u=require("@ancon/wildcat-types"),s=require("../currency/getFormattedCurrency.js");require("../currency/getFormattedCurrencyPostfix.js");function y(e,t){return t?e-t>0?e-t:0:e}function M(e,t,i,r){const n=`${t}x ${e}`,o=y(t,i);if(o){const c=`(${o}x ${s(r.amount,r.currency)})`;return`${n} ${c}`}return n}function $(e){return e.reduce((i,r)=>{const{modification:n,name:o,freeAmount:c,quantity:f,cost:p,replacementName:m,totalCost:a}=r;switch(n){case u.ModificationType.Remove:i.removed.push(o);break;case u.ModificationType.Replace:{const d=`${o} → ${m} (${s(a.amount,a.currency)})`;i.replaced.push(d);break}default:{const d=M(o,f,c,p);i.added.push(d)}}return i},{added:[],removed:[],replaced:[]})}module.exports=$;
|
|
@@ -1,39 +1,52 @@
|
|
|
1
|
-
import { ModificationType as
|
|
2
|
-
import
|
|
1
|
+
import { ModificationType as u } from "@ancon/wildcat-types";
|
|
2
|
+
import f from "../currency/getFormattedCurrency.mjs";
|
|
3
3
|
import "../currency/getFormattedCurrencyPostfix.mjs";
|
|
4
|
-
function
|
|
5
|
-
return
|
|
4
|
+
function $(t, e) {
|
|
5
|
+
return e ? t - e > 0 ? t - e : 0 : t;
|
|
6
6
|
}
|
|
7
|
-
function
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
function l(t, e, o, r) {
|
|
8
|
+
const n = `${e}x ${t}`, i = $(e, o);
|
|
9
|
+
if (i) {
|
|
10
|
+
const d = `(${i}x ${f(
|
|
11
|
+
r.amount,
|
|
12
|
+
r.currency
|
|
13
|
+
)})`;
|
|
14
|
+
return `${n} ${d}`;
|
|
15
|
+
}
|
|
16
|
+
return n;
|
|
17
|
+
}
|
|
18
|
+
function x(t) {
|
|
19
|
+
return t.reduce(
|
|
20
|
+
(o, r) => {
|
|
10
21
|
const {
|
|
11
|
-
modification:
|
|
22
|
+
modification: n,
|
|
12
23
|
name: i,
|
|
13
|
-
freeAmount:
|
|
14
|
-
quantity:
|
|
15
|
-
cost:
|
|
16
|
-
replacementName:
|
|
17
|
-
totalCost:
|
|
18
|
-
} =
|
|
19
|
-
switch (
|
|
20
|
-
case
|
|
24
|
+
freeAmount: d,
|
|
25
|
+
quantity: s,
|
|
26
|
+
cost: m,
|
|
27
|
+
replacementName: p,
|
|
28
|
+
totalCost: c
|
|
29
|
+
} = r;
|
|
30
|
+
switch (n) {
|
|
31
|
+
case u.Remove:
|
|
21
32
|
o.removed.push(i);
|
|
22
33
|
break;
|
|
23
|
-
case
|
|
24
|
-
const
|
|
25
|
-
|
|
26
|
-
|
|
34
|
+
case u.Replace: {
|
|
35
|
+
const a = `${i} → ${p} (${f(
|
|
36
|
+
c.amount,
|
|
37
|
+
c.currency
|
|
27
38
|
)})`;
|
|
28
|
-
o.replaced.push(
|
|
39
|
+
o.replaced.push(a);
|
|
29
40
|
break;
|
|
30
41
|
}
|
|
31
42
|
default: {
|
|
32
|
-
const
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
43
|
+
const a = l(
|
|
44
|
+
i,
|
|
45
|
+
s,
|
|
46
|
+
d,
|
|
47
|
+
m
|
|
48
|
+
);
|
|
49
|
+
o.added.push(a);
|
|
37
50
|
}
|
|
38
51
|
}
|
|
39
52
|
return o;
|
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./shared/enums.js"),
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./shared/enums.js"),t=require("./shared/isWithinFlag.js"),r=require("./shared/generateId.js"),i=require("./outlet/getListOutletOpeningHoursTable.js"),n=require("./outlet/getOutletTagInformation.js"),o=require("./outlet/getOutletAvailabilityInfo.js"),u=require("./outlet/getOutletOfflineOrderFormats.js"),s=require("./outlet/getOutletAvailableOrderFormats.js"),a=require("./outlet/getOutletFormattedDistance.js"),l=require("./outlet/isOutletAcceptingPreOrders.js"),c=require("./outlet/getOutletDeliveryFee.js"),g=require("./outlet/getOutletTodayOpeningTimes.js"),d=require("./outlet/getOutletOrderFormats.js"),q=require("./outlet/serviceDateTimesFromOpeningHours.js"),O=require("./versioning/isVersionALessThanB.js"),_=require("./versioning/cleanVersionString.js"),m=require("./api/getUrlAndParams.js"),f=require("./api/getEndpointWithVersion.js"),p=require("./api/generateBackoffWithEqualJitter.js"),y=require("./string/slugify.js"),P=require("./string/truncate.js"),k=require("./color/lighten.js"),F=require("./color/brighten.js"),T=require("./color/darken.js"),v=require("./color/isDarkBackground.js"),h=require("./user/getFullName.js"),S=require("./user/getFullAddressString.js"),D=require("./logger/Logger.js"),I=require("./logger/types.js"),b=require("./logger/sanitizeAsStringDict.js"),A=require("./printing/getPrinterType.js"),V=require("./printing/isValidPrinter.js"),L=require("./printing/isValidNetworkPrinter.js"),C=require("./printing/isValidStarCloudPrinter.js"),W=require("./printing/isTerminalPrinter.js"),B=require("./number/randomIntFromInterval.js"),N=require("./tables/decodeTableQRPayload.js"),M=require("./checkout/getCheckoutItemModifications.js"),E=require("./checkout/getCheckoutProductName.js"),H=require("./currency/getFormattedCurrency.js"),w=require("./inventory/isDetailedProductOutOfStock.js"),z=require("./inventory/isDetailedProductVariantOutOfStocks.js"),J=require("./inventory/isMenuTreeProductOutOfStock.js");require("moment");require("@ancon/wildcat-types");require("./outlet/types.js");require("./outlet/constants.js");require("./outlet/getOutletCurrentActiveOperatingHour.js");require("./outlet/getMomentFromDateAndTimeString.js");require("./outlet/searchNextOpeningMoment.js");require("lodash");require("compare-versions");require("tinycolor2");require("@ancon/wildcat-printing");require("./currency/getFormattedCurrencyPostfix.js");exports.DayOfWeek=e.DayOfWeek;exports.IntervalState=e.IntervalState;exports.IntervalType=e.IntervalType;exports.OrderFormat=e.OrderFormat;exports.isWithinFlag=t;exports.generateId=r;exports.getListOutletOpeningHoursTable=i;exports.getOutletTagInformation=n.default;exports.getOutletAvailabilityInfo=o.default;exports.getOutletOfflineOrderFormats=u;exports.getOutletAvailableOrderFormats=s;exports.getOutletFormattedDistance=a;exports.isOutletAcceptingPreOrders=l;exports.getOutletDeliveryFee=c;exports.getOutletTodayOpeningTimes=g;exports.getOutletOrderFormats=d;exports.serviceDateTimesFromOpeningHours=q;exports.isVersionALessThanB=O;exports.cleanVersionString=_;exports.getUrlAndParams=m;exports.getEndpointWithVersion=f;exports.generateBackoffWithEqualJitter=p;exports.slugify=y;exports.truncate=P;exports.lighten=k;exports.brighten=F;exports.darken=T;exports.isDarkBackground=v;exports.getFullName=h;exports.getFullAddressString=S;exports.Logger=D;exports.LogLevel=I.LogLevel;exports.sanitizeAsStringDict=b;exports.getPrinterType=A;exports.isValidPrinter=V;exports.isValidNetworkPrinter=L;exports.isValidStarCloudPrinter=C;exports.isTerminalPrinter=W;exports.randomIntFromInterval=B;exports.decodeTableQRPayload=N;exports.getCheckoutGroupedModifications=M;exports.getCheckoutProductName=E;exports.getFormattedCurrency=H;exports.isDetailedProductOutOfStock=w;exports.isDetailedProductVariantOutOfStocks=z;exports.isMenuTreeProductOutOfStock=J;
|
package/index.mjs
CHANGED
|
@@ -1,43 +1,46 @@
|
|
|
1
1
|
import { DayOfWeek as x, IntervalState as g, IntervalType as O, OrderFormat as c } from "./shared/enums.mjs";
|
|
2
|
-
import { default as
|
|
3
|
-
import { default as
|
|
4
|
-
import { default as
|
|
5
|
-
import { default as
|
|
6
|
-
import { default as
|
|
7
|
-
import { default as
|
|
8
|
-
import { default as
|
|
2
|
+
import { default as P } from "./shared/isWithinFlag.mjs";
|
|
3
|
+
import { default as T } from "./shared/generateId.mjs";
|
|
4
|
+
import { default as h } from "./outlet/getListOutletOpeningHoursTable.mjs";
|
|
5
|
+
import { default as D } from "./outlet/getOutletTagInformation.mjs";
|
|
6
|
+
import { default as A } from "./outlet/getOutletAvailabilityInfo.mjs";
|
|
7
|
+
import { default as V } from "./outlet/getOutletOfflineOrderFormats.mjs";
|
|
8
|
+
import { default as L } from "./outlet/getOutletAvailableOrderFormats.mjs";
|
|
9
9
|
import { default as W } from "./outlet/getOutletFormattedDistance.mjs";
|
|
10
10
|
import { default as N } from "./outlet/isOutletAcceptingPreOrders.mjs";
|
|
11
11
|
import { default as H } from "./outlet/getOutletDeliveryFee.mjs";
|
|
12
|
-
import { default as
|
|
13
|
-
import { default as
|
|
14
|
-
import { default as
|
|
12
|
+
import { default as q } from "./outlet/getOutletTodayOpeningTimes.mjs";
|
|
13
|
+
import { default as z } from "./outlet/getOutletOrderFormats.mjs";
|
|
14
|
+
import { default as J } from "./outlet/serviceDateTimesFromOpeningHours.mjs";
|
|
15
15
|
import { default as R } from "./versioning/isVersionALessThanB.mjs";
|
|
16
16
|
import { default as j } from "./versioning/cleanVersionString.mjs";
|
|
17
17
|
import { default as X } from "./api/getUrlAndParams.mjs";
|
|
18
18
|
import { default as Z } from "./api/getEndpointWithVersion.mjs";
|
|
19
19
|
import { default as $ } from "./api/generateBackoffWithEqualJitter.mjs";
|
|
20
|
-
import { default as
|
|
21
|
-
import { default as
|
|
22
|
-
import { default as
|
|
23
|
-
import { default as
|
|
24
|
-
import { default as
|
|
25
|
-
import { default as
|
|
26
|
-
import { default as
|
|
27
|
-
import { default as
|
|
28
|
-
import { default as
|
|
29
|
-
import { LogLevel as
|
|
30
|
-
import { default as
|
|
31
|
-
import { default as
|
|
32
|
-
import { default as
|
|
33
|
-
import { default as
|
|
34
|
-
import { default as
|
|
35
|
-
import { default as
|
|
36
|
-
import { default as
|
|
37
|
-
import { default as
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as
|
|
40
|
-
import { default as
|
|
20
|
+
import { default as et } from "./string/slugify.mjs";
|
|
21
|
+
import { default as ot } from "./string/truncate.mjs";
|
|
22
|
+
import { default as ft } from "./color/lighten.mjs";
|
|
23
|
+
import { default as st } from "./color/brighten.mjs";
|
|
24
|
+
import { default as it } from "./color/darken.mjs";
|
|
25
|
+
import { default as mt } from "./color/isDarkBackground.mjs";
|
|
26
|
+
import { default as nt } from "./user/getFullName.mjs";
|
|
27
|
+
import { default as gt } from "./user/getFullAddressString.mjs";
|
|
28
|
+
import { default as ct } from "./logger/Logger.mjs";
|
|
29
|
+
import { LogLevel as Pt } from "./logger/types.mjs";
|
|
30
|
+
import { default as Tt } from "./logger/sanitizeAsStringDict.mjs";
|
|
31
|
+
import { default as ht } from "./printing/getPrinterType.mjs";
|
|
32
|
+
import { default as Dt } from "./printing/isValidPrinter.mjs";
|
|
33
|
+
import { default as At } from "./printing/isValidNetworkPrinter.mjs";
|
|
34
|
+
import { default as Vt } from "./printing/isValidStarCloudPrinter.mjs";
|
|
35
|
+
import { default as Lt } from "./printing/isTerminalPrinter.mjs";
|
|
36
|
+
import { default as Wt } from "./number/randomIntFromInterval.mjs";
|
|
37
|
+
import { default as Nt } from "./tables/decodeTableQRPayload.mjs";
|
|
38
|
+
import { default as Ht } from "./checkout/getCheckoutItemModifications.mjs";
|
|
39
|
+
import { default as qt } from "./checkout/getCheckoutProductName.mjs";
|
|
40
|
+
import { default as zt } from "./currency/getFormattedCurrency.mjs";
|
|
41
|
+
import { default as Jt } from "./inventory/isDetailedProductOutOfStock.mjs";
|
|
42
|
+
import { default as Rt } from "./inventory/isDetailedProductVariantOutOfStocks.mjs";
|
|
43
|
+
import { default as jt } from "./inventory/isMenuTreeProductOutOfStock.mjs";
|
|
41
44
|
import "moment";
|
|
42
45
|
import "@ancon/wildcat-types";
|
|
43
46
|
import "./outlet/types.mjs";
|
|
@@ -54,44 +57,47 @@ export {
|
|
|
54
57
|
x as DayOfWeek,
|
|
55
58
|
g as IntervalState,
|
|
56
59
|
O as IntervalType,
|
|
57
|
-
|
|
58
|
-
|
|
60
|
+
Pt as LogLevel,
|
|
61
|
+
ct as Logger,
|
|
59
62
|
c as OrderFormat,
|
|
60
|
-
|
|
63
|
+
st as brighten,
|
|
61
64
|
j as cleanVersionString,
|
|
62
|
-
|
|
63
|
-
|
|
65
|
+
it as darken,
|
|
66
|
+
Nt as decodeTableQRPayload,
|
|
64
67
|
$ as generateBackoffWithEqualJitter,
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
+
T as generateId,
|
|
69
|
+
Ht as getCheckoutGroupedModifications,
|
|
70
|
+
qt as getCheckoutProductName,
|
|
68
71
|
Z as getEndpointWithVersion,
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
72
|
+
zt as getFormattedCurrency,
|
|
73
|
+
gt as getFullAddressString,
|
|
74
|
+
nt as getFullName,
|
|
75
|
+
h as getListOutletOpeningHoursTable,
|
|
76
|
+
A as getOutletAvailabilityInfo,
|
|
77
|
+
L as getOutletAvailableOrderFormats,
|
|
75
78
|
H as getOutletDeliveryFee,
|
|
76
79
|
W as getOutletFormattedDistance,
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
80
|
+
V as getOutletOfflineOrderFormats,
|
|
81
|
+
z as getOutletOrderFormats,
|
|
82
|
+
D as getOutletTagInformation,
|
|
83
|
+
q as getOutletTodayOpeningTimes,
|
|
84
|
+
ht as getPrinterType,
|
|
82
85
|
X as getUrlAndParams,
|
|
83
|
-
|
|
86
|
+
mt as isDarkBackground,
|
|
87
|
+
Jt as isDetailedProductOutOfStock,
|
|
88
|
+
Rt as isDetailedProductVariantOutOfStocks,
|
|
89
|
+
jt as isMenuTreeProductOutOfStock,
|
|
84
90
|
N as isOutletAcceptingPreOrders,
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
91
|
+
Lt as isTerminalPrinter,
|
|
92
|
+
At as isValidNetworkPrinter,
|
|
93
|
+
Dt as isValidPrinter,
|
|
94
|
+
Vt as isValidStarCloudPrinter,
|
|
89
95
|
R as isVersionALessThanB,
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
96
|
+
P as isWithinFlag,
|
|
97
|
+
ft as lighten,
|
|
98
|
+
Wt as randomIntFromInterval,
|
|
99
|
+
Tt as sanitizeAsStringDict,
|
|
100
|
+
J as serviceDateTimesFromOpeningHours,
|
|
101
|
+
et as slugify,
|
|
102
|
+
ot as truncate
|
|
97
103
|
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import isDetailedProductOutOfStock from './isDetailedProductOutOfStock';
|
|
2
|
+
import isDetailedProductVariantOutOfStocks from './isDetailedProductVariantOutOfStocks';
|
|
3
|
+
import isMenuTreeProductOutOfStock from './isMenuTreeProductOutOfStock';
|
|
4
|
+
export { isDetailedProductOutOfStock, isDetailedProductVariantOutOfStocks, isMenuTreeProductOutOfStock, };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./isDetailedProductOutOfStock.js"),e=require("./isDetailedProductVariantOutOfStocks.js"),r=require("./isMenuTreeProductOutOfStock.js");exports.isDetailedProductOutOfStock=t;exports.isDetailedProductVariantOutOfStocks=e;exports.isMenuTreeProductOutOfStock=r;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { default as o } from "./isDetailedProductOutOfStock.mjs";
|
|
2
|
+
import { default as a } from "./isDetailedProductVariantOutOfStocks.mjs";
|
|
3
|
+
import { default as f } from "./isMenuTreeProductOutOfStock.mjs";
|
|
4
|
+
export {
|
|
5
|
+
o as isDetailedProductOutOfStock,
|
|
6
|
+
a as isDetailedProductVariantOutOfStocks,
|
|
7
|
+
f as isMenuTreeProductOutOfStock
|
|
8
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";const f=require("./isDetailedProductVariantOutOfStocks.js");function l(i,e){var t;return((t=e||[])==null?void 0:t.length)>0&&(e==null?void 0:e.every(O=>f(O,i)))}module.exports=l;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";function s(o,u){const t=o.outletStocks.find(c=>c.outletId===u);return!!(t!=null&&t.stockProductId&&t.stockCount<=0)}module.exports=s;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";function f(e){var i;return((i=e||[])==null?void 0:i.length)>0&&(e==null?void 0:e.every(r=>r.stockProductId&&r.count<=0))}module.exports=f;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";function o(m=0){if(m>1e3){const u=m/1e3;return Number.isInteger(u)?`${m}
|
|
1
|
+
"use strict";function o(m=0){if(m>1e3){const u=m/1e3;return Number.isInteger(u)?`${m} km`:`${m.toFixed(2)} km`}return Number.isInteger(m)?`${m} m`:`${m.toFixed(2)} m`}module.exports=o;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { OrderFormat,
|
|
1
|
+
import { OrderFormat, OutletListItem } from '@ancon/wildcat-types';
|
|
2
2
|
/**
|
|
3
3
|
* Get outlet's available order formats - included pre-order formats
|
|
4
4
|
* @param outlet Outlet list item
|
|
5
5
|
* @returns Array of OrderFormat
|
|
6
6
|
*/
|
|
7
|
-
export default function getOutletOrderFormats(outlet:
|
|
7
|
+
export default function getOutletOrderFormats(outlet: OutletListItem): OrderFormat[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ancon/wildcat-utils",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.mjs",
|
|
@@ -86,6 +86,26 @@
|
|
|
86
86
|
"require": "./index.js",
|
|
87
87
|
"types": "./index.d.ts"
|
|
88
88
|
},
|
|
89
|
+
"./inventory": {
|
|
90
|
+
"import": "./inventory/index.mjs",
|
|
91
|
+
"require": "./inventory/index.js",
|
|
92
|
+
"types": "./inventory/index.d.ts"
|
|
93
|
+
},
|
|
94
|
+
"./inventory/isDetailedProductOutOfStock": {
|
|
95
|
+
"import": "./inventory/isDetailedProductOutOfStock.mjs",
|
|
96
|
+
"require": "./inventory/isDetailedProductOutOfStock.js",
|
|
97
|
+
"types": "./inventory/isDetailedProductOutOfStock.d.ts"
|
|
98
|
+
},
|
|
99
|
+
"./inventory/isDetailedProductVariantOutOfStocks": {
|
|
100
|
+
"import": "./inventory/isDetailedProductVariantOutOfStocks.mjs",
|
|
101
|
+
"require": "./inventory/isDetailedProductVariantOutOfStocks.js",
|
|
102
|
+
"types": "./inventory/isDetailedProductVariantOutOfStocks.d.ts"
|
|
103
|
+
},
|
|
104
|
+
"./inventory/isMenuTreeProductOutOfStock": {
|
|
105
|
+
"import": "./inventory/isMenuTreeProductOutOfStock.mjs",
|
|
106
|
+
"require": "./inventory/isMenuTreeProductOutOfStock.js",
|
|
107
|
+
"types": "./inventory/isMenuTreeProductOutOfStock.d.ts"
|
|
108
|
+
},
|
|
89
109
|
"./logger/Logger": {
|
|
90
110
|
"import": "./logger/Logger.mjs",
|
|
91
111
|
"require": "./logger/Logger.js",
|