@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.
@@ -82,9 +82,9 @@ const AuditableItemStreamComponentType = {
82
82
  // eslint-disable-next-line @typescript-eslint/naming-convention
83
83
  const AuthenticationComponentType = {
84
84
  /**
85
- * Authentication entity storage.
85
+ * Entity storage.
86
86
  */
87
- AuthEntityStorage: "authentication-entity-storage"
87
+ EntityStorage: "entity-storage"
88
88
  };
89
89
 
90
90
  // Copyright 2024 IOTA Stiftung.
@@ -80,9 +80,9 @@ const AuditableItemStreamComponentType = {
80
80
  // eslint-disable-next-line @typescript-eslint/naming-convention
81
81
  const AuthenticationComponentType = {
82
82
  /**
83
- * Authentication entity storage.
83
+ * Entity storage.
84
84
  */
85
- AuthEntityStorage: "authentication-entity-storage"
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.AuthEntityStorage;
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: string;
17
- config: ILoggingProcessorConfig;
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
- * Authentication entity storage.
6
+ * Entity storage.
7
7
  */
8
- readonly AuthEntityStorage: "authentication-entity-storage";
8
+ readonly EntityStorage: "entity-storage";
9
9
  };
10
10
  /**
11
11
  * Authentication component types.
package/docs/changelog.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # @twin.org/engine-models - Changelog
2
2
 
3
- ## v0.0.1-next.3
3
+ ## v0.0.1-next.5
4
4
 
5
5
  - Initial Release
@@ -8,7 +8,7 @@ Authentication component config types.
8
8
 
9
9
  ### type
10
10
 
11
- > **type**: *typeof* `AuthenticationComponentType.AuthEntityStorage`
11
+ > **type**: *typeof* `AuthenticationComponentType.EntityStorage`
12
12
 
13
13
  ### options?
14
14
 
@@ -6,8 +6,8 @@ Authentication component types.
6
6
 
7
7
  ## Type declaration
8
8
 
9
- ### AuthEntityStorage
9
+ ### EntityStorage
10
10
 
11
- > `readonly` **AuthEntityStorage**: `"authentication-entity-storage"` = `"authentication-entity-storage"`
11
+ > `readonly` **EntityStorage**: `"entity-storage"` = `"entity-storage"`
12
12
 
13
- Authentication entity storage.
13
+ Entity storage.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/engine-models",
3
- "version": "0.0.1-next.3",
3
+ "version": "0.0.1-next.5",
4
4
  "description": "Models which define the structure of the engine.",
5
5
  "repository": {
6
6
  "type": "git",