@pexip-engage-public/graphql 1.1.5-canary-20250702125321 → 1.1.6-canary-20250703080335
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/CHANGELOG.md +8 -1
- package/dist/type-guards.js +1 -1
- package/dist/type-guards.js.map +1 -1
- package/package.json +4 -4
- package/src/type-guards.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
# @pexip-engage-public/graphql
|
|
2
2
|
|
|
3
|
-
## 1.1.
|
|
3
|
+
## 1.1.6-canary-20250703080335
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- 0d1bff2: chore: Move cross office setting to enabled features (renamed to APPOINTMENT_CROSS_OFFICE_EMPLOYEE_SELECTION_ENABLED)
|
|
8
8
|
|
|
9
|
+
## 1.1.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [6fd331c]
|
|
14
|
+
- @pexip-engage-public/utils@0.1.46
|
|
15
|
+
|
|
9
16
|
## 1.1.4
|
|
10
17
|
|
|
11
18
|
### Patch Changes
|
package/dist/type-guards.js
CHANGED
package/dist/type-guards.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type-guards.js","sourceRoot":"","sources":["../src/type-guards.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"type-guards.js","sourceRoot":"","sources":["../src/type-guards.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,uCAAuC,CAAC;AAGxE,MAAM,SAAS,GAAG,eAAe,CAAW;IAC1C,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;CACT,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,SAAS,GAAG,SAAS,CAAC,MAAM,CAAC;AAE1C,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,SAAS;CACV,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pexip-engage-public/graphql",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6-canary-20250703080335",
|
|
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"
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"graphql-request": "^7.2.0",
|
|
39
39
|
"lz-string": "^1.5.0",
|
|
40
40
|
"zod": "^3.25.67",
|
|
41
|
-
"@pexip-engage/utils": "0.1.
|
|
41
|
+
"@pexip-engage-public/utils": "0.1.46"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@graphql-codegen/cli": "^5.0.7",
|
|
@@ -59,9 +59,9 @@
|
|
|
59
59
|
"build": "tsc",
|
|
60
60
|
"clean": "rm -rf .turbo node_modules dist tsconfig.tsbuildinfo",
|
|
61
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",
|
|
64
62
|
"codegen:diff": "graphql-inspector diff ./schema.graphql https://graph.development.pexipengage.com",
|
|
63
|
+
"codegen:local": "gql.tada generate-output && graphql-codegen-esm",
|
|
64
|
+
"codegen:remote": "graphql-inspector introspect https://graph.development.pexipengage.com --write ./schema.graphql && pnpm codegen:local",
|
|
65
65
|
"lint": "cross-env TIMING=1 eslint --max-warnings=0 .",
|
|
66
66
|
"lint:fix": "pnpm lint --fix"
|
|
67
67
|
}
|
package/src/type-guards.ts
CHANGED