@twin.org/identity-connector-universal 0.0.3-next.34 → 0.0.3-next.36
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IUniversalResolverResult.js","sourceRoot":"","sources":["../../../../src/models/api/IUniversalResolverResult.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { IDidDocument } from \"@twin.org/standards-w3c-did\";\n\n/**\n * Universal Resolver DIF resolution
|
|
1
|
+
{"version":3,"file":"IUniversalResolverResult.js","sourceRoot":"","sources":["../../../../src/models/api/IUniversalResolverResult.ts"],"names":[],"mappings":"","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport type { IDidDocument } from \"@twin.org/standards-w3c-did\";\n\n/**\n * Result returned by a Universal Resolver DIF resolution request.\n */\nexport interface IUniversalResolverResult {\n\t/**\n\t * The resolved DID document.\n\t */\n\tdidDocument: IDidDocument;\n\n\t/**\n\t * Metadata about the resolution process.\n\t */\n\tdidResolutionMetadata: {\n\t\t/**\n\t\t * The created date of the DID document.\n\t\t */\n\t\tcreated: string;\n\n\t\t/**\n\t\t * The updated date of the DID document.\n\t\t */\n\t\tupdated: string;\n\t};\n\n\t/**\n\t * Metadata about the DID document.\n\t */\n\tdidDocumentMetadata: unknown;\n}\n"]}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
import type { IDidDocument } from "@twin.org/standards-w3c-did";
|
|
2
2
|
/**
|
|
3
|
-
* Universal Resolver DIF resolution
|
|
3
|
+
* Result returned by a Universal Resolver DIF resolution request.
|
|
4
4
|
*/
|
|
5
5
|
export interface IUniversalResolverResult {
|
|
6
6
|
/**
|
|
7
|
-
* DID
|
|
7
|
+
* The resolved DID document.
|
|
8
8
|
*/
|
|
9
9
|
didDocument: IDidDocument;
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* Metadata about the resolution process.
|
|
12
12
|
*/
|
|
13
13
|
didResolutionMetadata: {
|
|
14
14
|
/**
|
|
15
|
-
* The created date of the
|
|
15
|
+
* The created date of the DID document.
|
|
16
16
|
*/
|
|
17
17
|
created: string;
|
|
18
18
|
/**
|
|
19
|
-
* The updated date of the
|
|
19
|
+
* The updated date of the DID document.
|
|
20
20
|
*/
|
|
21
21
|
updated: string;
|
|
22
22
|
};
|
|
23
23
|
/**
|
|
24
|
-
* DID
|
|
24
|
+
* Metadata about the DID document.
|
|
25
25
|
*/
|
|
26
26
|
didDocumentMetadata: unknown;
|
|
27
27
|
}
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.36](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.35...identity-connector-universal-v0.0.3-next.36) (2026-06-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **identity-connector-universal:** Synchronize repo versions
|
|
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.35 to 0.0.3-next.36
|
|
16
|
+
|
|
17
|
+
## [0.0.3-next.35](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.34...identity-connector-universal-v0.0.3-next.35) (2026-06-01)
|
|
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.34 to 0.0.3-next.35
|
|
30
|
+
|
|
3
31
|
## [0.0.3-next.34](https://github.com/iotaledger/twin-identity/compare/identity-connector-universal-v0.0.3-next.33...identity-connector-universal-v0.0.3-next.34) (2026-06-01)
|
|
4
32
|
|
|
5
33
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/identity-connector-universal",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.36",
|
|
4
4
|
"description": "Connector for resolving decentralised identifiers through the Universal Resolver ecosystem.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -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.36",
|
|
19
19
|
"@twin.org/nameof": "next",
|
|
20
20
|
"@twin.org/standards-w3c-did": "next",
|
|
21
21
|
"@twin.org/web": "next"
|