@things-factory/board-service 7.0.1-alpha.9 → 7.0.1-alpha.90

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/board-service",
3
- "version": "7.0.1-alpha.9",
3
+ "version": "7.0.1-alpha.90",
4
4
  "main": "dist-server/index.js",
5
5
  "things-factory": true,
6
6
  "author": "",
@@ -23,11 +23,11 @@
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.9",
27
- "@things-factory/env": "^7.0.1-alpha.0",
28
- "@things-factory/fav-base": "^7.0.1-alpha.9",
29
- "@things-factory/font-base": "^7.0.1-alpha.9",
30
- "@things-factory/integration-base": "^7.0.1-alpha.9",
26
+ "@things-factory/auth-base": "^7.0.1-alpha.90",
27
+ "@things-factory/env": "^7.0.1-alpha.71",
28
+ "@things-factory/fav-base": "^7.0.1-alpha.90",
29
+ "@things-factory/font-base": "^7.0.1-alpha.90",
30
+ "@things-factory/integration-base": "^7.0.1-alpha.90",
31
31
  "@things-factory/operato-license-checker": "^4.0.4",
32
32
  "content-disposition": "^0.5.3",
33
33
  "generic-pool": "^3.8.2"
@@ -36,5 +36,5 @@
36
36
  "@thiagoelg/node-printer": "0.6.2",
37
37
  "puppeteer": "^22.3.0"
38
38
  },
39
- "gitHead": "e77082517f5483704f1e884cbc81b7f94c0eec15"
39
+ "gitHead": "79086a82c81dadca6c105a37fa91a2cd34a74183"
40
40
  }
@@ -38,7 +38,7 @@ export class BoardTemplate {
38
38
  readonly id: string
39
39
 
40
40
  @ManyToOne(type => Domain)
41
- @Field({ nullable: true })
41
+ @Field(type => Domain)
42
42
  domain?: Domain
43
43
 
44
44
  @RelationId((boardTemplate: BoardTemplate) => boardTemplate.domain)
@@ -66,8 +66,8 @@ export class BoardTemplate {
66
66
  DATABASE_TYPE == 'mysql' || DATABASE_TYPE == 'mariadb'
67
67
  ? 'longtext'
68
68
  : DATABASE_TYPE == 'oracle'
69
- ? 'clob'
70
- : 'varchar'
69
+ ? 'clob'
70
+ : 'varchar'
71
71
  })
72
72
  @Field({ nullable: true })
73
73
  model?: string
@@ -78,8 +78,8 @@ export class BoardTemplate {
78
78
  DATABASE_TYPE == 'mysql' || DATABASE_TYPE == 'mariadb'
79
79
  ? 'longtext'
80
80
  : DATABASE_TYPE == 'oracle'
81
- ? 'clob'
82
- : 'varchar'
81
+ ? 'clob'
82
+ : 'varchar'
83
83
  })
84
84
  @Field({ nullable: true })
85
85
  thumbnail?: string
@@ -43,7 +43,7 @@ export class Theme {
43
43
  readonly id: string
44
44
 
45
45
  @ManyToOne(type => Domain)
46
- @Field({ nullable: true })
46
+ @Field(type => Domain)
47
47
  domain?: Domain
48
48
 
49
49
  @RelationId((theme: Theme) => theme.domain)
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html>
1
+ <!doctype html>
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="utf-8" />
@@ -27,6 +27,7 @@
27
27
  </style>
28
28
 
29
29
  <link href="/node_modules/@material-design-icons/font/index.css" rel="stylesheet" />
30
+ <link href="/node_modules/material-symbols/index.css" rel="stylesheet" />
30
31
 
31
32
  <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
32
33
 
@@ -27,6 +27,7 @@
27
27
  </style>
28
28
 
29
29
  <link href="/node_modules/@material-design-icons/font/index.css" rel="stylesheet" />
30
+ <link href="/node_modules/material-symbols/index.css" rel="stylesheet" />
30
31
 
31
32
  <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
32
33
 
@@ -23,6 +23,7 @@
23
23
  </style>
24
24
 
25
25
  <link href="/node_modules/@material-design-icons/font/index.css" rel="stylesheet" />
26
+ <link href="/node_modules/material-symbols/index.css" rel="stylesheet" />
26
27
  </head>
27
28
  <body>
28
29
  <div id="scene"></div>