@twin.org/identity-connector-universal 0.0.1-next.39 → 0.0.1-next.41
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
|
@@ -6,7 +6,7 @@ var web = require('@twin.org/web');
|
|
|
6
6
|
// Copyright 2024 IOTA Stiftung.
|
|
7
7
|
// SPDX-License-Identifier: Apache-2.0.
|
|
8
8
|
/**
|
|
9
|
-
* Class for performing identity operations on universal resolver.
|
|
9
|
+
* Class for performing identity operations on a universal resolver.
|
|
10
10
|
*/
|
|
11
11
|
class UniversalResolverConnector {
|
|
12
12
|
/**
|
package/dist/esm/index.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import { FetchHelper, HttpMethod } from '@twin.org/web';
|
|
|
4
4
|
// Copyright 2024 IOTA Stiftung.
|
|
5
5
|
// SPDX-License-Identifier: Apache-2.0.
|
|
6
6
|
/**
|
|
7
|
-
* Class for performing identity operations on universal resolver.
|
|
7
|
+
* Class for performing identity operations on a universal resolver.
|
|
8
8
|
*/
|
|
9
9
|
class UniversalResolverConnector {
|
|
10
10
|
/**
|
|
@@ -2,7 +2,7 @@ import type { IIdentityResolverConnector } from "@twin.org/identity-models";
|
|
|
2
2
|
import type { IDidDocument } from "@twin.org/standards-w3c-did";
|
|
3
3
|
import type { IUniversalResolverConnectorConstructorOptions } from "./models/IUniversalResolverConnectorConstructorOptions";
|
|
4
4
|
/**
|
|
5
|
-
* Class for performing identity operations on universal resolver.
|
|
5
|
+
* Class for performing identity operations on a universal resolver.
|
|
6
6
|
*/
|
|
7
7
|
export declare class UniversalResolverConnector implements IIdentityResolverConnector {
|
|
8
8
|
/**
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @twin.org/identity-connector-Universal - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.41](https://github.com/twinfoundation/identity/compare/identity-connector-universal-v0.0.1-next.40...identity-connector-universal-v0.0.1-next.41) (2025-04-09)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update comment ([436e030](https://github.com/twinfoundation/identity/commit/436e030e9480bdc4e35b44ad7199a5ccc7a7b31e))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/identity-models bumped from 0.0.1-next.40 to 0.0.1-next.41
|
|
16
|
+
|
|
17
|
+
## [0.0.1-next.40](https://github.com/twinfoundation/identity/compare/identity-connector-universal-v0.0.1-next.39...identity-connector-universal-v0.0.1-next.40) (2025-03-28)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
|
|
23
|
+
* Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Dependencies
|
|
27
|
+
|
|
28
|
+
* The following workspace dependencies were updated
|
|
29
|
+
* dependencies
|
|
30
|
+
* @twin.org/identity-models bumped from 0.0.1-next.39 to 0.0.1-next.40
|
|
31
|
+
|
|
3
32
|
## v0.0.1-next.39
|
|
4
33
|
|
|
5
34
|
- Initial Release
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/identity-connector-universal",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.41",
|
|
4
4
|
"description": "Identity connector implementation using universal resolver",
|
|
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.1-next.
|
|
18
|
+
"@twin.org/identity-models": "0.0.1-next.41",
|
|
19
19
|
"@twin.org/nameof": "next",
|
|
20
20
|
"@twin.org/standards-w3c-did": "next",
|
|
21
21
|
"@twin.org/web": "next"
|