@pexip-engage-public/graphql 1.3.0 → 1.3.2-canary-20251120141322
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 +12 -0
- package/dist/graphql-env.d.ts +3 -0
- package/dist/graphql-env.d.ts.map +1 -1
- package/dist/graphql-env.js +4 -0
- package/dist/graphql-env.js.map +1 -1
- package/dist/schema.d.ts +1 -1
- package/dist/schema.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/graphql-env.ts +4 -0
- package/src/schema.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pexip-engage-public/graphql",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2-canary-20251120141322",
|
|
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"
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@graphql-codegen/cli": "^6.0.1",
|
|
45
45
|
"@graphql-codegen/typescript": "^5.0.2",
|
|
46
|
-
"@graphql-inspector/cli": "^
|
|
46
|
+
"@graphql-inspector/cli": "^6.0.3",
|
|
47
47
|
"typescript": "^5.9.3",
|
|
48
48
|
"@pexip-engage/tsconfig": "0.1.1",
|
|
49
49
|
"eslint-config-pexip-engage": "1.2.0"
|
package/src/graphql-env.ts
CHANGED
|
@@ -43726,6 +43726,10 @@ const introspection = {
|
|
|
43726
43726
|
"name": "MICROSOFT_TEAMS_APPLICATION_AUTH",
|
|
43727
43727
|
"isDeprecated": false
|
|
43728
43728
|
},
|
|
43729
|
+
{
|
|
43730
|
+
"name": "NONE",
|
|
43731
|
+
"isDeprecated": false
|
|
43732
|
+
},
|
|
43729
43733
|
{
|
|
43730
43734
|
"name": "PEXIP",
|
|
43731
43735
|
"isDeprecated": false
|
package/src/schema.ts
CHANGED