@things-factory/shell 7.0.1-beta.13 → 7.0.1-beta.18

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/shell",
3
- "version": "7.0.1-beta.13",
3
+ "version": "7.0.1-beta.18",
4
4
  "description": "Core module for framework",
5
5
  "bin": {
6
6
  "things-factory": "bin/things-factory",
@@ -50,7 +50,7 @@
50
50
  "@material/mwc-icon-button": "^0.27.0",
51
51
  "@material/mwc-slider": "^0.27.0",
52
52
  "@material/mwc-textfield": "^0.27.0",
53
- "@material/web": "^1.4.0",
53
+ "@material/web": "^1.5.0",
54
54
  "@open-wc/scoped-elements": "^2.1.3",
55
55
  "@operato/board": "^2.0.0-beta.0",
56
56
  "@operato/graphql": "^2.0.0-beta.0",
@@ -60,7 +60,7 @@
60
60
  "@operato/typeorm-history": "^2.0.0-beta.0",
61
61
  "@operato/utils": "^2.0.0-beta.0",
62
62
  "@things-factory/ejs-remote": "^7.0.1-beta.6",
63
- "@things-factory/env": "^7.0.1-beta.6",
63
+ "@things-factory/env": "^7.0.1-beta.18",
64
64
  "@things-factory/operato-license-checker": "^4.0.4",
65
65
  "@things-factory/styles": "^7.0.1-beta.12",
66
66
  "@things-factory/utils": "^7.0.1-beta.10",
@@ -134,5 +134,5 @@
134
134
  "pg": "^8.7.3",
135
135
  "sqlite3": "^5.0.8"
136
136
  },
137
- "gitHead": "e5eff2cffc574da35303589976fa15922c845fa5"
137
+ "gitHead": "44f0df6a133577bad8d184a529796c69249a8296"
138
138
  }
@@ -22,7 +22,7 @@ export class AttributeSetQuery {
22
22
  }
23
23
 
24
24
  @Query(returns => AttributeSetList, { description: 'To fetch multiple AttributeSets' })
25
- async attributeSets(@Args() params: ListParam, @Ctx() context: any): Promise<AttributeSetList> {
25
+ async attributeSets(@Args(type => ListParam) params: ListParam, @Ctx() context: any): Promise<AttributeSetList> {
26
26
  const queryBuilder = getQueryBuilderFromListParams({
27
27
  params,
28
28
  repository: await getRepository(AttributeSet),
@@ -21,7 +21,7 @@ export class DomainQuery {
21
21
 
22
22
  @Directive('@privilege(superUserGranted: true)')
23
23
  @Query(returns => DomainList, { description: 'To fetch all domains (Only superuser is granted this privilege.)' })
24
- async domains(@Args() params: ListParam, @Ctx() context: any): Promise<DomainList> {
24
+ async domains(@Args(type => ListParam) params: ListParam, @Ctx() context: any): Promise<DomainList> {
25
25
  const queryBuilder = await getQueryBuilderFromListParams({
26
26
  repository: getRepository(Domain),
27
27
  alias: 'ContactPoint',