@twin.org/node 0.0.3-next.38 → 0.0.3-next.39
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/locales/en.json +14 -4
- package/docs/changelog.md +14 -0
- package/docs/open-api/spec.json +69 -60
- package/package.json +2 -2
package/dist/locales/en.json
CHANGED
|
@@ -42,7 +42,11 @@
|
|
|
42
42
|
},
|
|
43
43
|
"userCreate": {
|
|
44
44
|
"passwordTooShort": "The password provided is too short, it must be at least {minLength} characters long.",
|
|
45
|
-
"userAlreadyExists": "The user with ID already exists and overwriteMode is set to \"error\"."
|
|
45
|
+
"userAlreadyExists": "The user with ID already exists and overwriteMode is set to \"error\".",
|
|
46
|
+
"tenantIdRequired": "The tenant ID is required when multi-tenancy is enabled."
|
|
47
|
+
},
|
|
48
|
+
"userUpdate": {
|
|
49
|
+
"tenantIdRequired": "The tenant ID is required when multi-tenancy is enabled."
|
|
46
50
|
},
|
|
47
51
|
"vaultKeyCreate": {
|
|
48
52
|
"vaultKeyAlreadyExists": "The vault key with ID already exists and overwriteMode is set to \"error\"."
|
|
@@ -409,6 +413,9 @@
|
|
|
409
413
|
"verificationMethodNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" could not be found",
|
|
410
414
|
"verificationMethodJwkNotFound": "The verification method \"{methodName}\" of type \"{methodType}\" is missing the JWK"
|
|
411
415
|
},
|
|
416
|
+
"silentTelemetryConnector": {
|
|
417
|
+
"notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
|
|
418
|
+
},
|
|
412
419
|
"attestationService": {
|
|
413
420
|
"noConnectors": "There are no connectors registered with the attestation factory",
|
|
414
421
|
"attestFailed": "The attestation of the data failed",
|
|
@@ -417,9 +424,6 @@
|
|
|
417
424
|
"destroyFailed": "The destruction of the attestation failed",
|
|
418
425
|
"namespaceMismatch": "The namespace in the urn \"{id}\" does not match the namespace of the attestation service \"{namespace}\""
|
|
419
426
|
},
|
|
420
|
-
"silentTelemetryConnector": {
|
|
421
|
-
"notSupported": "The method \"{methodName}\" is not supported on silent telemetry connector."
|
|
422
|
-
},
|
|
423
427
|
"auditableItemGraphRestClient": {
|
|
424
428
|
"notSupportedOnClient": "The method \"{methodName}\" is not supported on the REST client, it can only be used on a server side component"
|
|
425
429
|
},
|
|
@@ -1749,6 +1753,9 @@
|
|
|
1749
1753
|
"organization-identity": {
|
|
1750
1754
|
"description": "The organization DID to associate the user with."
|
|
1751
1755
|
},
|
|
1756
|
+
"tenant-id": {
|
|
1757
|
+
"description": "The tenant ID to associate the user with."
|
|
1758
|
+
},
|
|
1752
1759
|
"email": {
|
|
1753
1760
|
"description": "The email address of the user."
|
|
1754
1761
|
},
|
|
@@ -1804,6 +1811,9 @@
|
|
|
1804
1811
|
"organization-identity": {
|
|
1805
1812
|
"description": "The organization DID to associate the user with."
|
|
1806
1813
|
},
|
|
1814
|
+
"tenant-id": {
|
|
1815
|
+
"description": "The tenant ID to associate the user with."
|
|
1816
|
+
},
|
|
1807
1817
|
"email": {
|
|
1808
1818
|
"description": "The email address of the user."
|
|
1809
1819
|
},
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.39](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.38...node-v0.0.3-next.39) (2026-05-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **node:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/node-core bumped from 0.0.3-next.38 to 0.0.3-next.39
|
|
16
|
+
|
|
3
17
|
## [0.0.3-next.38](https://github.com/iotaledger/twin-node/compare/node-v0.0.3-next.37...node-v0.0.3-next.38) (2026-05-20)
|
|
4
18
|
|
|
5
19
|
|
package/docs/open-api/spec.json
CHANGED
|
@@ -1224,7 +1224,7 @@
|
|
|
1224
1224
|
"content": {
|
|
1225
1225
|
"application/json": {
|
|
1226
1226
|
"schema": {
|
|
1227
|
-
"$ref": "#/components/schemas/
|
|
1227
|
+
"$ref": "#/components/schemas/AuthenticationUser"
|
|
1228
1228
|
},
|
|
1229
1229
|
"examples": {
|
|
1230
1230
|
"getUserResponseExample": {
|
|
@@ -1529,7 +1529,7 @@
|
|
|
1529
1529
|
"content": {
|
|
1530
1530
|
"application/json": {
|
|
1531
1531
|
"schema": {
|
|
1532
|
-
"$ref": "#/components/schemas/
|
|
1532
|
+
"$ref": "#/components/schemas/AuthenticationUser"
|
|
1533
1533
|
},
|
|
1534
1534
|
"examples": {
|
|
1535
1535
|
"getUserResponseExample": {
|
|
@@ -20358,71 +20358,21 @@
|
|
|
20358
20358
|
]
|
|
20359
20359
|
},
|
|
20360
20360
|
"AdminUserCreateRequest": {
|
|
20361
|
-
"description": "The body of the request.",
|
|
20362
20361
|
"type": "object",
|
|
20363
20362
|
"properties": {
|
|
20364
|
-
"email": {
|
|
20365
|
-
"type": "string",
|
|
20366
|
-
"description": "The user e-mail address."
|
|
20367
|
-
},
|
|
20368
20363
|
"password": {
|
|
20369
|
-
"type": "string"
|
|
20370
|
-
"description": "The encrypted password for the user."
|
|
20371
|
-
},
|
|
20372
|
-
"userIdentity": {
|
|
20373
|
-
"type": "string",
|
|
20374
|
-
"description": "The user identity."
|
|
20375
|
-
},
|
|
20376
|
-
"organizationIdentity": {
|
|
20377
|
-
"type": "string",
|
|
20378
|
-
"description": "The users organization."
|
|
20379
|
-
},
|
|
20380
|
-
"scope": {
|
|
20381
|
-
"type": "array",
|
|
20382
|
-
"items": {
|
|
20383
|
-
"type": "string"
|
|
20384
|
-
},
|
|
20385
|
-
"description": "The scope assigned to the user, comma separated."
|
|
20364
|
+
"type": "string"
|
|
20386
20365
|
}
|
|
20387
20366
|
},
|
|
20388
20367
|
"required": [
|
|
20389
|
-
"
|
|
20390
|
-
|
|
20391
|
-
|
|
20392
|
-
|
|
20393
|
-
|
|
20394
|
-
]
|
|
20395
|
-
},
|
|
20396
|
-
"AdminUserGetResponse": {
|
|
20397
|
-
"description": "The body of the request.",
|
|
20398
|
-
"type": "object",
|
|
20399
|
-
"properties": {
|
|
20400
|
-
"email": {
|
|
20401
|
-
"type": "string",
|
|
20402
|
-
"description": "The user e-mail address."
|
|
20403
|
-
},
|
|
20404
|
-
"userIdentity": {
|
|
20405
|
-
"type": "string",
|
|
20406
|
-
"description": "The user identity."
|
|
20407
|
-
},
|
|
20408
|
-
"organizationIdentity": {
|
|
20409
|
-
"type": "string",
|
|
20410
|
-
"description": "The users organization."
|
|
20411
|
-
},
|
|
20412
|
-
"scope": {
|
|
20413
|
-
"type": "array",
|
|
20414
|
-
"items": {
|
|
20415
|
-
"type": "string"
|
|
20416
|
-
},
|
|
20417
|
-
"description": "The scope assigned to the user, comma separated."
|
|
20368
|
+
"password"
|
|
20369
|
+
],
|
|
20370
|
+
"allOf": [
|
|
20371
|
+
{
|
|
20372
|
+
"$ref": "#/components/schemas/AuthenticationUser"
|
|
20418
20373
|
}
|
|
20419
|
-
|
|
20420
|
-
"
|
|
20421
|
-
"email",
|
|
20422
|
-
"userIdentity",
|
|
20423
|
-
"organizationIdentity",
|
|
20424
|
-
"scope"
|
|
20425
|
-
]
|
|
20374
|
+
],
|
|
20375
|
+
"description": "The body of the request."
|
|
20426
20376
|
},
|
|
20427
20377
|
"AdminUserUpdatePasswordRequest": {
|
|
20428
20378
|
"type": "object",
|
|
@@ -20954,6 +20904,37 @@
|
|
|
20954
20904
|
"dateCreated"
|
|
20955
20905
|
]
|
|
20956
20906
|
},
|
|
20907
|
+
"AuthenticationUser": {
|
|
20908
|
+
"description": "Contract definition for authentication user.",
|
|
20909
|
+
"type": "object",
|
|
20910
|
+
"properties": {
|
|
20911
|
+
"email": {
|
|
20912
|
+
"type": "string",
|
|
20913
|
+
"description": "The user e-mail address."
|
|
20914
|
+
},
|
|
20915
|
+
"userIdentity": {
|
|
20916
|
+
"type": "string",
|
|
20917
|
+
"description": "The user identity."
|
|
20918
|
+
},
|
|
20919
|
+
"organizationIdentity": {
|
|
20920
|
+
"type": "string",
|
|
20921
|
+
"description": "The users organization."
|
|
20922
|
+
},
|
|
20923
|
+
"scope": {
|
|
20924
|
+
"type": "array",
|
|
20925
|
+
"items": {
|
|
20926
|
+
"type": "string"
|
|
20927
|
+
},
|
|
20928
|
+
"description": "The scope assigned to the user, comma separated."
|
|
20929
|
+
}
|
|
20930
|
+
},
|
|
20931
|
+
"required": [
|
|
20932
|
+
"email",
|
|
20933
|
+
"userIdentity",
|
|
20934
|
+
"organizationIdentity",
|
|
20935
|
+
"scope"
|
|
20936
|
+
]
|
|
20937
|
+
},
|
|
20957
20938
|
"AutomationActionCreateRequest": {
|
|
20958
20939
|
"description": "The body parameters for the request.",
|
|
20959
20940
|
"type": "object",
|
|
@@ -21744,6 +21725,20 @@
|
|
|
21744
21725
|
"expirationDate": {
|
|
21745
21726
|
"type": "string",
|
|
21746
21727
|
"description": "The date the verifiable credential is valid until."
|
|
21728
|
+
},
|
|
21729
|
+
"jwtHeaderFields": {
|
|
21730
|
+
"type": "object",
|
|
21731
|
+
"additionalProperties": {
|
|
21732
|
+
"type": "string"
|
|
21733
|
+
},
|
|
21734
|
+
"description": "Additional fields to include in the JWT when creating the verifiable credential in jwt format."
|
|
21735
|
+
},
|
|
21736
|
+
"jwtPayloadFields": {
|
|
21737
|
+
"type": "object",
|
|
21738
|
+
"additionalProperties": {
|
|
21739
|
+
"type": "string"
|
|
21740
|
+
},
|
|
21741
|
+
"description": "Additional fields to include in the JWT payload when creating the verifiable credential in jwt format."
|
|
21747
21742
|
}
|
|
21748
21743
|
},
|
|
21749
21744
|
"required": [
|
|
@@ -21825,6 +21820,20 @@
|
|
|
21825
21820
|
"expirationDate": {
|
|
21826
21821
|
"type": "string",
|
|
21827
21822
|
"description": "The expiration date/time for the presentation."
|
|
21823
|
+
},
|
|
21824
|
+
"jwtHeaderFields": {
|
|
21825
|
+
"type": "object",
|
|
21826
|
+
"additionalProperties": {
|
|
21827
|
+
"type": "string"
|
|
21828
|
+
},
|
|
21829
|
+
"description": "Additional fields to include in the JWT header when creating the verifiable presentation in jwt format."
|
|
21830
|
+
},
|
|
21831
|
+
"jwtPayloadFields": {
|
|
21832
|
+
"type": "object",
|
|
21833
|
+
"additionalProperties": {
|
|
21834
|
+
"type": "string"
|
|
21835
|
+
},
|
|
21836
|
+
"description": "Additional fields to include in the JWT payload when creating the verifiable presentation in jwt format."
|
|
21828
21837
|
}
|
|
21829
21838
|
},
|
|
21830
21839
|
"required": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/node",
|
|
3
|
-
"version": "0.0.3-next.
|
|
3
|
+
"version": "0.0.3-next.39",
|
|
4
4
|
"description": "TWIN Node serving APIs using the specified configuration",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/node-core": "0.0.3-next.
|
|
17
|
+
"@twin.org/node-core": "0.0.3-next.39"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
20
|
"url": "git+https://github.com/iotaledger/node/issues"
|