altair-graphql-core 5.1.0 → 5.2.0

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.
@@ -92,6 +92,16 @@ export interface SettingsState {
92
92
  * Disable new editor beta
93
93
  */
94
94
  'beta.disable.newEditor'?: boolean;
95
+ /**
96
+ * Disable new script beta
97
+ */
98
+ 'beta.disable.newScript'?: boolean;
99
+ /**
100
+ * List of cookies to be accessible in the pre-request script
101
+ * @example ['cookie1', 'cookie2']
102
+ * @default []
103
+ */
104
+ 'script.allowedCookies'?: string[];
95
105
  }
96
106
  export {};
97
107
  //# sourceMappingURL=settings.interfaces.d.ts.map
@@ -92,6 +92,16 @@ export interface SettingsState {
92
92
  * Disable new editor beta
93
93
  */
94
94
  'beta.disable.newEditor'?: boolean;
95
+ /**
96
+ * Disable new script beta
97
+ */
98
+ 'beta.disable.newScript'?: boolean;
99
+ /**
100
+ * List of cookies to be accessible in the pre-request script
101
+ * @example ['cookie1', 'cookie2']
102
+ * @default []
103
+ */
104
+ 'script.allowedCookies'?: string[];
95
105
  }
96
106
  export {};
97
107
  //# sourceMappingURL=settings.interfaces.d.ts.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "altair-graphql-core",
3
3
  "description": "Several of the core logic for altair graphql client",
4
- "version": "5.1.0",
4
+ "version": "5.2.0",
5
5
  "author": "Samuel Imolorhe <altair@sirmuel.design> (https://sirmuel.design)",
6
6
  "bugs": "https://github.com/altair-graphql/altair/issues",
7
7
  "dependencies": {
@@ -56,5 +56,5 @@
56
56
  "test": "echo \"Error: no test specified\" && exit 0"
57
57
  },
58
58
  "types": "./build/index.d.ts",
59
- "gitHead": "df20be42c6c6f61839458079f6a3deef7ee728f1"
59
+ "gitHead": "389f9abe840a79eef03a3d3555fe527314d02fe0"
60
60
  }