@things-factory/resource-base 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/resource-base",
3
- "version": "7.0.1-alpha.77",
3
+ "version": "7.0.1-alpha.78",
4
4
  "main": "dist-server/index.js",
5
5
  "things-factory": true,
6
6
  "author": "",
@@ -23,7 +23,7 @@
23
23
  "migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
24
24
  },
25
25
  "dependencies": {
26
- "@things-factory/auth-base": "^7.0.1-alpha.77"
26
+ "@things-factory/auth-base": "^7.0.1-alpha.78"
27
27
  },
28
- "gitHead": "e65893063c79d82a3c67233eac2295de2bae8397"
28
+ "gitHead": "6423c664e70e7877c362b4aebb7f169e4a2ad22d"
29
29
  }
@@ -28,7 +28,7 @@ export class Entity {
28
28
  readonly id: string
29
29
 
30
30
  @ManyToOne(type => Domain)
31
- @Field({ nullable: true })
31
+ @Field(type => Domain)
32
32
  domain?: Domain
33
33
 
34
34
  @RelationId((entity: Entity) => entity.domain)
@@ -27,7 +27,7 @@ export class EntityColumn {
27
27
  readonly id: string
28
28
 
29
29
  @ManyToOne(type => Domain)
30
- @Field({ nullable: true })
30
+ @Field(type => Domain)
31
31
  domain?: Domain
32
32
 
33
33
  @RelationId((entityColumn: EntityColumn) => entityColumn.domain)