@twin.org/identity-authentication 0.0.2-next.6 → 0.0.2-next.7
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.
|
@@ -13,11 +13,15 @@ export interface IIdentityAuthenticationActionRequest {
|
|
|
13
13
|
*/
|
|
14
14
|
type: typeof IdentityAuthenticationTypes.ActionRequest;
|
|
15
15
|
/**
|
|
16
|
-
* The
|
|
16
|
+
* The identity of the entity making the request.
|
|
17
17
|
*/
|
|
18
|
-
|
|
18
|
+
requester: string;
|
|
19
19
|
/**
|
|
20
|
-
* The action.
|
|
20
|
+
* The action which can be checked to make sure it matches the specific operation.
|
|
21
21
|
*/
|
|
22
|
-
action
|
|
22
|
+
action?: string;
|
|
23
|
+
/**
|
|
24
|
+
* Additional data for the action request, can be customised per request.
|
|
25
|
+
*/
|
|
26
|
+
data?: unknown;
|
|
23
27
|
}
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.7](https://github.com/twinfoundation/identity/compare/identity-authentication-v0.0.2-next.6...identity-authentication-v0.0.2-next.7) (2025-09-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* additional fields for IIdentityAuthenticationActionRequest ([5d7d688](https://github.com/twinfoundation/identity/commit/5d7d688f370978cd7287ce0e98dd8da82800b7ea))
|
|
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.6 to 0.0.2-next.7
|
|
16
|
+
* devDependencies
|
|
17
|
+
* @twin.org/identity-connector-entity-storage bumped from 0.0.2-next.6 to 0.0.2-next.7
|
|
18
|
+
|
|
3
19
|
## [0.0.2-next.6](https://github.com/twinfoundation/identity/compare/identity-authentication-v0.0.2-next.5...identity-authentication-v0.0.2-next.6) (2025-09-23)
|
|
4
20
|
|
|
5
21
|
|
|
@@ -20,16 +20,24 @@ The type of the request.
|
|
|
20
20
|
|
|
21
21
|
***
|
|
22
22
|
|
|
23
|
-
###
|
|
23
|
+
### requester
|
|
24
24
|
|
|
25
|
-
> **
|
|
25
|
+
> **requester**: `string`
|
|
26
26
|
|
|
27
|
-
The
|
|
27
|
+
The identity of the entity making the request.
|
|
28
28
|
|
|
29
29
|
***
|
|
30
30
|
|
|
31
|
-
### action
|
|
31
|
+
### action?
|
|
32
32
|
|
|
33
|
-
> **action**: `string`
|
|
33
|
+
> `optional` **action**: `string`
|
|
34
34
|
|
|
35
|
-
The action.
|
|
35
|
+
The action which can be checked to make sure it matches the specific operation.
|
|
36
|
+
|
|
37
|
+
***
|
|
38
|
+
|
|
39
|
+
### data?
|
|
40
|
+
|
|
41
|
+
> `optional` **data**: `unknown`
|
|
42
|
+
|
|
43
|
+
Additional data for the action request, can be customised per request.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/identity-authentication",
|
|
3
|
-
"version": "0.0.2-next.
|
|
3
|
+
"version": "0.0.2-next.7",
|
|
4
4
|
"description": "Authentication components implemented using identity",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@twin.org/core": "next",
|
|
19
19
|
"@twin.org/crypto": "next",
|
|
20
20
|
"@twin.org/data-json-ld": "next",
|
|
21
|
-
"@twin.org/identity-models": "0.0.2-next.
|
|
21
|
+
"@twin.org/identity-models": "0.0.2-next.7",
|
|
22
22
|
"@twin.org/standards-w3c-did": "next",
|
|
23
23
|
"@twin.org/web": "next"
|
|
24
24
|
},
|