@twin.org/node-core 0.0.3-next.2 → 0.0.3-next.4

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/locales/en.json CHANGED
@@ -10,9 +10,9 @@
10
10
  }
11
11
  },
12
12
  "node": {
13
- "generatingMnemonic": "Generating mnemonic \"{mnemonic}\"",
14
13
  "storingMnemonic": "Storing mnemonic",
15
14
  "existingMnemonic": "Mnemonic already exists",
15
+ "finalMnemonic": "Mnemonic is stored in the vault under the key \"{vaultKey}\"",
16
16
  "fundingWallet": "Funding wallet \"{address}\"",
17
17
  "fundedWallet": "Wallet already funded",
18
18
  "processingIdentity": "Processing identity of type \"{identityType}\"",
@@ -36,7 +36,7 @@
36
36
  "existingUserProfile": "User profile already exists \"{identity}\"",
37
37
  "nodeId": "Node identity \"{identity}\"",
38
38
  "nodeAdminUserEmail": "Node Admin User Email \"{email}\"",
39
- "nodeAdminUserPassword": "Node Admin User Password \"{password}\"",
39
+ "nodeAdminUserPassword": "Node Admin User Password Generated and stored in the vault under the key \"{vaultKey}\"",
40
40
  "extensionLoading": "Loading Extension",
41
41
  "extensionInitialisingEngine": "Initialising engine for extension \"{extension}\"",
42
42
  "extensionInitialisingEngineServer": "Initialising engine server for extension \"{extension}\"",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/node-core",
3
- "version": "0.0.3-next.2",
3
+ "version": "0.0.3-next.4",
4
4
  "description": "TWIN Node Core for serving APIs using the specified configuration",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,35 +0,0 @@
1
- # Function: bootstrapContextIdHandlers()
2
-
3
- > **bootstrapContextIdHandlers**(`engineCore`, `context`, `envVars`, `features`): `Promise`\<`void`\>
4
-
5
- Bootstrap the context id handlers creating any necessary resources.
6
-
7
- ## Parameters
8
-
9
- ### engineCore
10
-
11
- `IEngineCore`
12
-
13
- The engine core for the node.
14
-
15
- ### context
16
-
17
- `IEngineCoreContext`\<`IEngineServerConfig`, [`INodeEngineState`](../interfaces/INodeEngineState.md)\>
18
-
19
- The context for the node.
20
-
21
- ### envVars
22
-
23
- [`INodeEnvironmentVariables`](../interfaces/INodeEnvironmentVariables.md)
24
-
25
- The environment variables for the node.
26
-
27
- ### features
28
-
29
- [`NodeFeatures`](../type-aliases/NodeFeatures.md)[]
30
-
31
- The features that are enabled on the node. The features that are enabled on the node.
32
-
33
- ## Returns
34
-
35
- `Promise`\<`void`\>