@twin.org/identity-connector-universal 0.0.1 → 0.0.2-next.1

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 CHANGED
@@ -13,7 +13,7 @@ npm install @twin.org/identity-connector-universal
13
13
  To test the universal resolver you will need to run the docker image.
14
14
 
15
15
  ```shell
16
- docker run -d --name twin-identity-universal -e NETWORK=testnet -p 8080:8080 iotaledger/uni-resolver-driver-iota:v0.2.0-alpha
16
+ docker run -d --name twin-identity-universal -e NETWORK=testnet -p 8180:8080 iotaledger/uni-resolver-driver-iota:v0.2.0-alpha
17
17
  ```
18
18
 
19
19
  ## Examples
package/docs/changelog.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @twin.org/identity-connector-Universal - Changelog
2
2
 
3
+ ## [0.0.2-next.1](https://github.com/twinfoundation/identity/compare/identity-connector-universal-v0.0.2-next.0...identity-connector-universal-v0.0.2-next.1) (2025-08-18)
4
+
5
+
6
+ ### Features
7
+
8
+ * add mainnet support ([af56a38](https://github.com/twinfoundation/identity/commit/af56a382837896cd4e13d5814c0924c46658b99c))
9
+ * identity key separator use slash ([1319d0d](https://github.com/twinfoundation/identity/commit/1319d0d07164a36b3ec279e6421b8835ffefc3d3))
10
+ * improve url construction ([544a435](https://github.com/twinfoundation/identity/commit/544a435dadb90b9e29533f4a4ce09725268d04bd))
11
+ * re-use vault keys if available ([5a848d7](https://github.com/twinfoundation/identity/commit/5a848d7520829d9c891ec889fd773fbc0ee77ba5))
12
+ * update comment ([436e030](https://github.com/twinfoundation/identity/commit/436e030e9480bdc4e35b44ad7199a5ccc7a7b31e))
13
+ * use shared store mechanism ([#27](https://github.com/twinfoundation/identity/issues/27)) ([ce41f3f](https://github.com/twinfoundation/identity/commit/ce41f3fc3da1b206ec06da7ea5b2c968f788804d))
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * Import path and bump version ([#21](https://github.com/twinfoundation/identity/issues/21)) ([ccea845](https://github.com/twinfoundation/identity/commit/ccea845bf32562267280bc1b3dde1c9af1a00360))
19
+ * Install sdk-wasm ([#20](https://github.com/twinfoundation/identity/issues/20)) ([75ec14e](https://github.com/twinfoundation/identity/commit/75ec14e072f8c219863a1c028a3b0783802086e9))
20
+
21
+
22
+ ### Dependencies
23
+
24
+ * The following workspace dependencies were updated
25
+ * dependencies
26
+ * @twin.org/identity-models bumped from 0.0.2-next.0 to 0.0.2-next.1
27
+
3
28
  ## 0.0.1 (2025-07-08)
4
29
 
5
30
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/identity-connector-universal",
3
- "version": "0.0.1",
3
+ "version": "0.0.2-next.1",
4
4
  "description": "Identity connector implementation using universal resolver",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,11 +14,11 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/core": "^0.0.1",
18
- "@twin.org/identity-models": "^0.0.1",
19
- "@twin.org/nameof": "^0.0.1",
20
- "@twin.org/standards-w3c-did": "^0.0.1",
21
- "@twin.org/web": "^0.0.1"
17
+ "@twin.org/core": "next",
18
+ "@twin.org/identity-models": "0.0.2-next.1",
19
+ "@twin.org/nameof": "next",
20
+ "@twin.org/standards-w3c-did": "next",
21
+ "@twin.org/web": "next"
22
22
  },
23
23
  "main": "./dist/cjs/index.cjs",
24
24
  "module": "./dist/esm/index.mjs",