@twin.org/engine 0.0.1-next.21 → 0.0.1-next.23
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 +26 -26
- package/dist/esm/index.mjs +26 -26
- package/docs/changelog.md +1 -1
- package/package.json +3 -3
package/dist/cjs/index.cjs
CHANGED
|
@@ -21,37 +21,37 @@ class Engine extends engineCore.EngineCore {
|
|
|
21
21
|
*/
|
|
22
22
|
constructor(options) {
|
|
23
23
|
super(options);
|
|
24
|
-
this.addCoreTypeInitialisers(
|
|
24
|
+
this.addCoreTypeInitialisers();
|
|
25
25
|
}
|
|
26
26
|
/**
|
|
27
27
|
* Add the core type initializers.
|
|
28
28
|
* @internal
|
|
29
29
|
*/
|
|
30
|
-
addCoreTypeInitialisers(
|
|
31
|
-
this.addTypeInitialiser("loggingConnector",
|
|
32
|
-
this.addTypeInitialiser("loggingComponent",
|
|
33
|
-
this.addTypeInitialiser("backgroundTaskConnector",
|
|
34
|
-
this.addTypeInitialiser("telemetryConnector",
|
|
35
|
-
this.addTypeInitialiser("telemetryComponent",
|
|
36
|
-
this.addTypeInitialiser("entityStorageComponent",
|
|
37
|
-
this.addTypeInitialiser("vaultConnector",
|
|
38
|
-
this.addTypeInitialiser("blobStorageConnector",
|
|
39
|
-
this.addTypeInitialiser("blobStorageComponent",
|
|
40
|
-
this.addTypeInitialiser("immutableStorageConnector",
|
|
41
|
-
this.addTypeInitialiser("walletConnector",
|
|
42
|
-
this.addTypeInitialiser("faucetConnector",
|
|
43
|
-
this.addTypeInitialiser("walletConnector",
|
|
44
|
-
this.addTypeInitialiser("identityConnector",
|
|
45
|
-
this.addTypeInitialiser("identityComponent",
|
|
46
|
-
this.addTypeInitialiser("identityProfileConnector",
|
|
47
|
-
this.addTypeInitialiser("identityProfileComponent",
|
|
48
|
-
this.addTypeInitialiser("nftConnector",
|
|
49
|
-
this.addTypeInitialiser("nftComponent",
|
|
50
|
-
this.addTypeInitialiser("immutableProofComponent",
|
|
51
|
-
this.addTypeInitialiser("attestationConnector",
|
|
52
|
-
this.addTypeInitialiser("attestationComponent",
|
|
53
|
-
this.addTypeInitialiser("auditableItemGraphComponent",
|
|
54
|
-
this.addTypeInitialiser("auditableItemStreamComponent",
|
|
30
|
+
addCoreTypeInitialisers() {
|
|
31
|
+
this.addTypeInitialiser("loggingConnector", this._context.config.types.loggingConnector, "@twin.org/engine-types", "initialiseLoggingConnector");
|
|
32
|
+
this.addTypeInitialiser("loggingComponent", this._context.config.types.loggingComponent, "@twin.org/engine-types", "initialiseLoggingComponent");
|
|
33
|
+
this.addTypeInitialiser("backgroundTaskConnector", this._context.config.types.backgroundTaskConnector, "@twin.org/engine-types", "initialiseBackgroundTaskConnector");
|
|
34
|
+
this.addTypeInitialiser("telemetryConnector", this._context.config.types.telemetryConnector, "@twin.org/engine-types", "initialiseTelemetryConnector");
|
|
35
|
+
this.addTypeInitialiser("telemetryComponent", this._context.config.types.telemetryComponent, "@twin.org/engine-types", "initialiseTelemetryComponent");
|
|
36
|
+
this.addTypeInitialiser("entityStorageComponent", this._context.config.types.entityStorageComponent, "@twin.org/engine-types", "initialiseEntityStorageComponent");
|
|
37
|
+
this.addTypeInitialiser("vaultConnector", this._context.config.types.vaultConnector, "@twin.org/engine-types", "initialiseVaultConnector");
|
|
38
|
+
this.addTypeInitialiser("blobStorageConnector", this._context.config.types.blobStorageConnector, "@twin.org/engine-types", "initialiseBlobStorageConnector");
|
|
39
|
+
this.addTypeInitialiser("blobStorageComponent", this._context.config.types.blobStorageComponent, "@twin.org/engine-types", "initialiseBlobStorageComponent");
|
|
40
|
+
this.addTypeInitialiser("immutableStorageConnector", this._context.config.types.immutableStorageConnector, "@twin.org/engine-types", "initialiseImmutableStorageConnector");
|
|
41
|
+
this.addTypeInitialiser("walletConnector", this._context.config.types.walletConnector, "@twin.org/engine-types", "initialiseWalletStorage");
|
|
42
|
+
this.addTypeInitialiser("faucetConnector", this._context.config.types.faucetConnector, "@twin.org/engine-types", "initialiseFaucetConnector");
|
|
43
|
+
this.addTypeInitialiser("walletConnector", this._context.config.types.walletConnector, "@twin.org/engine-types", "initialiseWalletConnector");
|
|
44
|
+
this.addTypeInitialiser("identityConnector", this._context.config.types.identityConnector, "@twin.org/engine-types", "initialiseIdentityConnector");
|
|
45
|
+
this.addTypeInitialiser("identityComponent", this._context.config.types.identityComponent, "@twin.org/engine-types", "initialiseIdentityComponent");
|
|
46
|
+
this.addTypeInitialiser("identityProfileConnector", this._context.config.types.identityProfileConnector, "@twin.org/engine-types", "initialiseIdentityProfileConnector");
|
|
47
|
+
this.addTypeInitialiser("identityProfileComponent", this._context.config.types.identityProfileComponent, "@twin.org/engine-types", "initialiseIdentityProfileComponent");
|
|
48
|
+
this.addTypeInitialiser("nftConnector", this._context.config.types.nftConnector, "@twin.org/engine-types", "initialiseNftConnector");
|
|
49
|
+
this.addTypeInitialiser("nftComponent", this._context.config.types.nftComponent, "@twin.org/engine-types", "initialiseNftComponent");
|
|
50
|
+
this.addTypeInitialiser("immutableProofComponent", this._context.config.types.immutableProofComponent, "@twin.org/engine-types", "initialiseImmutableProofComponent");
|
|
51
|
+
this.addTypeInitialiser("attestationConnector", this._context.config.types.attestationConnector, "@twin.org/engine-types", "initialiseAttestationConnector");
|
|
52
|
+
this.addTypeInitialiser("attestationComponent", this._context.config.types.attestationComponent, "@twin.org/engine-types", "initialiseAttestationComponent");
|
|
53
|
+
this.addTypeInitialiser("auditableItemGraphComponent", this._context.config.types.auditableItemGraphComponent, "@twin.org/engine-types", "initialiseAuditableItemGraphComponent");
|
|
54
|
+
this.addTypeInitialiser("auditableItemStreamComponent", this._context.config.types.auditableItemStreamComponent, "@twin.org/engine-types", "initialiseAuditableItemStreamComponent");
|
|
55
55
|
}
|
|
56
56
|
}
|
|
57
57
|
|
package/dist/esm/index.mjs
CHANGED
|
@@ -19,37 +19,37 @@ class Engine extends EngineCore {
|
|
|
19
19
|
*/
|
|
20
20
|
constructor(options) {
|
|
21
21
|
super(options);
|
|
22
|
-
this.addCoreTypeInitialisers(
|
|
22
|
+
this.addCoreTypeInitialisers();
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* Add the core type initializers.
|
|
26
26
|
* @internal
|
|
27
27
|
*/
|
|
28
|
-
addCoreTypeInitialisers(
|
|
29
|
-
this.addTypeInitialiser("loggingConnector",
|
|
30
|
-
this.addTypeInitialiser("loggingComponent",
|
|
31
|
-
this.addTypeInitialiser("backgroundTaskConnector",
|
|
32
|
-
this.addTypeInitialiser("telemetryConnector",
|
|
33
|
-
this.addTypeInitialiser("telemetryComponent",
|
|
34
|
-
this.addTypeInitialiser("entityStorageComponent",
|
|
35
|
-
this.addTypeInitialiser("vaultConnector",
|
|
36
|
-
this.addTypeInitialiser("blobStorageConnector",
|
|
37
|
-
this.addTypeInitialiser("blobStorageComponent",
|
|
38
|
-
this.addTypeInitialiser("immutableStorageConnector",
|
|
39
|
-
this.addTypeInitialiser("walletConnector",
|
|
40
|
-
this.addTypeInitialiser("faucetConnector",
|
|
41
|
-
this.addTypeInitialiser("walletConnector",
|
|
42
|
-
this.addTypeInitialiser("identityConnector",
|
|
43
|
-
this.addTypeInitialiser("identityComponent",
|
|
44
|
-
this.addTypeInitialiser("identityProfileConnector",
|
|
45
|
-
this.addTypeInitialiser("identityProfileComponent",
|
|
46
|
-
this.addTypeInitialiser("nftConnector",
|
|
47
|
-
this.addTypeInitialiser("nftComponent",
|
|
48
|
-
this.addTypeInitialiser("immutableProofComponent",
|
|
49
|
-
this.addTypeInitialiser("attestationConnector",
|
|
50
|
-
this.addTypeInitialiser("attestationComponent",
|
|
51
|
-
this.addTypeInitialiser("auditableItemGraphComponent",
|
|
52
|
-
this.addTypeInitialiser("auditableItemStreamComponent",
|
|
28
|
+
addCoreTypeInitialisers() {
|
|
29
|
+
this.addTypeInitialiser("loggingConnector", this._context.config.types.loggingConnector, "@twin.org/engine-types", "initialiseLoggingConnector");
|
|
30
|
+
this.addTypeInitialiser("loggingComponent", this._context.config.types.loggingComponent, "@twin.org/engine-types", "initialiseLoggingComponent");
|
|
31
|
+
this.addTypeInitialiser("backgroundTaskConnector", this._context.config.types.backgroundTaskConnector, "@twin.org/engine-types", "initialiseBackgroundTaskConnector");
|
|
32
|
+
this.addTypeInitialiser("telemetryConnector", this._context.config.types.telemetryConnector, "@twin.org/engine-types", "initialiseTelemetryConnector");
|
|
33
|
+
this.addTypeInitialiser("telemetryComponent", this._context.config.types.telemetryComponent, "@twin.org/engine-types", "initialiseTelemetryComponent");
|
|
34
|
+
this.addTypeInitialiser("entityStorageComponent", this._context.config.types.entityStorageComponent, "@twin.org/engine-types", "initialiseEntityStorageComponent");
|
|
35
|
+
this.addTypeInitialiser("vaultConnector", this._context.config.types.vaultConnector, "@twin.org/engine-types", "initialiseVaultConnector");
|
|
36
|
+
this.addTypeInitialiser("blobStorageConnector", this._context.config.types.blobStorageConnector, "@twin.org/engine-types", "initialiseBlobStorageConnector");
|
|
37
|
+
this.addTypeInitialiser("blobStorageComponent", this._context.config.types.blobStorageComponent, "@twin.org/engine-types", "initialiseBlobStorageComponent");
|
|
38
|
+
this.addTypeInitialiser("immutableStorageConnector", this._context.config.types.immutableStorageConnector, "@twin.org/engine-types", "initialiseImmutableStorageConnector");
|
|
39
|
+
this.addTypeInitialiser("walletConnector", this._context.config.types.walletConnector, "@twin.org/engine-types", "initialiseWalletStorage");
|
|
40
|
+
this.addTypeInitialiser("faucetConnector", this._context.config.types.faucetConnector, "@twin.org/engine-types", "initialiseFaucetConnector");
|
|
41
|
+
this.addTypeInitialiser("walletConnector", this._context.config.types.walletConnector, "@twin.org/engine-types", "initialiseWalletConnector");
|
|
42
|
+
this.addTypeInitialiser("identityConnector", this._context.config.types.identityConnector, "@twin.org/engine-types", "initialiseIdentityConnector");
|
|
43
|
+
this.addTypeInitialiser("identityComponent", this._context.config.types.identityComponent, "@twin.org/engine-types", "initialiseIdentityComponent");
|
|
44
|
+
this.addTypeInitialiser("identityProfileConnector", this._context.config.types.identityProfileConnector, "@twin.org/engine-types", "initialiseIdentityProfileConnector");
|
|
45
|
+
this.addTypeInitialiser("identityProfileComponent", this._context.config.types.identityProfileComponent, "@twin.org/engine-types", "initialiseIdentityProfileComponent");
|
|
46
|
+
this.addTypeInitialiser("nftConnector", this._context.config.types.nftConnector, "@twin.org/engine-types", "initialiseNftConnector");
|
|
47
|
+
this.addTypeInitialiser("nftComponent", this._context.config.types.nftComponent, "@twin.org/engine-types", "initialiseNftComponent");
|
|
48
|
+
this.addTypeInitialiser("immutableProofComponent", this._context.config.types.immutableProofComponent, "@twin.org/engine-types", "initialiseImmutableProofComponent");
|
|
49
|
+
this.addTypeInitialiser("attestationConnector", this._context.config.types.attestationConnector, "@twin.org/engine-types", "initialiseAttestationConnector");
|
|
50
|
+
this.addTypeInitialiser("attestationComponent", this._context.config.types.attestationComponent, "@twin.org/engine-types", "initialiseAttestationComponent");
|
|
51
|
+
this.addTypeInitialiser("auditableItemGraphComponent", this._context.config.types.auditableItemGraphComponent, "@twin.org/engine-types", "initialiseAuditableItemGraphComponent");
|
|
52
|
+
this.addTypeInitialiser("auditableItemStreamComponent", this._context.config.types.auditableItemStreamComponent, "@twin.org/engine-types", "initialiseAuditableItemStreamComponent");
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
55
|
|
package/docs/changelog.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/engine",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.23",
|
|
4
4
|
"description": "Engine implementation.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@twin.org/core": "next",
|
|
18
|
-
"@twin.org/engine-core": "0.0.1-next.
|
|
19
|
-
"@twin.org/engine-types": "0.0.1-next.
|
|
18
|
+
"@twin.org/engine-core": "0.0.1-next.23",
|
|
19
|
+
"@twin.org/engine-types": "0.0.1-next.23"
|
|
20
20
|
},
|
|
21
21
|
"main": "./dist/cjs/index.cjs",
|
|
22
22
|
"module": "./dist/esm/index.mjs",
|