@twin.org/api-auth-entity-storage-service 0.0.2-next.10 → 0.0.2-next.11
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/types/processors/authHeaderProcessor.d.ts +1 -1
- package/dist/types/services/entityStorageAuthenticationService.d.ts +1 -1
- package/docs/changelog.md +16 -0
- package/docs/reference/classes/AuthHeaderProcessor.md +2 -2
- package/docs/reference/classes/EntityStorageAuthenticationService.md +2 -2
- package/package.json +4 -4
|
@@ -19,7 +19,7 @@ export declare class AuthHeaderProcessor implements IBaseRouteProcessor {
|
|
|
19
19
|
* @param nodeLoggingComponentType The node logging component type.
|
|
20
20
|
* @returns Nothing.
|
|
21
21
|
*/
|
|
22
|
-
start(nodeIdentity
|
|
22
|
+
start(nodeIdentity?: string, nodeLoggingComponentType?: string): Promise<void>;
|
|
23
23
|
/**
|
|
24
24
|
* Pre process the REST request for the specified route.
|
|
25
25
|
* @param request The incoming request.
|
|
@@ -19,7 +19,7 @@ export declare class EntityStorageAuthenticationService implements IAuthenticati
|
|
|
19
19
|
* @param nodeLoggingComponentType The node logging component type.
|
|
20
20
|
* @returns Nothing.
|
|
21
21
|
*/
|
|
22
|
-
start(nodeIdentity
|
|
22
|
+
start(nodeIdentity?: string, nodeLoggingComponentType?: string): Promise<void>;
|
|
23
23
|
/**
|
|
24
24
|
* Perform a login for the user.
|
|
25
25
|
* @param email The email address for the user.
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @twin.org/api-auth-entity-storage-service - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.11](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-service-v0.0.2-next.10...api-auth-entity-storage-service-v0.0.2-next.11) (2025-09-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update IComponent signatures ([915ce37](https://github.com/twinfoundation/api/commit/915ce37712326ab4aa6869c350eabaa4622e8430))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
16
|
+
* @twin.org/api-core bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
17
|
+
* @twin.org/api-models bumped from 0.0.2-next.10 to 0.0.2-next.11
|
|
18
|
+
|
|
3
19
|
## [0.0.2-next.10](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-service-v0.0.2-next.9...api-auth-entity-storage-service-v0.0.2-next.10) (2025-09-23)
|
|
4
20
|
|
|
5
21
|
|
|
@@ -42,13 +42,13 @@ Runtime name for the class.
|
|
|
42
42
|
|
|
43
43
|
### start()
|
|
44
44
|
|
|
45
|
-
> **start**(`nodeIdentity
|
|
45
|
+
> **start**(`nodeIdentity?`, `nodeLoggingComponentType?`): `Promise`\<`void`\>
|
|
46
46
|
|
|
47
47
|
The service needs to be started when the application is initialized.
|
|
48
48
|
|
|
49
49
|
#### Parameters
|
|
50
50
|
|
|
51
|
-
##### nodeIdentity
|
|
51
|
+
##### nodeIdentity?
|
|
52
52
|
|
|
53
53
|
`string`
|
|
54
54
|
|
|
@@ -42,13 +42,13 @@ Runtime name for the class.
|
|
|
42
42
|
|
|
43
43
|
### start()
|
|
44
44
|
|
|
45
|
-
> **start**(`nodeIdentity
|
|
45
|
+
> **start**(`nodeIdentity?`, `nodeLoggingComponentType?`): `Promise`\<`void`\>
|
|
46
46
|
|
|
47
47
|
The service needs to be started when the application is initialized.
|
|
48
48
|
|
|
49
49
|
#### Parameters
|
|
50
50
|
|
|
51
|
-
##### nodeIdentity
|
|
51
|
+
##### nodeIdentity?
|
|
52
52
|
|
|
53
53
|
`string`
|
|
54
54
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/api-auth-entity-storage-service",
|
|
3
|
-
"version": "0.0.2-next.
|
|
3
|
+
"version": "0.0.2-next.11",
|
|
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.2-next.
|
|
18
|
-
"@twin.org/api-core": "0.0.2-next.
|
|
19
|
-
"@twin.org/api-models": "0.0.2-next.
|
|
17
|
+
"@twin.org/api-auth-entity-storage-models": "0.0.2-next.11",
|
|
18
|
+
"@twin.org/api-core": "0.0.2-next.11",
|
|
19
|
+
"@twin.org/api-models": "0.0.2-next.11",
|
|
20
20
|
"@twin.org/core": "next",
|
|
21
21
|
"@twin.org/crypto": "next",
|
|
22
22
|
"@twin.org/entity": "next",
|