@things-factory/oauth2-client 7.0.1-alpha.77 → 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/oauth2-client",
3
- "version": "7.0.1-alpha.77",
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,10 +32,10 @@
32
32
  "@operato/layout": "^2.0.0-alpha.0",
33
33
  "@operato/shell": "^2.0.0-alpha.0",
34
34
  "@operato/utils": "^2.0.0-alpha.0",
35
- "@things-factory/auth-base": "^7.0.1-alpha.77",
35
+ "@things-factory/auth-base": "^7.0.1-alpha.78",
36
36
  "@things-factory/shell": "^7.0.1-alpha.71",
37
37
  "client-oauth2": "^4.3.3",
38
38
  "clipboard": "^2.0.6"
39
39
  },
40
- "gitHead": "e65893063c79d82a3c67233eac2295de2bae8397"
40
+ "gitHead": "6423c664e70e7877c362b4aebb7f169e4a2ad22d"
41
41
  }
@@ -23,7 +23,7 @@ export class Oauth2Client {
23
23
  readonly id: string
24
24
 
25
25
  @ManyToOne(type => Domain)
26
- @Field({ nullable: true })
26
+ @Field(type => Domain)
27
27
  domain?: Domain
28
28
 
29
29
  @RelationId((oauth2Client: Oauth2Client) => oauth2Client.domain)