@docupace/ihub-config 1.1.12 → 1.1.13
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/README.md +182 -182
- package/dist/model/graphs/config/common.graphql +7 -7
- package/dist/model/graphs/config/fields.graphql +367 -367
- package/dist/model/graphs/config/menu.graphql +49 -49
- package/dist/model/graphs/config/mutation.graphql +30 -30
- package/dist/model/graphs/config/page.graphql +241 -241
- package/dist/model/graphs/config/panel.graphql +30 -30
- package/dist/model/graphs/config/query.graphql +55 -55
- package/dist/model/graphs/config/selectOptions.graphql +47 -47
- package/dist/model/graphs/config/table.graphql +180 -177
- package/dist/model/graphs/config/tests.graphql +16 -16
- package/dist/model/graphs/config/theme.graphql +41 -41
- package/dist/model/graphs/config/ui-components.graphql +10 -10
- package/dist/model/graphs/domains/scalars.graphql +3 -3
- package/dist/model/graphs/filter.graphql +5 -5
- package/dist/model/graphs/schema.graphql +7 -7
- package/dist/types/graphql.d.ts +6 -0
- package/dist/types/graphql.d.ts.map +1 -1
- package/dist/types/graphql.js.map +1 -1
- package/model/graphs/config/common.graphql +7 -7
- package/model/graphs/config/fields.graphql +367 -367
- package/model/graphs/config/menu.graphql +49 -49
- package/model/graphs/config/mutation.graphql +30 -30
- package/model/graphs/config/page.graphql +241 -241
- package/model/graphs/config/panel.graphql +30 -30
- package/model/graphs/config/query.graphql +55 -55
- package/model/graphs/config/selectOptions.graphql +47 -47
- package/model/graphs/config/table.graphql +180 -177
- package/model/graphs/config/tests.graphql +16 -16
- package/model/graphs/config/theme.graphql +41 -41
- package/model/graphs/config/ui-components.graphql +10 -10
- package/model/graphs/domains/scalars.graphql +3 -3
- package/model/graphs/filter.graphql +5 -5
- package/model/graphs/schema.graphql +7 -7
- package/package.json +78 -80
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
type TextElement implements IRowElement & IElement {
|
|
2
|
-
color: String
|
|
3
|
-
cols: Int
|
|
4
|
-
fontSize: String
|
|
5
|
-
name: String
|
|
6
|
-
sx: JSON
|
|
7
|
-
value: String
|
|
8
|
-
valueExpression: String
|
|
9
|
-
variant: String
|
|
10
|
-
visibilityCondition: String
|
|
1
|
+
type TextElement implements IRowElement & IElement {
|
|
2
|
+
color: String
|
|
3
|
+
cols: Int
|
|
4
|
+
fontSize: String
|
|
5
|
+
name: String
|
|
6
|
+
sx: JSON
|
|
7
|
+
value: String
|
|
8
|
+
valueExpression: String
|
|
9
|
+
variant: String
|
|
10
|
+
visibilityCondition: String
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
scalar Number
|
|
2
|
-
|
|
3
|
-
scalar JSON
|
|
1
|
+
scalar Number
|
|
2
|
+
|
|
3
|
+
scalar JSON
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
enum OrderType {
|
|
3
|
-
ASC
|
|
4
|
-
DESC
|
|
5
|
-
}
|
|
1
|
+
|
|
2
|
+
enum OrderType {
|
|
3
|
+
ASC
|
|
4
|
+
DESC
|
|
5
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
type Query {
|
|
2
|
-
config: ConfigQuery
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
type Mutation {
|
|
6
|
-
config: ConfigMutation
|
|
7
|
-
}
|
|
1
|
+
type Query {
|
|
2
|
+
config: ConfigQuery
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
type Mutation {
|
|
6
|
+
config: ConfigMutation
|
|
7
|
+
}
|
package/package.json
CHANGED
|
@@ -1,80 +1,78 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@docupace/ihub-config",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "Reusable config GraphQL extension and standalone server",
|
|
5
|
-
"main": "./dist/index.js",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"@
|
|
32
|
-
"@
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
"
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
"dist",
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
}
|
|
80
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@docupace/ihub-config",
|
|
3
|
+
"version": "1.1.13",
|
|
4
|
+
"description": "Reusable config GraphQL extension and standalone server",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"graphql",
|
|
9
|
+
"config",
|
|
10
|
+
"extension"
|
|
11
|
+
],
|
|
12
|
+
"author": "",
|
|
13
|
+
"license": "ISC",
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"@docupace/ihub-cache": "1.0.1",
|
|
16
|
+
"@docupace/ihub-core": "0.0.114-alpha.1",
|
|
17
|
+
"axios": "^1.13.5",
|
|
18
|
+
"cross-env": "^7.0.3",
|
|
19
|
+
"dotenv": "^16.4.1",
|
|
20
|
+
"graphql": "^16.8.1",
|
|
21
|
+
"js-yaml": "^4.1.0",
|
|
22
|
+
"lodash": "^4.17.21",
|
|
23
|
+
"pino": "^10.3.1",
|
|
24
|
+
"simple-git": "^3.22.0"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@graphql-codegen/cli": "5.0.2",
|
|
28
|
+
"@graphql-codegen/typescript": "4.0.6",
|
|
29
|
+
"@graphql-codegen/typescript-resolvers": "4.0.6",
|
|
30
|
+
"@types/jest": "^30.0.0",
|
|
31
|
+
"@types/js-yaml": "^4.0.9",
|
|
32
|
+
"@types/lodash": "^4.17.7",
|
|
33
|
+
"@types/node": "^20.10.6",
|
|
34
|
+
"@typescript-eslint/eslint-plugin": "^7.10.0",
|
|
35
|
+
"@typescript-eslint/parser": "^7.10.0",
|
|
36
|
+
"cpx": "^1.5.0",
|
|
37
|
+
"eslint": "8",
|
|
38
|
+
"eslint-config-prettier": "^8.10.0",
|
|
39
|
+
"eslint-import-resolver-typescript": "^3.6.1",
|
|
40
|
+
"eslint-plugin-import": "^2.29.1",
|
|
41
|
+
"eslint-plugin-prettier": "^5.1.3",
|
|
42
|
+
"jest": "^29.7.0",
|
|
43
|
+
"nock": "^13.5.6",
|
|
44
|
+
"pino-pretty": "^13.1.2",
|
|
45
|
+
"prettier": "^3.6.2",
|
|
46
|
+
"sonarqube-scanner": "^4.3.4",
|
|
47
|
+
"ts-jest": "^29.1.1",
|
|
48
|
+
"ts-node": "^10.9.1",
|
|
49
|
+
"tslib": "^2.8.1",
|
|
50
|
+
"tsx": "^4.11.2",
|
|
51
|
+
"typescript": "^5.3.3"
|
|
52
|
+
},
|
|
53
|
+
"types": "dist/index.d.ts",
|
|
54
|
+
"files": [
|
|
55
|
+
"dist",
|
|
56
|
+
"model",
|
|
57
|
+
"README.md",
|
|
58
|
+
".env.example"
|
|
59
|
+
],
|
|
60
|
+
"imports": {
|
|
61
|
+
"#module-format": "./dist/lib/module-format.esm.js"
|
|
62
|
+
},
|
|
63
|
+
"scripts": {
|
|
64
|
+
"test": "jest",
|
|
65
|
+
"test:coverage": "jest --coverage",
|
|
66
|
+
"start:dev": "cross-env NODE_ENV=development tsx watch --clear-screen --no-cache src/server.ts --log-level debug | pino-pretty",
|
|
67
|
+
"start": "node dist/server.js",
|
|
68
|
+
"build:code": "tsc -p tsconfig.json",
|
|
69
|
+
"build:assets": "cpx \"model/**/*.yaml\" ./dist/model && cpx \"model/**/*.graphql\" ./dist/model",
|
|
70
|
+
"build": "rm -rf dist && pnpm lint && pnpm build:code && pnpm build:assets",
|
|
71
|
+
"watch": "tsc -p tsconfig.json --watch",
|
|
72
|
+
"start:build": "rm -rf dist && pnpm build:esm && pnpm build:assets && node dist/server.js",
|
|
73
|
+
"codegen": "graphql-codegen --config codegen.ts",
|
|
74
|
+
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" \"tests/**/*.{js,jsx,ts,tsx}\"",
|
|
75
|
+
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\" \"tests/**/*.{js,jsx,ts,tsx}\"",
|
|
76
|
+
"sonar": "bash sonar.sh"
|
|
77
|
+
}
|
|
78
|
+
}
|