Skip to content

Commit b740f9f

Browse files
author
SSOfy
committed
added UserEntity missing properties
1 parent 32e7fb6 commit b740f9f

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 1.1.4 - 2023-02-11
4+
5+
* Added UserEntity missing properties
6+
37
## 1.1.3 - 2023-02-04
48

59
* Added OTPOptionEntity missing properties

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ssofy/node-sdk",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"description": "Official SSOfy Node.js SDK for instant and efficient API access.",
55
"keywords": [
66
"ssofy",

src/Models/UserEntity.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
export interface UserEntity {
22
id: string
3-
display_name: string
3+
hash: string
4+
display_name?: string
45
name?: string
56
picture?: string
67
profile?: string
78
email?: string
9+
email_verified?: boolean
810
phone?: string
11+
phone_verified?: boolean
912
additional?: any
1013
}

0 commit comments

Comments
 (0)