@twin.org/identity-rest-client 0.0.2-next.1 → 0.0.2-next.3
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 +3 -1
- package/dist/esm/index.mjs +3 -1
- package/docs/changelog.md +28 -0
- package/package.json +2 -2
package/dist/cjs/index.cjs
CHANGED
|
@@ -413,7 +413,9 @@ class IdentityProfileClient extends apiCore.BaseRestClient {
|
|
|
413
413
|
async list(publicFilters, publicPropertyNames, cursor, pageSize) {
|
|
414
414
|
const response = await this.fetch("/query", "GET", {
|
|
415
415
|
query: {
|
|
416
|
-
publicFilters: apiModels.HttpParameterHelper.arrayToString(
|
|
416
|
+
publicFilters: apiModels.HttpParameterHelper.arrayToString(
|
|
417
|
+
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
|
|
418
|
+
publicFilters?.map(f => `${f.propertyName}:${f.propertyValue}`)),
|
|
417
419
|
publicPropertyNames: apiModels.HttpParameterHelper.arrayToString(publicPropertyNames),
|
|
418
420
|
cursor,
|
|
419
421
|
pageSize
|
package/dist/esm/index.mjs
CHANGED
|
@@ -411,7 +411,9 @@ class IdentityProfileClient extends BaseRestClient {
|
|
|
411
411
|
async list(publicFilters, publicPropertyNames, cursor, pageSize) {
|
|
412
412
|
const response = await this.fetch("/query", "GET", {
|
|
413
413
|
query: {
|
|
414
|
-
publicFilters: HttpParameterHelper.arrayToString(
|
|
414
|
+
publicFilters: HttpParameterHelper.arrayToString(
|
|
415
|
+
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
|
|
416
|
+
publicFilters?.map(f => `${f.propertyName}:${f.propertyValue}`)),
|
|
415
417
|
publicPropertyNames: HttpParameterHelper.arrayToString(publicPropertyNames),
|
|
416
418
|
cursor,
|
|
417
419
|
pageSize
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @twin.org/identity-rest-client - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.3](https://github.com/twinfoundation/identity/compare/identity-rest-client-v0.0.2-next.2...identity-rest-client-v0.0.2-next.3) (2025-08-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* eslint migration to flat config ([fd6246d](https://github.com/twinfoundation/identity/commit/fd6246d566280b6d5d10a108eb1e92c4b510f2f2))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/identity-models bumped from 0.0.2-next.2 to 0.0.2-next.3
|
|
16
|
+
|
|
17
|
+
## [0.0.2-next.2](https://github.com/twinfoundation/identity/compare/identity-rest-client-v0.0.2-next.1...identity-rest-client-v0.0.2-next.2) (2025-08-20)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* update framework core ([c824497](https://github.com/twinfoundation/identity/commit/c82449709af0215eb7af496cf687c93fb30b5ae0))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Dependencies
|
|
26
|
+
|
|
27
|
+
* The following workspace dependencies were updated
|
|
28
|
+
* dependencies
|
|
29
|
+
* @twin.org/identity-models bumped from 0.0.2-next.1 to 0.0.2-next.2
|
|
30
|
+
|
|
3
31
|
## [0.0.2-next.1](https://github.com/twinfoundation/identity/compare/identity-rest-client-v0.0.2-next.0...identity-rest-client-v0.0.2-next.1) (2025-08-18)
|
|
4
32
|
|
|
5
33
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/identity-rest-client",
|
|
3
|
-
"version": "0.0.2-next.
|
|
3
|
+
"version": "0.0.2-next.3",
|
|
4
4
|
"description": "Identity contract implementation which can connect to REST endpoints",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@twin.org/data-core": "next",
|
|
21
21
|
"@twin.org/data-json-ld": "next",
|
|
22
22
|
"@twin.org/entity": "next",
|
|
23
|
-
"@twin.org/identity-models": "0.0.2-next.
|
|
23
|
+
"@twin.org/identity-models": "0.0.2-next.3",
|
|
24
24
|
"@twin.org/nameof": "next",
|
|
25
25
|
"@twin.org/standards-w3c-did": "next"
|
|
26
26
|
},
|