@scalar/api-client 2.0.47 → 2.0.49
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 +37 -0
- package/dist/components/AddressBar/AddressBar.vue.d.ts.map +1 -1
- package/dist/components/AddressBar/AddressBar.vue.js +2 -2
- package/dist/components/AddressBar/AddressBar.vue2.js +77 -71
- package/dist/components/CodeInput/CodeInput.vue.d.ts +3 -1
- package/dist/components/CodeInput/CodeInput.vue.d.ts.map +1 -1
- package/dist/components/CodeInput/CodeInput.vue.js +2 -2
- package/dist/components/CodeInput/CodeInput.vue2.js +49 -44
- package/dist/components/CommandPalette/TheCommandPalette.vue.d.ts.map +1 -1
- package/dist/components/CommandPalette/TheCommandPalette.vue.js +2 -2
- package/dist/components/CommandPalette/TheCommandPalette.vue2.js +97 -106
- package/dist/components/Sidebar/Sidebar.vue.d.ts +23 -3
- package/dist/components/Sidebar/Sidebar.vue.d.ts.map +1 -1
- package/dist/components/Sidebar/Sidebar.vue.js +55 -19
- package/dist/components/TopNav/TopNav.vue.d.ts.map +1 -1
- package/dist/components/TopNav/TopNav.vue.js +1 -1
- package/dist/components/TopNav/TopNav.vue2.js +46 -43
- package/dist/components/TopNav/TopNavItem.vue.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -9
- package/dist/layouts/App/ApiClientApp.vue.js +1 -1
- package/dist/layouts/App/create-api-client-app.d.ts +56 -46
- package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
- package/dist/layouts/Modal/ApiClientModal.vue.d.ts.map +1 -1
- package/dist/layouts/Modal/ApiClientModal.vue.js +2 -2
- package/dist/layouts/Modal/ApiClientModal.vue2.js +20 -20
- package/dist/layouts/Modal/create-api-client-modal.d.ts +112 -92
- package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
- package/dist/libs/create-client.d.ts +56 -46
- package/dist/libs/create-client.d.ts.map +1 -1
- package/dist/libs/event-busses/{command-palette.d.ts → command-palette-bus.d.ts} +1 -1
- package/dist/libs/event-busses/command-palette-bus.d.ts.map +1 -0
- package/dist/libs/event-busses/{execute-requestBus.d.ts → execute-request-bus.d.ts} +1 -1
- package/dist/libs/event-busses/execute-request-bus.d.ts.map +1 -0
- package/dist/libs/event-busses/hot-keys-bus.d.ts +33 -0
- package/dist/libs/event-busses/hot-keys-bus.d.ts.map +1 -0
- package/dist/libs/event-busses/hot-keys-bus.js +33 -0
- package/dist/libs/event-busses/index.d.ts +3 -3
- package/dist/libs/event-busses/index.d.ts.map +1 -1
- package/dist/libs/event-busses/index.js +3 -3
- package/dist/libs/index.js +3 -3
- package/dist/libs/local-storage.d.ts +1 -1
- package/dist/libs/local-storage.d.ts.map +1 -1
- package/dist/libs/local-storage.js +15 -30
- package/dist/router.d.ts +2 -2
- package/dist/router.d.ts.map +1 -1
- package/dist/router.js +3 -3
- package/dist/store/workspace.d.ts +112 -92
- package/dist/store/workspace.d.ts.map +1 -1
- package/dist/store/workspace.js +140 -137
- package/dist/style.css +1 -1
- package/dist/views/Request/Request.vue.d.ts.map +1 -1
- package/dist/views/Request/Request.vue.js +1 -1
- package/dist/views/Request/Request.vue2.js +135 -131
- package/dist/views/Request/RequestSection/RequestAuth.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestAuth.vue.js +2 -2
- package/dist/views/Request/RequestSection/RequestAuth.vue2.js +165 -148
- package/dist/views/Request/RequestSidebarItem.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSidebarItem.vue.js +1 -1
- package/dist/views/Request/RequestSidebarItem.vue2.js +252 -138
- package/dist/views/Request/RequestSidebarItemMenu.vue.d.ts +27 -5
- package/dist/views/Request/RequestSidebarItemMenu.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSidebarItemMenu.vue.js +4 -4
- package/dist/views/Request/RequestSidebarItemMenu.vue2.js +83 -158
- package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
- package/dist/views/Request/components/WorkspaceDropdown.vue.d.ts.map +1 -1
- package/dist/views/Request/components/WorkspaceDropdown.vue.js +215 -70
- package/dist/views/Request/consts/new-auth-options.d.ts +0 -1
- package/dist/views/Request/consts/new-auth-options.d.ts.map +1 -1
- package/dist/views/Request/consts/new-auth-options.js +5 -6
- package/package.json +7 -7
- package/dist/libs/event-busses/command-palette.d.ts.map +0 -1
- package/dist/libs/event-busses/execute-requestBus.d.ts.map +0 -1
- package/dist/libs/event-busses/hot-key.d.ts +0 -34
- package/dist/libs/event-busses/hot-key.d.ts.map +0 -1
- package/dist/libs/event-busses/hot-key.js +0 -25
- /package/dist/libs/event-busses/{command-palette.js → command-palette-bus.js} +0 -0
- /package/dist/libs/event-busses/{execute-requestBus.js → execute-request-bus.js} +0 -0
|
@@ -29,10 +29,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
29
29
|
cookieUids: string[];
|
|
30
30
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
31
31
|
hotKeyConfig?: {
|
|
32
|
-
|
|
33
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
34
|
-
event: "closeModal";
|
|
35
|
-
|
|
32
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
33
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
34
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
35
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
36
36
|
}>> | undefined;
|
|
37
37
|
} | undefined;
|
|
38
38
|
proxyUrl?: string | undefined;
|
|
@@ -529,10 +529,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
529
529
|
cookieUids: string[];
|
|
530
530
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
531
531
|
hotKeyConfig?: {
|
|
532
|
-
|
|
533
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
534
|
-
event: "closeModal";
|
|
535
|
-
|
|
532
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
533
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
534
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
535
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
536
536
|
}>> | undefined;
|
|
537
537
|
} | undefined;
|
|
538
538
|
proxyUrl?: string | undefined;
|
|
@@ -712,6 +712,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
712
712
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
713
713
|
undo: (uid: string) => void;
|
|
714
714
|
redo: (uid: string) => void;
|
|
715
|
+
loadLocalStorage: () => void;
|
|
715
716
|
};
|
|
716
717
|
collectionMutators: {
|
|
717
718
|
rawAdd: (item: {
|
|
@@ -1073,6 +1074,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1073
1074
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1074
1075
|
undo: (uid: string) => void;
|
|
1075
1076
|
redo: (uid: string) => void;
|
|
1077
|
+
loadLocalStorage: () => void;
|
|
1076
1078
|
};
|
|
1077
1079
|
environmentMutators: {
|
|
1078
1080
|
delete: (uid: string) => void;
|
|
@@ -1162,6 +1164,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1162
1164
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1163
1165
|
undo: (uid: string) => void;
|
|
1164
1166
|
redo: (uid: string) => void;
|
|
1167
|
+
loadLocalStorage: () => void;
|
|
1165
1168
|
};
|
|
1166
1169
|
folderMutators: {
|
|
1167
1170
|
rawAdd: (item: {
|
|
@@ -1212,6 +1215,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1212
1215
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1213
1216
|
undo: (uid: string) => void;
|
|
1214
1217
|
redo: (uid: string) => void;
|
|
1218
|
+
loadLocalStorage: () => void;
|
|
1215
1219
|
};
|
|
1216
1220
|
requestMutators: {
|
|
1217
1221
|
rawAdd: (item: import("@scalar/oas-utils/entities/workspace/spec").Request) => void;
|
|
@@ -1247,6 +1251,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1247
1251
|
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}` | `requestBody.${string}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? import("@scalar/oas-utils/entities/workspace/spec").Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? R extends import("@scalar/object-utils/nested").Path<import("@scalar/oas-utils/entities/workspace/spec").Request[K]> ? import("@scalar/object-utils/nested").PathValue<import("@scalar/oas-utils/entities/workspace/spec").Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1248
1252
|
undo: (uid: string) => void;
|
|
1249
1253
|
redo: (uid: string) => void;
|
|
1254
|
+
loadLocalStorage: () => void;
|
|
1250
1255
|
};
|
|
1251
1256
|
requestExampleMutators: {
|
|
1252
1257
|
rawAdd: (item: {
|
|
@@ -2148,6 +2153,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2148
2153
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2149
2154
|
undo: (uid: string) => void;
|
|
2150
2155
|
redo: (uid: string) => void;
|
|
2156
|
+
loadLocalStorage: () => void;
|
|
2151
2157
|
};
|
|
2152
2158
|
requestsHistory: import("vue").ComputedRef<import("@scalar/oas-utils/entities/workspace/spec").RequestEvent[]>;
|
|
2153
2159
|
securitySchemeMutators: {
|
|
@@ -2687,6 +2693,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2687
2693
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
2688
2694
|
undo: (uid: string) => void;
|
|
2689
2695
|
redo: (uid: string) => void;
|
|
2696
|
+
loadLocalStorage: () => void;
|
|
2690
2697
|
};
|
|
2691
2698
|
serverMutators: {
|
|
2692
2699
|
rawAdd: (item: {
|
|
@@ -2785,6 +2792,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2785
2792
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2786
2793
|
undo: (uid: string) => void;
|
|
2787
2794
|
redo: (uid: string) => void;
|
|
2795
|
+
loadLocalStorage: () => void;
|
|
2788
2796
|
};
|
|
2789
2797
|
workspaceMutators: {
|
|
2790
2798
|
rawAdd: (item: {
|
|
@@ -2797,10 +2805,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2797
2805
|
cookieUids: string[];
|
|
2798
2806
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2799
2807
|
hotKeyConfig?: {
|
|
2800
|
-
|
|
2801
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2802
|
-
event: "closeModal";
|
|
2803
|
-
|
|
2808
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
2809
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2810
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
2811
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
2804
2812
|
}>> | undefined;
|
|
2805
2813
|
} | undefined;
|
|
2806
2814
|
proxyUrl?: string | undefined;
|
|
@@ -2815,15 +2823,16 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2815
2823
|
cookieUids: string[];
|
|
2816
2824
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2817
2825
|
hotKeyConfig?: {
|
|
2818
|
-
|
|
2819
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2820
|
-
event: "closeModal";
|
|
2821
|
-
|
|
2826
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
2827
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2828
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
2829
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
2822
2830
|
}>> | undefined;
|
|
2823
2831
|
} | undefined;
|
|
2824
2832
|
proxyUrl?: string | undefined;
|
|
2825
2833
|
};
|
|
2826
2834
|
delete: (uid: string) => void;
|
|
2835
|
+
rename: (uid: string, newName: string) => void;
|
|
2827
2836
|
set: (item: {
|
|
2828
2837
|
uid: string;
|
|
2829
2838
|
description: string;
|
|
@@ -2834,15 +2843,15 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2834
2843
|
cookieUids: string[];
|
|
2835
2844
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2836
2845
|
hotKeyConfig?: {
|
|
2837
|
-
|
|
2838
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2839
|
-
event: "closeModal";
|
|
2840
|
-
|
|
2846
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
2847
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2848
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
2849
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
2841
2850
|
}>> | undefined;
|
|
2842
2851
|
} | undefined;
|
|
2843
2852
|
proxyUrl?: string | undefined;
|
|
2844
2853
|
}) => void;
|
|
2845
|
-
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.modifier" | "hotKeyConfig.hotKeys" | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifier" | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifier" | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifier" | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifier" | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifier" | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifier" | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifier" | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifier" | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifier" | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifier" | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifier" | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifier" | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifier" | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifier" | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifier" | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifier" | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifier" | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifier" | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifier" | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifier" | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifier" | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifier" | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifier" | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifier" | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifier" | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifier" | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifier" | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifier" | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifier" | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifier" | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifier" | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifier" | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifier" | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifier" | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifier" | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifier" | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifier" | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifier" | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifier" | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifier" | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifier" | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifier" | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifier" | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifier" | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifier" | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifier" | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifier" | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifier" | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifier" | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifier" | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifier" | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifier" | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifier" | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifier" | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifier" | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifier" | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifier" | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifier" | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifier" | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifier" | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifier" | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifier" | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifier" | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifier" | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifier" | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifier">(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
2854
|
+
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
2846
2855
|
uid: string;
|
|
2847
2856
|
description: string;
|
|
2848
2857
|
name: string;
|
|
@@ -2852,10 +2861,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2852
2861
|
cookieUids: string[];
|
|
2853
2862
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2854
2863
|
hotKeyConfig?: {
|
|
2855
|
-
|
|
2856
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2857
|
-
event: "closeModal";
|
|
2858
|
-
|
|
2864
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
2865
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2866
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
2867
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
2859
2868
|
}>> | undefined;
|
|
2860
2869
|
} | undefined;
|
|
2861
2870
|
proxyUrl?: string | undefined;
|
|
@@ -2869,10 +2878,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2869
2878
|
cookieUids: string[];
|
|
2870
2879
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2871
2880
|
hotKeyConfig?: {
|
|
2872
|
-
|
|
2873
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2874
|
-
event: "closeModal";
|
|
2875
|
-
|
|
2881
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
2882
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2883
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
2884
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
2876
2885
|
}>> | undefined;
|
|
2877
2886
|
} | undefined;
|
|
2878
2887
|
proxyUrl?: string | undefined;
|
|
@@ -2886,15 +2895,15 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2886
2895
|
cookieUids: string[];
|
|
2887
2896
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2888
2897
|
hotKeyConfig?: {
|
|
2889
|
-
|
|
2890
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2891
|
-
event: "closeModal";
|
|
2892
|
-
|
|
2898
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
2899
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2900
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
2901
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
2893
2902
|
}>> | undefined;
|
|
2894
2903
|
} | undefined;
|
|
2895
2904
|
proxyUrl?: string | undefined;
|
|
2896
2905
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2897
|
-
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.modifier" | "hotKeyConfig.hotKeys" | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifier" | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifier" | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifier" | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifier" | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifier" | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifier" | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifier" | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifier" | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifier" | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifier" | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifier" | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifier" | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifier" | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifier" | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifier" | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifier" | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifier" | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifier" | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifier" | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifier" | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifier" | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifier" | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifier" | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifier" | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifier" | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifier" | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifier" | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifier" | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifier" | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifier" | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifier" | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifier" | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifier" | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifier" | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifier" | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifier" | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifier" | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifier" | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifier" | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifier" | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifier" | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifier" | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifier" | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifier" | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifier" | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifier" | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifier" | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifier" | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifier" | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifier" | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifier" | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifier" | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifier" | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifier" | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifier" | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifier" | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifier" | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifier" | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifier" | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifier" | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifier" | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifier" | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifier" | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifier" | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifier" | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifier">(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
2906
|
+
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
2898
2907
|
uid: string;
|
|
2899
2908
|
description: string;
|
|
2900
2909
|
name: string;
|
|
@@ -2904,10 +2913,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2904
2913
|
cookieUids: string[];
|
|
2905
2914
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2906
2915
|
hotKeyConfig?: {
|
|
2907
|
-
|
|
2908
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2909
|
-
event: "closeModal";
|
|
2910
|
-
|
|
2916
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
2917
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2918
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
2919
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
2911
2920
|
}>> | undefined;
|
|
2912
2921
|
} | undefined;
|
|
2913
2922
|
proxyUrl?: string | undefined;
|
|
@@ -2921,10 +2930,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2921
2930
|
cookieUids: string[];
|
|
2922
2931
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2923
2932
|
hotKeyConfig?: {
|
|
2924
|
-
|
|
2925
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2926
|
-
event: "closeModal";
|
|
2927
|
-
|
|
2933
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
2934
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2935
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
2936
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
2928
2937
|
}>> | undefined;
|
|
2929
2938
|
} | undefined;
|
|
2930
2939
|
proxyUrl?: string | undefined;
|
|
@@ -2938,16 +2947,17 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2938
2947
|
cookieUids: string[];
|
|
2939
2948
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2940
2949
|
hotKeyConfig?: {
|
|
2941
|
-
|
|
2942
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2943
|
-
event: "closeModal";
|
|
2944
|
-
|
|
2950
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
2951
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2952
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
2953
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
2945
2954
|
}>> | undefined;
|
|
2946
2955
|
} | undefined;
|
|
2947
2956
|
proxyUrl?: string | undefined;
|
|
2948
2957
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2949
2958
|
undo: (uid: string) => void;
|
|
2950
2959
|
redo: (uid: string) => void;
|
|
2960
|
+
loadLocalStorage: () => void;
|
|
2951
2961
|
};
|
|
2952
2962
|
};
|
|
2953
2963
|
}>;
|
|
@@ -2981,10 +2991,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
2981
2991
|
cookieUids: string[];
|
|
2982
2992
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2983
2993
|
hotKeyConfig?: {
|
|
2984
|
-
|
|
2985
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2986
|
-
event: "closeModal";
|
|
2987
|
-
|
|
2994
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
2995
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
2996
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
2997
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
2988
2998
|
}>> | undefined;
|
|
2989
2999
|
} | undefined;
|
|
2990
3000
|
proxyUrl?: string | undefined;
|
|
@@ -3481,10 +3491,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3481
3491
|
cookieUids: string[];
|
|
3482
3492
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
3483
3493
|
hotKeyConfig?: {
|
|
3484
|
-
|
|
3485
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
3486
|
-
event: "closeModal";
|
|
3487
|
-
|
|
3494
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
3495
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
3496
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
3497
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
3488
3498
|
}>> | undefined;
|
|
3489
3499
|
} | undefined;
|
|
3490
3500
|
proxyUrl?: string | undefined;
|
|
@@ -3664,6 +3674,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3664
3674
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
3665
3675
|
undo: (uid: string) => void;
|
|
3666
3676
|
redo: (uid: string) => void;
|
|
3677
|
+
loadLocalStorage: () => void;
|
|
3667
3678
|
};
|
|
3668
3679
|
collectionMutators: {
|
|
3669
3680
|
rawAdd: (item: {
|
|
@@ -4025,6 +4036,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4025
4036
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4026
4037
|
undo: (uid: string) => void;
|
|
4027
4038
|
redo: (uid: string) => void;
|
|
4039
|
+
loadLocalStorage: () => void;
|
|
4028
4040
|
};
|
|
4029
4041
|
environmentMutators: {
|
|
4030
4042
|
delete: (uid: string) => void;
|
|
@@ -4114,6 +4126,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4114
4126
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4115
4127
|
undo: (uid: string) => void;
|
|
4116
4128
|
redo: (uid: string) => void;
|
|
4129
|
+
loadLocalStorage: () => void;
|
|
4117
4130
|
};
|
|
4118
4131
|
folderMutators: {
|
|
4119
4132
|
rawAdd: (item: {
|
|
@@ -4164,6 +4177,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4164
4177
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4165
4178
|
undo: (uid: string) => void;
|
|
4166
4179
|
redo: (uid: string) => void;
|
|
4180
|
+
loadLocalStorage: () => void;
|
|
4167
4181
|
};
|
|
4168
4182
|
requestMutators: {
|
|
4169
4183
|
rawAdd: (item: import("@scalar/oas-utils/entities/workspace/spec").Request) => void;
|
|
@@ -4199,6 +4213,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4199
4213
|
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}` | `requestBody.${string}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? import("@scalar/oas-utils/entities/workspace/spec").Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? R extends import("@scalar/object-utils/nested").Path<import("@scalar/oas-utils/entities/workspace/spec").Request[K]> ? import("@scalar/object-utils/nested").PathValue<import("@scalar/oas-utils/entities/workspace/spec").Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4200
4214
|
undo: (uid: string) => void;
|
|
4201
4215
|
redo: (uid: string) => void;
|
|
4216
|
+
loadLocalStorage: () => void;
|
|
4202
4217
|
};
|
|
4203
4218
|
requestExampleMutators: {
|
|
4204
4219
|
rawAdd: (item: {
|
|
@@ -5100,6 +5115,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5100
5115
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
5101
5116
|
undo: (uid: string) => void;
|
|
5102
5117
|
redo: (uid: string) => void;
|
|
5118
|
+
loadLocalStorage: () => void;
|
|
5103
5119
|
};
|
|
5104
5120
|
requestsHistory: import("vue").ComputedRef<import("@scalar/oas-utils/entities/workspace/spec").RequestEvent[]>;
|
|
5105
5121
|
securitySchemeMutators: {
|
|
@@ -5639,6 +5655,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5639
5655
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
5640
5656
|
undo: (uid: string) => void;
|
|
5641
5657
|
redo: (uid: string) => void;
|
|
5658
|
+
loadLocalStorage: () => void;
|
|
5642
5659
|
};
|
|
5643
5660
|
serverMutators: {
|
|
5644
5661
|
rawAdd: (item: {
|
|
@@ -5737,6 +5754,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5737
5754
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
5738
5755
|
undo: (uid: string) => void;
|
|
5739
5756
|
redo: (uid: string) => void;
|
|
5757
|
+
loadLocalStorage: () => void;
|
|
5740
5758
|
};
|
|
5741
5759
|
workspaceMutators: {
|
|
5742
5760
|
rawAdd: (item: {
|
|
@@ -5749,10 +5767,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5749
5767
|
cookieUids: string[];
|
|
5750
5768
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5751
5769
|
hotKeyConfig?: {
|
|
5752
|
-
|
|
5753
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5754
|
-
event: "closeModal";
|
|
5755
|
-
|
|
5770
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
5771
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5772
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
5773
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
5756
5774
|
}>> | undefined;
|
|
5757
5775
|
} | undefined;
|
|
5758
5776
|
proxyUrl?: string | undefined;
|
|
@@ -5767,15 +5785,16 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5767
5785
|
cookieUids: string[];
|
|
5768
5786
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5769
5787
|
hotKeyConfig?: {
|
|
5770
|
-
|
|
5771
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5772
|
-
event: "closeModal";
|
|
5773
|
-
|
|
5788
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
5789
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5790
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
5791
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
5774
5792
|
}>> | undefined;
|
|
5775
5793
|
} | undefined;
|
|
5776
5794
|
proxyUrl?: string | undefined;
|
|
5777
5795
|
};
|
|
5778
5796
|
delete: (uid: string) => void;
|
|
5797
|
+
rename: (uid: string, newName: string) => void;
|
|
5779
5798
|
set: (item: {
|
|
5780
5799
|
uid: string;
|
|
5781
5800
|
description: string;
|
|
@@ -5786,15 +5805,15 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5786
5805
|
cookieUids: string[];
|
|
5787
5806
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5788
5807
|
hotKeyConfig?: {
|
|
5789
|
-
|
|
5790
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5791
|
-
event: "closeModal";
|
|
5792
|
-
|
|
5808
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
5809
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5810
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
5811
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
5793
5812
|
}>> | undefined;
|
|
5794
5813
|
} | undefined;
|
|
5795
5814
|
proxyUrl?: string | undefined;
|
|
5796
5815
|
}) => void;
|
|
5797
|
-
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.modifier" | "hotKeyConfig.hotKeys" | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifier" | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifier" | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifier" | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifier" | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifier" | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifier" | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifier" | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifier" | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifier" | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifier" | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifier" | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifier" | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifier" | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifier" | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifier" | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifier" | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifier" | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifier" | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifier" | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifier" | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifier" | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifier" | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifier" | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifier" | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifier" | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifier" | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifier" | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifier" | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifier" | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifier" | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifier" | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifier" | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifier" | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifier" | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifier" | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifier" | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifier" | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifier" | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifier" | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifier" | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifier" | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifier" | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifier" | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifier" | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifier" | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifier" | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifier" | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifier" | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifier" | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifier" | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifier" | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifier" | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifier" | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifier" | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifier" | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifier" | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifier" | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifier" | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifier" | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifier" | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifier" | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifier" | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifier" | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifier" | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifier" | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifier">(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
5816
|
+
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
5798
5817
|
uid: string;
|
|
5799
5818
|
description: string;
|
|
5800
5819
|
name: string;
|
|
@@ -5804,10 +5823,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5804
5823
|
cookieUids: string[];
|
|
5805
5824
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5806
5825
|
hotKeyConfig?: {
|
|
5807
|
-
|
|
5808
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5809
|
-
event: "closeModal";
|
|
5810
|
-
|
|
5826
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
5827
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5828
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
5829
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
5811
5830
|
}>> | undefined;
|
|
5812
5831
|
} | undefined;
|
|
5813
5832
|
proxyUrl?: string | undefined;
|
|
@@ -5821,10 +5840,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5821
5840
|
cookieUids: string[];
|
|
5822
5841
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5823
5842
|
hotKeyConfig?: {
|
|
5824
|
-
|
|
5825
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5826
|
-
event: "closeModal";
|
|
5827
|
-
|
|
5843
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
5844
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5845
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
5846
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
5828
5847
|
}>> | undefined;
|
|
5829
5848
|
} | undefined;
|
|
5830
5849
|
proxyUrl?: string | undefined;
|
|
@@ -5838,15 +5857,15 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5838
5857
|
cookieUids: string[];
|
|
5839
5858
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5840
5859
|
hotKeyConfig?: {
|
|
5841
|
-
|
|
5842
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5843
|
-
event: "closeModal";
|
|
5844
|
-
|
|
5860
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
5861
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5862
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
5863
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
5845
5864
|
}>> | undefined;
|
|
5846
5865
|
} | undefined;
|
|
5847
5866
|
proxyUrl?: string | undefined;
|
|
5848
5867
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
5849
|
-
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.modifier" | "hotKeyConfig.hotKeys" | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifier" | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifier" | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifier" | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifier" | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifier" | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifier" | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifier" | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifier" | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifier" | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifier" | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifier" | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifier" | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifier" | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifier" | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifier" | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifier" | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifier" | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifier" | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifier" | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifier" | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifier" | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifier" | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifier" | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifier" | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifier" | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifier" | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifier" | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifier" | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifier" | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifier" | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifier" | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifier" | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifier" | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifier" | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifier" | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifier" | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifier" | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifier" | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifier" | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifier" | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifier" | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifier" | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifier" | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifier" | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifier" | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifier" | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifier" | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifier" | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifier" | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifier" | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifier" | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifier" | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifier" | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifier" | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifier" | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifier" | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifier" | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifier" | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifier" | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifier" | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifier" | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifier" | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifier" | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifier" | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifier" | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifier">(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
5868
|
+
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
5850
5869
|
uid: string;
|
|
5851
5870
|
description: string;
|
|
5852
5871
|
name: string;
|
|
@@ -5856,10 +5875,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5856
5875
|
cookieUids: string[];
|
|
5857
5876
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5858
5877
|
hotKeyConfig?: {
|
|
5859
|
-
|
|
5860
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5861
|
-
event: "closeModal";
|
|
5862
|
-
|
|
5878
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
5879
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5880
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
5881
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
5863
5882
|
}>> | undefined;
|
|
5864
5883
|
} | undefined;
|
|
5865
5884
|
proxyUrl?: string | undefined;
|
|
@@ -5873,10 +5892,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5873
5892
|
cookieUids: string[];
|
|
5874
5893
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5875
5894
|
hotKeyConfig?: {
|
|
5876
|
-
|
|
5877
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5878
|
-
event: "closeModal";
|
|
5879
|
-
|
|
5895
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
5896
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5897
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
5898
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
5880
5899
|
}>> | undefined;
|
|
5881
5900
|
} | undefined;
|
|
5882
5901
|
proxyUrl?: string | undefined;
|
|
@@ -5890,16 +5909,17 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5890
5909
|
cookieUids: string[];
|
|
5891
5910
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5892
5911
|
hotKeyConfig?: {
|
|
5893
|
-
|
|
5894
|
-
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5895
|
-
event: "closeModal";
|
|
5896
|
-
|
|
5912
|
+
modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
|
|
5913
|
+
hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
|
|
5914
|
+
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar";
|
|
5915
|
+
modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
|
|
5897
5916
|
}>> | undefined;
|
|
5898
5917
|
} | undefined;
|
|
5899
5918
|
proxyUrl?: string | undefined;
|
|
5900
5919
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
5901
5920
|
undo: (uid: string) => void;
|
|
5902
5921
|
redo: (uid: string) => void;
|
|
5922
|
+
loadLocalStorage: () => void;
|
|
5903
5923
|
};
|
|
5904
5924
|
};
|
|
5905
5925
|
};
|