@aeriajs/builtins 0.0.66 → 0.0.67
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/collections/user/activate.js +5 -25
- package/dist/collections/user/activate.mjs +1 -1
- package/dist/collections/user/authenticate.js +2 -25
- package/dist/collections/user/authenticate.mjs +2 -2
- package/dist/collections/user/createAccount.js +4 -24
- package/dist/collections/user/createAccount.mjs +1 -1
- package/dist/collections/user/getActivationLink.js +4 -24
- package/dist/collections/user/getActivationLink.mjs +1 -1
- package/dist/collections/user/getInfo.js +4 -24
- package/dist/collections/user/getInfo.mjs +1 -1
- package/dist/collections/user/insert.js +4 -24
- package/dist/collections/user/insert.mjs +1 -1
- package/package.json +3 -3
|
@@ -1,31 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
24
4
|
};
|
|
25
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
6
|
exports.activate = exports.ActivationErrors = void 0;
|
|
27
7
|
const core_1 = require("@aeriajs/core");
|
|
28
8
|
const common_1 = require("@aeriajs/common");
|
|
9
|
+
const bcrypt_1 = __importDefault(require("bcrypt"));
|
|
29
10
|
var ActivationErrors;
|
|
30
11
|
(function (ActivationErrors) {
|
|
31
12
|
ActivationErrors["UserNotFound"] = "USER_NOT_FOUND";
|
|
@@ -50,8 +31,7 @@ const activate = async (payload, context) => {
|
|
|
50
31
|
if (user.active) {
|
|
51
32
|
return (0, common_1.left)(ActivationErrors.AlreadyActiveUser);
|
|
52
33
|
}
|
|
53
|
-
const
|
|
54
|
-
const equal = await bcrypt.compare(user._id.toString(), token);
|
|
34
|
+
const equal = await bcrypt_1.default.compare(user._id.toString(), token);
|
|
55
35
|
if (!equal) {
|
|
56
36
|
return (0, common_1.left)(ActivationErrors.InvalidLink);
|
|
57
37
|
}
|
|
@@ -66,7 +46,7 @@ const activate = async (payload, context) => {
|
|
|
66
46
|
}, {
|
|
67
47
|
$set: {
|
|
68
48
|
active: true,
|
|
69
|
-
password: await
|
|
49
|
+
password: await bcrypt_1.default.hash(payload.password, 10),
|
|
70
50
|
},
|
|
71
51
|
});
|
|
72
52
|
return (0, common_1.right)(true);
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
import { ObjectId } from "@aeriajs/core";
|
|
3
3
|
import { left, right } from "@aeriajs/common";
|
|
4
|
+
import bcrypt from "bcrypt";
|
|
4
5
|
export var ActivationErrors = /* @__PURE__ */ ((ActivationErrors2) => {
|
|
5
6
|
ActivationErrors2["UserNotFound"] = "USER_NOT_FOUND";
|
|
6
7
|
ActivationErrors2["AlreadyActiveUser"] = "ALREADY_ACTIVE_USER";
|
|
@@ -28,7 +29,6 @@ export const activate = async (payload, context) => {
|
|
|
28
29
|
if (user.active) {
|
|
29
30
|
return left("ALREADY_ACTIVE_USER" /* AlreadyActiveUser */);
|
|
30
31
|
}
|
|
31
|
-
const bcrypt = await import("bcrypt");
|
|
32
32
|
const equal = await bcrypt.compare(user._id.toString(), token);
|
|
33
33
|
if (!equal) {
|
|
34
34
|
return left("INVALID_LINK" /* InvalidLink */);
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
24
|
-
};
|
|
25
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
3
|
exports.authenticate = exports.getDefaultUser = exports.AuthenticationErrors = void 0;
|
|
4
|
+
const bcrypt_1 = require("bcrypt");
|
|
27
5
|
const core_1 = require("@aeriajs/core");
|
|
28
6
|
const common_1 = require("@aeriajs/common");
|
|
29
7
|
var AuthenticationErrors;
|
|
@@ -131,8 +109,7 @@ const authenticate = async (props, context) => {
|
|
|
131
109
|
active: 1,
|
|
132
110
|
},
|
|
133
111
|
});
|
|
134
|
-
|
|
135
|
-
if (!user || !user.password || !await bcrypt.compare(props.password, user.password)) {
|
|
112
|
+
if (!user || !user.password || !await (0, bcrypt_1.compare)(props.password, user.password)) {
|
|
136
113
|
return (0, common_1.left)(AuthenticationErrors.InvalidCredentials);
|
|
137
114
|
}
|
|
138
115
|
if (!user.active) {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
import { compare as bcryptCompare } from "bcrypt";
|
|
2
3
|
import { signToken, decodeToken } from "@aeriajs/core";
|
|
3
4
|
import { left, right } from "@aeriajs/common";
|
|
4
5
|
export var AuthenticationErrors = /* @__PURE__ */ ((AuthenticationErrors2) => {
|
|
@@ -103,8 +104,7 @@ export const authenticate = async (props, context) => {
|
|
|
103
104
|
}
|
|
104
105
|
}
|
|
105
106
|
);
|
|
106
|
-
|
|
107
|
-
if (!user || !user.password || !await bcrypt.compare(props.password, user.password)) {
|
|
107
|
+
if (!user || !user.password || !await bcryptCompare(props.password, user.password)) {
|
|
108
108
|
return left("INVALID_CREDENTIALS" /* InvalidCredentials */);
|
|
109
109
|
}
|
|
110
110
|
if (!user.active) {
|
|
@@ -1,31 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
24
4
|
};
|
|
25
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
6
|
exports.createAccount = void 0;
|
|
27
7
|
const common_1 = require("@aeriajs/common");
|
|
28
8
|
const validation_1 = require("@aeriajs/validation");
|
|
9
|
+
const bcrypt_1 = __importDefault(require("bcrypt"));
|
|
29
10
|
const createAccount = async (payload, context) => {
|
|
30
11
|
const user = Object.assign({}, payload);
|
|
31
12
|
if (!context.config.allowSignup) {
|
|
@@ -66,8 +47,7 @@ const createAccount = async (payload, context) => {
|
|
|
66
47
|
Object.assign(user, context.config.signupDefaults);
|
|
67
48
|
}
|
|
68
49
|
if (user.password) {
|
|
69
|
-
|
|
70
|
-
user.password = await bcrypt.hash(user.password, 10);
|
|
50
|
+
user.password = await bcrypt_1.default.hash(user.password, 10);
|
|
71
51
|
}
|
|
72
52
|
if (!context.token.authenticated) {
|
|
73
53
|
Object.assign(user, {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
import { isLeft, unwrapEither, left, right } from "@aeriajs/common";
|
|
3
3
|
import { validate } from "@aeriajs/validation";
|
|
4
|
+
import bcrypt from "bcrypt";
|
|
4
5
|
export const createAccount = async (payload, context) => {
|
|
5
6
|
const user = Object.assign({}, payload);
|
|
6
7
|
if (!context.config.allowSignup) {
|
|
@@ -41,7 +42,6 @@ export const createAccount = async (payload, context) => {
|
|
|
41
42
|
Object.assign(user, context.config.signupDefaults);
|
|
42
43
|
}
|
|
43
44
|
if (user.password) {
|
|
44
|
-
const bcrypt = await import("bcrypt");
|
|
45
45
|
user.password = await bcrypt.hash(user.password, 10);
|
|
46
46
|
}
|
|
47
47
|
if (!context.token.authenticated) {
|
|
@@ -1,34 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
24
4
|
};
|
|
25
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
6
|
exports.getActivationLink = void 0;
|
|
27
7
|
const entrypoint_1 = require("@aeriajs/entrypoint");
|
|
8
|
+
const bcrypt_1 = __importDefault(require("bcrypt"));
|
|
28
9
|
const getActivationLink = async (userId) => {
|
|
29
10
|
const config = await (0, entrypoint_1.getConfig)();
|
|
30
|
-
const
|
|
31
|
-
const activationToken = await bcrypt.hash(userId.toString(), 10);
|
|
11
|
+
const activationToken = await bcrypt_1.default.hash(userId.toString(), 10);
|
|
32
12
|
const link = `${config.publicUrl}/user/activate?u=${userId.toString()}&t=${activationToken}`;
|
|
33
13
|
return link;
|
|
34
14
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
import { getConfig } from "@aeriajs/entrypoint";
|
|
3
|
+
import bcrypt from "bcrypt";
|
|
3
4
|
export const getActivationLink = async (userId) => {
|
|
4
5
|
const config = await getConfig();
|
|
5
|
-
const bcrypt = await import("bcrypt");
|
|
6
6
|
const activationToken = await bcrypt.hash(userId.toString(), 10);
|
|
7
7
|
const link = `${config.publicUrl}/user/activate?u=${userId.toString()}&t=${activationToken}`;
|
|
8
8
|
return link;
|
|
@@ -1,31 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
24
4
|
};
|
|
25
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
6
|
exports.getInfo = exports.ActivationErrors = void 0;
|
|
27
7
|
const core_1 = require("@aeriajs/core");
|
|
28
8
|
const common_1 = require("@aeriajs/common");
|
|
9
|
+
const bcrypt_1 = __importDefault(require("bcrypt"));
|
|
29
10
|
var ActivationErrors;
|
|
30
11
|
(function (ActivationErrors) {
|
|
31
12
|
ActivationErrors["UserNotFound"] = "USER_NOT_FOUND";
|
|
@@ -46,8 +27,7 @@ const getInfo = async (payload, context) => {
|
|
|
46
27
|
if (user.active) {
|
|
47
28
|
return (0, common_1.left)(ActivationErrors.AlreadyActiveUser);
|
|
48
29
|
}
|
|
49
|
-
const
|
|
50
|
-
const equal = await bcrypt.compare(user._id.toString(), token);
|
|
30
|
+
const equal = await bcrypt_1.default.compare(user._id.toString(), token);
|
|
51
31
|
if (!equal) {
|
|
52
32
|
return (0, common_1.left)(ActivationErrors.InvalidLink);
|
|
53
33
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
import { ObjectId } from "@aeriajs/core";
|
|
3
3
|
import { left, right } from "@aeriajs/common";
|
|
4
|
+
import bcrypt from "bcrypt";
|
|
4
5
|
export var ActivationErrors = /* @__PURE__ */ ((ActivationErrors2) => {
|
|
5
6
|
ActivationErrors2["UserNotFound"] = "USER_NOT_FOUND";
|
|
6
7
|
ActivationErrors2["AlreadyActiveUser"] = "ALREADY_ACTIVE_USER";
|
|
@@ -24,7 +25,6 @@ export const getInfo = async (payload, context) => {
|
|
|
24
25
|
if (user.active) {
|
|
25
26
|
return left("ALREADY_ACTIVE_USER" /* AlreadyActiveUser */);
|
|
26
27
|
}
|
|
27
|
-
const bcrypt = await import("bcrypt");
|
|
28
28
|
const equal = await bcrypt.compare(user._id.toString(), token);
|
|
29
29
|
if (!equal) {
|
|
30
30
|
return left("INVALID_LINK" /* InvalidLink */);
|
|
@@ -1,34 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
24
4
|
};
|
|
25
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
6
|
exports.insert = void 0;
|
|
7
|
+
const bcrypt_1 = __importDefault(require("bcrypt"));
|
|
27
8
|
const core_1 = require("@aeriajs/core");
|
|
28
9
|
const insert = async (payload, context) => {
|
|
29
10
|
if (payload.what.password) {
|
|
30
|
-
|
|
31
|
-
payload.what.password = await bcrypt.hash(payload.what.password, 10);
|
|
11
|
+
payload.what.password = await bcrypt_1.default.hash(payload.what.password, 10);
|
|
32
12
|
}
|
|
33
13
|
return core_1.functions.insert(payload, context);
|
|
34
14
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
import bcrypt from "bcrypt";
|
|
2
3
|
import { functions } from "@aeriajs/core";
|
|
3
4
|
export const insert = async (payload, context) => {
|
|
4
5
|
if (payload.what.password) {
|
|
5
|
-
const bcrypt = await import("bcrypt");
|
|
6
6
|
payload.what.password = await bcrypt.hash(payload.what.password, 10);
|
|
7
7
|
}
|
|
8
8
|
return functions.insert(payload, context);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aeriajs/builtins",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.67",
|
|
4
4
|
"description": "## Installation",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@aeriajs/access-control": "^0.0.36",
|
|
40
|
-
"@aeriajs/core": "^0.0.
|
|
40
|
+
"@aeriajs/core": "^0.0.67",
|
|
41
41
|
"@aeriajs/common": "^0.0.36",
|
|
42
42
|
"@aeriajs/entrypoint": "^0.0.36",
|
|
43
43
|
"@aeriajs/types": "^0.0.33",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"@aeriajs/access-control": "^0.0.36",
|
|
50
|
-
"@aeriajs/core": "^0.0.
|
|
50
|
+
"@aeriajs/core": "^0.0.67",
|
|
51
51
|
"@aeriajs/common": "^0.0.36",
|
|
52
52
|
"@aeriajs/entrypoint": "^0.0.36",
|
|
53
53
|
"@aeriajs/types": "^0.0.33",
|