@twin.org/api-auth-entity-storage-service 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-service - Changelog
|
2
2
|
|
3
|
+
## [0.0.1-next.35](https://github.com/twinfoundation/api/compare/api-auth-entity-storage-service-v0.0.1-next.34...api-auth-entity-storage-service-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-service-v0.0.1-next.33...api-auth-entity-storage-service-v0.0.1-next.34) (2025-05-27)
|
20
|
+
|
21
|
+
|
22
|
+
### Miscellaneous Chores
|
23
|
+
|
24
|
+
* **api-auth-entity-storage-service:** 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-service-v0.0.1-next.32...api-auth-entity-storage-service-v0.0.1-next.33) (2025-04-17)
|
4
36
|
|
5
37
|
|
@@ -82,7 +82,7 @@ Nothing.
|
|
82
82
|
|
83
83
|
### login()
|
84
84
|
|
85
|
-
> **login**(`email`, `password`): `Promise`\<\{ `token
|
85
|
+
> **login**(`email`, `password`): `Promise`\<\{ `token?`: `string`; `expiry`: `number`; \}\>
|
86
86
|
|
87
87
|
Perform a login for the user.
|
88
88
|
|
@@ -102,7 +102,7 @@ The password for the user.
|
|
102
102
|
|
103
103
|
#### Returns
|
104
104
|
|
105
|
-
`Promise`\<\{ `token
|
105
|
+
`Promise`\<\{ `token?`: `string`; `expiry`: `number`; \}\>
|
106
106
|
|
107
107
|
The authentication token for the user, if it uses a mechanism with public access.
|
108
108
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@twin.org/api-auth-entity-storage-service",
|
3
|
-
"version": "0.0.1-next.
|
3
|
+
"version": "0.0.1-next.35",
|
4
4
|
"description": "Auth Entity Storage contract implementation and REST endpoint definitions",
|
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/crypto": "next",
|
22
22
|
"@twin.org/entity": "next",
|