@twin.org/api-auth-entity-storage-service 0.0.2-next.3 → 0.0.2-next.6
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 +4 -4
- package/dist/esm/index.mjs +4 -4
- package/dist/types/processors/authHeaderProcessor.d.ts +2 -2
- package/dist/types/services/entityStorageAuthenticationService.d.ts +2 -2
- package/docs/changelog.md +51 -0
- package/docs/reference/classes/AuthHeaderProcessor.md +3 -3
- package/docs/reference/classes/EntityStorageAuthenticationService.md +3 -3
- package/package.json +4 -4
package/dist/cjs/index.cjs
CHANGED
|
@@ -190,10 +190,10 @@ class AuthHeaderProcessor {
|
|
|
190
190
|
/**
|
|
191
191
|
* The service needs to be started when the application is initialized.
|
|
192
192
|
* @param nodeIdentity The identity of the node.
|
|
193
|
-
* @param
|
|
193
|
+
* @param nodeLoggingComponentType The node logging component type.
|
|
194
194
|
* @returns Nothing.
|
|
195
195
|
*/
|
|
196
|
-
async start(nodeIdentity,
|
|
196
|
+
async start(nodeIdentity, nodeLoggingComponentType) {
|
|
197
197
|
core.Guards.string(this.CLASS_NAME, "nodeIdentity", nodeIdentity);
|
|
198
198
|
this._nodeIdentity = nodeIdentity;
|
|
199
199
|
}
|
|
@@ -731,10 +731,10 @@ class EntityStorageAuthenticationService {
|
|
|
731
731
|
/**
|
|
732
732
|
* The service needs to be started when the application is initialized.
|
|
733
733
|
* @param nodeIdentity The identity of the node.
|
|
734
|
-
* @param
|
|
734
|
+
* @param nodeLoggingComponentType The node logging component type.
|
|
735
735
|
* @returns Nothing.
|
|
736
736
|
*/
|
|
737
|
-
async start(nodeIdentity,
|
|
737
|
+
async start(nodeIdentity, nodeLoggingComponentType) {
|
|
738
738
|
core.Guards.string(this.CLASS_NAME, "nodeIdentity", nodeIdentity);
|
|
739
739
|
this._nodeIdentity = nodeIdentity;
|
|
740
740
|
}
|
package/dist/esm/index.mjs
CHANGED
|
@@ -188,10 +188,10 @@ class AuthHeaderProcessor {
|
|
|
188
188
|
/**
|
|
189
189
|
* The service needs to be started when the application is initialized.
|
|
190
190
|
* @param nodeIdentity The identity of the node.
|
|
191
|
-
* @param
|
|
191
|
+
* @param nodeLoggingComponentType The node logging component type.
|
|
192
192
|
* @returns Nothing.
|
|
193
193
|
*/
|
|
194
|
-
async start(nodeIdentity,
|
|
194
|
+
async start(nodeIdentity, nodeLoggingComponentType) {
|
|
195
195
|
Guards.string(this.CLASS_NAME, "nodeIdentity", nodeIdentity);
|
|
196
196
|
this._nodeIdentity = nodeIdentity;
|
|
197
197
|
}
|
|
@@ -729,10 +729,10 @@ class EntityStorageAuthenticationService {
|
|
|
729
729
|
/**
|
|
730
730
|
* The service needs to be started when the application is initialized.
|
|
731
731
|
* @param nodeIdentity The identity of the node.
|
|
732
|
-
* @param
|
|
732
|
+
* @param nodeLoggingComponentType The node logging component type.
|
|
733
733
|
* @returns Nothing.
|
|
734
734
|
*/
|
|
735
|
-
async start(nodeIdentity,
|
|
735
|
+
async start(nodeIdentity, nodeLoggingComponentType) {
|
|
736
736
|
Guards.string(this.CLASS_NAME, "nodeIdentity", nodeIdentity);
|
|
737
737
|
this._nodeIdentity = nodeIdentity;
|
|
738
738
|
}
|
|
@@ -16,10 +16,10 @@ export declare class AuthHeaderProcessor implements IBaseRouteProcessor {
|
|
|
16
16
|
/**
|
|
17
17
|
* The service needs to be started when the application is initialized.
|
|
18
18
|
* @param nodeIdentity The identity of the node.
|
|
19
|
-
* @param
|
|
19
|
+
* @param nodeLoggingComponentType The node logging component type.
|
|
20
20
|
* @returns Nothing.
|
|
21
21
|
*/
|
|
22
|
-
start(nodeIdentity: string,
|
|
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.
|
|
@@ -16,10 +16,10 @@ export declare class EntityStorageAuthenticationService implements IAuthenticati
|
|
|
16
16
|
/**
|
|
17
17
|
* The service needs to be started when the application is initialized.
|
|
18
18
|
* @param nodeIdentity The identity of the node.
|
|
19
|
-
* @param
|
|
19
|
+
* @param nodeLoggingComponentType The node logging component type.
|
|
20
20
|
* @returns Nothing.
|
|
21
21
|
*/
|
|
22
|
-
start(nodeIdentity: string,
|
|
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,56 @@
|
|
|
1
1
|
# @twin.org/api-auth-entity-storage-service - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.6](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-service-v0.0.2-next.5...api-auth-entity-storage-service-v0.0.2-next.6) (2025-08-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update framework core ([d8eebf2](https://github.com/twinfoundation/api/commit/d8eebf267fa2a0abaa84e58590496e9d20490cfa))
|
|
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.5 to 0.0.2-next.6
|
|
16
|
+
* @twin.org/api-core bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
17
|
+
* @twin.org/api-models bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
18
|
+
|
|
19
|
+
## [0.0.2-next.5](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-service-v0.0.2-next.4...api-auth-entity-storage-service-v0.0.2-next.5) (2025-07-25)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* add json-ld mime type processor and auth admin component ([8861791](https://github.com/twinfoundation/api/commit/88617916e23bfbca023dbae1976fe421983a02ff))
|
|
25
|
+
* remove unused namespace ([08478f2](https://github.com/twinfoundation/api/commit/08478f27efda9beb0271fdb22f6972e918361965))
|
|
26
|
+
* update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
27
|
+
* use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Dependencies
|
|
31
|
+
|
|
32
|
+
* The following workspace dependencies were updated
|
|
33
|
+
* dependencies
|
|
34
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
35
|
+
* @twin.org/api-core bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
36
|
+
* @twin.org/api-models bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
37
|
+
|
|
38
|
+
## [0.0.2-next.4](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-service-v0.0.2-next.3...api-auth-entity-storage-service-v0.0.2-next.4) (2025-07-25)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Miscellaneous Chores
|
|
42
|
+
|
|
43
|
+
* **api-auth-entity-storage-service:** Synchronize repo versions
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
### Dependencies
|
|
47
|
+
|
|
48
|
+
* The following workspace dependencies were updated
|
|
49
|
+
* dependencies
|
|
50
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
51
|
+
* @twin.org/api-core bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
52
|
+
* @twin.org/api-models bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
53
|
+
|
|
3
54
|
## [0.0.2-next.3](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-service-v0.0.2-next.2...api-auth-entity-storage-service-v0.0.2-next.3) (2025-07-24)
|
|
4
55
|
|
|
5
56
|
|
|
@@ -42,7 +42,7 @@ 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
|
|
|
@@ -54,11 +54,11 @@ The service needs to be started when the application is initialized.
|
|
|
54
54
|
|
|
55
55
|
The identity of the node.
|
|
56
56
|
|
|
57
|
-
#####
|
|
57
|
+
##### nodeLoggingComponentType?
|
|
58
58
|
|
|
59
59
|
`string`
|
|
60
60
|
|
|
61
|
-
The node logging
|
|
61
|
+
The node logging component type.
|
|
62
62
|
|
|
63
63
|
#### Returns
|
|
64
64
|
|
|
@@ -42,7 +42,7 @@ 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
|
|
|
@@ -54,11 +54,11 @@ The service needs to be started when the application is initialized.
|
|
|
54
54
|
|
|
55
55
|
The identity of the node.
|
|
56
56
|
|
|
57
|
-
#####
|
|
57
|
+
##### nodeLoggingComponentType?
|
|
58
58
|
|
|
59
59
|
`string`
|
|
60
60
|
|
|
61
|
-
The node logging
|
|
61
|
+
The node logging component type.
|
|
62
62
|
|
|
63
63
|
#### Returns
|
|
64
64
|
|
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.6",
|
|
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.6",
|
|
18
|
+
"@twin.org/api-core": "0.0.2-next.6",
|
|
19
|
+
"@twin.org/api-models": "0.0.2-next.6",
|
|
20
20
|
"@twin.org/core": "next",
|
|
21
21
|
"@twin.org/crypto": "next",
|
|
22
22
|
"@twin.org/entity": "next",
|