@twin.org/identity-connector-universal 0.0.3-next.2 → 0.0.3-next.21
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 +5 -5
- package/dist/es/universalResolverConnector.js +38 -1
- package/dist/es/universalResolverConnector.js.map +1 -1
- package/dist/types/universalResolverConnector.d.ts +6 -0
- package/docs/changelog.md +369 -73
- package/docs/examples.md +32 -1
- package/docs/reference/classes/UniversalResolverConnector.md +22 -4
- package/docs/reference/interfaces/IUniversalResolverConnectorConfig.md +1 -1
- package/docs/reference/interfaces/IUniversalResolverConnectorConstructorOptions.md +1 -1
- package/locales/en.json +6 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# TWIN Identity
|
|
1
|
+
# TWIN Identity
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The identity-connector-universal package provides DID resolution through the Universal Resolver ecosystem so applications can work with multiple DID methods in a consistent way. It is designed for interoperability-focused implementations that need standards-aligned identity resolution without coupling to a single network.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -8,12 +8,12 @@ Identity connector implementation using Universal resolver.
|
|
|
8
8
|
npm install @twin.org/identity-connector-universal
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Docker
|
|
12
12
|
|
|
13
|
-
To
|
|
13
|
+
To perform testing of this component it may be necessary to launch a local instance to communicate with.
|
|
14
14
|
|
|
15
15
|
```shell
|
|
16
|
-
docker run -d --name twin-identity-universal -e NETWORK=testnet
|
|
16
|
+
docker run -d --name twin-identity-universal -p 8180:8080 -e NETWORK=testnet iotaledger/uni-resolver-driver-iota:v0.2.0-alpha
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Examples
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Copyright 2024 IOTA Stiftung.
|
|
2
2
|
// SPDX-License-Identifier: Apache-2.0.
|
|
3
|
-
import { GeneralError, Guards, StringHelper } from "@twin.org/core";
|
|
3
|
+
import { GeneralError, Guards, HealthStatus, StringHelper } from "@twin.org/core";
|
|
4
4
|
import { FetchHelper, HttpMethod } from "@twin.org/web";
|
|
5
5
|
/**
|
|
6
6
|
* Class for performing identity operations on a universal resolver.
|
|
@@ -36,6 +36,43 @@ export class UniversalResolverConnector {
|
|
|
36
36
|
className() {
|
|
37
37
|
return UniversalResolverConnector.CLASS_NAME;
|
|
38
38
|
}
|
|
39
|
+
/**
|
|
40
|
+
* Returns the health status of the component.
|
|
41
|
+
* @returns The health status of the component.
|
|
42
|
+
*/
|
|
43
|
+
async health() {
|
|
44
|
+
try {
|
|
45
|
+
const response = await FetchHelper.fetch(UniversalResolverConnector.CLASS_NAME, `${StringHelper.trimTrailingSlashes(this._resolverEndpoint)}/1.0/identifiers/did:iota:0`, HttpMethod.GET);
|
|
46
|
+
const body = await response.text();
|
|
47
|
+
if (!body.includes("invalid method id")) {
|
|
48
|
+
return [
|
|
49
|
+
{
|
|
50
|
+
source: UniversalResolverConnector.CLASS_NAME,
|
|
51
|
+
status: HealthStatus.Error,
|
|
52
|
+
description: "healthDescription",
|
|
53
|
+
message: "resolverHealthCheckFailed"
|
|
54
|
+
}
|
|
55
|
+
];
|
|
56
|
+
}
|
|
57
|
+
return [
|
|
58
|
+
{
|
|
59
|
+
source: UniversalResolverConnector.CLASS_NAME,
|
|
60
|
+
status: HealthStatus.Ok,
|
|
61
|
+
description: "healthDescription"
|
|
62
|
+
}
|
|
63
|
+
];
|
|
64
|
+
}
|
|
65
|
+
catch {
|
|
66
|
+
return [
|
|
67
|
+
{
|
|
68
|
+
source: UniversalResolverConnector.CLASS_NAME,
|
|
69
|
+
status: HealthStatus.Error,
|
|
70
|
+
description: "healthDescription",
|
|
71
|
+
message: "resolverHealthCheckFailed"
|
|
72
|
+
}
|
|
73
|
+
];
|
|
74
|
+
}
|
|
75
|
+
}
|
|
39
76
|
/**
|
|
40
77
|
* Resolve a document from its id.
|
|
41
78
|
* @param documentId The id of the document to resolve.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"universalResolverConnector.js","sourceRoot":"","sources":["../../src/universalResolverConnector.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,OAAO,EAAE,YAAY,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"universalResolverConnector.js","sourceRoot":"","sources":["../../src/universalResolverConnector.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AACvC,OAAO,EAAE,YAAY,EAAE,MAAM,EAAE,YAAY,EAAE,YAAY,EAAgB,MAAM,gBAAgB,CAAC;AAIhG,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAKxD;;GAEG;AACH,MAAM,OAAO,0BAA0B;IACtC;;OAEG;IACI,MAAM,CAAU,SAAS,GAAW,WAAW,CAAC;IAEvD;;OAEG;IACI,MAAM,CAAU,UAAU,gCAAgD;IAEjF;;;OAGG;IACc,iBAAiB,CAAS;IAE3C;;;OAGG;IACH,YAAY,OAAsD;QACjE,MAAM,CAAC,MAAM,CAAC,0BAA0B,CAAC,UAAU,aAAmB,OAAO,CAAC,CAAC;QAC/E,MAAM,CAAC,MAAM,CACZ,0BAA0B,CAAC,UAAU,oBAErC,OAAO,CAAC,MAAM,CACd,CAAC;QACF,MAAM,CAAC,WAAW,CACjB,0BAA0B,CAAC,UAAU,6BAErC,OAAO,CAAC,MAAM,CAAC,QAAQ,CACvB,CAAC;QAEF,IAAI,CAAC,iBAAiB,GAAG,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC;IAClD,CAAC;IAED;;;OAGG;IACI,SAAS;QACf,OAAO,0BAA0B,CAAC,UAAU,CAAC;IAC9C,CAAC;IAED;;;OAGG;IACI,KAAK,CAAC,MAAM;QAClB,IAAI,CAAC;YACJ,MAAM,QAAQ,GAAG,MAAM,WAAW,CAAC,KAAK,CACvC,0BAA0B,CAAC,UAAU,EACrC,GAAG,YAAY,CAAC,mBAAmB,CAAC,IAAI,CAAC,iBAAiB,CAAC,6BAA6B,EACxF,UAAU,CAAC,GAAG,CACd,CAAC;YAEF,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAC;YAEnC,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,mBAAmB,CAAC,EAAE,CAAC;gBACzC,OAAO;oBACN;wBACC,MAAM,EAAE,0BAA0B,CAAC,UAAU;wBAC7C,MAAM,EAAE,YAAY,CAAC,KAAK;wBAC1B,WAAW,EAAE,mBAAmB;wBAChC,OAAO,EAAE,2BAA2B;qBACpC;iBACD,CAAC;YACH,CAAC;YAED,OAAO;gBACN;oBACC,MAAM,EAAE,0BAA0B,CAAC,UAAU;oBAC7C,MAAM,EAAE,YAAY,CAAC,EAAE;oBACvB,WAAW,EAAE,mBAAmB;iBAChC;aACD,CAAC;QACH,CAAC;QAAC,MAAM,CAAC;YACR,OAAO;gBACN;oBACC,MAAM,EAAE,0BAA0B,CAAC,UAAU;oBAC7C,MAAM,EAAE,YAAY,CAAC,KAAK;oBAC1B,WAAW,EAAE,mBAAmB;oBAChC,OAAO,EAAE,2BAA2B;iBACpC;aACD,CAAC;QACH,CAAC;IACF,CAAC;IAED;;;;;OAKG;IACI,KAAK,CAAC,eAAe,CAAC,UAAkB;QAC9C,IAAI,CAAC;YACJ,MAAM,MAAM,GAAG,MAAM,WAAW,CAAC,SAAS,CACzC,0BAA0B,CAAC,UAAU,EACrC,GAAG,YAAY,CAAC,mBAAmB,CAAC,IAAI,CAAC,iBAAiB,CAAC,oBAAoB,kBAAkB,CAAC,UAAU,CAAC,EAAE,EAC/G,UAAU,CAAC,GAAG,CACd,CAAC;YAEF,OAAO,MAAM,CAAC,WAAW,CAAC;QAC3B,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YAChB,MAAM,IAAI,YAAY,CACrB,0BAA0B,CAAC,UAAU,EACrC,uBAAuB,EACvB,EAAE,UAAU,EAAE,EACd,KAAK,CACL,CAAC;QACH,CAAC;IACF,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport { GeneralError, Guards, HealthStatus, StringHelper, type IHealth } from \"@twin.org/core\";\nimport type { IIdentityResolverConnector } from \"@twin.org/identity-models\";\nimport { nameof } from \"@twin.org/nameof\";\nimport type { IDidDocument } from \"@twin.org/standards-w3c-did\";\nimport { FetchHelper, HttpMethod } from \"@twin.org/web\";\nimport type { IUniversalResolverResult } from \"./models/api/IUniversalResolverResult.js\";\nimport type { IUniversalResolverConnectorConfig } from \"./models/IUniversalResolverConnectorConfig.js\";\nimport type { IUniversalResolverConnectorConstructorOptions } from \"./models/IUniversalResolverConnectorConstructorOptions.js\";\n\n/**\n * Class for performing identity operations on a universal resolver.\n */\nexport class UniversalResolverConnector implements IIdentityResolverConnector {\n\t/**\n\t * The namespace supported by the identity connector.\n\t */\n\tpublic static readonly NAMESPACE: string = \"universal\";\n\n\t/**\n\t * Runtime name for the class.\n\t */\n\tpublic static readonly CLASS_NAME: string = nameof<UniversalResolverConnector>();\n\n\t/**\n\t * The url for the resolver.\n\t * @internal\n\t */\n\tprivate readonly _resolverEndpoint: string;\n\n\t/**\n\t * Create a new instance of UniversalResolverConnector.\n\t * @param options The options for the identity connector.\n\t */\n\tconstructor(options: IUniversalResolverConnectorConstructorOptions) {\n\t\tGuards.object(UniversalResolverConnector.CLASS_NAME, nameof(options), options);\n\t\tGuards.object<IUniversalResolverConnectorConfig>(\n\t\t\tUniversalResolverConnector.CLASS_NAME,\n\t\t\tnameof(options.config),\n\t\t\toptions.config\n\t\t);\n\t\tGuards.stringValue(\n\t\t\tUniversalResolverConnector.CLASS_NAME,\n\t\t\tnameof(options.config.endpoint),\n\t\t\toptions.config.endpoint\n\t\t);\n\n\t\tthis._resolverEndpoint = options.config.endpoint;\n\t}\n\n\t/**\n\t * Returns the class name of the component.\n\t * @returns The class name of the component.\n\t */\n\tpublic className(): string {\n\t\treturn UniversalResolverConnector.CLASS_NAME;\n\t}\n\n\t/**\n\t * Returns the health status of the component.\n\t * @returns The health status of the component.\n\t */\n\tpublic async health(): Promise<IHealth[]> {\n\t\ttry {\n\t\t\tconst response = await FetchHelper.fetch(\n\t\t\t\tUniversalResolverConnector.CLASS_NAME,\n\t\t\t\t`${StringHelper.trimTrailingSlashes(this._resolverEndpoint)}/1.0/identifiers/did:iota:0`,\n\t\t\t\tHttpMethod.GET\n\t\t\t);\n\n\t\t\tconst body = await response.text();\n\n\t\t\tif (!body.includes(\"invalid method id\")) {\n\t\t\t\treturn [\n\t\t\t\t\t{\n\t\t\t\t\t\tsource: UniversalResolverConnector.CLASS_NAME,\n\t\t\t\t\t\tstatus: HealthStatus.Error,\n\t\t\t\t\t\tdescription: \"healthDescription\",\n\t\t\t\t\t\tmessage: \"resolverHealthCheckFailed\"\n\t\t\t\t\t}\n\t\t\t\t];\n\t\t\t}\n\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tsource: UniversalResolverConnector.CLASS_NAME,\n\t\t\t\t\tstatus: HealthStatus.Ok,\n\t\t\t\t\tdescription: \"healthDescription\"\n\t\t\t\t}\n\t\t\t];\n\t\t} catch {\n\t\t\treturn [\n\t\t\t\t{\n\t\t\t\t\tsource: UniversalResolverConnector.CLASS_NAME,\n\t\t\t\t\tstatus: HealthStatus.Error,\n\t\t\t\t\tdescription: \"healthDescription\",\n\t\t\t\t\tmessage: \"resolverHealthCheckFailed\"\n\t\t\t\t}\n\t\t\t];\n\t\t}\n\t}\n\n\t/**\n\t * Resolve a document from its id.\n\t * @param documentId The id of the document to resolve.\n\t * @returns The resolved document.\n\t * @throws NotFoundError if the id can not be resolved.\n\t */\n\tpublic async resolveDocument(documentId: string): Promise<IDidDocument> {\n\t\ttry {\n\t\t\tconst result = await FetchHelper.fetchJson<never, IUniversalResolverResult>(\n\t\t\t\tUniversalResolverConnector.CLASS_NAME,\n\t\t\t\t`${StringHelper.trimTrailingSlashes(this._resolverEndpoint)}/1.0/identifiers/${encodeURIComponent(documentId)}`,\n\t\t\t\tHttpMethod.GET\n\t\t\t);\n\n\t\t\treturn result.didDocument;\n\t\t} catch (error) {\n\t\t\tthrow new GeneralError(\n\t\t\t\tUniversalResolverConnector.CLASS_NAME,\n\t\t\t\t\"resolveDocumentFailed\",\n\t\t\t\t{ documentId },\n\t\t\t\terror\n\t\t\t);\n\t\t}\n\t}\n}\n"]}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type IHealth } from "@twin.org/core";
|
|
1
2
|
import type { IIdentityResolverConnector } from "@twin.org/identity-models";
|
|
2
3
|
import type { IDidDocument } from "@twin.org/standards-w3c-did";
|
|
3
4
|
import type { IUniversalResolverConnectorConstructorOptions } from "./models/IUniversalResolverConnectorConstructorOptions.js";
|
|
@@ -23,6 +24,11 @@ export declare class UniversalResolverConnector implements IIdentityResolverConn
|
|
|
23
24
|
* @returns The class name of the component.
|
|
24
25
|
*/
|
|
25
26
|
className(): string;
|
|
27
|
+
/**
|
|
28
|
+
* Returns the health status of the component.
|
|
29
|
+
* @returns The health status of the component.
|
|
30
|
+
*/
|
|
31
|
+
health(): Promise<IHealth[]>;
|
|
26
32
|
/**
|
|
27
33
|
* Resolve a document from its id.
|
|
28
34
|
* @param documentId The id of the document to resolve.
|
package/docs/changelog.md
CHANGED
|
@@ -1,6 +1,302 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.0.3-next.
|
|
3
|
+
## [0.0.3-next.21](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.20...identity-connector-universal-v0.0.3-next.21) (2026-05-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* health check ([#124](https://github.com/iotaledger/twin-identity/issues/124)) ([5a55bef](https://github.com/iotaledger/twin-identity/commit/5a55bef0c455f7a305822c96de6ffa19699edc6f))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/identity-models bumped from 0.0.3-next.20 to 0.0.3-next.21
|
|
16
|
+
|
|
17
|
+
## [0.0.3-next.20](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.19...identity-connector-universal-v0.0.3-next.20) (2026-04-29)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Miscellaneous Chores
|
|
21
|
+
|
|
22
|
+
* **identity-connector-universal:** Synchronize repo versions
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Dependencies
|
|
26
|
+
|
|
27
|
+
* The following workspace dependencies were updated
|
|
28
|
+
* dependencies
|
|
29
|
+
* @twin.org/identity-models bumped from 0.0.3-next.19 to 0.0.3-next.20
|
|
30
|
+
|
|
31
|
+
## [0.0.3-next.19](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.18...identity-connector-universal-v0.0.3-next.19) (2026-04-29)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Miscellaneous Chores
|
|
35
|
+
|
|
36
|
+
* **identity-connector-universal:** Synchronize repo versions
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Dependencies
|
|
40
|
+
|
|
41
|
+
* The following workspace dependencies were updated
|
|
42
|
+
* dependencies
|
|
43
|
+
* @twin.org/identity-models bumped from 0.0.3-next.18 to 0.0.3-next.19
|
|
44
|
+
|
|
45
|
+
## [0.0.3-next.18](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.17...identity-connector-universal-v0.0.3-next.18) (2026-02-27)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Miscellaneous Chores
|
|
49
|
+
|
|
50
|
+
* **identity-connector-universal:** Synchronize repo versions
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
### Dependencies
|
|
54
|
+
|
|
55
|
+
* The following workspace dependencies were updated
|
|
56
|
+
* dependencies
|
|
57
|
+
* @twin.org/identity-models bumped from 0.0.3-next.17 to 0.0.3-next.18
|
|
58
|
+
|
|
59
|
+
## [0.0.3-next.17](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.16...identity-connector-universal-v0.0.3-next.17) (2026-02-24)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
### Miscellaneous Chores
|
|
63
|
+
|
|
64
|
+
* **identity-connector-universal:** Synchronize repo versions
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
### Dependencies
|
|
68
|
+
|
|
69
|
+
* The following workspace dependencies were updated
|
|
70
|
+
* dependencies
|
|
71
|
+
* @twin.org/identity-models bumped from 0.0.3-next.16 to 0.0.3-next.17
|
|
72
|
+
|
|
73
|
+
## [0.0.3-next.16](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.15...identity-connector-universal-v0.0.3-next.16) (2026-02-13)
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
### Miscellaneous Chores
|
|
77
|
+
|
|
78
|
+
* **identity-connector-universal:** Synchronize repo versions
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
### Dependencies
|
|
82
|
+
|
|
83
|
+
* The following workspace dependencies were updated
|
|
84
|
+
* dependencies
|
|
85
|
+
* @twin.org/identity-models bumped from 0.0.3-next.15 to 0.0.3-next.16
|
|
86
|
+
|
|
87
|
+
## [0.0.3-next.15](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.14...identity-connector-universal-v0.0.3-next.15) (2026-02-12)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
### Miscellaneous Chores
|
|
91
|
+
|
|
92
|
+
* **identity-connector-universal:** Synchronize repo versions
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
### Dependencies
|
|
96
|
+
|
|
97
|
+
* The following workspace dependencies were updated
|
|
98
|
+
* dependencies
|
|
99
|
+
* @twin.org/identity-models bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
100
|
+
|
|
101
|
+
## [0.0.3-next.14](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.13...identity-connector-universal-v0.0.3-next.14) (2026-02-10)
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
### Miscellaneous Chores
|
|
105
|
+
|
|
106
|
+
* **identity-connector-universal:** Synchronize repo versions
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
### Dependencies
|
|
110
|
+
|
|
111
|
+
* The following workspace dependencies were updated
|
|
112
|
+
* dependencies
|
|
113
|
+
* @twin.org/identity-models bumped from 0.0.3-next.13 to 0.0.3-next.14
|
|
114
|
+
|
|
115
|
+
## [0.0.3-next.13](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.12...identity-connector-universal-v0.0.3-next.13) (2026-01-21)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Miscellaneous Chores
|
|
119
|
+
|
|
120
|
+
* **identity-connector-universal:** Synchronize repo versions
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
### Dependencies
|
|
124
|
+
|
|
125
|
+
* The following workspace dependencies were updated
|
|
126
|
+
* dependencies
|
|
127
|
+
* @twin.org/identity-models bumped from 0.0.3-next.12 to 0.0.3-next.13
|
|
128
|
+
|
|
129
|
+
## [0.0.3-next.12](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.11...identity-connector-universal-v0.0.3-next.12) (2026-01-19)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
### Miscellaneous Chores
|
|
133
|
+
|
|
134
|
+
* **identity-connector-universal:** Synchronize repo versions
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
### Dependencies
|
|
138
|
+
|
|
139
|
+
* The following workspace dependencies were updated
|
|
140
|
+
* dependencies
|
|
141
|
+
* @twin.org/identity-models bumped from 0.0.3-next.11 to 0.0.3-next.12
|
|
142
|
+
|
|
143
|
+
## [0.0.3-next.11](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.10...identity-connector-universal-v0.0.3-next.11) (2026-01-15)
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
### Features
|
|
147
|
+
|
|
148
|
+
* add context id features ([#62](https://github.com/iotaledger/twin-identity/issues/62)) ([e02ecca](https://github.com/iotaledger/twin-identity/commit/e02ecca9c45a849104bfbf7bc18a1f44e6eea8a1))
|
|
149
|
+
* add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
|
|
150
|
+
* add validate-locales ([04d74b4](https://github.com/iotaledger/twin-identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
|
|
151
|
+
* eslint migration to flat config ([fd6246d](https://github.com/iotaledger/twin-identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
|
|
152
|
+
* identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
|
|
153
|
+
* improve url construction ([544a435](https://github.com/iotaledger/twin-identity/commit/544a435dadb90b9e29533f4a4ce09725268d04bd))
|
|
154
|
+
* re-use vault keys if available ([5a848d7](https://github.com/iotaledger/twin-identity/commit/5a848d7520829d9c891ec889fd773fbc0ee77ba5))
|
|
155
|
+
* update comment ([436e030](https://github.com/iotaledger/twin-identity/commit/436e030e9480bdc4e35b44ad7199a5ccc7a7b31e))
|
|
156
|
+
* update framework core ([c824497](https://github.com/iotaledger/twin-identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
|
|
157
|
+
* use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
### Bug Fixes
|
|
161
|
+
|
|
162
|
+
* Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
|
|
163
|
+
* Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
### Dependencies
|
|
167
|
+
|
|
168
|
+
* The following workspace dependencies were updated
|
|
169
|
+
* dependencies
|
|
170
|
+
* @twin.org/identity-models bumped from 0.0.3-next.10 to 0.0.3-next.11
|
|
171
|
+
|
|
172
|
+
## [0.0.3-next.10](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.9...identity-connector-universal-v0.0.3-next.10) (2026-01-15)
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
### Miscellaneous Chores
|
|
176
|
+
|
|
177
|
+
* **identity-connector-universal:** Synchronize repo versions
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
### Dependencies
|
|
181
|
+
|
|
182
|
+
* The following workspace dependencies were updated
|
|
183
|
+
* dependencies
|
|
184
|
+
* @twin.org/identity-models bumped from 0.0.3-next.9 to 0.0.3-next.10
|
|
185
|
+
|
|
186
|
+
## [0.0.3-next.9](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.8...identity-connector-universal-v0.0.3-next.9) (2026-01-14)
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
### Miscellaneous Chores
|
|
190
|
+
|
|
191
|
+
* **identity-connector-universal:** Synchronize repo versions
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
### Dependencies
|
|
195
|
+
|
|
196
|
+
* The following workspace dependencies were updated
|
|
197
|
+
* dependencies
|
|
198
|
+
* @twin.org/identity-models bumped from 0.0.3-next.8 to 0.0.3-next.9
|
|
199
|
+
|
|
200
|
+
## [0.0.3-next.8](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.7...identity-connector-universal-v0.0.3-next.8) (2026-01-14)
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
### Miscellaneous Chores
|
|
204
|
+
|
|
205
|
+
* **identity-connector-universal:** Synchronize repo versions
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
### Dependencies
|
|
209
|
+
|
|
210
|
+
* The following workspace dependencies were updated
|
|
211
|
+
* dependencies
|
|
212
|
+
* @twin.org/identity-models bumped from 0.0.3-next.7 to 0.0.3-next.8
|
|
213
|
+
|
|
214
|
+
## [0.0.3-next.7](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.6...identity-connector-universal-v0.0.3-next.7) (2026-01-13)
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
### Miscellaneous Chores
|
|
218
|
+
|
|
219
|
+
* **identity-connector-universal:** Synchronize repo versions
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
### Dependencies
|
|
223
|
+
|
|
224
|
+
* The following workspace dependencies were updated
|
|
225
|
+
* dependencies
|
|
226
|
+
* @twin.org/identity-models bumped from 0.0.3-next.6 to 0.0.3-next.7
|
|
227
|
+
|
|
228
|
+
## [0.0.3-next.6](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.5...identity-connector-universal-v0.0.3-next.6) (2025-11-26)
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
### Miscellaneous Chores
|
|
232
|
+
|
|
233
|
+
* **identity-connector-universal:** Synchronize repo versions
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
### Dependencies
|
|
237
|
+
|
|
238
|
+
* The following workspace dependencies were updated
|
|
239
|
+
* dependencies
|
|
240
|
+
* @twin.org/identity-models bumped from 0.0.3-next.5 to 0.0.3-next.6
|
|
241
|
+
|
|
242
|
+
## [0.0.3-next.5](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.4...identity-connector-universal-v0.0.3-next.5) (2025-11-20)
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
### Miscellaneous Chores
|
|
246
|
+
|
|
247
|
+
* **identity-connector-universal:** Synchronize repo versions
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
### Dependencies
|
|
251
|
+
|
|
252
|
+
* The following workspace dependencies were updated
|
|
253
|
+
* dependencies
|
|
254
|
+
* @twin.org/identity-models bumped from 0.0.3-next.4 to 0.0.3-next.5
|
|
255
|
+
|
|
256
|
+
## [0.0.3-next.4](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.3...identity-connector-universal-v0.0.3-next.4) (2025-11-17)
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
### Features
|
|
260
|
+
|
|
261
|
+
* add context id features ([#62](https://github.com/iotaledger/twin-identity/issues/62)) ([e02ecca](https://github.com/iotaledger/twin-identity/commit/e02ecca9c45a849104bfbf7bc18a1f44e6eea8a1))
|
|
262
|
+
* add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
|
|
263
|
+
* add validate-locales ([04d74b4](https://github.com/iotaledger/twin-identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
|
|
264
|
+
* eslint migration to flat config ([fd6246d](https://github.com/iotaledger/twin-identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
|
|
265
|
+
* identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
|
|
266
|
+
* improve url construction ([544a435](https://github.com/iotaledger/twin-identity/commit/544a435dadb90b9e29533f4a4ce09725268d04bd))
|
|
267
|
+
* re-use vault keys if available ([5a848d7](https://github.com/iotaledger/twin-identity/commit/5a848d7520829d9c891ec889fd773fbc0ee77ba5))
|
|
268
|
+
* update comment ([436e030](https://github.com/iotaledger/twin-identity/commit/436e030e9480bdc4e35b44ad7199a5ccc7a7b31e))
|
|
269
|
+
* update framework core ([c824497](https://github.com/iotaledger/twin-identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
|
|
270
|
+
* use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
### Bug Fixes
|
|
274
|
+
|
|
275
|
+
* Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
|
|
276
|
+
* Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
### Dependencies
|
|
280
|
+
|
|
281
|
+
* The following workspace dependencies were updated
|
|
282
|
+
* dependencies
|
|
283
|
+
* @twin.org/identity-models bumped from 0.0.3-next.3 to 0.0.3-next.4
|
|
284
|
+
|
|
285
|
+
## [0.0.3-next.3](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.2...identity-connector-universal-v0.0.3-next.3) (2025-11-17)
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
### Miscellaneous Chores
|
|
289
|
+
|
|
290
|
+
* **identity-connector-universal:** Synchronize repo versions
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
### Dependencies
|
|
294
|
+
|
|
295
|
+
* The following workspace dependencies were updated
|
|
296
|
+
* dependencies
|
|
297
|
+
* @twin.org/identity-models bumped from 0.0.3-next.2 to 0.0.3-next.3
|
|
298
|
+
|
|
299
|
+
## [0.0.3-next.2](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.1...identity-connector-universal-v0.0.3-next.2) (2025-11-14)
|
|
4
300
|
|
|
5
301
|
|
|
6
302
|
### Miscellaneous Chores
|
|
@@ -14,27 +310,27 @@
|
|
|
14
310
|
* dependencies
|
|
15
311
|
* @twin.org/identity-models bumped from 0.0.3-next.1 to 0.0.3-next.2
|
|
16
312
|
|
|
17
|
-
## [0.0.3-next.1](https://github.com/
|
|
313
|
+
## [0.0.3-next.1](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.0...identity-connector-universal-v0.0.3-next.1) (2025-11-11)
|
|
18
314
|
|
|
19
315
|
|
|
20
316
|
### Features
|
|
21
317
|
|
|
22
|
-
* add context id features ([#62](https://github.com/
|
|
23
|
-
* add mainnet support ([af56a38](https://github.com/
|
|
24
|
-
* add validate-locales ([04d74b4](https://github.com/
|
|
25
|
-
* eslint migration to flat config ([fd6246d](https://github.com/
|
|
26
|
-
* identity key separator use slash ([1319d0d](https://github.com/
|
|
27
|
-
* improve url construction ([544a435](https://github.com/
|
|
28
|
-
* re-use vault keys if available ([5a848d7](https://github.com/
|
|
29
|
-
* update comment ([436e030](https://github.com/
|
|
30
|
-
* update framework core ([c824497](https://github.com/
|
|
31
|
-
* use shared store mechanism ([#27](https://github.com/
|
|
318
|
+
* add context id features ([#62](https://github.com/iotaledger/twin-identity/issues/62)) ([e02ecca](https://github.com/iotaledger/twin-identity/commit/e02ecca9c45a849104bfbf7bc18a1f44e6eea8a1))
|
|
319
|
+
* add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
|
|
320
|
+
* add validate-locales ([04d74b4](https://github.com/iotaledger/twin-identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
|
|
321
|
+
* eslint migration to flat config ([fd6246d](https://github.com/iotaledger/twin-identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
|
|
322
|
+
* identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
|
|
323
|
+
* improve url construction ([544a435](https://github.com/iotaledger/twin-identity/commit/544a435dadb90b9e29533f4a4ce09725268d04bd))
|
|
324
|
+
* re-use vault keys if available ([5a848d7](https://github.com/iotaledger/twin-identity/commit/5a848d7520829d9c891ec889fd773fbc0ee77ba5))
|
|
325
|
+
* update comment ([436e030](https://github.com/iotaledger/twin-identity/commit/436e030e9480bdc4e35b44ad7199a5ccc7a7b31e))
|
|
326
|
+
* update framework core ([c824497](https://github.com/iotaledger/twin-identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
|
|
327
|
+
* use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
|
|
32
328
|
|
|
33
329
|
|
|
34
330
|
### Bug Fixes
|
|
35
331
|
|
|
36
|
-
* Import path and bump version ([#21](https://github.com/
|
|
37
|
-
* Install sdk-wasm ([#20](https://github.com/
|
|
332
|
+
* Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
|
|
333
|
+
* Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
|
|
38
334
|
|
|
39
335
|
|
|
40
336
|
### Dependencies
|
|
@@ -43,7 +339,7 @@
|
|
|
43
339
|
* dependencies
|
|
44
340
|
* @twin.org/identity-models bumped from 0.0.3-next.0 to 0.0.3-next.1
|
|
45
341
|
|
|
46
|
-
## [0.0.2-next.10](https://github.com/
|
|
342
|
+
## [0.0.2-next.10](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.2-next.9...identity-connector-universal-v0.0.2-next.10) (2025-10-27)
|
|
47
343
|
|
|
48
344
|
|
|
49
345
|
### Miscellaneous Chores
|
|
@@ -57,12 +353,12 @@
|
|
|
57
353
|
* dependencies
|
|
58
354
|
* @twin.org/identity-models bumped from 0.0.2-next.9 to 0.0.2-next.10
|
|
59
355
|
|
|
60
|
-
## [0.0.2-next.9](https://github.com/
|
|
356
|
+
## [0.0.2-next.9](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.2-next.8...identity-connector-universal-v0.0.2-next.9) (2025-10-09)
|
|
61
357
|
|
|
62
358
|
|
|
63
359
|
### Features
|
|
64
360
|
|
|
65
|
-
* add validate-locales ([04d74b4](https://github.com/
|
|
361
|
+
* add validate-locales ([04d74b4](https://github.com/iotaledger/twin-identity/commit/04d74b4d1ebe42672e8ca75a7bdb8e3556afd0be))
|
|
66
362
|
|
|
67
363
|
|
|
68
364
|
### Dependencies
|
|
@@ -71,7 +367,7 @@
|
|
|
71
367
|
* dependencies
|
|
72
368
|
* @twin.org/identity-models bumped from 0.0.2-next.8 to 0.0.2-next.9
|
|
73
369
|
|
|
74
|
-
## [0.0.2-next.8](https://github.com/
|
|
370
|
+
## [0.0.2-next.8](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.2-next.7...identity-connector-universal-v0.0.2-next.8) (2025-09-25)
|
|
75
371
|
|
|
76
372
|
|
|
77
373
|
### Miscellaneous Chores
|
|
@@ -85,7 +381,7 @@
|
|
|
85
381
|
* dependencies
|
|
86
382
|
* @twin.org/identity-models bumped from 0.0.2-next.7 to 0.0.2-next.8
|
|
87
383
|
|
|
88
|
-
## [0.0.2-next.7](https://github.com/
|
|
384
|
+
## [0.0.2-next.7](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.2-next.6...identity-connector-universal-v0.0.2-next.7) (2025-09-23)
|
|
89
385
|
|
|
90
386
|
|
|
91
387
|
### Miscellaneous Chores
|
|
@@ -99,7 +395,7 @@
|
|
|
99
395
|
* dependencies
|
|
100
396
|
* @twin.org/identity-models bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
101
397
|
|
|
102
|
-
## [0.0.2-next.6](https://github.com/
|
|
398
|
+
## [0.0.2-next.6](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.2-next.5...identity-connector-universal-v0.0.2-next.6) (2025-09-23)
|
|
103
399
|
|
|
104
400
|
|
|
105
401
|
### Miscellaneous Chores
|
|
@@ -113,7 +409,7 @@
|
|
|
113
409
|
* dependencies
|
|
114
410
|
* @twin.org/identity-models bumped from 0.0.2-next.5 to 0.0.2-next.6
|
|
115
411
|
|
|
116
|
-
## [0.0.2-next.5](https://github.com/
|
|
412
|
+
## [0.0.2-next.5](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.2-next.4...identity-connector-universal-v0.0.2-next.5) (2025-09-15)
|
|
117
413
|
|
|
118
414
|
|
|
119
415
|
### Miscellaneous Chores
|
|
@@ -127,7 +423,7 @@
|
|
|
127
423
|
* dependencies
|
|
128
424
|
* @twin.org/identity-models bumped from 0.0.2-next.4 to 0.0.2-next.5
|
|
129
425
|
|
|
130
|
-
## [0.0.2-next.4](https://github.com/
|
|
426
|
+
## [0.0.2-next.4](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.2-next.3...identity-connector-universal-v0.0.2-next.4) (2025-09-12)
|
|
131
427
|
|
|
132
428
|
|
|
133
429
|
### Miscellaneous Chores
|
|
@@ -141,12 +437,12 @@
|
|
|
141
437
|
* dependencies
|
|
142
438
|
* @twin.org/identity-models bumped from 0.0.2-next.3 to 0.0.2-next.4
|
|
143
439
|
|
|
144
|
-
## [0.0.2-next.3](https://github.com/
|
|
440
|
+
## [0.0.2-next.3](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.2-next.2...identity-connector-universal-v0.0.2-next.3) (2025-08-29)
|
|
145
441
|
|
|
146
442
|
|
|
147
443
|
### Features
|
|
148
444
|
|
|
149
|
-
* eslint migration to flat config ([fd6246d](https://github.com/
|
|
445
|
+
* eslint migration to flat config ([fd6246d](https://github.com/iotaledger/twin-identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
|
|
150
446
|
|
|
151
447
|
|
|
152
448
|
### Dependencies
|
|
@@ -155,12 +451,12 @@
|
|
|
155
451
|
* dependencies
|
|
156
452
|
* @twin.org/identity-models bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
157
453
|
|
|
158
|
-
## [0.0.2-next.2](https://github.com/
|
|
454
|
+
## [0.0.2-next.2](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.2-next.1...identity-connector-universal-v0.0.2-next.2) (2025-08-20)
|
|
159
455
|
|
|
160
456
|
|
|
161
457
|
### Features
|
|
162
458
|
|
|
163
|
-
* update framework core ([c824497](https://github.com/
|
|
459
|
+
* update framework core ([c824497](https://github.com/iotaledger/twin-identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
|
|
164
460
|
|
|
165
461
|
|
|
166
462
|
### Dependencies
|
|
@@ -169,23 +465,23 @@
|
|
|
169
465
|
* dependencies
|
|
170
466
|
* @twin.org/identity-models bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
171
467
|
|
|
172
|
-
## [0.0.2-next.1](https://github.com/
|
|
468
|
+
## [0.0.2-next.1](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.2-next.0...identity-connector-universal-v0.0.2-next.1) (2025-08-18)
|
|
173
469
|
|
|
174
470
|
|
|
175
471
|
### Features
|
|
176
472
|
|
|
177
|
-
* add mainnet support ([af56a38](https://github.com/
|
|
178
|
-
* identity key separator use slash ([1319d0d](https://github.com/
|
|
179
|
-
* improve url construction ([544a435](https://github.com/
|
|
180
|
-
* re-use vault keys if available ([5a848d7](https://github.com/
|
|
181
|
-
* update comment ([436e030](https://github.com/
|
|
182
|
-
* use shared store mechanism ([#27](https://github.com/
|
|
473
|
+
* add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
|
|
474
|
+
* identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
|
|
475
|
+
* improve url construction ([544a435](https://github.com/iotaledger/twin-identity/commit/544a435dadb90b9e29533f4a4ce09725268d04bd))
|
|
476
|
+
* re-use vault keys if available ([5a848d7](https://github.com/iotaledger/twin-identity/commit/5a848d7520829d9c891ec889fd773fbc0ee77ba5))
|
|
477
|
+
* update comment ([436e030](https://github.com/iotaledger/twin-identity/commit/436e030e9480bdc4e35b44ad7199a5ccc7a7b31e))
|
|
478
|
+
* use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
|
|
183
479
|
|
|
184
480
|
|
|
185
481
|
### Bug Fixes
|
|
186
482
|
|
|
187
|
-
* Import path and bump version ([#21](https://github.com/
|
|
188
|
-
* Install sdk-wasm ([#20](https://github.com/
|
|
483
|
+
* Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
|
|
484
|
+
* Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
|
|
189
485
|
|
|
190
486
|
|
|
191
487
|
### Dependencies
|
|
@@ -199,7 +495,7 @@
|
|
|
199
495
|
|
|
200
496
|
### Features
|
|
201
497
|
|
|
202
|
-
* release to production ([8450ad7](https://github.com/
|
|
498
|
+
* release to production ([8450ad7](https://github.com/iotaledger/twin-identity/commit/8450ad727e0c4d665f2ce483e41798c2ff5b7d55))
|
|
203
499
|
|
|
204
500
|
|
|
205
501
|
### Dependencies
|
|
@@ -208,7 +504,7 @@
|
|
|
208
504
|
* dependencies
|
|
209
505
|
* @twin.org/identity-models bumped from ^0.0.0 to ^0.0.1
|
|
210
506
|
|
|
211
|
-
## [0.0.1-next.57](https://github.com/
|
|
507
|
+
## [0.0.1-next.57](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.56...identity-connector-universal-v0.0.1-next.57) (2025-07-08)
|
|
212
508
|
|
|
213
509
|
|
|
214
510
|
### Miscellaneous Chores
|
|
@@ -222,13 +518,13 @@
|
|
|
222
518
|
* dependencies
|
|
223
519
|
* @twin.org/identity-models bumped from 0.0.1-next.56 to 0.0.1-next.57
|
|
224
520
|
|
|
225
|
-
## [0.0.1-next.56](https://github.com/
|
|
521
|
+
## [0.0.1-next.56](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.55...identity-connector-universal-v0.0.1-next.56) (2025-06-30)
|
|
226
522
|
|
|
227
523
|
|
|
228
524
|
### Features
|
|
229
525
|
|
|
230
|
-
* improve url construction ([544a435](https://github.com/
|
|
231
|
-
* re-use vault keys if available ([5a848d7](https://github.com/
|
|
526
|
+
* improve url construction ([544a435](https://github.com/iotaledger/twin-identity/commit/544a435dadb90b9e29533f4a4ce09725268d04bd))
|
|
527
|
+
* re-use vault keys if available ([5a848d7](https://github.com/iotaledger/twin-identity/commit/5a848d7520829d9c891ec889fd773fbc0ee77ba5))
|
|
232
528
|
|
|
233
529
|
|
|
234
530
|
### Dependencies
|
|
@@ -237,21 +533,21 @@
|
|
|
237
533
|
* dependencies
|
|
238
534
|
* @twin.org/identity-models bumped from 0.0.1-next.55 to 0.0.1-next.56
|
|
239
535
|
|
|
240
|
-
## [0.0.1-next.55](https://github.com/
|
|
536
|
+
## [0.0.1-next.55](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.54...identity-connector-universal-v0.0.1-next.55) (2025-06-26)
|
|
241
537
|
|
|
242
538
|
|
|
243
539
|
### Features
|
|
244
540
|
|
|
245
|
-
* add mainnet support ([af56a38](https://github.com/
|
|
246
|
-
* identity key separator use slash ([1319d0d](https://github.com/
|
|
247
|
-
* update comment ([436e030](https://github.com/
|
|
248
|
-
* use shared store mechanism ([#27](https://github.com/
|
|
541
|
+
* add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
|
|
542
|
+
* identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
|
|
543
|
+
* update comment ([436e030](https://github.com/iotaledger/twin-identity/commit/436e030e9480bdc4e35b44ad7199a5ccc7a7b31e))
|
|
544
|
+
* use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
|
|
249
545
|
|
|
250
546
|
|
|
251
547
|
### Bug Fixes
|
|
252
548
|
|
|
253
|
-
* Import path and bump version ([#21](https://github.com/
|
|
254
|
-
* Install sdk-wasm ([#20](https://github.com/
|
|
549
|
+
* Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
|
|
550
|
+
* Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
|
|
255
551
|
|
|
256
552
|
|
|
257
553
|
### Dependencies
|
|
@@ -260,7 +556,7 @@
|
|
|
260
556
|
* dependencies
|
|
261
557
|
* @twin.org/identity-models bumped from 0.0.1-next.54 to 0.0.1-next.55
|
|
262
558
|
|
|
263
|
-
## [0.0.1-next.54](https://github.com/
|
|
559
|
+
## [0.0.1-next.54](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.53...identity-connector-universal-v0.0.1-next.54) (2025-06-26)
|
|
264
560
|
|
|
265
561
|
|
|
266
562
|
### Miscellaneous Chores
|
|
@@ -274,7 +570,7 @@
|
|
|
274
570
|
* dependencies
|
|
275
571
|
* @twin.org/identity-models bumped from 0.0.1-next.53 to 0.0.1-next.54
|
|
276
572
|
|
|
277
|
-
## [0.0.1-next.53](https://github.com/
|
|
573
|
+
## [0.0.1-next.53](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.52...identity-connector-universal-v0.0.1-next.53) (2025-06-23)
|
|
278
574
|
|
|
279
575
|
|
|
280
576
|
### Miscellaneous Chores
|
|
@@ -288,7 +584,7 @@
|
|
|
288
584
|
* dependencies
|
|
289
585
|
* @twin.org/identity-models bumped from 0.0.1-next.52 to 0.0.1-next.53
|
|
290
586
|
|
|
291
|
-
## [0.0.1-next.52](https://github.com/
|
|
587
|
+
## [0.0.1-next.52](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.51...identity-connector-universal-v0.0.1-next.52) (2025-06-20)
|
|
292
588
|
|
|
293
589
|
|
|
294
590
|
### Miscellaneous Chores
|
|
@@ -302,7 +598,7 @@
|
|
|
302
598
|
* dependencies
|
|
303
599
|
* @twin.org/identity-models bumped from 0.0.1-next.51 to 0.0.1-next.52
|
|
304
600
|
|
|
305
|
-
## [0.0.1-next.51](https://github.com/
|
|
601
|
+
## [0.0.1-next.51](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.50...identity-connector-universal-v0.0.1-next.51) (2025-06-19)
|
|
306
602
|
|
|
307
603
|
|
|
308
604
|
### Miscellaneous Chores
|
|
@@ -316,7 +612,7 @@
|
|
|
316
612
|
* dependencies
|
|
317
613
|
* @twin.org/identity-models bumped from 0.0.1-next.50 to 0.0.1-next.51
|
|
318
614
|
|
|
319
|
-
## [0.0.1-next.50](https://github.com/
|
|
615
|
+
## [0.0.1-next.50](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.49...identity-connector-universal-v0.0.1-next.50) (2025-06-19)
|
|
320
616
|
|
|
321
617
|
|
|
322
618
|
### Miscellaneous Chores
|
|
@@ -330,7 +626,7 @@
|
|
|
330
626
|
* dependencies
|
|
331
627
|
* @twin.org/identity-models bumped from 0.0.1-next.49 to 0.0.1-next.50
|
|
332
628
|
|
|
333
|
-
## [0.0.1-next.49](https://github.com/
|
|
629
|
+
## [0.0.1-next.49](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.48...identity-connector-universal-v0.0.1-next.49) (2025-06-18)
|
|
334
630
|
|
|
335
631
|
|
|
336
632
|
### Miscellaneous Chores
|
|
@@ -344,12 +640,12 @@
|
|
|
344
640
|
* dependencies
|
|
345
641
|
* @twin.org/identity-models bumped from 0.0.1-next.48 to 0.0.1-next.49
|
|
346
642
|
|
|
347
|
-
## [0.0.1-next.48](https://github.com/
|
|
643
|
+
## [0.0.1-next.48](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.47...identity-connector-universal-v0.0.1-next.48) (2025-06-17)
|
|
348
644
|
|
|
349
645
|
|
|
350
646
|
### Features
|
|
351
647
|
|
|
352
|
-
* add mainnet support ([af56a38](https://github.com/
|
|
648
|
+
* add mainnet support ([af56a38](https://github.com/iotaledger/twin-identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
|
|
353
649
|
|
|
354
650
|
|
|
355
651
|
### Dependencies
|
|
@@ -358,12 +654,12 @@
|
|
|
358
654
|
* dependencies
|
|
359
655
|
* @twin.org/identity-models bumped from 0.0.1-next.47 to 0.0.1-next.48
|
|
360
656
|
|
|
361
|
-
## [0.0.1-next.47](https://github.com/
|
|
657
|
+
## [0.0.1-next.47](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.46...identity-connector-universal-v0.0.1-next.47) (2025-06-12)
|
|
362
658
|
|
|
363
659
|
|
|
364
660
|
### Features
|
|
365
661
|
|
|
366
|
-
* identity key separator use slash ([1319d0d](https://github.com/
|
|
662
|
+
* identity key separator use slash ([1319d0d](https://github.com/iotaledger/twin-identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
|
|
367
663
|
|
|
368
664
|
|
|
369
665
|
### Dependencies
|
|
@@ -372,19 +668,19 @@
|
|
|
372
668
|
* dependencies
|
|
373
669
|
* @twin.org/identity-models bumped from 0.0.1-next.46 to 0.0.1-next.47
|
|
374
670
|
|
|
375
|
-
## [0.0.1-next.46](https://github.com/
|
|
671
|
+
## [0.0.1-next.46](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.45...identity-connector-universal-v0.0.1-next.46) (2025-05-20)
|
|
376
672
|
|
|
377
673
|
|
|
378
674
|
### Features
|
|
379
675
|
|
|
380
|
-
* update comment ([436e030](https://github.com/
|
|
381
|
-
* use shared store mechanism ([#27](https://github.com/
|
|
676
|
+
* update comment ([436e030](https://github.com/iotaledger/twin-identity/commit/436e030e9480bdc4e35b44ad7199a5ccc7a7b31e))
|
|
677
|
+
* use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
|
|
382
678
|
|
|
383
679
|
|
|
384
680
|
### Bug Fixes
|
|
385
681
|
|
|
386
|
-
* Import path and bump version ([#21](https://github.com/
|
|
387
|
-
* Install sdk-wasm ([#20](https://github.com/
|
|
682
|
+
* Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
|
|
683
|
+
* Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
|
|
388
684
|
|
|
389
685
|
|
|
390
686
|
### Dependencies
|
|
@@ -393,7 +689,7 @@
|
|
|
393
689
|
* dependencies
|
|
394
690
|
* @twin.org/identity-models bumped from 0.0.1-next.45 to 0.0.1-next.46
|
|
395
691
|
|
|
396
|
-
## [0.0.1-next.45](https://github.com/
|
|
692
|
+
## [0.0.1-next.45](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.44...identity-connector-universal-v0.0.1-next.45) (2025-05-06)
|
|
397
693
|
|
|
398
694
|
|
|
399
695
|
### Miscellaneous Chores
|
|
@@ -407,7 +703,7 @@
|
|
|
407
703
|
* dependencies
|
|
408
704
|
* @twin.org/identity-models bumped from 0.0.1-next.44 to 0.0.1-next.45
|
|
409
705
|
|
|
410
|
-
## [0.0.1-next.44](https://github.com/
|
|
706
|
+
## [0.0.1-next.44](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.43...identity-connector-universal-v0.0.1-next.44) (2025-04-30)
|
|
411
707
|
|
|
412
708
|
|
|
413
709
|
### Miscellaneous Chores
|
|
@@ -421,7 +717,7 @@
|
|
|
421
717
|
* dependencies
|
|
422
718
|
* @twin.org/identity-models bumped from 0.0.1-next.43 to 0.0.1-next.44
|
|
423
719
|
|
|
424
|
-
## [0.0.1-next.43](https://github.com/
|
|
720
|
+
## [0.0.1-next.43](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.42...identity-connector-universal-v0.0.1-next.43) (2025-04-25)
|
|
425
721
|
|
|
426
722
|
|
|
427
723
|
### Miscellaneous Chores
|
|
@@ -435,12 +731,12 @@
|
|
|
435
731
|
* dependencies
|
|
436
732
|
* @twin.org/identity-models bumped from 0.0.1-next.42 to 0.0.1-next.43
|
|
437
733
|
|
|
438
|
-
## [0.0.1-next.42](https://github.com/
|
|
734
|
+
## [0.0.1-next.42](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.41...identity-connector-universal-v0.0.1-next.42) (2025-04-17)
|
|
439
735
|
|
|
440
736
|
|
|
441
737
|
### Features
|
|
442
738
|
|
|
443
|
-
* use shared store mechanism ([#27](https://github.com/
|
|
739
|
+
* use shared store mechanism ([#27](https://github.com/iotaledger/twin-identity/issues/27)) ([ce41f3f](https://github.com/iotaledger/twin-identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
|
|
444
740
|
|
|
445
741
|
|
|
446
742
|
### Dependencies
|
|
@@ -449,12 +745,12 @@
|
|
|
449
745
|
* dependencies
|
|
450
746
|
* @twin.org/identity-models bumped from 0.0.1-next.41 to 0.0.1-next.42
|
|
451
747
|
|
|
452
|
-
## [0.0.1-next.41](https://github.com/
|
|
748
|
+
## [0.0.1-next.41](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.40...identity-connector-universal-v0.0.1-next.41) (2025-04-09)
|
|
453
749
|
|
|
454
750
|
|
|
455
751
|
### Features
|
|
456
752
|
|
|
457
|
-
* update comment ([436e030](https://github.com/
|
|
753
|
+
* update comment ([436e030](https://github.com/iotaledger/twin-identity/commit/436e030e9480bdc4e35b44ad7199a5ccc7a7b31e))
|
|
458
754
|
|
|
459
755
|
|
|
460
756
|
### Dependencies
|
|
@@ -463,13 +759,13 @@
|
|
|
463
759
|
* dependencies
|
|
464
760
|
* @twin.org/identity-models bumped from 0.0.1-next.40 to 0.0.1-next.41
|
|
465
761
|
|
|
466
|
-
## [0.0.1-next.40](https://github.com/
|
|
762
|
+
## [0.0.1-next.40](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.1-next.39...identity-connector-universal-v0.0.1-next.40) (2025-03-28)
|
|
467
763
|
|
|
468
764
|
|
|
469
765
|
### Bug Fixes
|
|
470
766
|
|
|
471
|
-
* Import path and bump version ([#21](https://github.com/
|
|
472
|
-
* Install sdk-wasm ([#20](https://github.com/
|
|
767
|
+
* Import path and bump version ([#21](https://github.com/iotaledger/twin-identity/issues/21)) ([ccea845](https://github.com/iotaledger/twin-identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
|
|
768
|
+
* Install sdk-wasm ([#20](https://github.com/iotaledger/twin-identity/issues/20)) ([75ec14e](https://github.com/iotaledger/twin-identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
|
|
473
769
|
|
|
474
770
|
|
|
475
771
|
### Dependencies
|
package/docs/examples.md
CHANGED
|
@@ -1 +1,32 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Identity Connector Universal Examples
|
|
2
|
+
|
|
3
|
+
Use these snippets when you need to resolve DIDs through a universal resolver endpoint in application code or service handlers.
|
|
4
|
+
|
|
5
|
+
## UniversalResolverConnector
|
|
6
|
+
|
|
7
|
+
```typescript
|
|
8
|
+
import { UniversalResolverConnector } from '@twin.org/identity-connector-universal';
|
|
9
|
+
|
|
10
|
+
const resolver = new UniversalResolverConnector({
|
|
11
|
+
config: {
|
|
12
|
+
endpoint: 'https://uniresolver.io'
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
const className = resolver.className();
|
|
17
|
+
console.log(className); // UniversalResolverConnector
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
```typescript
|
|
21
|
+
import { UniversalResolverConnector } from '@twin.org/identity-connector-universal';
|
|
22
|
+
|
|
23
|
+
const resolver = new UniversalResolverConnector({
|
|
24
|
+
config: {
|
|
25
|
+
endpoint: 'https://uniresolver.io'
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
const didDocument = await resolver.resolveDocument('did:web:example.com:user:123');
|
|
30
|
+
|
|
31
|
+
console.log(didDocument.id); // did:web:example.com:user:123
|
|
32
|
+
```
|
|
@@ -28,7 +28,7 @@ The options for the identity connector.
|
|
|
28
28
|
|
|
29
29
|
## Properties
|
|
30
30
|
|
|
31
|
-
### NAMESPACE
|
|
31
|
+
### NAMESPACE {#namespace}
|
|
32
32
|
|
|
33
33
|
> `readonly` `static` **NAMESPACE**: `string` = `"universal"`
|
|
34
34
|
|
|
@@ -36,7 +36,7 @@ The namespace supported by the identity connector.
|
|
|
36
36
|
|
|
37
37
|
***
|
|
38
38
|
|
|
39
|
-
### CLASS\_NAME
|
|
39
|
+
### CLASS\_NAME {#class_name}
|
|
40
40
|
|
|
41
41
|
> `readonly` `static` **CLASS\_NAME**: `string`
|
|
42
42
|
|
|
@@ -44,7 +44,7 @@ Runtime name for the class.
|
|
|
44
44
|
|
|
45
45
|
## Methods
|
|
46
46
|
|
|
47
|
-
### className()
|
|
47
|
+
### className() {#classname}
|
|
48
48
|
|
|
49
49
|
> **className**(): `string`
|
|
50
50
|
|
|
@@ -62,7 +62,25 @@ The class name of the component.
|
|
|
62
62
|
|
|
63
63
|
***
|
|
64
64
|
|
|
65
|
-
###
|
|
65
|
+
### health() {#health}
|
|
66
|
+
|
|
67
|
+
> **health**(): `Promise`\<`IHealth`[]\>
|
|
68
|
+
|
|
69
|
+
Returns the health status of the component.
|
|
70
|
+
|
|
71
|
+
#### Returns
|
|
72
|
+
|
|
73
|
+
`Promise`\<`IHealth`[]\>
|
|
74
|
+
|
|
75
|
+
The health status of the component.
|
|
76
|
+
|
|
77
|
+
#### Implementation of
|
|
78
|
+
|
|
79
|
+
`IIdentityResolverConnector.health`
|
|
80
|
+
|
|
81
|
+
***
|
|
82
|
+
|
|
83
|
+
### resolveDocument() {#resolvedocument}
|
|
66
84
|
|
|
67
85
|
> **resolveDocument**(`documentId`): `Promise`\<`IDidDocument`\>
|
|
68
86
|
|
package/locales/en.json
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
+
"health": {
|
|
3
|
+
"universalResolverConnector": {
|
|
4
|
+
"healthDescription": "Connectivity and availability of the universal resolver",
|
|
5
|
+
"resolverHealthCheckFailed": "Failed to check universal resolver health status"
|
|
6
|
+
}
|
|
7
|
+
},
|
|
2
8
|
"error": {
|
|
3
9
|
"universalResolverConnector": {
|
|
4
10
|
"resolveDocumentFailed": "Resolving the document failed \"{documentId}\""
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/identity-connector-universal",
|
|
3
|
-
"version": "0.0.3-next.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.3-next.21",
|
|
4
|
+
"description": "Connector for resolving decentralised identifiers through the Universal Resolver ecosystem.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/
|
|
7
|
+
"url": "git+https://github.com/iotaledger/identity.git",
|
|
8
8
|
"directory": "packages/identity-connector-universal"
|
|
9
9
|
},
|
|
10
10
|
"author": "martyn.janes@iota.org",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@twin.org/core": "next",
|
|
18
|
-
"@twin.org/identity-models": "0.0.3-next.
|
|
18
|
+
"@twin.org/identity-models": "0.0.3-next.21",
|
|
19
19
|
"@twin.org/nameof": "next",
|
|
20
20
|
"@twin.org/standards-w3c-did": "next",
|
|
21
21
|
"@twin.org/web": "next"
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"integration"
|
|
52
52
|
],
|
|
53
53
|
"bugs": {
|
|
54
|
-
"url": "git+https://github.com/
|
|
54
|
+
"url": "git+https://github.com/iotaledger/identity/issues"
|
|
55
55
|
},
|
|
56
56
|
"homepage": "https://twindev.org"
|
|
57
57
|
}
|