@twin.org/engine 0.0.1-next.17 → 0.0.1-next.19

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.
@@ -75,31 +75,7 @@ function buildEngineConfiguration(envVars) {
75
75
  envVars.blobStorageEncryptionKey ??= "blob-encryption";
76
76
  const coreConfig = {
77
77
  debug: core.Coerce.boolean(envVars.debug) ?? false,
78
- types: {
79
- loggingConnector: [],
80
- loggingComponent: [],
81
- entityStorageConnector: [],
82
- blobStorageConnector: [],
83
- blobStorageComponent: [],
84
- backgroundTaskConnector: [],
85
- telemetryConnector: [],
86
- telemetryComponent: [],
87
- vaultConnector: [],
88
- walletConnector: [],
89
- faucetConnector: [],
90
- immutableStorageConnector: [],
91
- nftConnector: [],
92
- nftComponent: [],
93
- identityConnector: [],
94
- identityComponent: [],
95
- identityProfileConnector: [],
96
- identityProfileComponent: [],
97
- immutableProofComponent: [],
98
- attestationConnector: [],
99
- attestationComponent: [],
100
- auditableItemGraphComponent: [],
101
- auditableItemStreamComponent: [{ type: engineTypes.AuditableItemStreamComponentType.Service }]
102
- }
78
+ types: {}
103
79
  };
104
80
  configureEntityStorageConnectors(coreConfig, envVars);
105
81
  configureBlobStorageConnectors(coreConfig, envVars);
@@ -1,7 +1,7 @@
1
1
  import { EngineCore } from '@twin.org/engine-core';
2
2
  import path from 'node:path';
3
3
  import { Is, Coerce } from '@twin.org/core';
4
- import { AuditableItemStreamComponentType, EntityStorageConnectorType, BlobStorageConnectorType, BlobStorageComponentType, LoggingConnectorType, LoggingComponentType, VaultConnectorType, BackgroundTaskConnectorType, TelemetryConnectorType, TelemetryComponentType, FaucetConnectorType, WalletConnectorType, NftConnectorType, NftComponentType, ImmutableStorageConnectorType, ImmutableProofComponentType, AuditableItemGraphComponentType, IdentityConnectorType, IdentityComponentType, IdentityProfileConnectorType, IdentityProfileComponentType, AttestationConnectorType, AttestationComponentType } from '@twin.org/engine-types';
4
+ import { EntityStorageConnectorType, BlobStorageConnectorType, BlobStorageComponentType, LoggingConnectorType, LoggingComponentType, VaultConnectorType, BackgroundTaskConnectorType, TelemetryConnectorType, TelemetryComponentType, FaucetConnectorType, WalletConnectorType, NftConnectorType, NftComponentType, ImmutableStorageConnectorType, ImmutableProofComponentType, AuditableItemGraphComponentType, AuditableItemStreamComponentType, IdentityConnectorType, IdentityComponentType, IdentityProfileConnectorType, IdentityProfileComponentType, AttestationConnectorType, AttestationComponentType } from '@twin.org/engine-types';
5
5
 
6
6
  // Copyright 2024 IOTA Stiftung.
7
7
  // SPDX-License-Identifier: Apache-2.0.
@@ -73,31 +73,7 @@ function buildEngineConfiguration(envVars) {
73
73
  envVars.blobStorageEncryptionKey ??= "blob-encryption";
74
74
  const coreConfig = {
75
75
  debug: Coerce.boolean(envVars.debug) ?? false,
76
- types: {
77
- loggingConnector: [],
78
- loggingComponent: [],
79
- entityStorageConnector: [],
80
- blobStorageConnector: [],
81
- blobStorageComponent: [],
82
- backgroundTaskConnector: [],
83
- telemetryConnector: [],
84
- telemetryComponent: [],
85
- vaultConnector: [],
86
- walletConnector: [],
87
- faucetConnector: [],
88
- immutableStorageConnector: [],
89
- nftConnector: [],
90
- nftComponent: [],
91
- identityConnector: [],
92
- identityComponent: [],
93
- identityProfileConnector: [],
94
- identityProfileComponent: [],
95
- immutableProofComponent: [],
96
- attestationConnector: [],
97
- attestationComponent: [],
98
- auditableItemGraphComponent: [],
99
- auditableItemStreamComponent: [{ type: AuditableItemStreamComponentType.Service }]
100
- }
76
+ types: {}
101
77
  };
102
78
  configureEntityStorageConnectors(coreConfig, envVars);
103
79
  configureBlobStorageConnectors(coreConfig, envVars);
package/docs/changelog.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # @twin.org/engine - Changelog
2
2
 
3
- ## v0.0.1-next.17
3
+ ## v0.0.1-next.19
4
4
 
5
5
  - Initial Release
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/engine",
3
- "version": "0.0.1-next.17",
3
+ "version": "0.0.1-next.19",
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.17",
19
- "@twin.org/engine-types": "0.0.1-next.17"
18
+ "@twin.org/engine-core": "0.0.1-next.19",
19
+ "@twin.org/engine-types": "0.0.1-next.19"
20
20
  },
21
21
  "main": "./dist/cjs/index.cjs",
22
22
  "module": "./dist/esm/index.mjs",