@pexip-engage-public/graphql 1.0.71 → 1.0.72

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +8 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @pexip-engage-public/graphql
2
2
 
3
+ ## 1.0.72
4
+
5
+ ### Patch Changes
6
+
7
+ - 1e1782e: Superuser: Add Agent Prio debugger page
8
+ - 17a6e09: fix(deps): update all non-major dependencies
9
+ - Updated dependencies [17a6e09]
10
+ - @pexip-engage/utils@0.1.40
11
+
3
12
  ## 1.0.71
4
13
 
5
14
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pexip-engage-public/graphql",
3
- "version": "1.0.71",
3
+ "version": "1.0.72",
4
4
  "homepage": "https://github.com/skedify/frontend-mono/tree/develop/packages/graphql#readme",
5
5
  "bugs": {
6
6
  "url": "https://github.com/skedify/frontend-mono/issues"
@@ -37,16 +37,16 @@
37
37
  "graphql": "^16.11.0",
38
38
  "graphql-request": "^7.1.2",
39
39
  "lz-string": "^1.5.0",
40
- "zod": "^3.24.3",
41
- "@pexip-engage/utils": "0.1.39"
40
+ "zod": "^3.24.4",
41
+ "@pexip-engage/utils": "0.1.40"
42
42
  },
43
43
  "devDependencies": {
44
- "@graphql-codegen/cli": "^5.0.5",
44
+ "@graphql-codegen/cli": "^5.0.6",
45
45
  "@graphql-codegen/typescript": "^4.1.6",
46
46
  "@graphql-inspector/cli": "^5.0.8",
47
47
  "typescript": "^5.8.3",
48
48
  "@pexip-engage/tsconfig": "0.1.1",
49
- "eslint-config-pexip-engage": "1.1.15"
49
+ "eslint-config-pexip-engage": "1.1.16"
50
50
  },
51
51
  "volta": {
52
52
  "extends": "../../package.json"
@@ -58,7 +58,9 @@
58
58
  "scripts": {
59
59
  "build": "tsc",
60
60
  "clean": "rm -rf .turbo node_modules dist tsconfig.tsbuildinfo",
61
- "codegen": "graphql-inspector introspect https://graph.development.pexipengage.com --write ./schema.graphql && gql.tada generate-output && graphql-codegen-esm",
61
+ "codegen": "pnpm codegen:remote",
62
+ "codegen:remote": "graphql-inspector introspect https://graph.development.pexipengage.com --write ./schema.graphql && pnpm codegen:local",
63
+ "codegen:local": "gql.tada generate-output && graphql-codegen-esm",
62
64
  "codegen:diff": "graphql-inspector diff ./schema.graphql https://graph.development.pexipengage.com",
63
65
  "lint": "cross-env TIMING=1 eslint --max-warnings=0 .",
64
66
  "lint:fix": "pnpm lint --fix"