@docupace/ihub-config 1.1.10 → 1.1.11

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.
@@ -43,7 +43,8 @@ type TotalsItem {
43
43
  }
44
44
 
45
45
  type GroupBy {
46
- path: String!
46
+ path: String
47
+ pathExpression: String
47
48
  orderType: OrderType!
48
49
  component: String
49
50
  }
@@ -43,7 +43,8 @@ type TotalsItem {
43
43
  }
44
44
 
45
45
  type GroupBy {
46
- path: String!
46
+ path: String
47
+ pathExpression: String
47
48
  orderType: OrderType!
48
49
  component: String
49
50
  }
package/package.json CHANGED
@@ -1,78 +1,80 @@
1
- {
2
- "name": "@docupace/ihub-config",
3
- "version": "1.1.10",
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
- }
1
+ {
2
+ "name": "@docupace/ihub-config",
3
+ "version": "1.1.11",
4
+ "description": "Reusable config GraphQL extension and standalone server",
5
+ "main": "./dist/index.js",
6
+ "type": "module",
7
+ "scripts": {
8
+ "test": "jest",
9
+ "test:coverage": "jest --coverage",
10
+ "start:dev": "cross-env NODE_ENV=development tsx watch --clear-screen --no-cache src/server.ts --log-level debug | pino-pretty",
11
+ "start": "node dist/server.js",
12
+ "build:code": "tsc -p tsconfig.json",
13
+ "build:assets": "cpx \"model/**/*.yaml\" ./dist/model && cpx \"model/**/*.graphql\" ./dist/model",
14
+ "build": "rm -rf dist && pnpm lint && pnpm build:code && pnpm build:assets",
15
+ "watch": "tsc -p tsconfig.json --watch",
16
+ "start:build": "rm -rf dist && pnpm build:esm && pnpm build:assets && node dist/server.js",
17
+ "codegen": "graphql-codegen --config codegen.ts",
18
+ "lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" \"tests/**/*.{js,jsx,ts,tsx}\"",
19
+ "lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\" \"tests/**/*.{js,jsx,ts,tsx}\"",
20
+ "prepublishOnly": "pnpm build && pnpm test",
21
+ "sonar": "bash sonar.sh"
22
+ },
23
+ "keywords": [
24
+ "graphql",
25
+ "config",
26
+ "extension"
27
+ ],
28
+ "author": "",
29
+ "license": "ISC",
30
+ "dependencies": {
31
+ "@docupace/ihub-cache": "1.0.1",
32
+ "@docupace/ihub-core": "0.0.114-alpha.1",
33
+ "axios": "^1.13.5",
34
+ "cross-env": "^7.0.3",
35
+ "dotenv": "^16.4.1",
36
+ "graphql": "^16.8.1",
37
+ "js-yaml": "^4.1.0",
38
+ "lodash": "^4.17.21",
39
+ "pino": "^10.3.1",
40
+ "simple-git": "^3.22.0"
41
+ },
42
+ "devDependencies": {
43
+ "@graphql-codegen/cli": "5.0.2",
44
+ "@graphql-codegen/typescript": "4.0.6",
45
+ "@graphql-codegen/typescript-resolvers": "4.0.6",
46
+ "@types/jest": "^30.0.0",
47
+ "@types/js-yaml": "^4.0.9",
48
+ "@types/lodash": "^4.17.7",
49
+ "@types/node": "^20.10.6",
50
+ "@typescript-eslint/eslint-plugin": "^7.10.0",
51
+ "@typescript-eslint/parser": "^7.10.0",
52
+ "cpx": "^1.5.0",
53
+ "eslint": "8",
54
+ "eslint-config-prettier": "^8.10.0",
55
+ "eslint-import-resolver-typescript": "^3.6.1",
56
+ "eslint-plugin-import": "^2.29.1",
57
+ "eslint-plugin-prettier": "^5.1.3",
58
+ "jest": "^29.7.0",
59
+ "nock": "^13.5.6",
60
+ "pino-pretty": "^13.1.2",
61
+ "prettier": "^3.6.2",
62
+ "sonarqube-scanner": "^4.3.4",
63
+ "ts-jest": "^29.1.1",
64
+ "ts-node": "^10.9.1",
65
+ "tslib": "^2.8.1",
66
+ "tsx": "^4.11.2",
67
+ "typescript": "^5.3.3"
68
+ },
69
+ "packageManager": "pnpm@10.30.3",
70
+ "types": "dist/index.d.ts",
71
+ "files": [
72
+ "dist",
73
+ "model",
74
+ "README.md",
75
+ ".env.example"
76
+ ],
77
+ "imports": {
78
+ "#module-format": "./dist/lib/module-format.esm.js"
79
+ }
80
+ }