@twin.org/api-auth-entity-storage-models 0.0.1-next.32 → 0.0.1-next.34
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,19 @@
|
|
|
1
1
|
# @twin.org/api-auth-entity-storage-models - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.34](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.1-next.33...api-auth-entity-storage-models-v0.0.1-next.34) (2025-05-27)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **api-auth-entity-storage-models:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
## [0.0.1-next.33](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.1-next.32...api-auth-entity-storage-models-v0.0.1-next.33) (2025-04-17)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* use shared store mechanism ([#19](https://github.com/twinfoundation/api/issues/19)) ([32116df](https://github.com/twinfoundation/api/commit/32116df3b4380a30137f5056f242a5c99afa2df9))
|
|
16
|
+
|
|
3
17
|
## [0.0.1-next.32](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-models-v0.0.1-next.31...api-auth-entity-storage-models-v0.0.1-next.32) (2025-03-28)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -38,7 +38,7 @@ The authentication token for the user, if it uses a mechanism with public access
|
|
|
38
38
|
|
|
39
39
|
### logout()
|
|
40
40
|
|
|
41
|
-
> **logout**(`token
|
|
41
|
+
> **logout**(`token?`): `Promise`\<`void`\>
|
|
42
42
|
|
|
43
43
|
Logout the current user.
|
|
44
44
|
|
|
@@ -60,7 +60,7 @@ Nothing.
|
|
|
60
60
|
|
|
61
61
|
### refresh()
|
|
62
62
|
|
|
63
|
-
> **refresh**(`token
|
|
63
|
+
> **refresh**(`token?`): `Promise`\<\{ `token`: `string`; `expiry`: `number`; \}\>
|
|
64
64
|
|
|
65
65
|
Refresh the token.
|
|
66
66
|
|
package/package.json
CHANGED