@twin.org/api-auth-entity-storage-service 0.0.1-next.14 → 0.0.1-next.16
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
@@ -502,6 +502,10 @@ class PasswordHelper {
|
|
502
502
|
* Implementation of the authentication component using entity storage.
|
503
503
|
*/
|
504
504
|
class EntityStorageAuthenticationService {
|
505
|
+
/**
|
506
|
+
* The namespace supported by the authentication service.
|
507
|
+
*/
|
508
|
+
static NAMESPACE = "authentication-entity-storage";
|
505
509
|
/**
|
506
510
|
* Default TTL in minutes.
|
507
511
|
* @internal
|
package/dist/esm/index.mjs
CHANGED
@@ -500,6 +500,10 @@ class PasswordHelper {
|
|
500
500
|
* Implementation of the authentication component using entity storage.
|
501
501
|
*/
|
502
502
|
class EntityStorageAuthenticationService {
|
503
|
+
/**
|
504
|
+
* The namespace supported by the authentication service.
|
505
|
+
*/
|
506
|
+
static NAMESPACE = "authentication-entity-storage";
|
503
507
|
/**
|
504
508
|
* Default TTL in minutes.
|
505
509
|
* @internal
|
@@ -4,6 +4,10 @@ import type { IEntityStorageAuthenticationServiceConfig } from "../models/IEntit
|
|
4
4
|
* Implementation of the authentication component using entity storage.
|
5
5
|
*/
|
6
6
|
export declare class EntityStorageAuthenticationService implements IAuthenticationComponent {
|
7
|
+
/**
|
8
|
+
* The namespace supported by the authentication service.
|
9
|
+
*/
|
10
|
+
static readonly NAMESPACE: string;
|
7
11
|
/**
|
8
12
|
* Runtime name for the class.
|
9
13
|
*/
|
package/docs/changelog.md
CHANGED
@@ -38,6 +38,14 @@ The configuration for the authentication.
|
|
38
38
|
|
39
39
|
## Properties
|
40
40
|
|
41
|
+
### NAMESPACE
|
42
|
+
|
43
|
+
> `readonly` `static` **NAMESPACE**: `string` = `"authentication-entity-storage"`
|
44
|
+
|
45
|
+
The namespace supported by the authentication service.
|
46
|
+
|
47
|
+
***
|
48
|
+
|
41
49
|
### CLASS\_NAME
|
42
50
|
|
43
51
|
> `readonly` **CLASS\_NAME**: `string`
|
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.16",
|
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.16",
|
18
|
+
"@twin.org/api-core": "0.0.1-next.16",
|
19
|
+
"@twin.org/api-models": "0.0.1-next.16",
|
20
20
|
"@twin.org/core": "next",
|
21
21
|
"@twin.org/crypto": "next",
|
22
22
|
"@twin.org/entity": "next",
|