@twin.org/engine-models 0.0.1-next.3 → 0.0.1-next.5
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 +2 -2
- package/dist/esm/index.mjs +2 -2
- package/dist/types/models/config/typeConfig/authenticationComponentConfig.d.ts +1 -1
- package/dist/types/models/config/typeConfig/socketRouteProcessorConfig.d.ts +3 -3
- package/dist/types/models/types/authenticationComponentType.d.ts +2 -2
- package/docs/changelog.md +1 -1
- package/docs/reference/type-aliases/AuthenticationComponentConfig.md +1 -1
- package/docs/reference/variables/AuthenticationComponentType.md +3 -3
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -82,9 +82,9 @@ const AuditableItemStreamComponentType = {
|
|
|
82
82
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
83
83
|
const AuthenticationComponentType = {
|
|
84
84
|
/**
|
|
85
|
-
*
|
|
85
|
+
* Entity storage.
|
|
86
86
|
*/
|
|
87
|
-
|
|
87
|
+
EntityStorage: "entity-storage"
|
|
88
88
|
};
|
|
89
89
|
|
|
90
90
|
// Copyright 2024 IOTA Stiftung.
|
package/dist/esm/index.mjs
CHANGED
|
@@ -80,9 +80,9 @@ const AuditableItemStreamComponentType = {
|
|
|
80
80
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
81
81
|
const AuthenticationComponentType = {
|
|
82
82
|
/**
|
|
83
|
-
*
|
|
83
|
+
* Entity storage.
|
|
84
84
|
*/
|
|
85
|
-
|
|
85
|
+
EntityStorage: "entity-storage"
|
|
86
86
|
};
|
|
87
87
|
|
|
88
88
|
// Copyright 2024 IOTA Stiftung.
|
|
@@ -4,7 +4,7 @@ import type { AuthenticationComponentType } from "../../types/authenticationComp
|
|
|
4
4
|
* Authentication component config types.
|
|
5
5
|
*/
|
|
6
6
|
export type AuthenticationComponentConfig = {
|
|
7
|
-
type: typeof AuthenticationComponentType.
|
|
7
|
+
type: typeof AuthenticationComponentType.EntityStorage;
|
|
8
8
|
options?: {
|
|
9
9
|
userEntityStorageType?: string;
|
|
10
10
|
vaultConnectorType?: string;
|
|
@@ -12,9 +12,9 @@ export type SocketRouteProcessorConfig = {
|
|
|
12
12
|
};
|
|
13
13
|
} | {
|
|
14
14
|
type: typeof SocketRouteProcessorType.Logging;
|
|
15
|
-
options
|
|
16
|
-
loggingConnectorType
|
|
17
|
-
config
|
|
15
|
+
options?: {
|
|
16
|
+
loggingConnectorType?: string;
|
|
17
|
+
config?: ILoggingProcessorConfig;
|
|
18
18
|
};
|
|
19
19
|
} | {
|
|
20
20
|
type: typeof SocketRouteProcessorType.NodeIdentity;
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export declare const AuthenticationComponentType: {
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
6
|
+
* Entity storage.
|
|
7
7
|
*/
|
|
8
|
-
readonly
|
|
8
|
+
readonly EntityStorage: "entity-storage";
|
|
9
9
|
};
|
|
10
10
|
/**
|
|
11
11
|
* Authentication component types.
|
package/docs/changelog.md
CHANGED
|
@@ -6,8 +6,8 @@ Authentication component types.
|
|
|
6
6
|
|
|
7
7
|
## Type declaration
|
|
8
8
|
|
|
9
|
-
###
|
|
9
|
+
### EntityStorage
|
|
10
10
|
|
|
11
|
-
> `readonly` **
|
|
11
|
+
> `readonly` **EntityStorage**: `"entity-storage"` = `"entity-storage"`
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Entity storage.
|