@twin.org/node-core 0.9.0 → 0.9.1-next.10
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/es/builders/engineEnvBuilder.js +48 -3
- package/dist/es/builders/engineEnvBuilder.js.map +1 -1
- package/dist/es/cli.js +41 -12
- package/dist/es/cli.js.map +1 -1
- package/dist/es/commands/bootstrapLegacy.js +1 -1
- package/dist/es/commands/bootstrapLegacy.js.map +1 -1
- package/dist/es/commands/help.js +10 -1
- package/dist/es/commands/help.js.map +1 -1
- package/dist/es/commands/identityCreate.js +3 -3
- package/dist/es/commands/identityCreate.js.map +1 -1
- package/dist/es/commands/identityList.js +65 -0
- package/dist/es/commands/identityList.js.map +1 -0
- package/dist/es/commands/identityResolve.js +83 -0
- package/dist/es/commands/identityResolve.js.map +1 -0
- package/dist/es/commands/nodeIdentityGet.js +68 -0
- package/dist/es/commands/nodeIdentityGet.js.map +1 -0
- package/dist/es/commands/{nodeSetIdentity.js → nodeIdentitySet.js} +16 -15
- package/dist/es/commands/nodeIdentitySet.js.map +1 -0
- package/dist/es/commands/nodeOrgIdGet.js +55 -0
- package/dist/es/commands/nodeOrgIdGet.js.map +1 -0
- package/dist/es/commands/{setNodeOrgId.js → nodeOrgIdSet.js} +15 -13
- package/dist/es/commands/nodeOrgIdSet.js.map +1 -0
- package/dist/es/commands/orgUsersList.js +94 -0
- package/dist/es/commands/orgUsersList.js.map +1 -0
- package/dist/es/commands/tenantGet.js +68 -0
- package/dist/es/commands/tenantGet.js.map +1 -0
- package/dist/es/commands/tenantList.js +69 -0
- package/dist/es/commands/tenantList.js.map +1 -0
- package/dist/es/commands/tenantListByOrg.js +80 -0
- package/dist/es/commands/tenantListByOrg.js.map +1 -0
- package/dist/es/commands/{setTenantOrgId.js → tenantOrgIdSet.js} +16 -15
- package/dist/es/commands/tenantOrgIdSet.js.map +1 -0
- package/dist/es/commands/userGet.js +77 -0
- package/dist/es/commands/userGet.js.map +1 -0
- package/dist/es/models/ICliCommandDefinition.js.map +1 -1
- package/dist/es/models/IEngineEnvironmentVariables.js.map +1 -1
- package/dist/es/models/engineEnvironmentVariableKeys.js +13 -0
- package/dist/es/models/engineEnvironmentVariableKeys.js.map +1 -1
- package/dist/es/node.js +4 -35
- package/dist/es/node.js.map +1 -1
- package/dist/types/commands/identityList.d.ts +17 -0
- package/dist/types/commands/identityResolve.d.ts +24 -0
- package/dist/types/commands/nodeIdentityGet.d.ts +20 -0
- package/dist/types/commands/{nodeSetIdentity.d.ts → nodeIdentitySet.d.ts} +2 -2
- package/dist/types/commands/nodeOrgIdGet.d.ts +19 -0
- package/dist/types/commands/{setNodeOrgId.d.ts → nodeOrgIdSet.d.ts} +2 -2
- package/dist/types/commands/orgUsersList.d.ts +27 -0
- package/dist/types/commands/tenantGet.d.ts +22 -0
- package/dist/types/commands/tenantList.d.ts +22 -0
- package/dist/types/commands/tenantListByOrg.d.ts +22 -0
- package/dist/types/commands/{setTenantOrgId.d.ts → tenantOrgIdSet.d.ts} +2 -2
- package/dist/types/commands/userGet.d.ts +24 -0
- package/dist/types/models/ICliCommandDefinition.d.ts +8 -0
- package/dist/types/models/IEngineEnvironmentVariables.d.ts +61 -5
- package/docs/changelog.md +205 -0
- package/docs/reference/interfaces/ICliCommandDefinition.md +16 -0
- package/docs/reference/interfaces/IEngineEnvironmentVariables.md +109 -5
- package/locales/en.json +229 -14
- package/package.json +27 -27
- package/dist/es/commands/nodeSetIdentity.js.map +0 -1
- package/dist/es/commands/setNodeOrgId.js.map +0 -1
- package/dist/es/commands/setTenantOrgId.js.map +0 -1
|
@@ -7,7 +7,7 @@ import type { INodeEngineState } from "../models/INodeEngineState.js";
|
|
|
7
7
|
* Get the command definition parameters.
|
|
8
8
|
* @param commandDefinitions The registered command definitions.
|
|
9
9
|
*/
|
|
10
|
-
export declare function
|
|
10
|
+
export declare function getCommandDefinitionNodeIdentitySet(commandDefinitions: {
|
|
11
11
|
[id: string]: ICliCommandDefinition;
|
|
12
12
|
}): void;
|
|
13
13
|
/**
|
|
@@ -18,6 +18,6 @@ export declare function getCommandDefinitionNodeSetIdentity(commandDefinitions:
|
|
|
18
18
|
* @param params.identity The DID to set for the node.
|
|
19
19
|
* @returns A promise that resolves when the node identity has been persisted.
|
|
20
20
|
*/
|
|
21
|
-
export declare function
|
|
21
|
+
export declare function nodeIdentitySet(engineCore: IEngineCore<INodeEngineConfig, INodeEngineState>, envVars: IEnvironmentVariables, params: {
|
|
22
22
|
identity?: string;
|
|
23
23
|
}): Promise<void>;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { IEngineCore } from "@twin.org/engine-models";
|
|
2
|
+
import type { ICliCommandDefinition } from "../models/ICliCommandDefinition.js";
|
|
3
|
+
import type { IEnvironmentVariables } from "../models/IEnvironmentVariables.js";
|
|
4
|
+
import type { INodeEngineConfig } from "../models/INodeEngineConfig.js";
|
|
5
|
+
import type { INodeEngineState } from "../models/INodeEngineState.js";
|
|
6
|
+
/**
|
|
7
|
+
* Get the command definition parameters.
|
|
8
|
+
* @param commandDefinitions The registered command definitions.
|
|
9
|
+
*/
|
|
10
|
+
export declare function getCommandDefinitionNodeOrgIdGet(commandDefinitions: {
|
|
11
|
+
[id: string]: ICliCommandDefinition;
|
|
12
|
+
}): void;
|
|
13
|
+
/**
|
|
14
|
+
* Command for retrieving the organization ID currently assigned to the node.
|
|
15
|
+
* @param engineCore The engine core.
|
|
16
|
+
* @param envVars The environment variables for the node.
|
|
17
|
+
* @returns The node organization DID.
|
|
18
|
+
*/
|
|
19
|
+
export declare function nodeOrgIdGet(engineCore: IEngineCore<INodeEngineConfig, INodeEngineState>, envVars: IEnvironmentVariables): Promise<string>;
|
|
@@ -7,7 +7,7 @@ import type { INodeEngineState } from "../models/INodeEngineState.js";
|
|
|
7
7
|
* Get the command definition parameters.
|
|
8
8
|
* @param commandDefinitions The registered command definitions.
|
|
9
9
|
*/
|
|
10
|
-
export declare function
|
|
10
|
+
export declare function getCommandDefinitionNodeOrgIdSet(commandDefinitions: {
|
|
11
11
|
[id: string]: ICliCommandDefinition;
|
|
12
12
|
}): void;
|
|
13
13
|
/**
|
|
@@ -19,6 +19,6 @@ export declare function getCommandDefinitionSetNodeOrgId(commandDefinitions: {
|
|
|
19
19
|
* @returns A promise that resolves when the node organization ID has been persisted.
|
|
20
20
|
* @throws GeneralError if called while multi-tenant mode is enabled.
|
|
21
21
|
*/
|
|
22
|
-
export declare function
|
|
22
|
+
export declare function nodeOrgIdSet(engineCore: IEngineCore<INodeEngineConfig, INodeEngineState>, envVars: IEnvironmentVariables, params: {
|
|
23
23
|
organizationId?: string;
|
|
24
24
|
}): Promise<void>;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { IEngineCore } from "@twin.org/engine-models";
|
|
2
|
+
import type { ICliCommandDefinition } from "../models/ICliCommandDefinition.js";
|
|
3
|
+
import type { IEnvironmentVariables } from "../models/IEnvironmentVariables.js";
|
|
4
|
+
import type { INodeEngineConfig } from "../models/INodeEngineConfig.js";
|
|
5
|
+
import type { INodeEngineState } from "../models/INodeEngineState.js";
|
|
6
|
+
/**
|
|
7
|
+
* Get the command definition parameters.
|
|
8
|
+
* @param commandDefinitions The registered command definitions.
|
|
9
|
+
*/
|
|
10
|
+
export declare function getCommandDefinitionOrgUsersList(commandDefinitions: {
|
|
11
|
+
[id: string]: ICliCommandDefinition;
|
|
12
|
+
}): void;
|
|
13
|
+
/**
|
|
14
|
+
* Command for listing all users belonging to a given organization DID.
|
|
15
|
+
* @param engineCore The engine core.
|
|
16
|
+
* @param envVars The environment variables for the node.
|
|
17
|
+
* @param params The parameters for the command.
|
|
18
|
+
* @param params.orgDid The organization DID to filter by. Defaults to the node organization ID in single-tenant mode.
|
|
19
|
+
* @returns The list of users for the organization.
|
|
20
|
+
*/
|
|
21
|
+
export declare function orgUsersList(engineCore: IEngineCore<INodeEngineConfig, INodeEngineState>, envVars: IEnvironmentVariables, params: {
|
|
22
|
+
orgDid?: string;
|
|
23
|
+
}): Promise<{
|
|
24
|
+
email: string;
|
|
25
|
+
identity: string;
|
|
26
|
+
scope: string;
|
|
27
|
+
}[]>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { ITenant } from "@twin.org/api-models";
|
|
2
|
+
import type { IEngineCore } from "@twin.org/engine-models";
|
|
3
|
+
import type { ICliCommandDefinition } from "../models/ICliCommandDefinition.js";
|
|
4
|
+
import type { IEnvironmentVariables } from "../models/IEnvironmentVariables.js";
|
|
5
|
+
/**
|
|
6
|
+
* Get the command definition parameters.
|
|
7
|
+
* @param commandDefinitions The registered command definitions.
|
|
8
|
+
*/
|
|
9
|
+
export declare function getCommandDefinitionTenantGet(commandDefinitions: {
|
|
10
|
+
[id: string]: ICliCommandDefinition;
|
|
11
|
+
}): void;
|
|
12
|
+
/**
|
|
13
|
+
* Command for retrieving a single tenant by ID.
|
|
14
|
+
* @param engineCore The engine core.
|
|
15
|
+
* @param envVars The environment variables for the node.
|
|
16
|
+
* @param params The parameters for the command.
|
|
17
|
+
* @param params.tenantId The ID of the tenant to retrieve.
|
|
18
|
+
* @returns The tenant record.
|
|
19
|
+
*/
|
|
20
|
+
export declare function tenantGet(engineCore: IEngineCore, envVars: IEnvironmentVariables, params: {
|
|
21
|
+
tenantId?: string;
|
|
22
|
+
}): Promise<ITenant>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { IEngineCore } from "@twin.org/engine-models";
|
|
2
|
+
import type { ICliCommandDefinition } from "../models/ICliCommandDefinition.js";
|
|
3
|
+
import type { IEnvironmentVariables } from "../models/IEnvironmentVariables.js";
|
|
4
|
+
/**
|
|
5
|
+
* Get the command definition parameters.
|
|
6
|
+
* @param commandDefinitions The registered command definitions.
|
|
7
|
+
*/
|
|
8
|
+
export declare function getCommandDefinitionTenantList(commandDefinitions: {
|
|
9
|
+
[id: string]: ICliCommandDefinition;
|
|
10
|
+
}): void;
|
|
11
|
+
/**
|
|
12
|
+
* Command for listing all tenants.
|
|
13
|
+
* @param engineCore The engine core.
|
|
14
|
+
* @param envVars The environment variables for the node.
|
|
15
|
+
* @returns The list of tenants.
|
|
16
|
+
*/
|
|
17
|
+
export declare function tenantList(engineCore: IEngineCore, envVars: IEnvironmentVariables): Promise<{
|
|
18
|
+
id: string;
|
|
19
|
+
apiKey: string;
|
|
20
|
+
organizationId: string;
|
|
21
|
+
label: string;
|
|
22
|
+
}[]>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { ITenant } from "@twin.org/api-models";
|
|
2
|
+
import type { IEngineCore } from "@twin.org/engine-models";
|
|
3
|
+
import type { ICliCommandDefinition } from "../models/ICliCommandDefinition.js";
|
|
4
|
+
import type { IEnvironmentVariables } from "../models/IEnvironmentVariables.js";
|
|
5
|
+
/**
|
|
6
|
+
* Get the command definition parameters.
|
|
7
|
+
* @param commandDefinitions The registered command definitions.
|
|
8
|
+
*/
|
|
9
|
+
export declare function getCommandDefinitionTenantListByOrg(commandDefinitions: {
|
|
10
|
+
[id: string]: ICliCommandDefinition;
|
|
11
|
+
}): void;
|
|
12
|
+
/**
|
|
13
|
+
* Command for listing all tenants associated with an organization DID.
|
|
14
|
+
* @param engineCore The engine core.
|
|
15
|
+
* @param envVars The environment variables for the node.
|
|
16
|
+
* @param params The parameters for the command.
|
|
17
|
+
* @param params.orgId The organization DID to filter by.
|
|
18
|
+
* @returns The matching tenants.
|
|
19
|
+
*/
|
|
20
|
+
export declare function tenantListByOrg(engineCore: IEngineCore, envVars: IEnvironmentVariables, params: {
|
|
21
|
+
orgId?: string;
|
|
22
|
+
}): Promise<ITenant[]>;
|
|
@@ -5,7 +5,7 @@ import type { IEnvironmentVariables } from "../models/IEnvironmentVariables.js";
|
|
|
5
5
|
* Get the command definition parameters.
|
|
6
6
|
* @param commandDefinitions The registered command definitions.
|
|
7
7
|
*/
|
|
8
|
-
export declare function
|
|
8
|
+
export declare function getCommandDefinitionTenantOrgIdSet(commandDefinitions: {
|
|
9
9
|
[id: string]: ICliCommandDefinition;
|
|
10
10
|
}): void;
|
|
11
11
|
/**
|
|
@@ -17,7 +17,7 @@ export declare function getCommandDefinitionSetTenantOrgId(commandDefinitions: {
|
|
|
17
17
|
* @param params.organizationId The organization ID to set.
|
|
18
18
|
* @returns A promise that resolves when the tenant organization ID has been stored.
|
|
19
19
|
*/
|
|
20
|
-
export declare function
|
|
20
|
+
export declare function tenantOrgIdSet(engineCore: IEngineCore, envVars: IEnvironmentVariables, params: {
|
|
21
21
|
tenantId?: string;
|
|
22
22
|
organizationId?: string;
|
|
23
23
|
}): Promise<void>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { IAuthenticationUser } from "@twin.org/api-auth-entity-storage-models";
|
|
2
|
+
import type { IEngineCore } from "@twin.org/engine-models";
|
|
3
|
+
import type { ICliCommandDefinition } from "../models/ICliCommandDefinition.js";
|
|
4
|
+
import type { IEnvironmentVariables } from "../models/IEnvironmentVariables.js";
|
|
5
|
+
/**
|
|
6
|
+
* Get the command definition parameters.
|
|
7
|
+
* @param commandDefinitions The registered command definitions.
|
|
8
|
+
*/
|
|
9
|
+
export declare function getCommandDefinitionUserGet(commandDefinitions: {
|
|
10
|
+
[id: string]: ICliCommandDefinition;
|
|
11
|
+
}): void;
|
|
12
|
+
/**
|
|
13
|
+
* Command for retrieving a single user by email address.
|
|
14
|
+
* @param engineCore The engine core.
|
|
15
|
+
* @param envVars The environment variables for the node.
|
|
16
|
+
* @param params The parameters for the command.
|
|
17
|
+
* @param params.email The email address of the user to retrieve.
|
|
18
|
+
* @param params.tenantId The tenant ID (multi-tenant mode only).
|
|
19
|
+
* @returns The user record.
|
|
20
|
+
*/
|
|
21
|
+
export declare function userGet(engineCore: IEngineCore, envVars: IEnvironmentVariables, params: {
|
|
22
|
+
email?: string;
|
|
23
|
+
tenantId?: string;
|
|
24
|
+
}): Promise<IAuthenticationUser>;
|
|
@@ -22,6 +22,10 @@ export interface ICliCommandDefinition {
|
|
|
22
22
|
* The params available for the command.
|
|
23
23
|
*/
|
|
24
24
|
params: ICliCommandDefinitionParam[];
|
|
25
|
+
/**
|
|
26
|
+
* Deprecated names that resolve to this command with a warning.
|
|
27
|
+
*/
|
|
28
|
+
aliases?: string[];
|
|
25
29
|
/**
|
|
26
30
|
* The method to execute for the command.
|
|
27
31
|
*/
|
|
@@ -43,4 +47,8 @@ export interface ICliCommandDefinition {
|
|
|
43
47
|
* @default true
|
|
44
48
|
*/
|
|
45
49
|
requiresOrgIdentity?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* Indicates whether this command is only available in single-tenant mode.
|
|
52
|
+
*/
|
|
53
|
+
singleTenantOnly?: boolean;
|
|
46
54
|
}
|
|
@@ -289,7 +289,7 @@ export interface IEngineEnvironmentVariables {
|
|
|
289
289
|
*/
|
|
290
290
|
hashicorpVaultEndpoint?: string;
|
|
291
291
|
/**
|
|
292
|
-
* The type of logging task connector, can be a comma separated list: console, entity-storage.
|
|
292
|
+
* The type of logging task connector, can be a comma separated list: console, entity-storage, otel, file.
|
|
293
293
|
*/
|
|
294
294
|
loggingConnector?: string;
|
|
295
295
|
/**
|
|
@@ -304,6 +304,38 @@ export interface IEngineEnvironmentVariables {
|
|
|
304
304
|
* A list of components to exclude from logging, can be a comma separated list of component Class names e.g. "ComponentA,ComponentB".
|
|
305
305
|
*/
|
|
306
306
|
loggingSilentComponents?: string;
|
|
307
|
+
/**
|
|
308
|
+
* The directory to write log files into when using the file logging connector. Required when TWIN_LOGGING_CONNECTOR includes "file".
|
|
309
|
+
*/
|
|
310
|
+
loggingFileDirectory?: string;
|
|
311
|
+
/**
|
|
312
|
+
* The log filename when using the file logging connector, defaults to "app.log".
|
|
313
|
+
*/
|
|
314
|
+
loggingFileFilename?: string;
|
|
315
|
+
/**
|
|
316
|
+
* The maximum log file size in bytes before rotation when using the file logging connector, defaults to 10485760 (10 MB). Set to 0 or negative to disable rotation.
|
|
317
|
+
*/
|
|
318
|
+
loggingFileMaxFileSizeBytes?: string;
|
|
319
|
+
/**
|
|
320
|
+
* The number of rotated log files to retain when using the file logging connector, defaults to 5. Set to 0 or negative to keep all rotated files.
|
|
321
|
+
*/
|
|
322
|
+
loggingFileMaxRetainedFiles?: string;
|
|
323
|
+
/**
|
|
324
|
+
* The name of the OpenTelemetry logger, only required if using open-telemetry as logging connector, defaults to twin-logging.
|
|
325
|
+
*/
|
|
326
|
+
openTelemetryLoggingLoggerName?: string;
|
|
327
|
+
/**
|
|
328
|
+
* The version of the OpenTelemetry logger, only required if using open-telemetry as logging connector, defaults to 1.0.0.
|
|
329
|
+
*/
|
|
330
|
+
openTelemetryLoggingLoggerVersion?: string;
|
|
331
|
+
/**
|
|
332
|
+
* The OTLP endpoint URL for the OpenTelemetry logging exporter, required when using open-telemetry as logging connector, e.g. http://localhost:4318/v1/logs.
|
|
333
|
+
*/
|
|
334
|
+
openTelemetryLoggingPrometheusEndpoint?: string;
|
|
335
|
+
/**
|
|
336
|
+
* The log record processor to use for the OpenTelemetry logging exporter, either batch or simple, defaults to batch.
|
|
337
|
+
*/
|
|
338
|
+
openTelemetryLoggingProcessor?: string;
|
|
307
339
|
/**
|
|
308
340
|
* The type of event bus connector: local.
|
|
309
341
|
*/
|
|
@@ -412,6 +444,10 @@ export interface IEngineEnvironmentVariables {
|
|
|
412
444
|
* The index of the wallet address to use, defaults to 0.
|
|
413
445
|
*/
|
|
414
446
|
identityWalletAddressIndex?: string;
|
|
447
|
+
/**
|
|
448
|
+
* The TTL in milliseconds for caching resolved DIDs when using the IOTA identity connector. Omit to use the connector default.
|
|
449
|
+
*/
|
|
450
|
+
identityDidResolutionCacheTtlMs?: string;
|
|
415
451
|
/**
|
|
416
452
|
* The type of identity resolver connector: entity-storage, iota.
|
|
417
453
|
*/
|
|
@@ -432,6 +468,14 @@ export interface IEngineEnvironmentVariables {
|
|
|
432
468
|
* IOTA coin type.
|
|
433
469
|
*/
|
|
434
470
|
iotaCoinType?: string;
|
|
471
|
+
/**
|
|
472
|
+
* IOTA gas budget, in nanos.
|
|
473
|
+
*/
|
|
474
|
+
iotaGasBudget?: string;
|
|
475
|
+
/**
|
|
476
|
+
* IOTA gas reservation duration, in seconds.
|
|
477
|
+
*/
|
|
478
|
+
iotaGasReservationDuration?: string;
|
|
435
479
|
/**
|
|
436
480
|
* IOTA Explorer Endpoint.
|
|
437
481
|
*/
|
|
@@ -508,6 +552,10 @@ export interface IEngineEnvironmentVariables {
|
|
|
508
552
|
* Federated catalog remote endpoint, if set will use a REST client instead of local service.
|
|
509
553
|
*/
|
|
510
554
|
federatedCatalogueRemoteEndpoint?: string;
|
|
555
|
+
/**
|
|
556
|
+
* The path prefix used by the federated catalogue REST client when forwarding requests to the remote endpoint, defaults to "federated-catalogue".
|
|
557
|
+
*/
|
|
558
|
+
federatedCatalogueRestClientPathPrefix?: string;
|
|
511
559
|
/**
|
|
512
560
|
* The trust generators to add to the factory, comma separated list.
|
|
513
561
|
*/
|
|
@@ -588,10 +636,18 @@ export interface IEngineEnvironmentVariables {
|
|
|
588
636
|
*/
|
|
589
637
|
dataspaceActivityLogsCleanupInterval?: string;
|
|
590
638
|
/**
|
|
591
|
-
*
|
|
592
|
-
*
|
|
593
|
-
*
|
|
594
|
-
*
|
|
639
|
+
* Base route path for the data plane service (path only, not full URL).
|
|
640
|
+
* Combined with the public origin to form the `dataAddress.endpoint` sent to PULL consumers
|
|
641
|
+
* and the inbox URL sent to PUSH providers.
|
|
642
|
+
*
|
|
643
|
+
* This must be the mount-point prefix of the data plane routes, NOT a specific route path.
|
|
644
|
+
* Do NOT append sub-paths such as `/entities` or `/inbox` — those are appended automatically
|
|
645
|
+
* by each transfer handler and by the data plane REST client.
|
|
646
|
+
*
|
|
647
|
+
* REQUIRED if PULL or PUSH transfers are supported.
|
|
648
|
+
* If not specified, PULL and PUSH transfers will not be available.
|
|
649
|
+
*
|
|
650
|
+
* Example: "dataspace"
|
|
595
651
|
*/
|
|
596
652
|
dataspaceDataPlanePath?: string;
|
|
597
653
|
/**
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,210 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.1-next.10](https://github.com/iotaledger/twin-node/compare/node-core-v0.9.1-next.9...node-core-v0.9.1-next.10) (2026-07-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update dependencies ([64c8ea8](https://github.com/iotaledger/twin-node/commit/64c8ea8c8b5e918f7ad419c4e3b8d08faf5e3fdd))
|
|
9
|
+
|
|
10
|
+
## [0.9.1-next.9](https://github.com/iotaledger/twin-node/compare/node-core-v0.9.1-next.8...node-core-v0.9.1-next.9) (2026-07-21)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* enhanced cli commands ([#288](https://github.com/iotaledger/twin-node/issues/288)) ([479fb34](https://github.com/iotaledger/twin-node/commit/479fb3448c493a134aee35b69ae39458e493a4ad))
|
|
16
|
+
* expose gasBudget and gasReservationDuration as configurable env vars ([#286](https://github.com/iotaledger/twin-node/issues/286)) ([d678b27](https://github.com/iotaledger/twin-node/commit/d678b27d629930a6ce85eeab9caf89d1187c3461))
|
|
17
|
+
* file logging config ([#287](https://github.com/iotaledger/twin-node/issues/287)) ([a567b25](https://github.com/iotaledger/twin-node/commit/a567b253cbb8b9af872bb0e494c013212f4f55a2))
|
|
18
|
+
|
|
19
|
+
## [0.9.1-next.8](https://github.com/iotaledger/twin-node/compare/node-core-v0.9.1-next.7...node-core-v0.9.1-next.8) (2026-07-10)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Miscellaneous Chores
|
|
23
|
+
|
|
24
|
+
* **node-core:** Synchronize repo versions
|
|
25
|
+
|
|
26
|
+
## [0.9.1-next.7](https://github.com/iotaledger/twin-node/compare/node-core-v0.9.1-next.6...node-core-v0.9.1-next.7) (2026-07-08)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* update dependencies ([#279](https://github.com/iotaledger/twin-node/issues/279)) ([2c0de07](https://github.com/iotaledger/twin-node/commit/2c0de07a15541e73612ba5bd62f4f566e4efca34))
|
|
32
|
+
|
|
33
|
+
## [0.9.1-next.6](https://github.com/iotaledger/twin-node/compare/node-core-v0.9.1-next.5...node-core-v0.9.1-next.6) (2026-07-03)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Features
|
|
37
|
+
|
|
38
|
+
* use core env helpers ([568fbc5](https://github.com/iotaledger/twin-node/commit/568fbc53906b022bc8465ffb941a160075d88e96))
|
|
39
|
+
|
|
40
|
+
## [0.9.1-next.5](https://github.com/iotaledger/twin-node/compare/node-core-v0.9.1-next.4...node-core-v0.9.1-next.5) (2026-07-02)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
### Features
|
|
44
|
+
|
|
45
|
+
* dataspace plane path ([#272](https://github.com/iotaledger/twin-node/issues/272)) ([5998eeb](https://github.com/iotaledger/twin-node/commit/5998eeb6fa1392ae753eb6bafeccefa1fb690573))
|
|
46
|
+
|
|
47
|
+
## [0.9.1-next.4](https://github.com/iotaledger/twin-node/compare/node-core-v0.9.1-next.3...node-core-v0.9.1-next.4) (2026-07-01)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
### Features
|
|
51
|
+
|
|
52
|
+
* additional cli commands ([#269](https://github.com/iotaledger/twin-node/issues/269)) ([c9e7c93](https://github.com/iotaledger/twin-node/commit/c9e7c939aedfceed9cbe501f2dc936e84289ed62))
|
|
53
|
+
|
|
54
|
+
## [0.9.1-next.3](https://github.com/iotaledger/twin-node/compare/node-core-v0.9.1-next.2...node-core-v0.9.1-next.3) (2026-06-30)
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
### Features
|
|
58
|
+
|
|
59
|
+
* add new endpoints ([cc6e30d](https://github.com/iotaledger/twin-node/commit/cc6e30d85f7ed8018697462a7100e5c2f4e8f407))
|
|
60
|
+
|
|
61
|
+
## [0.9.1-next.2](https://github.com/iotaledger/twin-node/compare/node-core-v0.9.1-next.1...node-core-v0.9.1-next.2) (2026-06-29)
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
### Features
|
|
65
|
+
|
|
66
|
+
* update components ([35cdfdc](https://github.com/iotaledger/twin-node/commit/35cdfdcba2b52599b4db3afd8c9e6dd17468b21e))
|
|
67
|
+
|
|
68
|
+
## [0.9.1-next.1](https://github.com/iotaledger/twin-node/compare/node-core-v0.9.1-next.0...node-core-v0.9.1-next.1) (2026-06-26)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
### Features
|
|
72
|
+
|
|
73
|
+
* add auth admin component ([1661e57](https://github.com/iotaledger/twin-node/commit/1661e57a699d5cf9ebde333e3cbc3aaea89d7c9c))
|
|
74
|
+
* add automation ([cfc63b4](https://github.com/iotaledger/twin-node/commit/cfc63b465c139280f696877df21d54dc6a065a7e))
|
|
75
|
+
* add CLI commands and remove automated bootstrap code ([#69](https://github.com/iotaledger/twin-node/issues/69)) ([6e40933](https://github.com/iotaledger/twin-node/commit/6e40933d8bb820b380e1074fc88feeedca0ef7d9))
|
|
76
|
+
* add context id features ([#53](https://github.com/iotaledger/twin-node/issues/53)) ([827adf5](https://github.com/iotaledger/twin-node/commit/827adf52cb87fca53cec52b27e67f7a9dba2c088))
|
|
77
|
+
* add data space connector ([5a57087](https://github.com/iotaledger/twin-node/commit/5a57087d938265d3a4a812ff7c83d130ea4e103c))
|
|
78
|
+
* add data space connector ([f7a3644](https://github.com/iotaledger/twin-node/commit/f7a364477ec664e333e5ad018795acec6ee61edc))
|
|
79
|
+
* add data space connector ([157e8b0](https://github.com/iotaledger/twin-node/commit/157e8b0a76e3a8a63c1991924f7f963eb83e27ae))
|
|
80
|
+
* add dataspace endpoint tests for app-datasets, transfers, and data plane ([#213](https://github.com/iotaledger/twin-node/issues/213)) ([5641a78](https://github.com/iotaledger/twin-node/commit/5641a781bf17a1914912f3162116d7c5f5c0dca2))
|
|
81
|
+
* add extend engine and server methods ([ec09c7e](https://github.com/iotaledger/twin-node/commit/ec09c7eb882d9f5797f2fd372e96cad1a3716f59))
|
|
82
|
+
* add extend engine and server methods ([0136a6f](https://github.com/iotaledger/twin-node/commit/0136a6f3f4e1a82b1427ee9618b8a17c79bc7fda))
|
|
83
|
+
* add extensions support ([476d5a8](https://github.com/iotaledger/twin-node/commit/476d5a864026a2f78e5b02bc9eb81359777a4a45))
|
|
84
|
+
* add isDefault flag to logging connectors ([358e839](https://github.com/iotaledger/twin-node/commit/358e8394819dab9832d3a9ebfac74b897b7d5f40))
|
|
85
|
+
* add logging otel ([2adf4e4](https://github.com/iotaledger/twin-node/commit/2adf4e44fd2ef4cce43f354da2187719c72cc3cd))
|
|
86
|
+
* add missing export ([e8eb621](https://github.com/iotaledger/twin-node/commit/e8eb6213937a202520b164a9970a891004122b61))
|
|
87
|
+
* add module cache and improve resolution ([482be05](https://github.com/iotaledger/twin-node/commit/482be056c37a598033250ea8a7288a33cf3470b4))
|
|
88
|
+
* add module override for better local import resolution ([ba00d17](https://github.com/iotaledger/twin-node/commit/ba00d17beea0a9a1851c89ad7c6a33256051c818))
|
|
89
|
+
* add mutex settings ([#222](https://github.com/iotaledger/twin-node/issues/222)) ([492c55f](https://github.com/iotaledger/twin-node/commit/492c55f67d5f70c2a4a27dfdb2700a644ee87955))
|
|
90
|
+
* add notarization ([#121](https://github.com/iotaledger/twin-node/issues/121)) ([b2a11df](https://github.com/iotaledger/twin-node/commit/b2a11df92c7b5026f73f08a018c0586ebe008e92))
|
|
91
|
+
* add obligation enforcers and multi instance support ([#89](https://github.com/iotaledger/twin-node/issues/89)) ([d81af99](https://github.com/iotaledger/twin-node/commit/d81af99b8c4db6e9a1370b7065bf6d9d222c71ed))
|
|
92
|
+
* add rights management ([78fba62](https://github.com/iotaledger/twin-node/commit/78fba62f82afdbe615d55dd90eca8ee70ea62fc0))
|
|
93
|
+
* add rights management components ([0fc6293](https://github.com/iotaledger/twin-node/commit/0fc629332db24494bd73003625c7bf3f939a2597))
|
|
94
|
+
* add standalone federated catalogue example config and endpoint tests ([#235](https://github.com/iotaledger/twin-node/issues/235)) ([ffb51dd](https://github.com/iotaledger/twin-node/commit/ffb51ddda5188c2f21b8ce65343b39a28f4eee4b))
|
|
95
|
+
* add support for dynamodb connection timeout ([63051b0](https://github.com/iotaledger/twin-node/commit/63051b0d22138079115dfac921e7f0c45eaad34e))
|
|
96
|
+
* add synchronised storage config ([e315869](https://github.com/iotaledger/twin-node/commit/e315869adbffcd7fe5d3ce151dd35f662f6134a9))
|
|
97
|
+
* add trust and rights management plugin support ([cdeb504](https://github.com/iotaledger/twin-node/commit/cdeb504ee5986a347466162b9afa781645b4a54c))
|
|
98
|
+
* add trust ttl ([#73](https://github.com/iotaledger/twin-node/issues/73)) ([911cee7](https://github.com/iotaledger/twin-node/commit/911cee771bba490143bb1574ca8360f7cf8baa1a))
|
|
99
|
+
* add validate-locales ([1a19dcb](https://github.com/iotaledger/twin-node/commit/1a19dcb005c2f0e3103e290db28c48a3464094cb))
|
|
100
|
+
* add vault prefix configuration ([#75](https://github.com/iotaledger/twin-node/issues/75)) ([1d4afb1](https://github.com/iotaledger/twin-node/commit/1d4afb1b1a8aa60795898eeb9e7f5153c279527d))
|
|
101
|
+
* add well-known endpoint ([38cbab2](https://github.com/iotaledger/twin-node/commit/38cbab20631666d3bae8b0b5ae346a3488148b1d))
|
|
102
|
+
* adding npm and https protocols to load extensions ([#45](https://github.com/iotaledger/twin-node/issues/45)) ([33940b7](https://github.com/iotaledger/twin-node/commit/33940b7e771a0c5af32c18d442deb26a8631fd02))
|
|
103
|
+
* additional options for enabling components ([e13d772](https://github.com/iotaledger/twin-node/commit/e13d7721a0dd7143d456fff246622cbe63dbd0f1))
|
|
104
|
+
* additional route logging env vars ([7152c88](https://github.com/iotaledger/twin-node/commit/7152c887c3ba76778e2d9e68ba57198b8d81d802))
|
|
105
|
+
* additional run options ([c35e5bb](https://github.com/iotaledger/twin-node/commit/c35e5bbb8a80fe6a36628d41f64585b3723d9ad7))
|
|
106
|
+
* additional startup logging ([0740293](https://github.com/iotaledger/twin-node/commit/0740293b366032f2907046603abf587c9c324aff))
|
|
107
|
+
* additional stop interlock ([b3a2757](https://github.com/iotaledger/twin-node/commit/b3a2757325af0e7b258a9f97f1b52e86087e6301))
|
|
108
|
+
* align node module with dataspace rename and control plane integ… ([#95](https://github.com/iotaledger/twin-node/issues/95)) ([8129868](https://github.com/iotaledger/twin-node/commit/812986886fb5d779dd380956c4e6cc47c2d73530))
|
|
109
|
+
* auth fix ([a8e59e9](https://github.com/iotaledger/twin-node/commit/a8e59e947735180c9edee041f87af5e1e125e3c6))
|
|
110
|
+
* authentication services ([#118](https://github.com/iotaledger/twin-node/issues/118)) ([311a7f8](https://github.com/iotaledger/twin-node/commit/311a7f882db1e50a83e94d2dae32fefc68debb47))
|
|
111
|
+
* bootstrap legacy skip ([469d950](https://github.com/iotaledger/twin-node/commit/469d9505bd0497c271ba291641f63786200cb548))
|
|
112
|
+
* bump [@twin](https://github.com/twin).org/* to latest next ([#172](https://github.com/iotaledger/twin-node/issues/172)) ([45862d5](https://github.com/iotaledger/twin-node/commit/45862d555e4958f1c12da357817b7b87642d7aba))
|
|
113
|
+
* bump dependencies ([#216](https://github.com/iotaledger/twin-node/issues/216)) ([a005824](https://github.com/iotaledger/twin-node/commit/a005824fe3e4a734543f613d8a7cc1275fec4572))
|
|
114
|
+
* cache the npm root to increase startup speed ([f10ea9e](https://github.com/iotaledger/twin-node/commit/f10ea9e22cc202f320df5fb21507b886c1f7345b))
|
|
115
|
+
* cli tenant-token command ([#177](https://github.com/iotaledger/twin-node/issues/177)) ([b3f68a4](https://github.com/iotaledger/twin-node/commit/b3f68a4972d065e865372230c078b4657dfabc1a))
|
|
116
|
+
* component update ([9a3fdab](https://github.com/iotaledger/twin-node/commit/9a3fdab250e0dc8b8aa52479d5c72517de8d6c0f))
|
|
117
|
+
* component update ([8bf10da](https://github.com/iotaledger/twin-node/commit/8bf10da2e3e29f22afddd9cb55a26f343555e106))
|
|
118
|
+
* custom REST paths ([#99](https://github.com/iotaledger/twin-node/issues/99)) ([dcab1b2](https://github.com/iotaledger/twin-node/commit/dcab1b2b23c13b4c9f39c3c1c67284f56e732bd1))
|
|
119
|
+
* don't override existing env vars with env files ([ebccac2](https://github.com/iotaledger/twin-node/commit/ebccac297c3156076f17c246a8abd994f8f20e61))
|
|
120
|
+
* endpoints-runner ([#153](https://github.com/iotaledger/twin-node/issues/153)) ([cca42d0](https://github.com/iotaledger/twin-node/commit/cca42d07d6655d401c909308e8b73606fef05248))
|
|
121
|
+
* env var simplification ([460b0f2](https://github.com/iotaledger/twin-node/commit/460b0f20a73cb482f7443af502f261d5f9d01759))
|
|
122
|
+
* env var validation ([#243](https://github.com/iotaledger/twin-node/issues/243)) ([569945a](https://github.com/iotaledger/twin-node/commit/569945a751eb52d008a681777a3cba881af1b9a4))
|
|
123
|
+
* env vars consistency ([1823b7a](https://github.com/iotaledger/twin-node/commit/1823b7aeae5dc7484861534b851080afda64d869))
|
|
124
|
+
* env-prefix option and user-update cli command ([#83](https://github.com/iotaledger/twin-node/issues/83)) ([fc48efa](https://github.com/iotaledger/twin-node/commit/fc48efa7ad72173def048170c3afb5eeb9f1b292))
|
|
125
|
+
* eslint migration to flat config ([080db74](https://github.com/iotaledger/twin-node/commit/080db746390230f78725d214bc957da2efee9eb1))
|
|
126
|
+
* federated catalogue trust mode ([#194](https://github.com/iotaledger/twin-node/issues/194)) ([c18e6fb](https://github.com/iotaledger/twin-node/commit/c18e6fbe0014eb5faf8084d16169d86f3d3b23a6))
|
|
127
|
+
* first metrics in the core and app for testing ([#139](https://github.com/iotaledger/twin-node/issues/139)) ([abe17bb](https://github.com/iotaledger/twin-node/commit/abe17bb9a6261dcb7fd46253221182fbb1dc2259))
|
|
128
|
+
* health and url transformer ([#131](https://github.com/iotaledger/twin-node/issues/131)) ([3658903](https://github.com/iotaledger/twin-node/commit/36589036b9bea120880fc395b0d123a89032cf40))
|
|
129
|
+
* identity profile information source ([dbb53d1](https://github.com/iotaledger/twin-node/commit/dbb53d145f517070d864f37650a6dbc1f3e9c3a8))
|
|
130
|
+
* immutable proof gate and additional config ([#157](https://github.com/iotaledger/twin-node/issues/157)) ([1d1fbb7](https://github.com/iotaledger/twin-node/commit/1d1fbb7c53525af848761dc25b42e9e676929972))
|
|
131
|
+
* improve bootstrapping and shutdown behaviour ([#66](https://github.com/iotaledger/twin-node/issues/66)) ([65b3452](https://github.com/iotaledger/twin-node/commit/65b345240334bfff48b52e136cc486cd7ac7f290))
|
|
132
|
+
* improve default options and spec ([b538721](https://github.com/iotaledger/twin-node/commit/b538721902e7f65021d2715148ba59409ccce035))
|
|
133
|
+
* improve error handling for extensions and logging ([bd84fde](https://github.com/iotaledger/twin-node/commit/bd84fde67e5a9db6ac66730397992401ca52e88c))
|
|
134
|
+
* improve error reporting ([fcd39a1](https://github.com/iotaledger/twin-node/commit/fcd39a18da2a6ce33965a99ca5f2f36f4aba712f))
|
|
135
|
+
* improve node logging ([63d6ea6](https://github.com/iotaledger/twin-node/commit/63d6ea661c2c76985d98addb8d905ad6f0c7f164))
|
|
136
|
+
* improve node logging ([c25b9c6](https://github.com/iotaledger/twin-node/commit/c25b9c6779bdb76f341df072c39b4c2fae4565a3))
|
|
137
|
+
* improved cli commands ([#206](https://github.com/iotaledger/twin-node/issues/206)) ([cf00850](https://github.com/iotaledger/twin-node/commit/cf0085023a66e187aaaaf3889128c845c73a1faf))
|
|
138
|
+
* initial commit ([522f1e5](https://github.com/iotaledger/twin-node/commit/522f1e515348f9b1dd1eeb3170b1249e2b0b5371))
|
|
139
|
+
* migrate env config from engine to node ([5da29b8](https://github.com/iotaledger/twin-node/commit/5da29b8d714495308320d237a68e84355bba2b47))
|
|
140
|
+
* migration testing ([#199](https://github.com/iotaledger/twin-node/issues/199)) ([97a731c](https://github.com/iotaledger/twin-node/commit/97a731c520d66ab0588d80987a0f88d388ce51ae))
|
|
141
|
+
* multi-tenant env wiring, trust auto-enable, tenant-token vault key, engine-driven callbackPath ([#128](https://github.com/iotaledger/twin-node/issues/128)) ([0de4d35](https://github.com/iotaledger/twin-node/commit/0de4d356fb2f825afae5469005d475700f510ee4))
|
|
142
|
+
* new tenant auth mechanisms ([#168](https://github.com/iotaledger/twin-node/issues/168)) ([686f111](https://github.com/iotaledger/twin-node/commit/686f1118e79e6f26a8dc72a5e9172584057f4518))
|
|
143
|
+
* node app use JavaScript ([14fe08c](https://github.com/iotaledger/twin-node/commit/14fe08cb760dd885a5dac9056a4d5dbc3d61df64))
|
|
144
|
+
* organization identifiers ([#203](https://github.com/iotaledger/twin-node/issues/203)) ([1a6b176](https://github.com/iotaledger/twin-node/commit/1a6b1760d9f8e43a769407668426c70e1c8e1aa8))
|
|
145
|
+
* refactor testing ([fc28140](https://github.com/iotaledger/twin-node/commit/fc28140c6a398d31e092752ef53fa490da167794))
|
|
146
|
+
* remove dap and darp ([36c3ffb](https://github.com/iotaledger/twin-node/commit/36c3ffb31af65a0e3025859dab675efeee043155))
|
|
147
|
+
* remove hosting component ([#219](https://github.com/iotaledger/twin-node/issues/219)) ([fb2fea4](https://github.com/iotaledger/twin-node/commit/fb2fea46f57aab9252ee1491499e84b8ad46533e))
|
|
148
|
+
* remove set-tenant ([#186](https://github.com/iotaledger/twin-node/issues/186)) ([1fc1909](https://github.com/iotaledger/twin-node/commit/1fc1909e6335dea51dfec3bb91fba4badaa9790a))
|
|
149
|
+
* remove unused properties ([d8344b5](https://github.com/iotaledger/twin-node/commit/d8344b5aee5dc1c8104d75fad5093097f6530168))
|
|
150
|
+
* separate script directory from exec directory ([f6bb4db](https://github.com/iotaledger/twin-node/commit/f6bb4dbea1f1e200e0640fa154c6997ef99c99b4))
|
|
151
|
+
* support multiple entity and blob storage connectors ([a489f79](https://github.com/iotaledger/twin-node/commit/a489f7907544aef5708d5111e9f72985e1377bae))
|
|
152
|
+
* support public origin and hosting service ([#77](https://github.com/iotaledger/twin-node/issues/77)) ([3b9039f](https://github.com/iotaledger/twin-node/commit/3b9039fcba7f7038c06f8fd6a5ccc9fdbbf535b3))
|
|
153
|
+
* tenant-id in user create and update ([#148](https://github.com/iotaledger/twin-node/issues/148)) ([1143e30](https://github.com/iotaledger/twin-node/commit/1143e30fb0d2056d113367d0c5ea251f07695da1))
|
|
154
|
+
* typescript 6 update ([ce2e3ca](https://github.com/iotaledger/twin-node/commit/ce2e3ca5219587709f7b9cf6c65909b48fba11b5))
|
|
155
|
+
* update background tasks and add fedcat filters ([1fd297e](https://github.com/iotaledger/twin-node/commit/1fd297e29f60b5bb3909638b68e326c5b0e2d77d))
|
|
156
|
+
* update context usage ([2215440](https://github.com/iotaledger/twin-node/commit/2215440801dea3955885b6579ad9b98b7a5d87ea))
|
|
157
|
+
* update dependencies ([aab05b5](https://github.com/iotaledger/twin-node/commit/aab05b552152a208a504fb9a080603f1990d4f79))
|
|
158
|
+
* update dependencies ([6cb3d3a](https://github.com/iotaledger/twin-node/commit/6cb3d3a63f7b976f80074ddecfba034b7e92f919))
|
|
159
|
+
* update dependencies ([9d25f16](https://github.com/iotaledger/twin-node/commit/9d25f16f1d554cd38f3bec28fdf7f8fff892ceaf))
|
|
160
|
+
* update dependencies ([#178](https://github.com/iotaledger/twin-node/issues/178)) ([0d346ec](https://github.com/iotaledger/twin-node/commit/0d346ec57f43f418b73fe71fcd2b187d769a53e9))
|
|
161
|
+
* update document management components ([ed2c065](https://github.com/iotaledger/twin-node/commit/ed2c065a5030a7233f3623818d7325d85654ef0d))
|
|
162
|
+
* update engine ([a40b377](https://github.com/iotaledger/twin-node/commit/a40b37726c3b61c6bb40265ec0006d1071ffac7e))
|
|
163
|
+
* update engine ([4b438e2](https://github.com/iotaledger/twin-node/commit/4b438e22c27d784ee6cc964b7cb4401e9699ab16))
|
|
164
|
+
* update engine dependency ([db290df](https://github.com/iotaledger/twin-node/commit/db290df3b18374f7d86da575c6048657b98c355b))
|
|
165
|
+
* update engine dependency ([3494c31](https://github.com/iotaledger/twin-node/commit/3494c3144fd5ce6d3a9f2936c7890ab36795aeaa))
|
|
166
|
+
* update for livez endpoint ([9fc2e6a](https://github.com/iotaledger/twin-node/commit/9fc2e6ade38b3ec9591399a633d02b1e5fe07910))
|
|
167
|
+
* update framework components ([4bee2b9](https://github.com/iotaledger/twin-node/commit/4bee2b9d3651df09b8550a9ed226be1b46031854))
|
|
168
|
+
* update framework core ([8bd769a](https://github.com/iotaledger/twin-node/commit/8bd769a4451f5f1f6be3f115a5e94eeb05bce7f1))
|
|
169
|
+
* update order of logging ([2161938](https://github.com/iotaledger/twin-node/commit/2161938c969b18e4678459a69090287e5ccdb404))
|
|
170
|
+
* update order of logging ([b295f31](https://github.com/iotaledger/twin-node/commit/b295f315f7c5b611d229d9e5314d414da05828b9))
|
|
171
|
+
* update rights management ([5c992c6](https://github.com/iotaledger/twin-node/commit/5c992c6b0d72f3eeaa39ee267e096d9a3f477f4e))
|
|
172
|
+
* update rights management components ([176a0d6](https://github.com/iotaledger/twin-node/commit/176a0d611f88360fc845ae233b26ee0b43d7cb23))
|
|
173
|
+
* update rights management dependencies ([97ad02e](https://github.com/iotaledger/twin-node/commit/97ad02e4b74cfe5e722f74da2fc2229bbf004c0a))
|
|
174
|
+
* update tests ([f15bc1f](https://github.com/iotaledger/twin-node/commit/f15bc1fb9fc1a7a9b6611ad42591d9c02e078cfb))
|
|
175
|
+
* update tests ([633797e](https://github.com/iotaledger/twin-node/commit/633797e3c4766ad7e47c472c153456c60e1a6ba2))
|
|
176
|
+
* update to latest engine ([00d4974](https://github.com/iotaledger/twin-node/commit/00d4974f9cfb02bf48505cfb4af4a7aba1df4b3d))
|
|
177
|
+
* update to latest engine config ([347386c](https://github.com/iotaledger/twin-node/commit/347386c0609e717dc20c456ad2264c83df793c59))
|
|
178
|
+
* updated context id features ([ef7be07](https://github.com/iotaledger/twin-node/commit/ef7be07d44dccdeacf10f90cb4ffde0303faa6fa))
|
|
179
|
+
* updating linting ([feacd17](https://github.com/iotaledger/twin-node/commit/feacd178bb025bcd29a0ae6e4b8e79f23a989169))
|
|
180
|
+
* use features instead of disableNodeIdentity ([2e6109b](https://github.com/iotaledger/twin-node/commit/2e6109bd1de825e0f5396fc120d99ad7b3929852))
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
### Bug Fixes
|
|
184
|
+
|
|
185
|
+
* adding a condition to verify if the password exists when bootstrapping ([6030a42](https://github.com/iotaledger/twin-node/commit/6030a42bdaf581678d96932fd0b809396bf7b8b0))
|
|
186
|
+
* adding a condition to verify if the password exists when bootstrapping ([c66f396](https://github.com/iotaledger/twin-node/commit/c66f396717394161a7647d1f08b3d87729d96e96))
|
|
187
|
+
* bootstrap legacy fails on second run ([c0a4e6d](https://github.com/iotaledger/twin-node/commit/c0a4e6d6f8d1bf385412a22fed2a0974e219abaa))
|
|
188
|
+
* bootstrap vault key skip logic ([#112](https://github.com/iotaledger/twin-node/issues/112)) ([4084368](https://github.com/iotaledger/twin-node/commit/4084368f0762c3a1b8e214ac30f5545297c88ea6))
|
|
189
|
+
* broken docs ([61479fd](https://github.com/iotaledger/twin-node/commit/61479fd618f766d22c5aafec5277e1a89e22b453))
|
|
190
|
+
* bump [@twin](https://github.com/twin).org deps to next.30 stack, fix node-core route snapshot ([#159](https://github.com/iotaledger/twin-node/issues/159)) ([73ad77f](https://github.com/iotaledger/twin-node/commit/73ad77f862050cb8dfcf42c484332bdacf026092))
|
|
191
|
+
* example typo for vault-key-create ([eed5844](https://github.com/iotaledger/twin-node/commit/eed58448b8e6d057fa964822d337cb2898d5bb54))
|
|
192
|
+
* immutable proof requirements ([2940579](https://github.com/iotaledger/twin-node/commit/29405798b24053c017adaaf08a2537ea6b1c8d0f))
|
|
193
|
+
* improve calculation of execution directory ([106d65d](https://github.com/iotaledger/twin-node/commit/106d65d7ad5524e2e147b681d68f9476c024cfaa))
|
|
194
|
+
* only register DID context keys when nodeIdentityEnabled is true ([#140](https://github.com/iotaledger/twin-node/issues/140)) ([21f1c10](https://github.com/iotaledger/twin-node/commit/21f1c107adbd715518414f7255ead970b809b4b3))
|
|
195
|
+
* optional private key in identity create ([325ebd8](https://github.com/iotaledger/twin-node/commit/325ebd859d95b3078107e76f1806cded078a0ce1))
|
|
196
|
+
* org identity verification methods ([18f158b](https://github.com/iotaledger/twin-node/commit/18f158b2f63930e20e94437c17ed43421771a458))
|
|
197
|
+
* pr comments [#1](https://github.com/iotaledger/twin-node/issues/1) ([66e795b](https://github.com/iotaledger/twin-node/commit/66e795b16c372ab131ec1de30085aee90e4dbbd0))
|
|
198
|
+
* recover tenant id on bootstrap-legacy restart when TENANT_ID is unset ([#198](https://github.com/iotaledger/twin-node/issues/198)) ([d9451e1](https://github.com/iotaledger/twin-node/commit/d9451e188fe4fd20d5cfd0408b0dc226ddf25cd8))
|
|
199
|
+
* register dataspace control plane rest client as multi-instance ([#191](https://github.com/iotaledger/twin-node/issues/191)) ([4548f5c](https://github.com/iotaledger/twin-node/commit/4548f5c6e7f1d65fd147e502e57d5686e60e5195))
|
|
200
|
+
* set dataspace control-plane callbackPath in node env builder ([#237](https://github.com/iotaledger/twin-node/issues/237)) ([2eac214](https://github.com/iotaledger/twin-node/commit/2eac21438e9f4b4a0bf84f30ebc864bd424aac35))
|
|
201
|
+
* stalled timeout now is provided in seconds ([#241](https://github.com/iotaledger/twin-node/issues/241)) ([ebd827d](https://github.com/iotaledger/twin-node/commit/ebd827d02a9a4f8ad4f4c84d064d02831ef015cb))
|
|
202
|
+
* support load-env for tenant-token cli command ([34059c0](https://github.com/iotaledger/twin-node/commit/34059c052a685decdd689beb16d2b250e9a83643))
|
|
203
|
+
* synchronised storage construction ([#102](https://github.com/iotaledger/twin-node/issues/102)) ([58b61e9](https://github.com/iotaledger/twin-node/commit/58b61e9a67f499a35bea17e5d2dc6a1efc2cb893))
|
|
204
|
+
* test endpoints ([2b83ed0](https://github.com/iotaledger/twin-node/commit/2b83ed0d4f1da473a525a95202e01d9680c7d26c))
|
|
205
|
+
* test with latest dependencies ([91123b7](https://github.com/iotaledger/twin-node/commit/91123b71d0e7b51700a5d5452b2a0c9fc5c5256e))
|
|
206
|
+
* use async getStore in tests ([2189df4](https://github.com/iotaledger/twin-node/commit/2189df49a57637ba8effdee50965473f0a814c6c))
|
|
207
|
+
|
|
3
208
|
## [0.9.0](https://github.com/iotaledger/twin-node/compare/node-core-v0.9.0...node-core-v0.9.0) (2026-06-25)
|
|
4
209
|
|
|
5
210
|
|
|
@@ -36,6 +36,14 @@ The params available for the command.
|
|
|
36
36
|
|
|
37
37
|
***
|
|
38
38
|
|
|
39
|
+
### aliases? {#aliases}
|
|
40
|
+
|
|
41
|
+
> `optional` **aliases?**: `string`[]
|
|
42
|
+
|
|
43
|
+
Deprecated names that resolve to this command with a warning.
|
|
44
|
+
|
|
45
|
+
***
|
|
46
|
+
|
|
39
47
|
### action {#action}
|
|
40
48
|
|
|
41
49
|
> **action**: (`engineCore`, `envVars`, `params`) => `Promise`\<`unknown`\>
|
|
@@ -99,3 +107,11 @@ Indicates whether the engine needs the organization identity to be set.
|
|
|
99
107
|
```ts
|
|
100
108
|
true
|
|
101
109
|
```
|
|
110
|
+
|
|
111
|
+
***
|
|
112
|
+
|
|
113
|
+
### singleTenantOnly? {#singletenantonly}
|
|
114
|
+
|
|
115
|
+
> `optional` **singleTenantOnly?**: `boolean`
|
|
116
|
+
|
|
117
|
+
Indicates whether this command is only available in single-tenant mode.
|