@things-factory/auth-base 7.0.1-alpha.73 → 7.0.1-alpha.78

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": "7.0.1-alpha.73",
3
+ "version": "7.0.1-alpha.78",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -32,7 +32,7 @@
32
32
  "dependencies": {
33
33
  "@things-factory/email-base": "^7.0.1-alpha.71",
34
34
  "@things-factory/env": "^7.0.1-alpha.71",
35
- "@things-factory/i18n-base": "^7.0.1-alpha.73",
35
+ "@things-factory/i18n-base": "^7.0.1-alpha.77",
36
36
  "@things-factory/shell": "^7.0.1-alpha.71",
37
37
  "@things-factory/utils": "^7.0.1-alpha.71",
38
38
  "jsonwebtoken": "^9.0.0",
@@ -43,5 +43,5 @@
43
43
  "passport-local": "^1.0.0",
44
44
  "popsicle-cookie-jar": "^1.0.0"
45
45
  },
46
- "gitHead": "e642f88c83cc1b004c31786eb1c9e3a4e8d0eb59"
46
+ "gitHead": "6423c664e70e7877c362b4aebb7f169e4a2ad22d"
47
47
  }
@@ -75,7 +75,7 @@ export class AuthProvider {
75
75
  readonly id: string
76
76
 
77
77
  @ManyToOne(type => Domain)
78
- @Field({ nullable: true })
78
+ @Field(type => Domain)
79
79
  domain?: Domain
80
80
 
81
81
  @RelationId((authProvider: AuthProvider) => authProvider.domain)
@@ -33,7 +33,7 @@ export class UsersAuthProviders {
33
33
  readonly id: string
34
34
 
35
35
  @ManyToOne(type => Domain)
36
- @Field({ nullable: true })
36
+ @Field(type => Domain)
37
37
  domain?: Domain
38
38
 
39
39
  @RelationId((usersAuthProviders: UsersAuthProviders) => usersAuthProviders.domain)