@things-factory/menu-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/menu-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": "client/index.js",
6
6
  "things-factory": true,
@@ -24,7 +24,7 @@
24
24
  "migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
25
25
  },
26
26
  "dependencies": {
27
- "@things-factory/auth-base": "^7.0.1-alpha.73"
27
+ "@things-factory/auth-base": "^7.0.1-alpha.78"
28
28
  },
29
- "gitHead": "e642f88c83cc1b004c31786eb1c9e3a4e8d0eb59"
29
+ "gitHead": "6423c664e70e7877c362b4aebb7f169e4a2ad22d"
30
30
  }
@@ -30,7 +30,7 @@ export class Menu {
30
30
  readonly id: string
31
31
 
32
32
  @ManyToOne(type => Domain)
33
- @Field({ nullable: true })
33
+ @Field(type => Domain)
34
34
  domain?: Domain
35
35
 
36
36
  @RelationId((menu: Menu) => menu.domain)
@@ -25,7 +25,7 @@ export class MenuButton {
25
25
  readonly id: string
26
26
 
27
27
  @ManyToOne(type => Domain)
28
- @Field({ nullable: true })
28
+ @Field(type => Domain)
29
29
  domain?: Domain
30
30
 
31
31
  @RelationId((menuButton: MenuButton) => menuButton.domain)
@@ -27,7 +27,7 @@ export class MenuColumn {
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((menuColumn: MenuColumn) => menuColumn.domain)
@@ -29,7 +29,7 @@ export class MenuDetail {
29
29
  readonly id: string
30
30
 
31
31
  @ManyToOne(type => Domain)
32
- @Field({ nullable: true })
32
+ @Field(type => Domain)
33
33
  domain?: Domain
34
34
 
35
35
  @RelationId((menuDetail: MenuDetail) => menuDetail.domain)
@@ -29,7 +29,7 @@ export class MenuDetailButton {
29
29
  readonly id: string
30
30
 
31
31
  @ManyToOne(type => Domain)
32
- @Field({ nullable: true })
32
+ @Field(type => Domain)
33
33
  domain?: Domain
34
34
 
35
35
  @RelationId((menuDetailButton: MenuDetailButton) => menuDetailButton.domain)
@@ -32,7 +32,7 @@ export class MenuDetailColumn {
32
32
  readonly id: string
33
33
 
34
34
  @ManyToOne(type => Domain)
35
- @Field({ nullable: true })
35
+ @Field(type => Domain)
36
36
  domain?: Domain
37
37
 
38
38
  @RelationId((menuDetailColumn: MenuDetailColumn) => menuDetailColumn.domain)