altair-graphql-core 5.0.0 → 5.0.3

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/.prettierrc ADDED
@@ -0,0 +1 @@
1
+ "prettier-config-altair"
package/build/config.d.ts CHANGED
@@ -129,6 +129,7 @@ export declare class AltairConfig {
129
129
  'vi-VN': string;
130
130
  };
131
131
  query_history_depth: number;
132
+ disableLineNumbers: boolean;
132
133
  defaultTheme: string;
133
134
  themes: string[];
134
135
  isTranslateMode: any;
package/build/config.js CHANGED
@@ -31,6 +31,7 @@ export class AltairConfig {
31
31
  'vi-VN': 'Vietnamese',
32
32
  };
33
33
  this.query_history_depth = isElectron ? 100 : 15;
34
+ this.disableLineNumbers = false;
34
35
  this.defaultTheme = 'system';
35
36
  this.themes = ['light', 'dark', 'dracula', 'system'];
36
37
  this.isTranslateMode = isTranslateMode;
@@ -68,6 +68,10 @@ export interface SettingsState {
68
68
  * Number of items allowed in history pane
69
69
  */
70
70
  historyDepth?: number;
71
+ /**
72
+ * Disable line numbers
73
+ */
74
+ disableLineNumbers?: boolean;
71
75
  /**
72
76
  * Theme config object
73
77
  */
@@ -84,6 +88,10 @@ export interface SettingsState {
84
88
  * Contains shortcut to action mapping
85
89
  */
86
90
  'editor.shortcuts'?: Record<string, string>;
91
+ /**
92
+ * Disable new editor beta
93
+ */
94
+ 'beta.disable.newEditor'?: boolean;
87
95
  }
88
96
  export {};
89
97
  //# sourceMappingURL=settings.interfaces.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "altair-graphql-core",
3
- "version": "5.0.0",
3
+ "version": "5.0.3",
4
4
  "description": "Several of the core logic for altair graphql client",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -61,5 +61,5 @@
61
61
  "util": "0.12.4",
62
62
  "uuid": "8.3.2"
63
63
  },
64
- "gitHead": "458bbd59bcc282d74d1508e9ef4ec3820acb074b"
64
+ "gitHead": "f79ad372651b7e863a7d3aeb78c01fc6da19bace"
65
65
  }