@twin.org/engine 0.0.1-next.69 → 0.0.1-next.72
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
CHANGED
|
@@ -603,21 +603,6 @@ function configureFaucet(coreConfig, envVars) {
|
|
|
603
603
|
type: engineTypes.FaucetConnectorType.EntityStorage
|
|
604
604
|
});
|
|
605
605
|
}
|
|
606
|
-
else if (envVars.faucetConnector === engineTypes.FaucetConnectorType.IotaStardust) {
|
|
607
|
-
coreConfig.types.faucetConnector.push({
|
|
608
|
-
type: engineTypes.FaucetConnectorType.IotaStardust,
|
|
609
|
-
options: {
|
|
610
|
-
config: {
|
|
611
|
-
endpoint: envVars.iotaStardustFaucetEndpoint ?? "",
|
|
612
|
-
clientOptions: {
|
|
613
|
-
nodes: [envVars.iotaStardustNodeEndpoint ?? ""]
|
|
614
|
-
},
|
|
615
|
-
bech32Hrp: envVars.iotaStardustBech32Hrp,
|
|
616
|
-
coinType: core.Coerce.number(envVars.iotaStardustCoinType)
|
|
617
|
-
}
|
|
618
|
-
}
|
|
619
|
-
});
|
|
620
|
-
}
|
|
621
606
|
else if (envVars.faucetConnector === engineTypes.FaucetConnectorType.Iota) {
|
|
622
607
|
coreConfig.types.faucetConnector.push({
|
|
623
608
|
type: engineTypes.FaucetConnectorType.Iota,
|
|
@@ -646,20 +631,6 @@ function configureWallet(coreConfig, envVars) {
|
|
|
646
631
|
type: engineTypes.WalletConnectorType.EntityStorage
|
|
647
632
|
});
|
|
648
633
|
}
|
|
649
|
-
else if (envVars.walletConnector === engineTypes.WalletConnectorType.IotaStardust) {
|
|
650
|
-
coreConfig.types.walletConnector.push({
|
|
651
|
-
type: engineTypes.WalletConnectorType.IotaStardust,
|
|
652
|
-
options: {
|
|
653
|
-
config: {
|
|
654
|
-
clientOptions: {
|
|
655
|
-
nodes: [envVars.iotaStardustNodeEndpoint ?? ""]
|
|
656
|
-
},
|
|
657
|
-
bech32Hrp: envVars.iotaStardustBech32Hrp,
|
|
658
|
-
coinType: core.Coerce.number(envVars.iotaStardustCoinType)
|
|
659
|
-
}
|
|
660
|
-
}
|
|
661
|
-
});
|
|
662
|
-
}
|
|
663
634
|
else if (envVars.walletConnector === engineTypes.WalletConnectorType.Iota) {
|
|
664
635
|
coreConfig.types.walletConnector.push({
|
|
665
636
|
type: engineTypes.WalletConnectorType.Iota,
|
|
@@ -687,20 +658,6 @@ function configureNft(coreConfig, envVars) {
|
|
|
687
658
|
type: engineTypes.NftConnectorType.EntityStorage
|
|
688
659
|
});
|
|
689
660
|
}
|
|
690
|
-
else if (envVars.nftConnector === engineTypes.NftConnectorType.IotaStardust) {
|
|
691
|
-
coreConfig.types.nftConnector.push({
|
|
692
|
-
type: engineTypes.NftConnectorType.IotaStardust,
|
|
693
|
-
options: {
|
|
694
|
-
config: {
|
|
695
|
-
clientOptions: {
|
|
696
|
-
nodes: [envVars.iotaStardustNodeEndpoint ?? ""]
|
|
697
|
-
},
|
|
698
|
-
bech32Hrp: envVars.iotaStardustBech32Hrp,
|
|
699
|
-
coinType: core.Coerce.number(envVars.iotaStardustCoinType)
|
|
700
|
-
}
|
|
701
|
-
}
|
|
702
|
-
});
|
|
703
|
-
}
|
|
704
661
|
else if (envVars.nftConnector === engineTypes.NftConnectorType.Iota) {
|
|
705
662
|
coreConfig.types.nftConnector.push({
|
|
706
663
|
type: engineTypes.NftConnectorType.Iota,
|
|
@@ -732,20 +689,6 @@ function configureVerifiableStorage(coreConfig, envVars) {
|
|
|
732
689
|
type: engineTypes.VerifiableStorageConnectorType.EntityStorage
|
|
733
690
|
});
|
|
734
691
|
}
|
|
735
|
-
else if (envVars.verifiableStorageConnector === engineTypes.VerifiableStorageConnectorType.IotaStardust) {
|
|
736
|
-
coreConfig.types.verifiableStorageConnector.push({
|
|
737
|
-
type: engineTypes.VerifiableStorageConnectorType.IotaStardust,
|
|
738
|
-
options: {
|
|
739
|
-
config: {
|
|
740
|
-
clientOptions: {
|
|
741
|
-
nodes: [envVars.iotaStardustNodeEndpoint ?? ""]
|
|
742
|
-
},
|
|
743
|
-
bech32Hrp: envVars.iotaStardustBech32Hrp,
|
|
744
|
-
coinType: core.Coerce.number(envVars.iotaStardustCoinType)
|
|
745
|
-
}
|
|
746
|
-
}
|
|
747
|
-
});
|
|
748
|
-
}
|
|
749
692
|
else if (envVars.verifiableStorageConnector === engineTypes.VerifiableStorageConnectorType.Iota) {
|
|
750
693
|
coreConfig.types.verifiableStorageConnector.push({
|
|
751
694
|
type: engineTypes.VerifiableStorageConnectorType.Iota,
|
|
@@ -796,20 +739,6 @@ function configureIdentity(coreConfig, envVars) {
|
|
|
796
739
|
type: engineTypes.IdentityConnectorType.EntityStorage
|
|
797
740
|
});
|
|
798
741
|
}
|
|
799
|
-
else if (envVars.identityConnector === engineTypes.IdentityConnectorType.IotaStardust) {
|
|
800
|
-
coreConfig.types.identityConnector.push({
|
|
801
|
-
type: engineTypes.IdentityConnectorType.IotaStardust,
|
|
802
|
-
options: {
|
|
803
|
-
config: {
|
|
804
|
-
clientOptions: {
|
|
805
|
-
nodes: [envVars.iotaStardustNodeEndpoint ?? ""]
|
|
806
|
-
},
|
|
807
|
-
bech32Hrp: envVars.iotaStardustBech32Hrp,
|
|
808
|
-
coinType: core.Coerce.number(envVars.iotaStardustCoinType)
|
|
809
|
-
}
|
|
810
|
-
}
|
|
811
|
-
});
|
|
812
|
-
}
|
|
813
742
|
else if (envVars.identityConnector === engineTypes.IdentityConnectorType.Iota) {
|
|
814
743
|
coreConfig.types.identityConnector.push({
|
|
815
744
|
type: engineTypes.IdentityConnectorType.Iota,
|
|
@@ -841,20 +770,6 @@ function configureIdentityResolver(coreConfig, envVars) {
|
|
|
841
770
|
type: engineTypes.IdentityResolverConnectorType.EntityStorage
|
|
842
771
|
});
|
|
843
772
|
}
|
|
844
|
-
else if (envVars.identityResolverConnector === engineTypes.IdentityResolverConnectorType.IotaStardust) {
|
|
845
|
-
coreConfig.types.identityResolverConnector.push({
|
|
846
|
-
type: engineTypes.IdentityResolverConnectorType.IotaStardust,
|
|
847
|
-
options: {
|
|
848
|
-
config: {
|
|
849
|
-
clientOptions: {
|
|
850
|
-
nodes: [envVars.iotaStardustNodeEndpoint ?? ""]
|
|
851
|
-
},
|
|
852
|
-
bech32Hrp: envVars.iotaStardustBech32Hrp,
|
|
853
|
-
coinType: core.Coerce.number(envVars.iotaStardustCoinType)
|
|
854
|
-
}
|
|
855
|
-
}
|
|
856
|
-
});
|
|
857
|
-
}
|
|
858
773
|
else if (envVars.identityResolverConnector === engineTypes.IdentityResolverConnectorType.Iota) {
|
|
859
774
|
coreConfig.types.identityResolverConnector.push({
|
|
860
775
|
type: engineTypes.IdentityResolverConnectorType.Iota,
|
package/dist/esm/index.mjs
CHANGED
|
@@ -601,21 +601,6 @@ function configureFaucet(coreConfig, envVars) {
|
|
|
601
601
|
type: FaucetConnectorType.EntityStorage
|
|
602
602
|
});
|
|
603
603
|
}
|
|
604
|
-
else if (envVars.faucetConnector === FaucetConnectorType.IotaStardust) {
|
|
605
|
-
coreConfig.types.faucetConnector.push({
|
|
606
|
-
type: FaucetConnectorType.IotaStardust,
|
|
607
|
-
options: {
|
|
608
|
-
config: {
|
|
609
|
-
endpoint: envVars.iotaStardustFaucetEndpoint ?? "",
|
|
610
|
-
clientOptions: {
|
|
611
|
-
nodes: [envVars.iotaStardustNodeEndpoint ?? ""]
|
|
612
|
-
},
|
|
613
|
-
bech32Hrp: envVars.iotaStardustBech32Hrp,
|
|
614
|
-
coinType: Coerce.number(envVars.iotaStardustCoinType)
|
|
615
|
-
}
|
|
616
|
-
}
|
|
617
|
-
});
|
|
618
|
-
}
|
|
619
604
|
else if (envVars.faucetConnector === FaucetConnectorType.Iota) {
|
|
620
605
|
coreConfig.types.faucetConnector.push({
|
|
621
606
|
type: FaucetConnectorType.Iota,
|
|
@@ -644,20 +629,6 @@ function configureWallet(coreConfig, envVars) {
|
|
|
644
629
|
type: WalletConnectorType.EntityStorage
|
|
645
630
|
});
|
|
646
631
|
}
|
|
647
|
-
else if (envVars.walletConnector === WalletConnectorType.IotaStardust) {
|
|
648
|
-
coreConfig.types.walletConnector.push({
|
|
649
|
-
type: WalletConnectorType.IotaStardust,
|
|
650
|
-
options: {
|
|
651
|
-
config: {
|
|
652
|
-
clientOptions: {
|
|
653
|
-
nodes: [envVars.iotaStardustNodeEndpoint ?? ""]
|
|
654
|
-
},
|
|
655
|
-
bech32Hrp: envVars.iotaStardustBech32Hrp,
|
|
656
|
-
coinType: Coerce.number(envVars.iotaStardustCoinType)
|
|
657
|
-
}
|
|
658
|
-
}
|
|
659
|
-
});
|
|
660
|
-
}
|
|
661
632
|
else if (envVars.walletConnector === WalletConnectorType.Iota) {
|
|
662
633
|
coreConfig.types.walletConnector.push({
|
|
663
634
|
type: WalletConnectorType.Iota,
|
|
@@ -685,20 +656,6 @@ function configureNft(coreConfig, envVars) {
|
|
|
685
656
|
type: NftConnectorType.EntityStorage
|
|
686
657
|
});
|
|
687
658
|
}
|
|
688
|
-
else if (envVars.nftConnector === NftConnectorType.IotaStardust) {
|
|
689
|
-
coreConfig.types.nftConnector.push({
|
|
690
|
-
type: NftConnectorType.IotaStardust,
|
|
691
|
-
options: {
|
|
692
|
-
config: {
|
|
693
|
-
clientOptions: {
|
|
694
|
-
nodes: [envVars.iotaStardustNodeEndpoint ?? ""]
|
|
695
|
-
},
|
|
696
|
-
bech32Hrp: envVars.iotaStardustBech32Hrp,
|
|
697
|
-
coinType: Coerce.number(envVars.iotaStardustCoinType)
|
|
698
|
-
}
|
|
699
|
-
}
|
|
700
|
-
});
|
|
701
|
-
}
|
|
702
659
|
else if (envVars.nftConnector === NftConnectorType.Iota) {
|
|
703
660
|
coreConfig.types.nftConnector.push({
|
|
704
661
|
type: NftConnectorType.Iota,
|
|
@@ -730,20 +687,6 @@ function configureVerifiableStorage(coreConfig, envVars) {
|
|
|
730
687
|
type: VerifiableStorageConnectorType.EntityStorage
|
|
731
688
|
});
|
|
732
689
|
}
|
|
733
|
-
else if (envVars.verifiableStorageConnector === VerifiableStorageConnectorType.IotaStardust) {
|
|
734
|
-
coreConfig.types.verifiableStorageConnector.push({
|
|
735
|
-
type: VerifiableStorageConnectorType.IotaStardust,
|
|
736
|
-
options: {
|
|
737
|
-
config: {
|
|
738
|
-
clientOptions: {
|
|
739
|
-
nodes: [envVars.iotaStardustNodeEndpoint ?? ""]
|
|
740
|
-
},
|
|
741
|
-
bech32Hrp: envVars.iotaStardustBech32Hrp,
|
|
742
|
-
coinType: Coerce.number(envVars.iotaStardustCoinType)
|
|
743
|
-
}
|
|
744
|
-
}
|
|
745
|
-
});
|
|
746
|
-
}
|
|
747
690
|
else if (envVars.verifiableStorageConnector === VerifiableStorageConnectorType.Iota) {
|
|
748
691
|
coreConfig.types.verifiableStorageConnector.push({
|
|
749
692
|
type: VerifiableStorageConnectorType.Iota,
|
|
@@ -794,20 +737,6 @@ function configureIdentity(coreConfig, envVars) {
|
|
|
794
737
|
type: IdentityConnectorType.EntityStorage
|
|
795
738
|
});
|
|
796
739
|
}
|
|
797
|
-
else if (envVars.identityConnector === IdentityConnectorType.IotaStardust) {
|
|
798
|
-
coreConfig.types.identityConnector.push({
|
|
799
|
-
type: IdentityConnectorType.IotaStardust,
|
|
800
|
-
options: {
|
|
801
|
-
config: {
|
|
802
|
-
clientOptions: {
|
|
803
|
-
nodes: [envVars.iotaStardustNodeEndpoint ?? ""]
|
|
804
|
-
},
|
|
805
|
-
bech32Hrp: envVars.iotaStardustBech32Hrp,
|
|
806
|
-
coinType: Coerce.number(envVars.iotaStardustCoinType)
|
|
807
|
-
}
|
|
808
|
-
}
|
|
809
|
-
});
|
|
810
|
-
}
|
|
811
740
|
else if (envVars.identityConnector === IdentityConnectorType.Iota) {
|
|
812
741
|
coreConfig.types.identityConnector.push({
|
|
813
742
|
type: IdentityConnectorType.Iota,
|
|
@@ -839,20 +768,6 @@ function configureIdentityResolver(coreConfig, envVars) {
|
|
|
839
768
|
type: IdentityResolverConnectorType.EntityStorage
|
|
840
769
|
});
|
|
841
770
|
}
|
|
842
|
-
else if (envVars.identityResolverConnector === IdentityResolverConnectorType.IotaStardust) {
|
|
843
|
-
coreConfig.types.identityResolverConnector.push({
|
|
844
|
-
type: IdentityResolverConnectorType.IotaStardust,
|
|
845
|
-
options: {
|
|
846
|
-
config: {
|
|
847
|
-
clientOptions: {
|
|
848
|
-
nodes: [envVars.iotaStardustNodeEndpoint ?? ""]
|
|
849
|
-
},
|
|
850
|
-
bech32Hrp: envVars.iotaStardustBech32Hrp,
|
|
851
|
-
coinType: Coerce.number(envVars.iotaStardustCoinType)
|
|
852
|
-
}
|
|
853
|
-
}
|
|
854
|
-
});
|
|
855
|
-
}
|
|
856
771
|
else if (envVars.identityResolverConnector === IdentityResolverConnectorType.Iota) {
|
|
857
772
|
coreConfig.types.identityResolverConnector.push({
|
|
858
773
|
type: IdentityResolverConnectorType.Iota,
|
|
@@ -303,37 +303,17 @@ export interface IEngineEnvironmentVariables {
|
|
|
303
303
|
*/
|
|
304
304
|
nftConnector?: string;
|
|
305
305
|
/**
|
|
306
|
-
* The type of identity connector: entity-storage, iota
|
|
306
|
+
* The type of identity connector: entity-storage, iota.
|
|
307
307
|
*/
|
|
308
308
|
identityConnector?: string;
|
|
309
309
|
/**
|
|
310
|
-
* The type of identity resolver connector: entity-storage, iota
|
|
310
|
+
* The type of identity resolver connector: entity-storage, iota.
|
|
311
311
|
*/
|
|
312
312
|
identityResolverConnector?: string;
|
|
313
313
|
/**
|
|
314
314
|
* The type of verifiable storage connector: entity-storage, iota.
|
|
315
315
|
*/
|
|
316
316
|
verifiableStorageConnector?: string;
|
|
317
|
-
/**
|
|
318
|
-
* IOTA Stardust Faucet Endpoint.
|
|
319
|
-
*/
|
|
320
|
-
iotaStardustFaucetEndpoint?: string;
|
|
321
|
-
/**
|
|
322
|
-
* IOTA Stardust Node Endpoint.
|
|
323
|
-
*/
|
|
324
|
-
iotaStardustNodeEndpoint?: string;
|
|
325
|
-
/**
|
|
326
|
-
* IOTA Stardust Bech32 HRP
|
|
327
|
-
*/
|
|
328
|
-
iotaStardustBech32Hrp?: string;
|
|
329
|
-
/**
|
|
330
|
-
* IOTA Stardust coin type.
|
|
331
|
-
*/
|
|
332
|
-
iotaStardustCoinType?: string;
|
|
333
|
-
/**
|
|
334
|
-
* IOTA Stardust Explorer Endpoint.
|
|
335
|
-
*/
|
|
336
|
-
iotaStardustExplorerEndpoint?: string;
|
|
337
317
|
/**
|
|
338
318
|
* IOTA Faucet Endpoint.
|
|
339
319
|
*/
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,52 @@
|
|
|
1
1
|
# @twin.org/engine - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.72](https://github.com/twinfoundation/engine/compare/engine-v0.0.1-next.71...engine-v0.0.1-next.72) (2025-05-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add mimeTypeProcessors and disableNodeIdentity ([bb7e81e](https://github.com/twinfoundation/engine/commit/bb7e81e2036fe042068a5645ec59b22e20d33aad))
|
|
9
|
+
* iota rebased release ([474d92b](https://github.com/twinfoundation/engine/commit/474d92b352f4ccc431a4f138afee2ee89824664d))
|
|
10
|
+
* use shared store mechanism ([#2](https://github.com/twinfoundation/engine/issues/2)) ([9eed8d7](https://github.com/twinfoundation/engine/commit/9eed8d7766388479b42f03e2542fe761f2156408))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Dependencies
|
|
14
|
+
|
|
15
|
+
* The following workspace dependencies were updated
|
|
16
|
+
* dependencies
|
|
17
|
+
* @twin.org/engine-core bumped from 0.0.1-next.71 to 0.0.1-next.72
|
|
18
|
+
* @twin.org/engine-types bumped from 0.0.1-next.71 to 0.0.1-next.72
|
|
19
|
+
|
|
20
|
+
## [0.0.1-next.71](https://github.com/twinfoundation/engine/compare/engine-v0.0.1-next.70...engine-v0.0.1-next.71) (2025-05-06)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
* iota rebased release ([474d92b](https://github.com/twinfoundation/engine/commit/474d92b352f4ccc431a4f138afee2ee89824664d))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Dependencies
|
|
29
|
+
|
|
30
|
+
* The following workspace dependencies were updated
|
|
31
|
+
* dependencies
|
|
32
|
+
* @twin.org/engine-core bumped from 0.0.1-next.70 to 0.0.1-next.71
|
|
33
|
+
* @twin.org/engine-types bumped from 0.0.1-next.70 to 0.0.1-next.71
|
|
34
|
+
|
|
35
|
+
## [0.0.1-next.70](https://github.com/twinfoundation/engine/compare/engine-v0.0.1-next.69...engine-v0.0.1-next.70) (2025-04-28)
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Miscellaneous Chores
|
|
39
|
+
|
|
40
|
+
* **engine:** Synchronize repo versions
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
### Dependencies
|
|
44
|
+
|
|
45
|
+
* The following workspace dependencies were updated
|
|
46
|
+
* dependencies
|
|
47
|
+
* @twin.org/engine-core bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
48
|
+
* @twin.org/engine-types bumped from 0.0.1-next.69 to 0.0.1-next.70
|
|
49
|
+
|
|
3
50
|
## [0.0.1-next.69](https://github.com/twinfoundation/engine/compare/engine-v0.0.1-next.68...engine-v0.0.1-next.69) (2025-04-25)
|
|
4
51
|
|
|
5
52
|
|
|
@@ -608,7 +608,7 @@ The type of NFT connector: entity-storage, iota.
|
|
|
608
608
|
|
|
609
609
|
> `optional` **identityConnector**: `string`
|
|
610
610
|
|
|
611
|
-
The type of identity connector: entity-storage, iota
|
|
611
|
+
The type of identity connector: entity-storage, iota.
|
|
612
612
|
|
|
613
613
|
***
|
|
614
614
|
|
|
@@ -616,7 +616,7 @@ The type of identity connector: entity-storage, iota, iota-stardust.
|
|
|
616
616
|
|
|
617
617
|
> `optional` **identityResolverConnector**: `string`
|
|
618
618
|
|
|
619
|
-
The type of identity resolver connector: entity-storage, iota
|
|
619
|
+
The type of identity resolver connector: entity-storage, iota.
|
|
620
620
|
|
|
621
621
|
***
|
|
622
622
|
|
|
@@ -628,46 +628,6 @@ The type of verifiable storage connector: entity-storage, iota.
|
|
|
628
628
|
|
|
629
629
|
***
|
|
630
630
|
|
|
631
|
-
### iotaStardustFaucetEndpoint?
|
|
632
|
-
|
|
633
|
-
> `optional` **iotaStardustFaucetEndpoint**: `string`
|
|
634
|
-
|
|
635
|
-
IOTA Stardust Faucet Endpoint.
|
|
636
|
-
|
|
637
|
-
***
|
|
638
|
-
|
|
639
|
-
### iotaStardustNodeEndpoint?
|
|
640
|
-
|
|
641
|
-
> `optional` **iotaStardustNodeEndpoint**: `string`
|
|
642
|
-
|
|
643
|
-
IOTA Stardust Node Endpoint.
|
|
644
|
-
|
|
645
|
-
***
|
|
646
|
-
|
|
647
|
-
### iotaStardustBech32Hrp?
|
|
648
|
-
|
|
649
|
-
> `optional` **iotaStardustBech32Hrp**: `string`
|
|
650
|
-
|
|
651
|
-
IOTA Stardust Bech32 HRP
|
|
652
|
-
|
|
653
|
-
***
|
|
654
|
-
|
|
655
|
-
### iotaStardustCoinType?
|
|
656
|
-
|
|
657
|
-
> `optional` **iotaStardustCoinType**: `string`
|
|
658
|
-
|
|
659
|
-
IOTA Stardust coin type.
|
|
660
|
-
|
|
661
|
-
***
|
|
662
|
-
|
|
663
|
-
### iotaStardustExplorerEndpoint?
|
|
664
|
-
|
|
665
|
-
> `optional` **iotaStardustExplorerEndpoint**: `string`
|
|
666
|
-
|
|
667
|
-
IOTA Stardust Explorer Endpoint.
|
|
668
|
-
|
|
669
|
-
***
|
|
670
|
-
|
|
671
631
|
### iotaFaucetEndpoint?
|
|
672
632
|
|
|
673
633
|
> `optional` **iotaFaucetEndpoint**: `string`
|
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.72",
|
|
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.72",
|
|
19
|
+
"@twin.org/engine-types": "0.0.1-next.72",
|
|
20
20
|
"@twin.org/entity": "next"
|
|
21
21
|
},
|
|
22
22
|
"main": "./dist/cjs/index.cjs",
|