@twin.org/api-auth-entity-storage-service 0.0.1-next.20 → 0.0.1-next.22
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
@@ -154,6 +154,10 @@ class TokenHelper {
|
|
154
154
|
* Handle a JWT token in the authorization header or cookies and validate it to populate request context identity.
|
155
155
|
*/
|
156
156
|
class AuthHeaderProcessor {
|
157
|
+
/**
|
158
|
+
* The namespace supported by the processor.
|
159
|
+
*/
|
160
|
+
static NAMESPACE = "auth-header";
|
157
161
|
/**
|
158
162
|
* The default name for the access token as a cookie.
|
159
163
|
* @internal
|
package/dist/esm/index.mjs
CHANGED
@@ -152,6 +152,10 @@ class TokenHelper {
|
|
152
152
|
* Handle a JWT token in the authorization header or cookies and validate it to populate request context identity.
|
153
153
|
*/
|
154
154
|
class AuthHeaderProcessor {
|
155
|
+
/**
|
156
|
+
* The namespace supported by the processor.
|
157
|
+
*/
|
158
|
+
static NAMESPACE = "auth-header";
|
155
159
|
/**
|
156
160
|
* The default name for the access token as a cookie.
|
157
161
|
* @internal
|
@@ -4,6 +4,10 @@ import type { IAuthHeaderProcessorConfig } from "../models/IAuthHeaderProcessorC
|
|
4
4
|
* Handle a JWT token in the authorization header or cookies and validate it to populate request context identity.
|
5
5
|
*/
|
6
6
|
export declare class AuthHeaderProcessor implements IBaseRouteProcessor {
|
7
|
+
/**
|
8
|
+
* The namespace supported by the processor.
|
9
|
+
*/
|
10
|
+
static readonly NAMESPACE: string;
|
7
11
|
/**
|
8
12
|
* Runtime name for the class.
|
9
13
|
*/
|
package/docs/changelog.md
CHANGED
@@ -34,6 +34,14 @@ The configuration for the processor.
|
|
34
34
|
|
35
35
|
## Properties
|
36
36
|
|
37
|
+
### NAMESPACE
|
38
|
+
|
39
|
+
> `readonly` `static` **NAMESPACE**: `string` = `"auth-header"`
|
40
|
+
|
41
|
+
The namespace supported by the processor.
|
42
|
+
|
43
|
+
***
|
44
|
+
|
37
45
|
### CLASS\_NAME
|
38
46
|
|
39
47
|
> `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.22",
|
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.22",
|
18
|
+
"@twin.org/api-core": "0.0.1-next.22",
|
19
|
+
"@twin.org/api-models": "0.0.1-next.22",
|
20
20
|
"@twin.org/core": "next",
|
21
21
|
"@twin.org/crypto": "next",
|
22
22
|
"@twin.org/entity": "next",
|