@twin.org/api-auth-entity-storage-service 0.0.1-next.30 → 0.0.1-next.31
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/index.cjs
CHANGED
@@ -34,19 +34,19 @@ exports.AuthenticationUser = class AuthenticationUser {
|
|
34
34
|
__decorate([
|
35
35
|
entity.property({ type: "string", isPrimary: true }),
|
36
36
|
__metadata("design:type", String)
|
37
|
-
], exports.AuthenticationUser.prototype, "email",
|
37
|
+
], exports.AuthenticationUser.prototype, "email", void 0);
|
38
38
|
__decorate([
|
39
39
|
entity.property({ type: "string" }),
|
40
40
|
__metadata("design:type", String)
|
41
|
-
], exports.AuthenticationUser.prototype, "password",
|
41
|
+
], exports.AuthenticationUser.prototype, "password", void 0);
|
42
42
|
__decorate([
|
43
43
|
entity.property({ type: "string" }),
|
44
44
|
__metadata("design:type", String)
|
45
|
-
], exports.AuthenticationUser.prototype, "salt",
|
45
|
+
], exports.AuthenticationUser.prototype, "salt", void 0);
|
46
46
|
__decorate([
|
47
47
|
entity.property({ type: "string" }),
|
48
48
|
__metadata("design:type", String)
|
49
|
-
], exports.AuthenticationUser.prototype, "identity",
|
49
|
+
], exports.AuthenticationUser.prototype, "identity", void 0);
|
50
50
|
exports.AuthenticationUser = __decorate([
|
51
51
|
entity.entity()
|
52
52
|
], exports.AuthenticationUser);
|
package/dist/esm/index.mjs
CHANGED
@@ -32,19 +32,19 @@ let AuthenticationUser = class AuthenticationUser {
|
|
32
32
|
__decorate([
|
33
33
|
property({ type: "string", isPrimary: true }),
|
34
34
|
__metadata("design:type", String)
|
35
|
-
], AuthenticationUser.prototype, "email",
|
35
|
+
], AuthenticationUser.prototype, "email", void 0);
|
36
36
|
__decorate([
|
37
37
|
property({ type: "string" }),
|
38
38
|
__metadata("design:type", String)
|
39
|
-
], AuthenticationUser.prototype, "password",
|
39
|
+
], AuthenticationUser.prototype, "password", void 0);
|
40
40
|
__decorate([
|
41
41
|
property({ type: "string" }),
|
42
42
|
__metadata("design:type", String)
|
43
|
-
], AuthenticationUser.prototype, "salt",
|
43
|
+
], AuthenticationUser.prototype, "salt", void 0);
|
44
44
|
__decorate([
|
45
45
|
property({ type: "string" }),
|
46
46
|
__metadata("design:type", String)
|
47
|
-
], AuthenticationUser.prototype, "identity",
|
47
|
+
], AuthenticationUser.prototype, "identity", void 0);
|
48
48
|
AuthenticationUser = __decorate([
|
49
49
|
entity()
|
50
50
|
], AuthenticationUser);
|
package/docs/changelog.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Function: generateRestRoutesAuthentication()
|
2
2
|
|
3
|
-
> **generateRestRoutesAuthentication**(`baseRouteName`, `componentName`): `IRestRoute`[]
|
3
|
+
> **generateRestRoutesAuthentication**(`baseRouteName`, `componentName`): `IRestRoute`\<`any`, `any`\>[]
|
4
4
|
|
5
5
|
The REST routes for authentication.
|
6
6
|
|
@@ -20,6 +20,6 @@ The name of the component to use in the routes stored in the ComponentFactory.
|
|
20
20
|
|
21
21
|
## Returns
|
22
22
|
|
23
|
-
`IRestRoute`[]
|
23
|
+
`IRestRoute`\<`any`, `any`\>[]
|
24
24
|
|
25
25
|
The generated routes.
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@twin.org/api-auth-entity-storage-service",
|
3
|
-
"version": "0.0.1-next.
|
3
|
+
"version": "0.0.1-next.31",
|
4
4
|
"description": "Auth Entity Storage contract implementation and REST endpoint definitions",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -14,9 +14,9 @@
|
|
14
14
|
"node": ">=20.0.0"
|
15
15
|
},
|
16
16
|
"dependencies": {
|
17
|
-
"@twin.org/api-auth-entity-storage-models": "0.0.1-next.
|
18
|
-
"@twin.org/api-core": "0.0.1-next.
|
19
|
-
"@twin.org/api-models": "0.0.1-next.
|
17
|
+
"@twin.org/api-auth-entity-storage-models": "0.0.1-next.31",
|
18
|
+
"@twin.org/api-core": "0.0.1-next.31",
|
19
|
+
"@twin.org/api-models": "0.0.1-next.31",
|
20
20
|
"@twin.org/core": "next",
|
21
21
|
"@twin.org/crypto": "next",
|
22
22
|
"@twin.org/entity": "next",
|