@twin.org/api-auth-entity-storage-rest-client 0.0.1-next.33 → 0.0.1-next.35
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/docs/changelog.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @twin.org/api-auth-entity-storage-rest-client - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.35](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-rest-client-v0.0.1-next.34...api-auth-entity-storage-rest-client-v0.0.1-next.35) (2025-06-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update dependencies ([1171dc4](https://github.com/twinfoundation/api/commit/1171dc416a9481737f6a640e3cf30145768f37e9))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
16
|
+
* @twin.org/api-core bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
17
|
+
* @twin.org/api-models bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
18
|
+
|
|
19
|
+
## [0.0.1-next.34](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-rest-client-v0.0.1-next.33...api-auth-entity-storage-rest-client-v0.0.1-next.34) (2025-05-27)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Miscellaneous Chores
|
|
23
|
+
|
|
24
|
+
* **api-auth-entity-storage-rest-client:** Synchronize repo versions
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Dependencies
|
|
28
|
+
|
|
29
|
+
* The following workspace dependencies were updated
|
|
30
|
+
* dependencies
|
|
31
|
+
* @twin.org/api-auth-entity-storage-models bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
32
|
+
* @twin.org/api-core bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
33
|
+
* @twin.org/api-models bumped from 0.0.1-next.33 to 0.0.1-next.34
|
|
34
|
+
|
|
3
35
|
## [0.0.1-next.33](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-rest-client-v0.0.1-next.32...api-auth-entity-storage-rest-client-v0.0.1-next.33) (2025-04-17)
|
|
4
36
|
|
|
5
37
|
|
|
@@ -50,7 +50,7 @@ Runtime name for the class.
|
|
|
50
50
|
|
|
51
51
|
### login()
|
|
52
52
|
|
|
53
|
-
> **login**(`email`, `password`): `Promise`\<\{ `token
|
|
53
|
+
> **login**(`email`, `password`): `Promise`\<\{ `token?`: `string`; `expiry`: `number`; \}\>
|
|
54
54
|
|
|
55
55
|
Perform a login for the user.
|
|
56
56
|
|
|
@@ -70,7 +70,7 @@ The password for the user.
|
|
|
70
70
|
|
|
71
71
|
#### Returns
|
|
72
72
|
|
|
73
|
-
`Promise`\<\{ `token
|
|
73
|
+
`Promise`\<\{ `token?`: `string`; `expiry`: `number`; \}\>
|
|
74
74
|
|
|
75
75
|
The authentication token for the user, if it uses a mechanism with public access.
|
|
76
76
|
|
|
@@ -108,7 +108,7 @@ Nothing.
|
|
|
108
108
|
|
|
109
109
|
### refresh()
|
|
110
110
|
|
|
111
|
-
> **refresh**(`token?`): `Promise`\<\{ `token
|
|
111
|
+
> **refresh**(`token?`): `Promise`\<\{ `token?`: `string`; `expiry`: `number`; \}\>
|
|
112
112
|
|
|
113
113
|
Refresh the token.
|
|
114
114
|
|
|
@@ -122,7 +122,7 @@ The token to refresh, if it uses a mechanism with public access.
|
|
|
122
122
|
|
|
123
123
|
#### Returns
|
|
124
124
|
|
|
125
|
-
`Promise`\<\{ `token
|
|
125
|
+
`Promise`\<\{ `token?`: `string`; `expiry`: `number`; \}\>
|
|
126
126
|
|
|
127
127
|
The refreshed token, if it uses a mechanism with public access.
|
|
128
128
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/api-auth-entity-storage-rest-client",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.35",
|
|
4
4
|
"description": "Perform REST authentication using entity storage.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@twin.org/api-auth-entity-storage-models": "0.0.1-next.
|
|
18
|
-
"@twin.org/api-core": "0.0.1-next.
|
|
19
|
-
"@twin.org/api-models": "0.0.1-next.
|
|
17
|
+
"@twin.org/api-auth-entity-storage-models": "0.0.1-next.35",
|
|
18
|
+
"@twin.org/api-core": "0.0.1-next.35",
|
|
19
|
+
"@twin.org/api-models": "0.0.1-next.35",
|
|
20
20
|
"@twin.org/core": "next",
|
|
21
21
|
"@twin.org/nameof": "next",
|
|
22
22
|
"@twin.org/web": "next"
|