altair-static 7.2.1 → 7.2.2
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/build/dist/263.js +2 -2
- package/build/dist/main.js +4 -4
- package/build/dist/styles.css +1 -1
- package/build/index.d.ts +20 -0
- package/package.json +4 -4
package/build/index.d.ts
CHANGED
|
@@ -242,6 +242,26 @@ export interface SettingsState {
|
|
|
242
242
|
* Enable the scrollbar in the tab list
|
|
243
243
|
*/
|
|
244
244
|
enableTablistScrollbar?: boolean;
|
|
245
|
+
/**
|
|
246
|
+
* Whether to include descriptions in the introspection result
|
|
247
|
+
*/
|
|
248
|
+
"introspection.options.description"?: boolean;
|
|
249
|
+
/**
|
|
250
|
+
* Whether to include `specifiedByUrl` in the introspection result
|
|
251
|
+
*/
|
|
252
|
+
"introspection.options.specifiedByUrl"?: boolean;
|
|
253
|
+
/**
|
|
254
|
+
* Whether to include `isRepeatable` flag on directives
|
|
255
|
+
*/
|
|
256
|
+
"introspection.options.directiveIsRepeatable"?: boolean;
|
|
257
|
+
/**
|
|
258
|
+
* Whether to include `description` field on schema
|
|
259
|
+
*/
|
|
260
|
+
"introspection.options.schemaDescription"?: boolean;
|
|
261
|
+
/**
|
|
262
|
+
* Whether target GraphQL server supports deprecation of input values
|
|
263
|
+
*/
|
|
264
|
+
"introspection.options.inputValueDeprecation"?: boolean;
|
|
245
265
|
}
|
|
246
266
|
export interface AltairWindowOptions {
|
|
247
267
|
/**
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "altair-static",
|
|
3
3
|
"description": "Static package for altair graphql client",
|
|
4
|
-
"version": "7.2.
|
|
4
|
+
"version": "7.2.2",
|
|
5
5
|
"author": "Samuel Imolorhe <altair@sirmuel.design> (https://sirmuel.design)",
|
|
6
6
|
"bugs": "https://github.com/altair-graphql/altair/issues",
|
|
7
7
|
"devDependencies": {
|
|
8
|
-
"@altairgraphql/app": "^7.2.
|
|
8
|
+
"@altairgraphql/app": "^7.2.2",
|
|
9
9
|
"@types/jest": "^24.0.23",
|
|
10
|
-
"altair-graphql-core": "^7.2.
|
|
10
|
+
"altair-graphql-core": "^7.2.2",
|
|
11
11
|
"dts-bundle-generator": "^6.11.0",
|
|
12
12
|
"esbuild": "^0.14.43",
|
|
13
13
|
"jest": "29.4.1",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"type": "opencollective",
|
|
22
22
|
"url": "https://opencollective.com/altair"
|
|
23
23
|
},
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "b4bb105113b498fc8a82fbc3c1e1fc42d9531155",
|
|
25
25
|
"homepage": "https://github.com/altair-graphql/altair#readme",
|
|
26
26
|
"keywords": [
|
|
27
27
|
"altair",
|