@things-factory/auth-base 6.1.174 → 6.1.177

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/auth-base",
3
- "version": "6.1.174",
3
+ "version": "6.1.177",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -30,11 +30,11 @@
30
30
  "migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
31
31
  },
32
32
  "dependencies": {
33
- "@things-factory/email-base": "^6.1.174",
34
- "@things-factory/env": "^6.1.174",
35
- "@things-factory/i18n-base": "^6.1.174",
36
- "@things-factory/shell": "^6.1.174",
37
- "@things-factory/utils": "^6.1.174",
33
+ "@things-factory/email-base": "^6.1.175",
34
+ "@things-factory/env": "^6.1.175",
35
+ "@things-factory/i18n-base": "^6.1.175",
36
+ "@things-factory/shell": "^6.1.175",
37
+ "@things-factory/utils": "^6.1.175",
38
38
  "jsonwebtoken": "^9.0.0",
39
39
  "koa-passport": "^6.0.0",
40
40
  "koa-session": "^6.4.0",
@@ -42,5 +42,5 @@
42
42
  "passport-jwt": "^4.0.0",
43
43
  "passport-local": "^1.0.0"
44
44
  },
45
- "gitHead": "582dea90062d7298e39e18d3634a7ac3c3a56310"
45
+ "gitHead": "56be53aa39648efa47618fb4cbb7a7034c17e9a5"
46
46
  }
@@ -96,12 +96,14 @@ export class User {
96
96
  })
97
97
  salt: string
98
98
 
99
- @Column({
100
- nullable: true
101
- })
99
+ @Column({ nullable: true })
102
100
  @Field({ nullable: true })
103
101
  locale: string
104
102
 
103
+ @Column({ nullable: true })
104
+ @Field({ nullable: true })
105
+ ssoId: string
106
+
105
107
  @Column({
106
108
  type:
107
109
  DATABASE_TYPE == 'postgres' || DATABASE_TYPE == 'mysql' || DATABASE_TYPE == 'mariadb'