@twin.org/node-core 0.0.2-next.9 → 0.0.3-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/README.md +1 -1
- package/dist/es/builders/engineEnvBuilder.js +1132 -0
- package/dist/es/builders/engineEnvBuilder.js.map +1 -0
- package/dist/es/builders/engineServerEnvBuilder.js +206 -0
- package/dist/es/builders/engineServerEnvBuilder.js.map +1 -0
- package/dist/es/builders/extensionsBuilder.js +109 -0
- package/dist/es/builders/extensionsBuilder.js.map +1 -0
- package/dist/es/cli.js +255 -0
- package/dist/es/cli.js.map +1 -0
- package/dist/es/commands/bootstrapLegacy.js +175 -0
- package/dist/es/commands/bootstrapLegacy.js.map +1 -0
- package/dist/es/commands/help.js +85 -0
- package/dist/es/commands/help.js.map +1 -0
- package/dist/es/commands/identityCreate.js +310 -0
- package/dist/es/commands/identityCreate.js.map +1 -0
- package/dist/es/commands/identityImports.js +76 -0
- package/dist/es/commands/identityImports.js.map +1 -0
- package/dist/es/commands/identityVerifiableCredentialCreate.js +140 -0
- package/dist/es/commands/identityVerifiableCredentialCreate.js.map +1 -0
- package/dist/es/commands/identityVerificationMethodCreate.js +208 -0
- package/dist/es/commands/identityVerificationMethodCreate.js.map +1 -0
- package/dist/es/commands/identityVerificationMethodImport.js +120 -0
- package/dist/es/commands/identityVerificationMethodImport.js.map +1 -0
- package/dist/es/commands/nodeSetIdentity.js +51 -0
- package/dist/es/commands/nodeSetIdentity.js.map +1 -0
- package/dist/es/commands/nodeSetTenant.js +49 -0
- package/dist/es/commands/nodeSetTenant.js.map +1 -0
- package/dist/es/commands/tenantCreate.js +120 -0
- package/dist/es/commands/tenantCreate.js.map +1 -0
- package/dist/es/commands/tenantImport.js +78 -0
- package/dist/es/commands/tenantImport.js.map +1 -0
- package/dist/es/commands/userCreate.js +197 -0
- package/dist/es/commands/userCreate.js.map +1 -0
- package/dist/es/commands/vaultKeyCreate.js +185 -0
- package/dist/es/commands/vaultKeyCreate.js.map +1 -0
- package/dist/es/commands/vaultKeyImport.js +98 -0
- package/dist/es/commands/vaultKeyImport.js.map +1 -0
- package/dist/es/defaults.js +28 -0
- package/dist/es/defaults.js.map +1 -0
- package/dist/es/index.js +27 -0
- package/dist/es/index.js.map +1 -0
- package/dist/es/models/ICacheMetadata.js +4 -0
- package/dist/es/models/ICacheMetadata.js.map +1 -0
- package/dist/es/models/ICliArgs.js +4 -0
- package/dist/es/models/ICliArgs.js.map +1 -0
- package/dist/es/models/ICliCommand.js +2 -0
- package/dist/es/models/ICliCommand.js.map +1 -0
- package/dist/es/models/ICliCommandDefinition.js +2 -0
- package/dist/es/models/ICliCommandDefinition.js.map +1 -0
- package/dist/es/models/ICliCommandDefinitionParam.js +2 -0
- package/dist/es/models/ICliCommandDefinitionParam.js.map +1 -0
- package/dist/es/models/IEngineEnvironmentVariables.js +4 -0
- package/dist/es/models/IEngineEnvironmentVariables.js.map +1 -0
- package/dist/es/models/IEngineServerEnvironmentVariables.js +2 -0
- package/dist/es/models/IEngineServerEnvironmentVariables.js.map +1 -0
- package/dist/es/models/IModuleProtocol.js +2 -0
- package/dist/es/models/IModuleProtocol.js.map +1 -0
- package/dist/es/models/INodeEngineConfig.js +2 -0
- package/dist/es/models/INodeEngineConfig.js.map +1 -0
- package/dist/es/models/INodeEngineState.js +2 -0
- package/dist/es/models/INodeEngineState.js.map +1 -0
- package/dist/es/models/INodeEnvironmentVariables.js +2 -0
- package/dist/es/models/INodeEnvironmentVariables.js.map +1 -0
- package/dist/es/models/INodeOptions.js +2 -0
- package/dist/es/models/INodeOptions.js.map +1 -0
- package/dist/es/models/IProtocolHandlerResult.js +4 -0
- package/dist/es/models/IProtocolHandlerResult.js.map +1 -0
- package/dist/es/models/cliCommandParamType.js +4 -0
- package/dist/es/models/cliCommandParamType.js.map +1 -0
- package/dist/es/models/moduleProtocol.js +29 -0
- package/dist/es/models/moduleProtocol.js.map +1 -0
- package/dist/es/models/nodeExtensionMethods.js +2 -0
- package/dist/es/models/nodeExtensionMethods.js.map +1 -0
- package/dist/es/node.js +285 -0
- package/dist/es/node.js.map +1 -0
- package/dist/es/start.js +128 -0
- package/dist/es/start.js.map +1 -0
- package/dist/es/utils.js +397 -0
- package/dist/es/utils.js.map +1 -0
- package/dist/types/builders/engineEnvBuilder.d.ts +6 -2
- package/dist/types/builders/engineServerEnvBuilder.d.ts +7 -3
- package/dist/types/builders/extensionsBuilder.d.ts +32 -0
- package/dist/types/cli.d.ts +66 -0
- package/dist/types/commands/bootstrapLegacy.d.ts +66 -0
- package/dist/types/commands/help.d.ts +23 -0
- package/dist/types/commands/identityCreate.d.ts +39 -0
- package/dist/types/commands/identityImports.d.ts +24 -0
- package/dist/types/commands/identityVerifiableCredentialCreate.d.ts +43 -0
- package/dist/types/commands/identityVerificationMethodCreate.d.ts +47 -0
- package/dist/types/commands/identityVerificationMethodImport.d.ts +31 -0
- package/dist/types/commands/nodeSetIdentity.d.ts +22 -0
- package/dist/types/commands/nodeSetTenant.d.ts +22 -0
- package/dist/types/commands/tenantCreate.d.ts +35 -0
- package/dist/types/commands/tenantImport.d.ts +24 -0
- package/dist/types/commands/userCreate.d.ts +46 -0
- package/dist/types/commands/vaultKeyCreate.d.ts +43 -0
- package/dist/types/commands/vaultKeyImport.d.ts +28 -0
- package/dist/types/defaults.d.ts +16 -0
- package/dist/types/index.d.ts +24 -11
- package/dist/types/models/ICacheMetadata.d.ts +17 -0
- package/dist/types/models/ICliArgs.d.ts +20 -0
- package/dist/types/models/ICliCommand.d.ts +17 -0
- package/dist/types/models/ICliCommandDefinition.d.ts +46 -0
- package/dist/types/models/ICliCommandDefinitionParam.d.ts +35 -0
- package/dist/types/models/IEngineEnvironmentVariables.d.ts +154 -37
- package/dist/types/models/IEngineServerEnvironmentVariables.d.ts +12 -3
- package/dist/types/models/IModuleProtocol.d.ts +18 -0
- package/dist/types/models/INodeEngineConfig.d.ts +6 -0
- package/dist/types/models/INodeEngineState.d.ts +14 -0
- package/dist/types/models/INodeEnvironmentVariables.d.ts +17 -15
- package/dist/types/models/INodeOptions.d.ts +14 -3
- package/dist/types/models/IProtocolHandlerResult.d.ts +13 -0
- package/dist/types/models/cliCommandParamType.d.ts +4 -0
- package/dist/types/models/moduleProtocol.d.ts +29 -0
- package/dist/types/models/nodeExtensionMethods.d.ts +27 -0
- package/dist/types/node.d.ts +21 -7
- package/dist/types/start.d.ts +25 -0
- package/dist/types/utils.d.ts +83 -6
- package/docs/changelog.md +241 -0
- package/docs/detailed-guide.md +129 -0
- package/docs/reference/functions/buildConfiguration.md +2 -2
- package/docs/reference/functions/buildEngineConfiguration.md +8 -2
- package/docs/reference/functions/buildEngineServerConfiguration.md +9 -3
- package/docs/reference/functions/constructCliCommand.md +27 -0
- package/docs/reference/functions/createModuleImportUrl.md +21 -0
- package/docs/reference/functions/directoryExists.md +19 -0
- package/docs/reference/functions/executeCommand.md +29 -0
- package/docs/reference/functions/extensionsConfiguration.md +25 -0
- package/docs/reference/functions/extensionsInitialiseEngine.md +25 -0
- package/docs/reference/functions/extensionsInitialiseEngineServer.md +31 -0
- package/docs/reference/functions/getEnvDefaults.md +19 -0
- package/docs/reference/functions/getExtensionsCacheDir.md +31 -0
- package/docs/reference/functions/getFiles.md +19 -0
- package/docs/reference/functions/getSubFolders.md +19 -0
- package/docs/reference/functions/handleHttpsProtocol.md +49 -0
- package/docs/reference/functions/handleNpmProtocol.md +31 -0
- package/docs/reference/functions/hashUrl.md +19 -0
- package/docs/reference/functions/initCli.md +27 -0
- package/docs/reference/functions/isCacheExpired.md +31 -0
- package/docs/reference/functions/overrideModuleImport.md +8 -2
- package/docs/reference/functions/parseCommandLineArgs.md +19 -0
- package/docs/reference/functions/parseModuleProtocol.md +19 -0
- package/docs/reference/functions/processEnvOptions.md +27 -0
- package/docs/reference/functions/registerCommands.md +9 -0
- package/docs/reference/functions/resolvePackageEntryPoint.md +32 -0
- package/docs/reference/functions/run.md +9 -3
- package/docs/reference/functions/shutdownExtensions.md +25 -0
- package/docs/reference/functions/start.md +17 -5
- package/docs/reference/functions/substituteEnvOptions.md +25 -0
- package/docs/reference/index.md +47 -10
- package/docs/reference/interfaces/ICacheMetadata.md +27 -0
- package/docs/reference/interfaces/ICliArgs.md +35 -0
- package/docs/reference/interfaces/ICliCommand.md +23 -0
- package/docs/reference/interfaces/ICliCommandDefinition.md +101 -0
- package/docs/reference/interfaces/ICliCommandDefinitionParam.md +65 -0
- package/docs/reference/interfaces/IEngineEnvironmentVariables.md +303 -60
- package/docs/reference/interfaces/IEngineServerEnvironmentVariables.md +1737 -5
- package/docs/reference/interfaces/IModuleProtocol.md +27 -0
- package/docs/reference/interfaces/INodeEngineConfig.md +7 -0
- package/docs/reference/interfaces/INodeEngineState.md +23 -0
- package/docs/reference/interfaces/INodeEnvironmentVariables.md +599 -198
- package/docs/reference/interfaces/INodeOptions.md +27 -3
- package/docs/reference/interfaces/IProtocolHandlerResult.md +19 -0
- package/docs/reference/type-aliases/CliCommandParamType.md +5 -0
- package/docs/reference/type-aliases/ModuleProtocol.md +5 -0
- package/docs/reference/type-aliases/NodeExtensionInitialiseEngineMethod.md +18 -0
- package/docs/reference/type-aliases/NodeExtensionInitialiseEngineServerMethod.md +24 -0
- package/docs/reference/type-aliases/NodeExtensionInitialiseMethod.md +23 -0
- package/docs/reference/type-aliases/NodeExtensionShutdownMethod.md +10 -0
- package/docs/reference/variables/ATTESTATION_VERIFICATION_METHOD_ID.md +3 -0
- package/docs/reference/variables/AUTH_SIGNING_KEY_ID.md +3 -0
- package/docs/reference/variables/BLOB_STORAGE_ENCRYPTION_KEY_ID.md +3 -0
- package/docs/reference/variables/CONTEXT_ID_HANDLER_FEATURE_DID.md +3 -0
- package/docs/reference/variables/CONTEXT_ID_HANDLER_FEATURE_TENANT.md +3 -0
- package/docs/reference/variables/IMMUTABLE_PROOF_VERIFICATION_METHOD_ID.md +3 -0
- package/docs/reference/variables/ModuleProtocol.md +37 -0
- package/docs/reference/variables/SYNCHRONISED_STORAGE_BLOB_STORAGE_ENCRYPTION_KEY_ID.md +3 -0
- package/docs/reference/variables/VC_AUTHENTICATION_VERIFICATION_METHOD_ID.md +3 -0
- package/locales/en.json +479 -28
- package/package.json +29 -9
- package/dist/cjs/index.cjs +0 -1910
- package/dist/esm/index.mjs +0 -1870
- package/dist/types/bootstrap.d.ts +0 -59
- package/dist/types/models/nodeFeatures.d.ts +0 -21
- package/dist/types/server.d.ts +0 -17
- package/docs/reference/functions/bootstrap.md +0 -29
- package/docs/reference/functions/bootstrapAuth.md +0 -35
- package/docs/reference/functions/bootstrapBlobEncryption.md +0 -35
- package/docs/reference/functions/bootstrapImmutableProofMethod.md +0 -35
- package/docs/reference/functions/bootstrapNodeIdentity.md +0 -35
- package/docs/reference/functions/bootstrapNodeUser.md +0 -35
- package/docs/reference/functions/bootstrapSynchronisedStorage.md +0 -35
- package/docs/reference/functions/getFeatures.md +0 -19
- package/docs/reference/type-aliases/NodeFeatures.md +0 -5
- package/docs/reference/variables/NodeFeatures.md +0 -25
|
@@ -4,7 +4,7 @@ The engine core environment variables.
|
|
|
4
4
|
|
|
5
5
|
## Extended by
|
|
6
6
|
|
|
7
|
-
- [`
|
|
7
|
+
- [`IEngineServerEnvironmentVariables`](IEngineServerEnvironmentVariables.md)
|
|
8
8
|
|
|
9
9
|
## Properties
|
|
10
10
|
|
|
@@ -16,6 +16,14 @@ Start the engine in debug mode.
|
|
|
16
16
|
|
|
17
17
|
***
|
|
18
18
|
|
|
19
|
+
### silent?
|
|
20
|
+
|
|
21
|
+
> `optional` **silent**: `string`
|
|
22
|
+
|
|
23
|
+
Start the engine in silent mode.
|
|
24
|
+
|
|
25
|
+
***
|
|
26
|
+
|
|
19
27
|
### storageFileRoot?
|
|
20
28
|
|
|
21
29
|
> `optional` **storageFileRoot**: `string`
|
|
@@ -32,6 +40,22 @@ The name of the state file.
|
|
|
32
40
|
|
|
33
41
|
***
|
|
34
42
|
|
|
43
|
+
### nodeIdentityEnabled?
|
|
44
|
+
|
|
45
|
+
> `optional` **nodeIdentityEnabled**: `string`
|
|
46
|
+
|
|
47
|
+
Does the node have a unique ID, defaults to true.
|
|
48
|
+
|
|
49
|
+
***
|
|
50
|
+
|
|
51
|
+
### tenantEnabled?
|
|
52
|
+
|
|
53
|
+
> `optional` **tenantEnabled**: `string`
|
|
54
|
+
|
|
55
|
+
Is multi-tenant support enabled, defaults to false.
|
|
56
|
+
|
|
57
|
+
***
|
|
58
|
+
|
|
35
59
|
### entityStorageConnectorType?
|
|
36
60
|
|
|
37
61
|
> `optional` **entityStorageConnectorType**: `string`
|
|
@@ -57,6 +81,14 @@ A prefix for all the table in entity-storage, can be empty.
|
|
|
57
81
|
|
|
58
82
|
***
|
|
59
83
|
|
|
84
|
+
### awsDynamodbAuthMode?
|
|
85
|
+
|
|
86
|
+
> `optional` **awsDynamodbAuthMode**: `string`
|
|
87
|
+
|
|
88
|
+
AWS DynamoDB auth mode, either credentials or pod.
|
|
89
|
+
|
|
90
|
+
***
|
|
91
|
+
|
|
60
92
|
### awsDynamodbAccessKeyId?
|
|
61
93
|
|
|
62
94
|
> `optional` **awsDynamodbAccessKeyId**: `string`
|
|
@@ -89,6 +121,14 @@ AWS Dynamo DB secret access key.
|
|
|
89
121
|
|
|
90
122
|
***
|
|
91
123
|
|
|
124
|
+
### awsDynamodbConnectionTimeoutMs?
|
|
125
|
+
|
|
126
|
+
> `optional` **awsDynamodbConnectionTimeoutMs**: `string`
|
|
127
|
+
|
|
128
|
+
AWS Dynamo DB connection timeout.
|
|
129
|
+
|
|
130
|
+
***
|
|
131
|
+
|
|
92
132
|
### azureCosmosdbKey?
|
|
93
133
|
|
|
94
134
|
> `optional` **azureCosmosdbKey**: `string`
|
|
@@ -370,15 +410,6 @@ The id of the encryption key for the blob storage.
|
|
|
370
410
|
|
|
371
411
|
***
|
|
372
412
|
|
|
373
|
-
### blobStorageSymmetricEncryptionKey?
|
|
374
|
-
|
|
375
|
-
> `optional` **blobStorageSymmetricEncryptionKey**: `string`
|
|
376
|
-
|
|
377
|
-
A symmetric encryption key for the blob storage, should be ChaCha20Poly1305 in base64 format.
|
|
378
|
-
If encryption is enabled but a key is not provided one will be generated.
|
|
379
|
-
|
|
380
|
-
***
|
|
381
|
-
|
|
382
413
|
### blobStoragePrefix?
|
|
383
414
|
|
|
384
415
|
> `optional` **blobStoragePrefix**: `string`
|
|
@@ -387,11 +418,11 @@ A prefix for all the blobs in blob-storage, can be empty.
|
|
|
387
418
|
|
|
388
419
|
***
|
|
389
420
|
|
|
390
|
-
###
|
|
421
|
+
### awsS3Region?
|
|
391
422
|
|
|
392
|
-
> `optional` **
|
|
423
|
+
> `optional` **awsS3Region**: `string`
|
|
393
424
|
|
|
394
|
-
AWS S3
|
|
425
|
+
AWS S3 region.
|
|
395
426
|
|
|
396
427
|
***
|
|
397
428
|
|
|
@@ -403,19 +434,19 @@ AWS S3 bucket name.
|
|
|
403
434
|
|
|
404
435
|
***
|
|
405
436
|
|
|
406
|
-
###
|
|
437
|
+
### awsS3AuthMode?
|
|
407
438
|
|
|
408
|
-
> `optional` **
|
|
439
|
+
> `optional` **awsS3AuthMode**: `string`
|
|
409
440
|
|
|
410
|
-
AWS S3
|
|
441
|
+
AWS S3 auth mode, either credentials or pod, defaults to credentials.
|
|
411
442
|
|
|
412
443
|
***
|
|
413
444
|
|
|
414
|
-
###
|
|
445
|
+
### awsS3AccessKeyId?
|
|
415
446
|
|
|
416
|
-
> `optional` **
|
|
447
|
+
> `optional` **awsS3AccessKeyId**: `string`
|
|
417
448
|
|
|
418
|
-
AWS S3
|
|
449
|
+
AWS S3 access key id.
|
|
419
450
|
|
|
420
451
|
***
|
|
421
452
|
|
|
@@ -427,6 +458,14 @@ AWS S3 secret access key.
|
|
|
427
458
|
|
|
428
459
|
***
|
|
429
460
|
|
|
461
|
+
### awsS3Endpoint?
|
|
462
|
+
|
|
463
|
+
> `optional` **awsS3Endpoint**: `string`
|
|
464
|
+
|
|
465
|
+
AWS S3 endpoint.
|
|
466
|
+
|
|
467
|
+
***
|
|
468
|
+
|
|
430
469
|
### azureStorageAccountKey?
|
|
431
470
|
|
|
432
471
|
> `optional` **azureStorageAccountKey**: `string`
|
|
@@ -519,15 +558,7 @@ Hashicorp Vault endpoint.
|
|
|
519
558
|
|
|
520
559
|
> `optional` **loggingConnector**: `string`
|
|
521
560
|
|
|
522
|
-
The type of
|
|
523
|
-
|
|
524
|
-
***
|
|
525
|
-
|
|
526
|
-
### backgroundTaskConnector?
|
|
527
|
-
|
|
528
|
-
> `optional` **backgroundTaskConnector**: `string`
|
|
529
|
-
|
|
530
|
-
The type of background task connector: entity-storage.
|
|
561
|
+
The type of logging task connector, can be a comma separated list: console, entity-storage.
|
|
531
562
|
|
|
532
563
|
***
|
|
533
564
|
|
|
@@ -547,27 +578,51 @@ The type of event bus component: service.
|
|
|
547
578
|
|
|
548
579
|
***
|
|
549
580
|
|
|
550
|
-
###
|
|
581
|
+
### messagingEnabled?
|
|
551
582
|
|
|
552
|
-
> `optional` **
|
|
583
|
+
> `optional` **messagingEnabled**: `string`
|
|
553
584
|
|
|
554
|
-
|
|
585
|
+
Are the messaging components enabled, defaults to false.
|
|
555
586
|
|
|
556
587
|
***
|
|
557
588
|
|
|
558
|
-
###
|
|
589
|
+
### awsSesRegion?
|
|
559
590
|
|
|
560
|
-
> `optional` **
|
|
591
|
+
> `optional` **awsSesRegion**: `string`
|
|
561
592
|
|
|
562
|
-
|
|
593
|
+
AWS SES region.
|
|
563
594
|
|
|
564
595
|
***
|
|
565
596
|
|
|
566
|
-
###
|
|
597
|
+
### awsSesAuthMode?
|
|
567
598
|
|
|
568
|
-
> `optional` **
|
|
599
|
+
> `optional` **awsSesAuthMode**: `string`
|
|
569
600
|
|
|
570
|
-
|
|
601
|
+
AWS SES auth mode, either credentials or pod, defaults to credentials.
|
|
602
|
+
|
|
603
|
+
***
|
|
604
|
+
|
|
605
|
+
### awsSesSecretAccessKey?
|
|
606
|
+
|
|
607
|
+
> `optional` **awsSesSecretAccessKey**: `string`
|
|
608
|
+
|
|
609
|
+
AWS SES secret access key.
|
|
610
|
+
|
|
611
|
+
***
|
|
612
|
+
|
|
613
|
+
### awsSesAccessKeyId?
|
|
614
|
+
|
|
615
|
+
> `optional` **awsSesAccessKeyId**: `string`
|
|
616
|
+
|
|
617
|
+
AWS SES access key id.
|
|
618
|
+
|
|
619
|
+
***
|
|
620
|
+
|
|
621
|
+
### awsSesEndpoint?
|
|
622
|
+
|
|
623
|
+
> `optional` **awsSesEndpoint**: `string`
|
|
624
|
+
|
|
625
|
+
AWS SES endpoint.
|
|
571
626
|
|
|
572
627
|
***
|
|
573
628
|
|
|
@@ -579,11 +634,27 @@ The applications for the push notifications JSON stringified array of IAwsApplic
|
|
|
579
634
|
|
|
580
635
|
***
|
|
581
636
|
|
|
582
|
-
###
|
|
637
|
+
### messagingEmailConnector?
|
|
583
638
|
|
|
584
|
-
> `optional` **
|
|
639
|
+
> `optional` **messagingEmailConnector**: `string`
|
|
585
640
|
|
|
586
|
-
The type of messaging
|
|
641
|
+
The type of messaging email connector: entity-storage, aws.
|
|
642
|
+
|
|
643
|
+
***
|
|
644
|
+
|
|
645
|
+
### messagingSmsConnector?
|
|
646
|
+
|
|
647
|
+
> `optional` **messagingSmsConnector**: `string`
|
|
648
|
+
|
|
649
|
+
The type of messaging sms connector: entity-storage, aws.
|
|
650
|
+
|
|
651
|
+
***
|
|
652
|
+
|
|
653
|
+
### messagingPushNotificationConnector?
|
|
654
|
+
|
|
655
|
+
> `optional` **messagingPushNotificationConnector**: `string`
|
|
656
|
+
|
|
657
|
+
The type of messaging push notification connector: entity-storage, aws.
|
|
587
658
|
|
|
588
659
|
***
|
|
589
660
|
|
|
@@ -627,6 +698,14 @@ The type of identity connector: entity-storage, iota.
|
|
|
627
698
|
|
|
628
699
|
***
|
|
629
700
|
|
|
701
|
+
### identityWalletAddressIndex?
|
|
702
|
+
|
|
703
|
+
> `optional` **identityWalletAddressIndex**: `string`
|
|
704
|
+
|
|
705
|
+
The index of the wallet address to use, defaults to 0.
|
|
706
|
+
|
|
707
|
+
***
|
|
708
|
+
|
|
630
709
|
### identityResolverConnector?
|
|
631
710
|
|
|
632
711
|
> `optional` **identityResolverConnector**: `string`
|
|
@@ -739,6 +818,14 @@ The identity verification method id to use with attestation.
|
|
|
739
818
|
|
|
740
819
|
***
|
|
741
820
|
|
|
821
|
+
### dataProcessingEnabled?
|
|
822
|
+
|
|
823
|
+
> `optional` **dataProcessingEnabled**: `string`
|
|
824
|
+
|
|
825
|
+
Is the data processing enabled, defaults to false.
|
|
826
|
+
|
|
827
|
+
***
|
|
828
|
+
|
|
742
829
|
### dataConverterConnectors?
|
|
743
830
|
|
|
744
831
|
> `optional` **dataConverterConnectors**: `string`
|
|
@@ -755,6 +842,30 @@ The type of the default data extractor, can be a comma separated list: json-path
|
|
|
755
842
|
|
|
756
843
|
***
|
|
757
844
|
|
|
845
|
+
### auditableItemGraphEnabled?
|
|
846
|
+
|
|
847
|
+
> `optional` **auditableItemGraphEnabled**: `string`
|
|
848
|
+
|
|
849
|
+
Is the auditable item graph enabled, defaults to false.
|
|
850
|
+
|
|
851
|
+
***
|
|
852
|
+
|
|
853
|
+
### auditableItemStreamEnabled?
|
|
854
|
+
|
|
855
|
+
> `optional` **auditableItemStreamEnabled**: `string`
|
|
856
|
+
|
|
857
|
+
Is the auditable item stream enabled, defaults to false.
|
|
858
|
+
|
|
859
|
+
***
|
|
860
|
+
|
|
861
|
+
### documentManagementEnabled?
|
|
862
|
+
|
|
863
|
+
> `optional` **documentManagementEnabled**: `string`
|
|
864
|
+
|
|
865
|
+
Is the document management enabled, defaults to false.
|
|
866
|
+
|
|
867
|
+
***
|
|
868
|
+
|
|
758
869
|
### synchronisedStorageEnabled?
|
|
759
870
|
|
|
760
871
|
> `optional` **synchronisedStorageEnabled**: `string`
|
|
@@ -776,16 +887,7 @@ Url which points to the api for a trusted synchronised storage node, not require
|
|
|
776
887
|
> `optional` **synchronisedStorageVerifiableStorageKeyId**: `string`
|
|
777
888
|
|
|
778
889
|
The key for the smart contract which contains the verifiable storage pointer store for synchronised storage.
|
|
779
|
-
This only required if using a custom verifiable storage item, otherwise it will default
|
|
780
|
-
|
|
781
|
-
***
|
|
782
|
-
|
|
783
|
-
### synchronisedStorageVerificationMethodId?
|
|
784
|
-
|
|
785
|
-
> `optional` **synchronisedStorageVerificationMethodId**: `string`
|
|
786
|
-
|
|
787
|
-
The identity verification method id to use with synchronised storage for signing/verifying changesets.
|
|
788
|
-
Defaults to synchronised-storage-assertion.
|
|
890
|
+
This only required if using a custom verifiable storage item, otherwise it will default to the network name.
|
|
789
891
|
|
|
790
892
|
***
|
|
791
893
|
|
|
@@ -872,19 +974,44 @@ Is the federated catalogue enabled, defaults to false.
|
|
|
872
974
|
|
|
873
975
|
***
|
|
874
976
|
|
|
875
|
-
###
|
|
977
|
+
### federatedCatalogueFilters?
|
|
978
|
+
|
|
979
|
+
> `optional` **federatedCatalogueFilters**: `string`
|
|
980
|
+
|
|
981
|
+
Federated catalog filters, command separated list of filters to add.
|
|
982
|
+
|
|
983
|
+
***
|
|
984
|
+
|
|
985
|
+
### trustEnabled?
|
|
986
|
+
|
|
987
|
+
> `optional` **trustEnabled**: `string`
|
|
988
|
+
|
|
989
|
+
Is the trust management enabled, defaults to false.
|
|
990
|
+
|
|
991
|
+
***
|
|
992
|
+
|
|
993
|
+
### trustGenerators?
|
|
994
|
+
|
|
995
|
+
> `optional` **trustGenerators**: `string`
|
|
996
|
+
|
|
997
|
+
The trust generators to add to the factory, comma separated list.
|
|
998
|
+
|
|
999
|
+
***
|
|
1000
|
+
|
|
1001
|
+
### trustVerifiers?
|
|
876
1002
|
|
|
877
|
-
> `optional` **
|
|
1003
|
+
> `optional` **trustVerifiers**: `string`
|
|
878
1004
|
|
|
879
|
-
|
|
1005
|
+
The trust verifiers to add to the factory, comma separated list.
|
|
880
1006
|
|
|
881
1007
|
***
|
|
882
1008
|
|
|
883
|
-
###
|
|
1009
|
+
### trustVerificationMethodId?
|
|
884
1010
|
|
|
885
|
-
> `optional` **
|
|
1011
|
+
> `optional` **trustVerificationMethodId**: `string`
|
|
886
1012
|
|
|
887
|
-
|
|
1013
|
+
The verification method to use for trust identities.
|
|
1014
|
+
Defaults to node-authentication-assertion.
|
|
888
1015
|
|
|
889
1016
|
***
|
|
890
1017
|
|
|
@@ -896,6 +1023,78 @@ Is the rights management enabled, defaults to false.
|
|
|
896
1023
|
|
|
897
1024
|
***
|
|
898
1025
|
|
|
1026
|
+
### rightsManagementBaseCallbackUrl?
|
|
1027
|
+
|
|
1028
|
+
> `optional` **rightsManagementBaseCallbackUrl**: `string`
|
|
1029
|
+
|
|
1030
|
+
What is the base callback url for rights management negotiations e.g. https://my-node/rights-management.
|
|
1031
|
+
|
|
1032
|
+
***
|
|
1033
|
+
|
|
1034
|
+
### rightsManagementPolicyInformationSources?
|
|
1035
|
+
|
|
1036
|
+
> `optional` **rightsManagementPolicyInformationSources**: `string`
|
|
1037
|
+
|
|
1038
|
+
The rights management policy information sources to add to the factory.
|
|
1039
|
+
|
|
1040
|
+
***
|
|
1041
|
+
|
|
1042
|
+
### rightsManagementPolicyNegotiators?
|
|
1043
|
+
|
|
1044
|
+
> `optional` **rightsManagementPolicyNegotiators**: `string`
|
|
1045
|
+
|
|
1046
|
+
The rights management policy negotiators sources to add to the factory.
|
|
1047
|
+
|
|
1048
|
+
***
|
|
1049
|
+
|
|
1050
|
+
### rightsManagementPolicyRequesters?
|
|
1051
|
+
|
|
1052
|
+
> `optional` **rightsManagementPolicyRequesters**: `string`
|
|
1053
|
+
|
|
1054
|
+
The rights management policy requesters to add to the factory.
|
|
1055
|
+
|
|
1056
|
+
***
|
|
1057
|
+
|
|
1058
|
+
### rightsManagementPolicyExecutionActions?
|
|
1059
|
+
|
|
1060
|
+
> `optional` **rightsManagementPolicyExecutionActions**: `string`
|
|
1061
|
+
|
|
1062
|
+
The rights management policy execution actions to add to the factory.
|
|
1063
|
+
|
|
1064
|
+
***
|
|
1065
|
+
|
|
1066
|
+
### rightsManagementPolicyEnforcementProcessors?
|
|
1067
|
+
|
|
1068
|
+
> `optional` **rightsManagementPolicyEnforcementProcessors**: `string`
|
|
1069
|
+
|
|
1070
|
+
The rights management policy enforcement processors to add to the factory.
|
|
1071
|
+
|
|
1072
|
+
***
|
|
1073
|
+
|
|
1074
|
+
### rightsManagementPolicyArbiters?
|
|
1075
|
+
|
|
1076
|
+
> `optional` **rightsManagementPolicyArbiters**: `string`
|
|
1077
|
+
|
|
1078
|
+
The rights management policy arbiters to add to the factory.
|
|
1079
|
+
|
|
1080
|
+
***
|
|
1081
|
+
|
|
1082
|
+
### rightsManagementDataAccessHandlers?
|
|
1083
|
+
|
|
1084
|
+
> `optional` **rightsManagementDataAccessHandlers**: `string`
|
|
1085
|
+
|
|
1086
|
+
The rights management data access handlers to add to the factory.
|
|
1087
|
+
|
|
1088
|
+
***
|
|
1089
|
+
|
|
1090
|
+
### backgroundTasksEnabled?
|
|
1091
|
+
|
|
1092
|
+
> `optional` **backgroundTasksEnabled**: `string`
|
|
1093
|
+
|
|
1094
|
+
Are background tasks enabled, defaults to false.
|
|
1095
|
+
|
|
1096
|
+
***
|
|
1097
|
+
|
|
899
1098
|
### taskSchedulerEnabled?
|
|
900
1099
|
|
|
901
1100
|
> `optional` **taskSchedulerEnabled**: `string`
|
|
@@ -912,9 +1111,53 @@ Is the data space connector enabled, defaults to false.
|
|
|
912
1111
|
|
|
913
1112
|
***
|
|
914
1113
|
|
|
915
|
-
###
|
|
1114
|
+
### dataSpaceConnectorRetainActivityLogsFor?
|
|
1115
|
+
|
|
1116
|
+
> `optional` **dataSpaceConnectorRetainActivityLogsFor**: `string`
|
|
1117
|
+
|
|
1118
|
+
The length of time to retain the activity logs for in minutes, set to -1 to keep forever.
|
|
1119
|
+
|
|
1120
|
+
#### Default
|
|
1121
|
+
|
|
1122
|
+
```ts
|
|
1123
|
+
10
|
|
1124
|
+
```
|
|
1125
|
+
|
|
1126
|
+
***
|
|
1127
|
+
|
|
1128
|
+
### dataSpaceConnectorActivityLogsCleanUpInterval?
|
|
1129
|
+
|
|
1130
|
+
> `optional` **dataSpaceConnectorActivityLogsCleanUpInterval**: `string`
|
|
1131
|
+
|
|
1132
|
+
The interval for cleaning up the activity logs.
|
|
1133
|
+
|
|
1134
|
+
#### Default
|
|
1135
|
+
|
|
1136
|
+
```ts
|
|
1137
|
+
60
|
|
1138
|
+
```
|
|
1139
|
+
|
|
1140
|
+
***
|
|
1141
|
+
|
|
1142
|
+
### vcAuthenticationEnabled?
|
|
1143
|
+
|
|
1144
|
+
> `optional` **vcAuthenticationEnabled**: `string`
|
|
1145
|
+
|
|
1146
|
+
Enable verifiable credential authentication for the API.
|
|
1147
|
+
|
|
1148
|
+
***
|
|
1149
|
+
|
|
1150
|
+
### vcAuthenticationVerificationMethodId?
|
|
1151
|
+
|
|
1152
|
+
> `optional` **vcAuthenticationVerificationMethodId**: `string`
|
|
1153
|
+
|
|
1154
|
+
Verifiable credential assertion for node to node communication.
|
|
1155
|
+
Defaults to node-authentication-assertion.
|
|
1156
|
+
|
|
1157
|
+
***
|
|
1158
|
+
|
|
1159
|
+
### extensions?
|
|
916
1160
|
|
|
917
|
-
> `optional` **
|
|
1161
|
+
> `optional` **extensions**: `string`
|
|
918
1162
|
|
|
919
|
-
|
|
920
|
-
Use the @json: prefix to specify the path to the JSON configuration file.
|
|
1163
|
+
A comma separated list of additional node extensions to load, the initialiseExtension method will be called for each extension.
|