@beabee/beabee-common 0.20.2 → 0.20.3-alpha.2
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/cjs/data/payment-method.cjs +1 -0
- package/dist/cjs/types/index.cjs +14 -0
- package/dist/cjs/types/payment-source-go-cardless-direct-debit.cjs +16 -0
- package/dist/cjs/types/payment-source-manual.cjs +16 -0
- package/dist/cjs/types/payment-source-stripe-bacs.cjs +16 -0
- package/dist/cjs/types/payment-source-stripe-card.cjs +16 -0
- package/dist/cjs/types/payment-source-stripe-paypal.cjs +16 -0
- package/dist/cjs/types/payment-source-stripe-sepa.cjs +16 -0
- package/dist/cjs/types/payment-source.cjs +16 -0
- package/dist/cjs/utils/date.cjs +3 -1
- package/dist/cjs/utils/payments.cjs +7 -3
- package/dist/esm/data/payment-method.js +1 -0
- package/dist/esm/types/index.js +7 -0
- package/dist/esm/types/payment-source-go-cardless-direct-debit.js +0 -0
- package/dist/esm/types/payment-source-manual.js +0 -0
- package/dist/esm/types/payment-source-stripe-bacs.js +0 -0
- package/dist/esm/types/payment-source-stripe-card.js +0 -0
- package/dist/esm/types/payment-source-stripe-paypal.js +0 -0
- package/dist/esm/types/payment-source-stripe-sepa.js +0 -0
- package/dist/esm/types/payment-source.js +0 -0
- package/dist/esm/utils/date.js +3 -1
- package/dist/esm/utils/payments.js +7 -3
- package/dist/types/data/payment-method.d.ts +1 -0
- package/dist/types/types/index.d.ts +7 -0
- package/dist/types/types/payment-source-go-cardless-direct-debit.d.ts +7 -0
- package/dist/types/types/payment-source-manual.d.ts +5 -0
- package/dist/types/types/payment-source-stripe-bacs.d.ts +6 -0
- package/dist/types/types/payment-source-stripe-card.d.ts +7 -0
- package/dist/types/types/payment-source-stripe-paypal.d.ts +6 -0
- package/dist/types/types/payment-source-stripe-sepa.d.ts +8 -0
- package/dist/types/types/payment-source.d.ts +2 -0
- package/dist/types/types/unit-matches.d.ts +5 -1
- package/package.json +5 -4
|
@@ -25,6 +25,7 @@ var PaymentMethod = /* @__PURE__ */ ((PaymentMethod2) => {
|
|
|
25
25
|
PaymentMethod2["StripeCard"] = "s_card";
|
|
26
26
|
PaymentMethod2["StripeSEPA"] = "s_sepa";
|
|
27
27
|
PaymentMethod2["StripeBACS"] = "s_bacs";
|
|
28
|
+
PaymentMethod2["StripePayPal"] = "s_paypal";
|
|
28
29
|
PaymentMethod2["GoCardlessDirectDebit"] = "gc_direct-debit";
|
|
29
30
|
return PaymentMethod2;
|
|
30
31
|
})(PaymentMethod || {});
|
package/dist/cjs/types/index.cjs
CHANGED
|
@@ -92,6 +92,13 @@ __reExport(types_exports, require("./other-filter-args.cjs"), module.exports);
|
|
|
92
92
|
__reExport(types_exports, require("./paginated-query.cjs"), module.exports);
|
|
93
93
|
__reExport(types_exports, require("./paginated.cjs"), module.exports);
|
|
94
94
|
__reExport(types_exports, require("./payment-filter-name.cjs"), module.exports);
|
|
95
|
+
__reExport(types_exports, require("./payment-source-go-cardless-direct-debit.cjs"), module.exports);
|
|
96
|
+
__reExport(types_exports, require("./payment-source-manual.cjs"), module.exports);
|
|
97
|
+
__reExport(types_exports, require("./payment-source-stripe-bacs.cjs"), module.exports);
|
|
98
|
+
__reExport(types_exports, require("./payment-source-stripe-card.cjs"), module.exports);
|
|
99
|
+
__reExport(types_exports, require("./payment-source-stripe-paypal.cjs"), module.exports);
|
|
100
|
+
__reExport(types_exports, require("./payment-source-stripe-sepa.cjs"), module.exports);
|
|
101
|
+
__reExport(types_exports, require("./payment-source.cjs"), module.exports);
|
|
95
102
|
__reExport(types_exports, require("./role-type.cjs"), module.exports);
|
|
96
103
|
__reExport(types_exports, require("./rule-group.cjs"), module.exports);
|
|
97
104
|
__reExport(types_exports, require("./rule-operator.cjs"), module.exports);
|
|
@@ -192,6 +199,13 @@ __reExport(types_exports, require("./validator.cjs"), module.exports);
|
|
|
192
199
|
...require("./paginated-query.cjs"),
|
|
193
200
|
...require("./paginated.cjs"),
|
|
194
201
|
...require("./payment-filter-name.cjs"),
|
|
202
|
+
...require("./payment-source-go-cardless-direct-debit.cjs"),
|
|
203
|
+
...require("./payment-source-manual.cjs"),
|
|
204
|
+
...require("./payment-source-stripe-bacs.cjs"),
|
|
205
|
+
...require("./payment-source-stripe-card.cjs"),
|
|
206
|
+
...require("./payment-source-stripe-paypal.cjs"),
|
|
207
|
+
...require("./payment-source-stripe-sepa.cjs"),
|
|
208
|
+
...require("./payment-source.cjs"),
|
|
195
209
|
...require("./role-type.cjs"),
|
|
196
210
|
...require("./rule-group.cjs"),
|
|
197
211
|
...require("./rule-operator.cjs"),
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
+
var payment_source_go_cardless_direct_debit_exports = {};
|
|
16
|
+
module.exports = __toCommonJS(payment_source_go_cardless_direct_debit_exports);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
+
var payment_source_manual_exports = {};
|
|
16
|
+
module.exports = __toCommonJS(payment_source_manual_exports);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
+
var payment_source_stripe_bacs_exports = {};
|
|
16
|
+
module.exports = __toCommonJS(payment_source_stripe_bacs_exports);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
+
var payment_source_stripe_card_exports = {};
|
|
16
|
+
module.exports = __toCommonJS(payment_source_stripe_card_exports);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
+
var payment_source_stripe_paypal_exports = {};
|
|
16
|
+
module.exports = __toCommonJS(payment_source_stripe_paypal_exports);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
+
var payment_source_stripe_sepa_exports = {};
|
|
16
|
+
module.exports = __toCommonJS(payment_source_stripe_sepa_exports);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __copyProps = (to, from, except, desc) => {
|
|
7
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
+
for (let key of __getOwnPropNames(from))
|
|
9
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
+
}
|
|
12
|
+
return to;
|
|
13
|
+
};
|
|
14
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
+
var payment_source_exports = {};
|
|
16
|
+
module.exports = __toCommonJS(payment_source_exports);
|
package/dist/cjs/utils/date.cjs
CHANGED
|
@@ -56,7 +56,9 @@ function parseDate(value, now = /* @__PURE__ */ new Date()) {
|
|
|
56
56
|
date = now;
|
|
57
57
|
const unitsGroup = (_a = relativeMatch.groups) == null ? void 0 : _a.units;
|
|
58
58
|
if (unitsGroup) {
|
|
59
|
-
const unitMatches = unitsGroup.matchAll(
|
|
59
|
+
const unitMatches = unitsGroup.matchAll(
|
|
60
|
+
relativeUnit
|
|
61
|
+
);
|
|
60
62
|
units = [];
|
|
61
63
|
for (const [_, unit, delta] of unitMatches) {
|
|
62
64
|
date = (0, import_date_fns.add)(date, { [dateUnitMap[unit]]: Number(delta) });
|
|
@@ -26,19 +26,23 @@ const stripeFees = {
|
|
|
26
26
|
gb: {
|
|
27
27
|
[import_data.PaymentMethod.StripeCard]: (amount) => 0.2 + 0.015 * amount,
|
|
28
28
|
[import_data.PaymentMethod.StripeSEPA]: () => 0.3,
|
|
29
|
-
[import_data.PaymentMethod.StripeBACS]: (amount) => Math.min(2, Math.max(0.2, 0.01 * amount))
|
|
29
|
+
[import_data.PaymentMethod.StripeBACS]: (amount) => Math.min(2, Math.max(0.2, 0.01 * amount)),
|
|
30
|
+
[import_data.PaymentMethod.StripePayPal]: (amount) => 0.1 + 0.02 * amount
|
|
30
31
|
},
|
|
31
32
|
eu: {
|
|
32
33
|
[import_data.PaymentMethod.StripeCard]: (amount) => 0.25 + 0.015 * amount,
|
|
33
34
|
[import_data.PaymentMethod.StripeSEPA]: () => 0.35,
|
|
34
|
-
[import_data.PaymentMethod.StripeBACS]: () => 0
|
|
35
|
+
[import_data.PaymentMethod.StripeBACS]: () => 0,
|
|
35
36
|
// Not available
|
|
37
|
+
[import_data.PaymentMethod.StripePayPal]: (amount) => 0.1 + 0.02 * amount
|
|
36
38
|
},
|
|
37
39
|
ca: {
|
|
38
40
|
[import_data.PaymentMethod.StripeCard]: (amount) => 0.3 + 0.029 * amount,
|
|
39
41
|
[import_data.PaymentMethod.StripeSEPA]: () => 0,
|
|
40
42
|
// Not available
|
|
41
|
-
[import_data.PaymentMethod.StripeBACS]: () => 0
|
|
43
|
+
[import_data.PaymentMethod.StripeBACS]: () => 0,
|
|
44
|
+
// Not available
|
|
45
|
+
[import_data.PaymentMethod.StripePayPal]: () => 0
|
|
42
46
|
// Not available
|
|
43
47
|
}
|
|
44
48
|
};
|
|
@@ -2,6 +2,7 @@ var PaymentMethod = /* @__PURE__ */ ((PaymentMethod2) => {
|
|
|
2
2
|
PaymentMethod2["StripeCard"] = "s_card";
|
|
3
3
|
PaymentMethod2["StripeSEPA"] = "s_sepa";
|
|
4
4
|
PaymentMethod2["StripeBACS"] = "s_bacs";
|
|
5
|
+
PaymentMethod2["StripePayPal"] = "s_paypal";
|
|
5
6
|
PaymentMethod2["GoCardlessDirectDebit"] = "gc_direct-debit";
|
|
6
7
|
return PaymentMethod2;
|
|
7
8
|
})(PaymentMethod || {});
|
package/dist/esm/types/index.js
CHANGED
|
@@ -75,6 +75,13 @@ export * from "./other-filter-args.js";
|
|
|
75
75
|
export * from "./paginated-query.js";
|
|
76
76
|
export * from "./paginated.js";
|
|
77
77
|
export * from "./payment-filter-name.js";
|
|
78
|
+
export * from "./payment-source-go-cardless-direct-debit.js";
|
|
79
|
+
export * from "./payment-source-manual.js";
|
|
80
|
+
export * from "./payment-source-stripe-bacs.js";
|
|
81
|
+
export * from "./payment-source-stripe-card.js";
|
|
82
|
+
export * from "./payment-source-stripe-paypal.js";
|
|
83
|
+
export * from "./payment-source-stripe-sepa.js";
|
|
84
|
+
export * from "./payment-source.js";
|
|
78
85
|
export * from "./role-type.js";
|
|
79
86
|
export * from "./rule-group.js";
|
|
80
87
|
export * from "./rule-operator.js";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/dist/esm/utils/date.js
CHANGED
|
@@ -37,7 +37,9 @@ function parseDate(value, now = /* @__PURE__ */ new Date()) {
|
|
|
37
37
|
date = now;
|
|
38
38
|
const unitsGroup = relativeMatch.groups?.units;
|
|
39
39
|
if (unitsGroup) {
|
|
40
|
-
const unitMatches = unitsGroup.matchAll(
|
|
40
|
+
const unitMatches = unitsGroup.matchAll(
|
|
41
|
+
relativeUnit
|
|
42
|
+
);
|
|
41
43
|
units = [];
|
|
42
44
|
for (const [_, unit, delta] of unitMatches) {
|
|
43
45
|
date = add(date, { [dateUnitMap[unit]]: Number(delta) });
|
|
@@ -3,19 +3,23 @@ const stripeFees = {
|
|
|
3
3
|
gb: {
|
|
4
4
|
[PaymentMethod.StripeCard]: (amount) => 0.2 + 0.015 * amount,
|
|
5
5
|
[PaymentMethod.StripeSEPA]: () => 0.3,
|
|
6
|
-
[PaymentMethod.StripeBACS]: (amount) => Math.min(2, Math.max(0.2, 0.01 * amount))
|
|
6
|
+
[PaymentMethod.StripeBACS]: (amount) => Math.min(2, Math.max(0.2, 0.01 * amount)),
|
|
7
|
+
[PaymentMethod.StripePayPal]: (amount) => 0.1 + 0.02 * amount
|
|
7
8
|
},
|
|
8
9
|
eu: {
|
|
9
10
|
[PaymentMethod.StripeCard]: (amount) => 0.25 + 0.015 * amount,
|
|
10
11
|
[PaymentMethod.StripeSEPA]: () => 0.35,
|
|
11
|
-
[PaymentMethod.StripeBACS]: () => 0
|
|
12
|
+
[PaymentMethod.StripeBACS]: () => 0,
|
|
12
13
|
// Not available
|
|
14
|
+
[PaymentMethod.StripePayPal]: (amount) => 0.1 + 0.02 * amount
|
|
13
15
|
},
|
|
14
16
|
ca: {
|
|
15
17
|
[PaymentMethod.StripeCard]: (amount) => 0.3 + 0.029 * amount,
|
|
16
18
|
[PaymentMethod.StripeSEPA]: () => 0,
|
|
17
19
|
// Not available
|
|
18
|
-
[PaymentMethod.StripeBACS]: () => 0
|
|
20
|
+
[PaymentMethod.StripeBACS]: () => 0,
|
|
21
|
+
// Not available
|
|
22
|
+
[PaymentMethod.StripePayPal]: () => 0
|
|
19
23
|
// Not available
|
|
20
24
|
}
|
|
21
25
|
};
|
|
@@ -75,6 +75,13 @@ export * from "./other-filter-args.ts";
|
|
|
75
75
|
export * from "./paginated-query.ts";
|
|
76
76
|
export * from "./paginated.ts";
|
|
77
77
|
export * from "./payment-filter-name.ts";
|
|
78
|
+
export * from "./payment-source-go-cardless-direct-debit.ts";
|
|
79
|
+
export * from "./payment-source-manual.ts";
|
|
80
|
+
export * from "./payment-source-stripe-bacs.ts";
|
|
81
|
+
export * from "./payment-source-stripe-card.ts";
|
|
82
|
+
export * from "./payment-source-stripe-paypal.ts";
|
|
83
|
+
export * from "./payment-source-stripe-sepa.ts";
|
|
84
|
+
export * from "./payment-source.ts";
|
|
78
85
|
export * from "./role-type.ts";
|
|
79
86
|
export * from "./rule-group.ts";
|
|
80
87
|
export * from "./rule-operator.ts";
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import type { PaymentSourceGoCardlessDirectDebit, PaymentSourceManual, PaymentSourceStripeBACS, PaymentSourceStripeCard, PaymentSourceStripePayPal, PaymentSourceStripeSEPA } from "./index.ts";
|
|
2
|
+
export type PaymentSource = PaymentSourceStripeCard | PaymentSourceGoCardlessDirectDebit | PaymentSourceStripeBACS | PaymentSourceStripeSEPA | PaymentSourceManual | PaymentSourceStripePayPal;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@beabee/beabee-common",
|
|
3
|
-
"version": "0.20.2",
|
|
3
|
+
"version": "0.20.3-alpha.2",
|
|
4
4
|
"description": "Shared code between Beabee projects for Node.js, Deno and the browser",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cjs/index.cjs",
|
|
@@ -47,7 +47,8 @@
|
|
|
47
47
|
"cache:node": "deno task cache:node",
|
|
48
48
|
"check": "deno task check",
|
|
49
49
|
"check:format": "deno task check:format",
|
|
50
|
-
"check:types": "deno task check:types"
|
|
50
|
+
"check:types": "deno task check:types",
|
|
51
|
+
"npm:publish:latest": "npm publish --access public --tag latest"
|
|
51
52
|
},
|
|
52
53
|
"repository": {
|
|
53
54
|
"type": "git",
|
|
@@ -61,9 +62,9 @@
|
|
|
61
62
|
"homepage": "https://github.com/beabee-communityrm/beabee-common#readme",
|
|
62
63
|
"devDependencies": {
|
|
63
64
|
"@tsconfig/recommended": "^1.0.3",
|
|
64
|
-
"typescript": "^5.
|
|
65
|
+
"typescript": "^5.4.3"
|
|
65
66
|
},
|
|
66
67
|
"dependencies": {
|
|
67
|
-
"date-fns": "^3.
|
|
68
|
+
"date-fns": "^3.6.0"
|
|
68
69
|
}
|
|
69
70
|
}
|