@scalar/api-client 2.11.0 → 2.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (491) hide show
  1. package/CHANGELOG.md +86 -0
  2. package/dist/components/AddressBar/AddressBar.vue.d.ts.map +1 -1
  3. package/dist/components/AddressBar/AddressBar.vue.js +1 -1
  4. package/dist/components/AddressBar/AddressBar.vue2.js +35 -29
  5. package/dist/components/CodeInput/CodeInput.vue.d.ts +1 -1
  6. package/dist/components/CodeInput/CodeInput.vue.d.ts.map +1 -1
  7. package/dist/components/CommandPalette/CommandActionForm.vue.d.ts +2 -2
  8. package/dist/components/CommandPalette/CommandActionForm.vue.d.ts.map +1 -1
  9. package/dist/components/CommandPalette/CommandActionForm.vue.js +14 -14
  10. package/dist/components/CommandPalette/CommandPaletteImport.vue.js +38 -38
  11. package/dist/components/CommandPalette/TheCommandPalette.vue.d.ts +2 -2
  12. package/dist/components/EmptyState.vue.d.ts.map +1 -1
  13. package/dist/components/EmptyState.vue.js +2 -2
  14. package/dist/components/EmptyState.vue2.js +27 -16
  15. package/dist/components/TopNav/TopNav.vue.js +33 -33
  16. package/dist/hooks/useClientConfig.d.ts +3 -0
  17. package/dist/hooks/useClientConfig.d.ts.map +1 -1
  18. package/dist/layouts/App/create-api-client-app.d.ts +45 -45
  19. package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
  20. package/dist/layouts/Web/create-api-client-web.d.ts +45 -45
  21. package/dist/layouts/Web/create-api-client-web.d.ts.map +1 -1
  22. package/dist/libs/create-client.d.ts +46 -46
  23. package/dist/libs/create-client.d.ts.map +1 -1
  24. package/dist/libs/errors.d.ts +1 -0
  25. package/dist/libs/errors.d.ts.map +1 -1
  26. package/dist/libs/errors.js +2 -1
  27. package/dist/libs/find-request.d.ts +1 -1
  28. package/dist/libs/hot-keys.d.ts +2 -2
  29. package/dist/libs/send-request/create-fetch-body.d.ts +2 -2
  30. package/dist/libs/send-request/create-request-operation.d.ts +4 -4
  31. package/dist/libs/send-request/create-request-operation.d.ts.map +1 -1
  32. package/dist/libs/send-request/create-request-operation.js +60 -51
  33. package/dist/store/active-entities.d.ts +3 -3
  34. package/dist/store/active-entities.d.ts.map +1 -1
  35. package/dist/store/collections.d.ts +4 -4
  36. package/dist/store/collections.d.ts.map +1 -1
  37. package/dist/store/index.d.ts +1 -1
  38. package/dist/store/index.d.ts.map +1 -1
  39. package/dist/store/index.js +8 -8
  40. package/dist/store/request-example.d.ts +12 -12
  41. package/dist/store/requests.d.ts +11 -11
  42. package/dist/store/security-schemes.d.ts.map +1 -1
  43. package/dist/store/store.d.ts +38 -38
  44. package/dist/store/store.d.ts.map +1 -1
  45. package/dist/store/workspace.d.ts +12 -12
  46. package/dist/style.css +1 -1
  47. package/dist/v2/blocks/operation-block/OperationBlock.vue.d.ts +79 -22
  48. package/dist/v2/blocks/operation-block/OperationBlock.vue.d.ts.map +1 -1
  49. package/dist/v2/blocks/operation-block/OperationBlock.vue.js +52 -48
  50. package/dist/v2/blocks/operation-block/components/Header.vue.d.ts +4 -4
  51. package/dist/v2/blocks/operation-block/components/Header.vue.d.ts.map +1 -1
  52. package/dist/v2/blocks/operation-block/components/Header.vue.js +2 -2
  53. package/dist/v2/blocks/operation-block/components/Header.vue2.js +32 -33
  54. package/dist/v2/blocks/operation-code-sample/index.d.ts.map +1 -1
  55. package/dist/v2/blocks/{scalar-operation-block/components/OperationBlock.vue.d.ts → request-block/RequestBlock.vue.d.ts} +3 -3
  56. package/dist/v2/blocks/request-block/RequestBlock.vue.d.ts.map +1 -0
  57. package/dist/v2/blocks/request-block/RequestBlock.vue.js +7 -0
  58. package/dist/v2/blocks/request-block/RequestBlock.vue2.js +223 -0
  59. package/dist/v2/blocks/{scalar-operation-block/components/OperationBody.vue.d.ts → request-block/components/RequestBody.vue.d.ts} +1 -1
  60. package/dist/v2/blocks/request-block/components/RequestBody.vue.d.ts.map +1 -0
  61. package/dist/v2/blocks/request-block/components/RequestBody.vue.js +7 -0
  62. package/dist/v2/blocks/{scalar-operation-block/components/OperationBody.vue2.js → request-block/components/RequestBody.vue2.js} +15 -15
  63. package/dist/v2/blocks/{scalar-operation-block/components/OperationParams.vue.d.ts → request-block/components/RequestParams.vue.d.ts} +1 -1
  64. package/dist/v2/blocks/request-block/components/RequestParams.vue.d.ts.map +1 -0
  65. package/dist/v2/blocks/{scalar-operation-block/components/OperationParams.vue.js → request-block/components/RequestParams.vue.js} +24 -24
  66. package/dist/v2/blocks/request-block/components/RequestParams.vue2.js +4 -0
  67. package/dist/v2/blocks/{scalar-operation-block/components/OperationTable.vue.d.ts → request-block/components/RequestTable.vue.d.ts} +2 -2
  68. package/dist/v2/blocks/request-block/components/RequestTable.vue.d.ts.map +1 -0
  69. package/dist/v2/blocks/request-block/components/RequestTable.vue.js +7 -0
  70. package/dist/v2/blocks/{scalar-operation-block/components/OperationTable.vue2.js → request-block/components/RequestTable.vue2.js} +8 -8
  71. package/dist/v2/blocks/{scalar-operation-block/components/OperationTableRow.vue.d.ts → request-block/components/RequestTableRow.vue.d.ts} +1 -1
  72. package/dist/v2/blocks/request-block/components/RequestTableRow.vue.d.ts.map +1 -0
  73. package/dist/v2/blocks/{scalar-operation-block/components/OperationTableRow.vue.js → request-block/components/RequestTableRow.vue.js} +52 -53
  74. package/dist/v2/blocks/request-block/components/RequestTableRow.vue2.js +4 -0
  75. package/dist/v2/blocks/{scalar-operation-block/components/OperationTableTooltip.vue.d.ts → request-block/components/RequestTableTooltip.vue.d.ts} +1 -1
  76. package/dist/v2/blocks/request-block/components/RequestTableTooltip.vue.d.ts.map +1 -0
  77. package/dist/v2/blocks/request-block/components/RequestTableTooltip.vue.js +7 -0
  78. package/dist/v2/blocks/{scalar-operation-block/components/OperationTableTooltip.vue2.js → request-block/components/RequestTableTooltip.vue2.js} +7 -7
  79. package/dist/v2/blocks/request-block/helpers/create-parameter-handlers.d.ts +24 -0
  80. package/dist/v2/blocks/request-block/helpers/create-parameter-handlers.d.ts.map +1 -0
  81. package/dist/v2/blocks/request-block/helpers/create-parameter-handlers.js +29 -0
  82. package/dist/v2/blocks/request-block/helpers/files.d.ts.map +1 -0
  83. package/dist/v2/blocks/request-block/helpers/get-parameter-content.d.ts.map +1 -0
  84. package/dist/v2/blocks/request-block/helpers/get-parameter-example.d.ts.map +1 -0
  85. package/dist/v2/blocks/request-block/helpers/get-parameter-schema.d.ts.map +1 -0
  86. package/dist/v2/blocks/request-block/helpers/get-request-body-example.d.ts.map +1 -0
  87. package/dist/v2/blocks/request-block/helpers/group-by.d.ts.map +1 -0
  88. package/dist/v2/blocks/request-block/helpers/validate-parameter.d.ts.map +1 -0
  89. package/dist/v2/blocks/request-block/index.d.ts +2 -0
  90. package/dist/v2/blocks/request-block/index.d.ts.map +1 -0
  91. package/dist/v2/blocks/request-block/index.js +4 -0
  92. package/dist/v2/blocks/{scalar-response-block/components → response-block}/ResponseBlock.vue.d.ts +3 -3
  93. package/dist/v2/blocks/response-block/ResponseBlock.vue.d.ts.map +1 -0
  94. package/dist/v2/blocks/response-block/ResponseBlock.vue.js +7 -0
  95. package/dist/v2/blocks/{scalar-response-block/components → response-block}/ResponseBlock.vue2.js +37 -34
  96. package/dist/v2/blocks/response-block/components/Headers.vue.d.ts.map +1 -0
  97. package/dist/v2/blocks/response-block/components/ResponseBody.vue.d.ts.map +1 -0
  98. package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBody.vue.js +2 -2
  99. package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBody.vue2.js +4 -4
  100. package/dist/v2/blocks/response-block/components/ResponseBodyDownload.vue.d.ts.map +1 -0
  101. package/dist/v2/blocks/response-block/components/ResponseBodyInfo.vue.d.ts.map +1 -0
  102. package/dist/v2/blocks/response-block/components/ResponseBodyPreview.vue.d.ts.map +1 -0
  103. package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyPreview.vue.js +1 -1
  104. package/dist/v2/blocks/response-block/components/ResponseBodyRaw.vue.d.ts.map +1 -0
  105. package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyRaw.vue.js +1 -1
  106. package/dist/v2/blocks/response-block/components/ResponseBodyStreaming.vue.d.ts.map +1 -0
  107. package/dist/v2/blocks/response-block/components/ResponseBodyStreaming.vue.js +74 -0
  108. package/dist/v2/blocks/response-block/components/ResponseBodyToggle.vue.d.ts.map +1 -0
  109. package/dist/v2/blocks/response-block/components/ResponseBodyVirtual.vue.d.ts.map +1 -0
  110. package/dist/v2/blocks/response-block/components/ResponseCookies.vue.d.ts.map +1 -0
  111. package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseEmpty.vue.d.ts +2 -2
  112. package/dist/v2/blocks/response-block/components/ResponseEmpty.vue.d.ts.map +1 -0
  113. package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseEmpty.vue.js +1 -1
  114. package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseEmpty.vue2.js +18 -15
  115. package/dist/v2/blocks/response-block/components/ResponseLoadingOverlay.vue.d.ts.map +1 -0
  116. package/dist/v2/blocks/response-block/components/ResponseLoadingOverlay.vue.js +7 -0
  117. package/dist/v2/blocks/response-block/components/ResponseLoadingOverlay.vue2.js +40 -0
  118. package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseMetaInformation.vue.d.ts +0 -1
  119. package/dist/v2/blocks/response-block/components/ResponseMetaInformation.vue.d.ts.map +1 -0
  120. package/dist/v2/blocks/response-block/helpers/extract-filename.d.ts.map +1 -0
  121. package/dist/v2/blocks/response-block/helpers/get-content-length.d.ts.map +1 -0
  122. package/dist/v2/blocks/response-block/helpers/media-types.d.ts.map +1 -0
  123. package/dist/v2/blocks/response-block/helpers/process-response-body.d.ts.map +1 -0
  124. package/dist/v2/blocks/response-block/index.d.ts +2 -0
  125. package/dist/v2/blocks/response-block/index.d.ts.map +1 -0
  126. package/dist/v2/blocks/response-block/index.js +4 -0
  127. package/dist/v2/blocks/scalar-address-bar-block/components/AddressBar.vue.d.ts +4 -3
  128. package/dist/v2/blocks/scalar-address-bar-block/components/AddressBar.vue.d.ts.map +1 -1
  129. package/dist/v2/blocks/scalar-address-bar-block/components/AddressBar.vue.js +2 -2
  130. package/dist/v2/blocks/scalar-address-bar-block/components/AddressBar.vue2.js +72 -67
  131. package/dist/v2/blocks/scalar-address-bar-block/index.d.ts.map +1 -1
  132. package/dist/v2/blocks/scalar-auth-selector-block/components/OAuth2.vue.d.ts +205 -0
  133. package/dist/v2/blocks/scalar-auth-selector-block/components/OAuth2.vue.d.ts.map +1 -0
  134. package/dist/v2/blocks/scalar-auth-selector-block/components/OAuth2.vue.js +52 -52
  135. package/dist/v2/blocks/scalar-auth-selector-block/components/OAuthScopesInput.vue.d.ts +1 -1
  136. package/dist/v2/blocks/scalar-auth-selector-block/components/OAuthScopesInput.vue.d.ts.map +1 -1
  137. package/dist/v2/blocks/scalar-auth-selector-block/components/RequestAuthTab.vue.d.ts +205 -0
  138. package/dist/v2/blocks/scalar-auth-selector-block/components/RequestAuthTab.vue.d.ts.map +1 -0
  139. package/dist/v2/blocks/scalar-auth-selector-block/index.d.ts.map +1 -1
  140. package/dist/v2/components/code-input/CodeInput.vue.d.ts +1 -0
  141. package/dist/v2/components/code-input/CodeInput.vue.d.ts.map +1 -1
  142. package/dist/v2/components/code-input/CodeInput.vue.js +1 -1
  143. package/dist/v2/components/code-input/CodeInput.vue2.js +29 -28
  144. package/dist/v2/components/resize/Resize.vue.d.ts.map +1 -1
  145. package/dist/v2/components/resize/Resize.vue.js +2 -2
  146. package/dist/v2/components/server/ServerDropdown.vue.d.ts +5 -5
  147. package/dist/v2/components/server/ServerDropdown.vue.d.ts.map +1 -1
  148. package/dist/v2/components/server/ServerDropdown.vue.js +38 -43
  149. package/dist/v2/components/server/ServerDropdownItem.vue.d.ts +1 -1
  150. package/dist/v2/components/server/ServerDropdownItem.vue.d.ts.map +1 -1
  151. package/dist/v2/components/server/ServerDropdownItem.vue.js +2 -2
  152. package/dist/v2/components/server/ServerDropdownItem.vue2.js +27 -29
  153. package/dist/v2/components/sidebar/Sidebar.vue.d.ts +24 -5
  154. package/dist/v2/components/sidebar/Sidebar.vue.d.ts.map +1 -1
  155. package/dist/v2/components/sidebar/Sidebar.vue.js +54 -49
  156. package/dist/v2/components/sidebar/SidebarMenu.vue.d.ts +18 -9
  157. package/dist/v2/components/sidebar/SidebarMenu.vue.d.ts.map +1 -1
  158. package/dist/v2/components/sidebar/SidebarMenu.vue.js +36 -43
  159. package/dist/v2/features/app/App.vue.d.ts +0 -3
  160. package/dist/v2/features/app/App.vue.d.ts.map +1 -1
  161. package/dist/v2/features/app/App.vue.js +150 -90
  162. package/dist/v2/features/app/components/AppSidebar.vue.d.ts +36 -6
  163. package/dist/v2/features/app/components/AppSidebar.vue.d.ts.map +1 -1
  164. package/dist/v2/features/app/components/AppSidebar.vue.js +1 -1
  165. package/dist/v2/features/app/components/AppSidebar.vue2.js +73 -61
  166. package/dist/v2/features/app/components/CreateWorkspaceModal.vue.d.ts +15 -0
  167. package/dist/v2/features/app/components/CreateWorkspaceModal.vue.d.ts.map +1 -0
  168. package/dist/v2/features/app/components/CreateWorkspaceModal.vue.js +56 -0
  169. package/dist/v2/features/app/components/CreateWorkspaceModal.vue2.js +4 -0
  170. package/dist/v2/features/app/components/DesktopTab.vue.d.ts +26 -0
  171. package/dist/v2/features/app/components/DesktopTab.vue.d.ts.map +1 -0
  172. package/dist/v2/features/app/components/DesktopTab.vue.js +7 -0
  173. package/dist/v2/features/app/components/DesktopTab.vue2.js +134 -0
  174. package/dist/v2/features/app/components/DesktopTabs.vue.d.ts +9 -4
  175. package/dist/v2/features/app/components/DesktopTabs.vue.d.ts.map +1 -1
  176. package/dist/v2/features/app/components/DesktopTabs.vue.js +47 -13
  177. package/dist/v2/features/app/components/DesktopTabs.vue2.js +2 -4
  178. package/dist/v2/{components/TempReplaceMe.vue.d.ts → features/app/components/SplashScreen.vue.d.ts} +1 -1
  179. package/dist/v2/features/app/components/SplashScreen.vue.d.ts.map +1 -0
  180. package/dist/v2/features/app/components/SplashScreen.vue.js +7 -0
  181. package/dist/v2/features/app/components/SplashScreen.vue2.js +18 -0
  182. package/dist/v2/features/app/components/WebTopNav.vue.d.ts +26 -5
  183. package/dist/v2/features/app/components/WebTopNav.vue.d.ts.map +1 -1
  184. package/dist/v2/features/app/components/WebTopNav.vue.js +18 -19
  185. package/dist/v2/features/app/helpers/create-api-client-app.d.ts +1 -2
  186. package/dist/v2/features/app/helpers/create-api-client-app.d.ts.map +1 -1
  187. package/dist/v2/features/app/helpers/create-api-client-app.js +8 -8
  188. package/dist/v2/features/app/helpers/routes.d.ts +6 -31
  189. package/dist/v2/features/app/helpers/routes.d.ts.map +1 -1
  190. package/dist/v2/features/app/helpers/routes.js +4 -9
  191. package/dist/v2/features/collection/DocumentCollection.vue.d.ts.map +1 -1
  192. package/dist/v2/features/collection/DocumentCollection.vue2.js +44 -51
  193. package/dist/v2/features/collection/WorkspaceCollection.vue.d.ts.map +1 -1
  194. package/dist/v2/features/collection/WorkspaceCollection.vue2.js +25 -25
  195. package/dist/v2/features/collection/components/Authentication.vue.js +1 -1
  196. package/dist/v2/features/collection/components/Authentication.vue2.js +9 -7
  197. package/dist/v2/features/collection/components/Cookies.vue.d.ts +13 -1
  198. package/dist/v2/features/collection/components/Cookies.vue.d.ts.map +1 -1
  199. package/dist/v2/features/collection/components/Cookies.vue.js +2 -7
  200. package/dist/v2/features/collection/components/Cookies.vue2.js +32 -0
  201. package/dist/v2/features/collection/components/Environment.vue2.js +2 -0
  202. package/dist/v2/features/collection/components/Overview.vue2.js +10 -8
  203. package/dist/v2/features/collection/components/Servers.vue2.js +26 -24
  204. package/dist/v2/features/collection/components/Settings.vue.d.ts +13 -15
  205. package/dist/v2/features/collection/components/Settings.vue.d.ts.map +1 -1
  206. package/dist/v2/features/collection/components/Settings.vue.js +2 -5
  207. package/dist/v2/features/collection/components/Settings.vue2.js +51 -92
  208. package/dist/v2/features/command-palette/components/CommandActionForm.vue.d.ts +61 -0
  209. package/dist/v2/features/command-palette/components/CommandActionForm.vue.d.ts.map +1 -0
  210. package/dist/v2/features/command-palette/components/CommandActionForm.vue.js +48 -0
  211. package/dist/v2/features/command-palette/components/CommandActionForm.vue2.js +4 -0
  212. package/dist/v2/features/command-palette/components/CommandActionInput.vue.d.ts +39 -0
  213. package/dist/v2/features/command-palette/components/CommandActionInput.vue.d.ts.map +1 -0
  214. package/dist/v2/features/command-palette/components/CommandActionInput.vue.js +52 -0
  215. package/dist/v2/features/command-palette/components/CommandActionInput.vue2.js +4 -0
  216. package/dist/v2/features/command-palette/components/CommandPaletteDocument.vue.d.ts +36 -0
  217. package/dist/v2/features/command-palette/components/CommandPaletteDocument.vue.d.ts.map +1 -0
  218. package/dist/v2/features/command-palette/components/CommandPaletteDocument.vue.js +78 -0
  219. package/dist/v2/features/command-palette/components/CommandPaletteDocument.vue2.js +4 -0
  220. package/dist/v2/features/command-palette/components/CommandPaletteExample.vue.d.ts +30 -0
  221. package/dist/v2/features/command-palette/components/CommandPaletteExample.vue.d.ts.map +1 -0
  222. package/dist/v2/features/command-palette/components/CommandPaletteExample.vue.js +169 -0
  223. package/dist/v2/features/command-palette/components/CommandPaletteExample.vue2.js +4 -0
  224. package/dist/v2/features/command-palette/components/CommandPaletteImport.vue.d.ts +34 -0
  225. package/dist/v2/features/command-palette/components/CommandPaletteImport.vue.d.ts.map +1 -0
  226. package/dist/v2/features/command-palette/components/CommandPaletteImport.vue.js +175 -0
  227. package/dist/v2/features/command-palette/components/CommandPaletteImport.vue2.js +4 -0
  228. package/dist/v2/features/command-palette/components/CommandPaletteImportCurl.vue.d.ts +43 -0
  229. package/dist/v2/features/command-palette/components/CommandPaletteImportCurl.vue.d.ts.map +1 -0
  230. package/dist/v2/features/command-palette/components/CommandPaletteImportCurl.vue.js +7 -0
  231. package/dist/v2/features/command-palette/components/CommandPaletteImportCurl.vue2.js +115 -0
  232. package/dist/v2/features/command-palette/components/CommandPaletteRequest.vue.d.ts +39 -0
  233. package/dist/v2/features/command-palette/components/CommandPaletteRequest.vue.d.ts.map +1 -0
  234. package/dist/v2/features/command-palette/components/CommandPaletteRequest.vue.js +213 -0
  235. package/dist/v2/features/command-palette/components/CommandPaletteRequest.vue2.js +4 -0
  236. package/dist/v2/features/command-palette/components/CommandPaletteTag.vue.d.ts +38 -0
  237. package/dist/v2/features/command-palette/components/CommandPaletteTag.vue.d.ts.map +1 -0
  238. package/dist/v2/features/command-palette/components/CommandPaletteTag.vue.js +89 -0
  239. package/dist/v2/features/command-palette/components/CommandPaletteTag.vue2.js +4 -0
  240. package/dist/v2/features/command-palette/components/TheCommandPalette.vue.d.ts +41 -0
  241. package/dist/v2/features/command-palette/components/TheCommandPalette.vue.d.ts.map +1 -0
  242. package/dist/v2/features/command-palette/components/TheCommandPalette.vue.js +7 -0
  243. package/dist/v2/features/command-palette/components/TheCommandPalette.vue2.js +172 -0
  244. package/dist/v2/features/command-palette/components/WatchModeToggle.vue.d.ts +33 -0
  245. package/dist/v2/features/command-palette/components/WatchModeToggle.vue.d.ts.map +1 -0
  246. package/dist/v2/features/command-palette/components/WatchModeToggle.vue.js +40 -0
  247. package/dist/v2/features/command-palette/components/WatchModeToggle.vue2.js +4 -0
  248. package/dist/v2/features/command-palette/components/index.d.ts +2 -0
  249. package/dist/v2/features/command-palette/components/index.d.ts.map +1 -0
  250. package/dist/v2/features/command-palette/components/index.js +4 -0
  251. package/dist/v2/features/command-palette/helpers/get-openapi-document-details.d.ts +23 -0
  252. package/dist/v2/features/command-palette/helpers/get-openapi-document-details.d.ts.map +1 -0
  253. package/dist/v2/features/command-palette/helpers/get-openapi-document-details.js +31 -0
  254. package/dist/v2/features/command-palette/helpers/get-openapi-from-postman.d.ts +13 -0
  255. package/dist/v2/features/command-palette/helpers/get-openapi-from-postman.d.ts.map +1 -0
  256. package/dist/v2/features/command-palette/helpers/get-openapi-from-postman.js +12 -0
  257. package/dist/v2/features/command-palette/helpers/get-operation-from-curl.d.ts +26 -0
  258. package/dist/v2/features/command-palette/helpers/get-operation-from-curl.d.ts.map +1 -0
  259. package/dist/v2/features/command-palette/helpers/get-operation-from-curl.js +70 -0
  260. package/dist/v2/features/command-palette/helpers/get-postman-document-details.d.ts +23 -0
  261. package/dist/v2/features/command-palette/helpers/get-postman-document-details.d.ts.map +1 -0
  262. package/dist/v2/features/command-palette/helpers/get-postman-document-details.js +18 -0
  263. package/dist/v2/features/command-palette/helpers/is-postman-collection.d.ts +11 -0
  264. package/dist/v2/features/command-palette/helpers/is-postman-collection.d.ts.map +1 -0
  265. package/dist/v2/features/command-palette/helpers/is-postman-collection.js +11 -0
  266. package/dist/v2/features/command-palette/hooks/use-command-palette-state.d.ts +202 -0
  267. package/dist/v2/features/command-palette/hooks/use-command-palette-state.d.ts.map +1 -0
  268. package/dist/v2/features/command-palette/hooks/use-command-palette-state.js +109 -0
  269. package/dist/v2/features/command-palette/types.d.ts +82 -0
  270. package/dist/v2/features/command-palette/types.d.ts.map +1 -0
  271. package/dist/v2/features/global-cookies/components/CookiesTable.vue.d.ts +6 -22
  272. package/dist/v2/features/global-cookies/components/CookiesTable.vue.d.ts.map +1 -1
  273. package/dist/v2/features/global-cookies/components/CookiesTable.vue.js +3 -3
  274. package/dist/v2/features/global-cookies/components/CookiesTable.vue2.js +121 -88
  275. package/dist/v2/features/global-cookies/index.d.ts +1 -1
  276. package/dist/v2/features/global-cookies/index.d.ts.map +1 -1
  277. package/dist/v2/features/global-cookies/index.js +2 -2
  278. package/dist/v2/features/modal/Modal.vue.d.ts +0 -2
  279. package/dist/v2/features/modal/Modal.vue.d.ts.map +1 -1
  280. package/dist/v2/features/modal/Modal.vue.js +3 -3
  281. package/dist/v2/features/modal/Modal.vue2.js +28 -61
  282. package/dist/v2/features/modal/helpers/create-api-client-modal.d.ts.map +1 -1
  283. package/dist/v2/features/modal/helpers/create-api-client-modal.js +8 -9
  284. package/dist/v2/features/operation/Operation.vue.d.ts.map +1 -1
  285. package/dist/v2/features/operation/Operation.vue.js +36 -25
  286. package/dist/v2/features/operation/helpers/get-security-requirements.d.ts +12 -0
  287. package/dist/v2/features/operation/helpers/get-security-requirements.d.ts.map +1 -0
  288. package/dist/v2/features/operation/helpers/get-security-requirements.js +4 -0
  289. package/dist/v2/features/search/components/SearchButton.vue.d.ts +12 -0
  290. package/dist/v2/features/search/components/SearchButton.vue.d.ts.map +1 -0
  291. package/dist/v2/features/search/components/SearchButton.vue.js +71 -0
  292. package/dist/v2/features/search/components/SearchButton.vue2.js +4 -0
  293. package/dist/v2/features/search/components/SearchModal.vue.d.ts +11 -0
  294. package/dist/v2/features/search/components/SearchModal.vue.d.ts.map +1 -0
  295. package/dist/v2/features/search/components/SearchModal.vue.js +7 -0
  296. package/dist/v2/features/search/components/SearchModal.vue2.js +101 -0
  297. package/dist/v2/features/search/components/SearchResult.vue.d.ts +10 -0
  298. package/dist/v2/features/search/components/SearchResult.vue.d.ts.map +1 -0
  299. package/dist/v2/features/search/components/SearchResult.vue.js +80 -0
  300. package/dist/v2/features/search/components/SearchResult.vue2.js +4 -0
  301. package/dist/v2/features/search/helpers/create-fuse-instance.d.ts +9 -0
  302. package/dist/v2/features/search/helpers/create-fuse-instance.d.ts.map +1 -0
  303. package/dist/v2/features/search/helpers/create-fuse-instance.js +43 -0
  304. package/dist/v2/features/search/helpers/create-search-index.d.ts +7 -0
  305. package/dist/v2/features/search/helpers/create-search-index.d.ts.map +1 -0
  306. package/dist/v2/features/search/helpers/create-search-index.js +63 -0
  307. package/dist/v2/features/search/hooks/use-search-index.d.ts +14 -0
  308. package/dist/v2/features/search/hooks/use-search-index.d.ts.map +1 -0
  309. package/dist/v2/features/search/hooks/use-search-index.js +24 -0
  310. package/dist/v2/features/search/index.d.ts +3 -0
  311. package/dist/v2/features/search/index.d.ts.map +1 -0
  312. package/dist/v2/features/search/index.js +6 -0
  313. package/dist/v2/features/search/types.d.ts +24 -0
  314. package/dist/v2/features/search/types.d.ts.map +1 -0
  315. package/dist/v2/features/settings/{Settings.vue.d.ts → CollectionSettings.vue.d.ts} +2 -2
  316. package/dist/v2/features/settings/CollectionSettings.vue.d.ts.map +1 -0
  317. package/dist/v2/features/settings/CollectionSettings.vue.js +266 -0
  318. package/dist/v2/features/settings/CollectionSettings.vue2.js +4 -0
  319. package/dist/v2/features/settings/DocumentSettings.vue.d.ts +19 -0
  320. package/dist/v2/features/settings/DocumentSettings.vue.d.ts.map +1 -0
  321. package/dist/v2/features/settings/DocumentSettings.vue.js +7 -0
  322. package/dist/v2/features/settings/DocumentSettings.vue2.js +106 -0
  323. package/dist/v2/features/settings/index.d.ts +2 -1
  324. package/dist/v2/features/settings/index.d.ts.map +1 -1
  325. package/dist/v2/features/settings/index.js +4 -2
  326. package/dist/v2/helpers/drag-handle-factory.d.ts +16 -0
  327. package/dist/v2/helpers/drag-handle-factory.d.ts.map +1 -0
  328. package/dist/v2/helpers/drag-handle-factory.js +119 -0
  329. package/dist/v2/helpers/get-tab-details.d.ts +43 -0
  330. package/dist/v2/helpers/get-tab-details.d.ts.map +1 -0
  331. package/dist/v2/helpers/get-tab-details.js +34 -0
  332. package/dist/v2/helpers/handle-hotkeys.d.ts +23 -0
  333. package/dist/v2/helpers/handle-hotkeys.d.ts.map +1 -0
  334. package/dist/v2/helpers/handle-hotkeys.js +56 -0
  335. package/dist/v2/helpers/is-url.d.ts +2 -0
  336. package/dist/v2/helpers/is-url.d.ts.map +1 -0
  337. package/dist/v2/helpers/is-url.js +5 -0
  338. package/dist/v2/helpers/remove-circular.d.ts +15 -0
  339. package/dist/v2/helpers/remove-circular.d.ts.map +1 -0
  340. package/dist/v2/helpers/remove-circular.js +18 -0
  341. package/dist/v2/helpers/slugify.d.ts +9 -0
  342. package/dist/v2/helpers/slugify.d.ts.map +1 -0
  343. package/dist/v2/helpers/slugify.js +4 -0
  344. package/dist/v2/helpers/storage.d.ts +23 -0
  345. package/dist/v2/helpers/storage.d.ts.map +1 -0
  346. package/dist/v2/helpers/storage.js +16 -0
  347. package/dist/v2/hooks/use-color-mode.d.ts +20 -0
  348. package/dist/v2/hooks/use-color-mode.d.ts.map +1 -0
  349. package/dist/v2/hooks/use-color-mode.js +24 -0
  350. package/dist/v2/hooks/use-document-watcher.d.ts +9 -7
  351. package/dist/v2/hooks/use-document-watcher.d.ts.map +1 -1
  352. package/dist/v2/hooks/use-document-watcher.js +66 -0
  353. package/dist/v2/hooks/use-global-hot-keys.d.ts +10 -0
  354. package/dist/v2/hooks/use-global-hot-keys.d.ts.map +1 -0
  355. package/dist/v2/hooks/use-global-hot-keys.js +9 -0
  356. package/dist/v2/hooks/use-sidebar-state.d.ts +15 -21
  357. package/dist/v2/hooks/use-sidebar-state.d.ts.map +1 -1
  358. package/dist/v2/hooks/use-sidebar-state.js +48 -30
  359. package/dist/v2/hooks/use-sync-path.d.ts +11 -0
  360. package/dist/v2/hooks/use-sync-path.d.ts.map +1 -0
  361. package/dist/v2/hooks/use-sync-path.js +51 -0
  362. package/dist/v2/hooks/use-tabs.d.ts +31 -0
  363. package/dist/v2/hooks/use-tabs.d.ts.map +1 -0
  364. package/dist/v2/hooks/use-tabs.js +44 -0
  365. package/dist/v2/hooks/use-workspace-client-events.d.ts +11 -2
  366. package/dist/v2/hooks/use-workspace-client-events.d.ts.map +1 -1
  367. package/dist/v2/hooks/use-workspace-client-events.js +105 -101
  368. package/dist/v2/hooks/use-workspace-selector.d.ts +28 -0
  369. package/dist/v2/hooks/use-workspace-selector.d.ts.map +1 -0
  370. package/dist/v2/hooks/use-workspace-selector.js +81 -0
  371. package/dist/views/Request/RequestRoot.vue.d.ts.map +1 -1
  372. package/dist/views/Request/RequestRoot.vue.js +2 -2
  373. package/dist/views/Request/RequestRoot.vue2.js +86 -77
  374. package/dist/views/Request/RequestSection/RequestAuth/OAuth2.vue.d.ts.map +1 -1
  375. package/dist/views/Request/RequestSection/RequestAuth/OAuth2.vue.js +78 -78
  376. package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue.d.ts.map +1 -1
  377. package/dist/views/Request/RequestSection/RequestAuth/RequestAuthDataTable.vue.d.ts.map +1 -1
  378. package/dist/views/Request/RequestSection/RequestBody.vue.d.ts.map +1 -1
  379. package/dist/views/Request/RequestSection/RequestBody.vue.js +2 -2
  380. package/dist/views/Request/RequestSection/RequestBody.vue2.js +29 -24
  381. package/dist/views/Request/ResponseSection/ResponseBodyStreaming.vue.js +29 -29
  382. package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
  383. package/dist/views/Request/ResponseSection/ResponseLoadingOverlay.vue.js +2 -2
  384. package/dist/views/Request/ResponseSection/ResponseLoadingOverlay.vue2.js +19 -19
  385. package/package.json +139 -48
  386. package/dist/v2/blocks/scalar-operation-block/components/OperationBlock.vue.d.ts.map +0 -1
  387. package/dist/v2/blocks/scalar-operation-block/components/OperationBlock.vue.js +0 -7
  388. package/dist/v2/blocks/scalar-operation-block/components/OperationBlock.vue2.js +0 -262
  389. package/dist/v2/blocks/scalar-operation-block/components/OperationBody.vue.d.ts.map +0 -1
  390. package/dist/v2/blocks/scalar-operation-block/components/OperationBody.vue.js +0 -7
  391. package/dist/v2/blocks/scalar-operation-block/components/OperationParams.vue.d.ts.map +0 -1
  392. package/dist/v2/blocks/scalar-operation-block/components/OperationParams.vue2.js +0 -4
  393. package/dist/v2/blocks/scalar-operation-block/components/OperationTable.vue.d.ts.map +0 -1
  394. package/dist/v2/blocks/scalar-operation-block/components/OperationTable.vue.js +0 -7
  395. package/dist/v2/blocks/scalar-operation-block/components/OperationTableRow.vue.d.ts.map +0 -1
  396. package/dist/v2/blocks/scalar-operation-block/components/OperationTableRow.vue2.js +0 -4
  397. package/dist/v2/blocks/scalar-operation-block/components/OperationTableTooltip.vue.d.ts.map +0 -1
  398. package/dist/v2/blocks/scalar-operation-block/components/OperationTableTooltip.vue.js +0 -7
  399. package/dist/v2/blocks/scalar-operation-block/helpers/files.d.ts.map +0 -1
  400. package/dist/v2/blocks/scalar-operation-block/helpers/get-parameter-content.d.ts.map +0 -1
  401. package/dist/v2/blocks/scalar-operation-block/helpers/get-parameter-example.d.ts.map +0 -1
  402. package/dist/v2/blocks/scalar-operation-block/helpers/get-parameter-schema.d.ts.map +0 -1
  403. package/dist/v2/blocks/scalar-operation-block/helpers/get-request-body-example.d.ts.map +0 -1
  404. package/dist/v2/blocks/scalar-operation-block/helpers/group-by.d.ts.map +0 -1
  405. package/dist/v2/blocks/scalar-operation-block/helpers/validate-parameter.d.ts.map +0 -1
  406. package/dist/v2/blocks/scalar-operation-block/index.d.ts +0 -2
  407. package/dist/v2/blocks/scalar-operation-block/index.d.ts.map +0 -1
  408. package/dist/v2/blocks/scalar-operation-block/index.js +0 -4
  409. package/dist/v2/blocks/scalar-response-block/components/Headers.vue.d.ts.map +0 -1
  410. package/dist/v2/blocks/scalar-response-block/components/ResponseBlock.vue.d.ts.map +0 -1
  411. package/dist/v2/blocks/scalar-response-block/components/ResponseBlock.vue.js +0 -7
  412. package/dist/v2/blocks/scalar-response-block/components/ResponseBody.vue.d.ts.map +0 -1
  413. package/dist/v2/blocks/scalar-response-block/components/ResponseBodyDownload.vue.d.ts.map +0 -1
  414. package/dist/v2/blocks/scalar-response-block/components/ResponseBodyInfo.vue.d.ts.map +0 -1
  415. package/dist/v2/blocks/scalar-response-block/components/ResponseBodyPreview.vue.d.ts.map +0 -1
  416. package/dist/v2/blocks/scalar-response-block/components/ResponseBodyRaw.vue.d.ts.map +0 -1
  417. package/dist/v2/blocks/scalar-response-block/components/ResponseBodyStreaming.vue.d.ts.map +0 -1
  418. package/dist/v2/blocks/scalar-response-block/components/ResponseBodyStreaming.vue.js +0 -74
  419. package/dist/v2/blocks/scalar-response-block/components/ResponseBodyToggle.vue.d.ts.map +0 -1
  420. package/dist/v2/blocks/scalar-response-block/components/ResponseBodyVirtual.vue.d.ts.map +0 -1
  421. package/dist/v2/blocks/scalar-response-block/components/ResponseCookies.vue.d.ts.map +0 -1
  422. package/dist/v2/blocks/scalar-response-block/components/ResponseEmpty.vue.d.ts.map +0 -1
  423. package/dist/v2/blocks/scalar-response-block/components/ResponseLoadingOverlay.vue.d.ts.map +0 -1
  424. package/dist/v2/blocks/scalar-response-block/components/ResponseLoadingOverlay.vue.js +0 -7
  425. package/dist/v2/blocks/scalar-response-block/components/ResponseLoadingOverlay.vue2.js +0 -40
  426. package/dist/v2/blocks/scalar-response-block/components/ResponseMetaInformation.vue.d.ts.map +0 -1
  427. package/dist/v2/blocks/scalar-response-block/helpers/extract-filename.d.ts.map +0 -1
  428. package/dist/v2/blocks/scalar-response-block/helpers/get-content-length.d.ts.map +0 -1
  429. package/dist/v2/blocks/scalar-response-block/helpers/media-types.d.ts.map +0 -1
  430. package/dist/v2/blocks/scalar-response-block/helpers/process-response-body.d.ts.map +0 -1
  431. package/dist/v2/blocks/scalar-response-block/index.d.ts +0 -2
  432. package/dist/v2/blocks/scalar-response-block/index.d.ts.map +0 -1
  433. package/dist/v2/blocks/scalar-response-block/index.js +0 -4
  434. package/dist/v2/components/TempReplaceMe.vue.d.ts.map +0 -1
  435. package/dist/v2/components/TempReplaceMe.vue.js +0 -12
  436. package/dist/v2/features/global-cookies/components/GlobalCookies.vue.d.ts +0 -32
  437. package/dist/v2/features/global-cookies/components/GlobalCookies.vue.d.ts.map +0 -1
  438. package/dist/v2/features/global-cookies/components/GlobalCookies.vue.js +0 -7
  439. package/dist/v2/features/global-cookies/components/GlobalCookies.vue2.js +0 -58
  440. package/dist/v2/features/settings/Settings.vue.d.ts.map +0 -1
  441. package/dist/v2/features/settings/Settings.vue.js +0 -268
  442. package/dist/v2/features/settings/Settings.vue2.js +0 -4
  443. /package/dist/v2/blocks/{scalar-operation-block → request-block}/helpers/files.d.ts +0 -0
  444. /package/dist/v2/blocks/{scalar-operation-block → request-block}/helpers/files.js +0 -0
  445. /package/dist/v2/blocks/{scalar-operation-block → request-block}/helpers/get-parameter-content.d.ts +0 -0
  446. /package/dist/v2/blocks/{scalar-operation-block → request-block}/helpers/get-parameter-content.js +0 -0
  447. /package/dist/v2/blocks/{scalar-operation-block → request-block}/helpers/get-parameter-example.d.ts +0 -0
  448. /package/dist/v2/blocks/{scalar-operation-block → request-block}/helpers/get-parameter-example.js +0 -0
  449. /package/dist/v2/blocks/{scalar-operation-block → request-block}/helpers/get-parameter-schema.d.ts +0 -0
  450. /package/dist/v2/blocks/{scalar-operation-block → request-block}/helpers/get-parameter-schema.js +0 -0
  451. /package/dist/v2/blocks/{scalar-operation-block → request-block}/helpers/get-request-body-example.d.ts +0 -0
  452. /package/dist/v2/blocks/{scalar-operation-block → request-block}/helpers/get-request-body-example.js +0 -0
  453. /package/dist/v2/blocks/{scalar-operation-block → request-block}/helpers/group-by.d.ts +0 -0
  454. /package/dist/v2/blocks/{scalar-operation-block → request-block}/helpers/group-by.js +0 -0
  455. /package/dist/v2/blocks/{scalar-operation-block → request-block}/helpers/validate-parameter.d.ts +0 -0
  456. /package/dist/v2/blocks/{scalar-operation-block → request-block}/helpers/validate-parameter.js +0 -0
  457. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/Headers.vue.d.ts +0 -0
  458. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/Headers.vue.js +0 -0
  459. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/Headers.vue2.js +0 -0
  460. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBody.vue.d.ts +0 -0
  461. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyDownload.vue.d.ts +0 -0
  462. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyDownload.vue.js +0 -0
  463. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyDownload.vue2.js +0 -0
  464. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyInfo.vue.d.ts +0 -0
  465. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyInfo.vue.js +0 -0
  466. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyPreview.vue.d.ts +0 -0
  467. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyPreview.vue2.js +0 -0
  468. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyRaw.vue.d.ts +0 -0
  469. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyRaw.vue2.js +0 -0
  470. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyStreaming.vue.d.ts +0 -0
  471. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyStreaming.vue2.js +0 -0
  472. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyToggle.vue.d.ts +0 -0
  473. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyToggle.vue.js +0 -0
  474. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyToggle.vue2.js +0 -0
  475. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyVirtual.vue.d.ts +0 -0
  476. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyVirtual.vue.js +0 -0
  477. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseBodyVirtual.vue3.js +0 -0
  478. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseCookies.vue.d.ts +0 -0
  479. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseCookies.vue.js +0 -0
  480. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseCookies.vue2.js +0 -0
  481. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseLoadingOverlay.vue.d.ts +0 -0
  482. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseMetaInformation.vue.js +0 -0
  483. /package/dist/v2/blocks/{scalar-response-block → response-block}/components/ResponseMetaInformation.vue2.js +0 -0
  484. /package/dist/v2/blocks/{scalar-response-block → response-block}/helpers/extract-filename.d.ts +0 -0
  485. /package/dist/v2/blocks/{scalar-response-block → response-block}/helpers/extract-filename.js +0 -0
  486. /package/dist/v2/blocks/{scalar-response-block → response-block}/helpers/get-content-length.d.ts +0 -0
  487. /package/dist/v2/blocks/{scalar-response-block → response-block}/helpers/get-content-length.js +0 -0
  488. /package/dist/v2/blocks/{scalar-response-block → response-block}/helpers/media-types.d.ts +0 -0
  489. /package/dist/v2/blocks/{scalar-response-block → response-block}/helpers/media-types.js +0 -0
  490. /package/dist/v2/blocks/{scalar-response-block → response-block}/helpers/process-response-body.d.ts +0 -0
  491. /package/dist/v2/blocks/{scalar-response-block → response-block}/helpers/process-response-body.js +0 -0
@@ -1 +1 @@
1
- {"version":3,"file":"store.d.ts","sourceRoot":"","sources":["../../src/store/store.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"store.d.ts","sourceRoot":"","sources":["../../src/store/store.ts"],"names":[],"mappings":"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"}
@@ -17,7 +17,7 @@ export declare function createStoreWorkspaces(useLocalStorage: boolean): {
17
17
  };
18
18
  hotKeyConfig?: {
19
19
  modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
20
- hotKeys?: Partial<Record<"" | "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" | "0" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]" | "4" | "1" | "2" | "3" | "5" | "6" | "7" | "8" | "9", {
20
+ hotKeys?: Partial<Record<"" | "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" | "0" | "." | "2" | "-" | "," | "/" | "1" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "`" | "[" | "\\" | "]" | "4" | "3" | "5" | "6" | "7" | "8" | "9", {
21
21
  event: "addTopNav" | "closeModal" | "closeTopNav" | "createNew" | "executeRequest" | "focusAddressBar" | "focusRequestSearch" | "jumpToLastTab" | "jumpToTab" | "navigateSearchResultsDown" | "navigateSearchResultsUp" | "navigateTopNavLeft" | "navigateTopNavRight" | "openCommandPalette" | "selectSearchResult" | "toggleSidebar";
22
22
  modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
23
23
  }>> | undefined;
@@ -40,7 +40,7 @@ export declare function createStoreWorkspaces(useLocalStorage: boolean): {
40
40
  };
41
41
  hotKeyConfig?: {
42
42
  modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
43
- hotKeys?: Partial<Record<"" | "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" | "0" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]" | "4" | "1" | "2" | "3" | "5" | "6" | "7" | "8" | "9", {
43
+ hotKeys?: Partial<Record<"" | "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" | "0" | "." | "2" | "-" | "," | "/" | "1" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "`" | "[" | "\\" | "]" | "4" | "3" | "5" | "6" | "7" | "8" | "9", {
44
44
  event: "addTopNav" | "closeModal" | "closeTopNav" | "createNew" | "executeRequest" | "focusAddressBar" | "focusRequestSearch" | "jumpToLastTab" | "jumpToTab" | "navigateSearchResultsDown" | "navigateSearchResultsUp" | "navigateTopNavLeft" | "navigateTopNavRight" | "openCommandPalette" | "selectSearchResult" | "toggleSidebar";
45
45
  modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
46
46
  }>> | undefined;
@@ -63,14 +63,14 @@ export declare function createStoreWorkspaces(useLocalStorage: boolean): {
63
63
  };
64
64
  hotKeyConfig?: {
65
65
  modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
66
- hotKeys?: Partial<Record<"" | "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" | "0" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]" | "4" | "1" | "2" | "3" | "5" | "6" | "7" | "8" | "9", {
66
+ hotKeys?: Partial<Record<"" | "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" | "0" | "." | "2" | "-" | "," | "/" | "1" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "`" | "[" | "\\" | "]" | "4" | "3" | "5" | "6" | "7" | "8" | "9", {
67
67
  event: "addTopNav" | "closeModal" | "closeTopNav" | "createNew" | "executeRequest" | "focusAddressBar" | "focusRequestSearch" | "jumpToLastTab" | "jumpToTab" | "navigateSearchResultsDown" | "navigateSearchResultsUp" | "navigateTopNavLeft" | "navigateTopNavRight" | "openCommandPalette" | "selectSearchResult" | "toggleSidebar";
68
68
  modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
69
69
  }>> | undefined;
70
70
  } | undefined;
71
71
  proxyUrl?: string | undefined;
72
72
  }) => void;
73
- edit: <P extends "proxyUrl" | "description" | "uid" | "name" | "cookies" | "collections" | "environments" | "hotKeyConfig" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | `cookies.${number}` | `collections.${number}` | `environments.${string}` | "hotKeyConfig.modifiers" | "hotKeyConfig.hotKeys" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys.*" | "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.4" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys..modifiers" | "hotKeyConfig.hotKeys..event" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.modifiers" | "hotKeyConfig.hotKeys.a.event" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.modifiers" | "hotKeyConfig.hotKeys.b.event" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.c.modifiers" | "hotKeyConfig.hotKeys.c.event" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.d.modifiers" | "hotKeyConfig.hotKeys.d.event" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.e.modifiers" | "hotKeyConfig.hotKeys.e.event" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.modifiers" | "hotKeyConfig.hotKeys.f.event" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.g.modifiers" | "hotKeyConfig.hotKeys.g.event" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.h.modifiers" | "hotKeyConfig.hotKeys.h.event" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.i.modifiers" | "hotKeyConfig.hotKeys.i.event" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.j.modifiers" | "hotKeyConfig.hotKeys.j.event" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.modifiers" | "hotKeyConfig.hotKeys.k.event" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.modifiers" | "hotKeyConfig.hotKeys.l.event" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.modifiers" | "hotKeyConfig.hotKeys.m.event" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.n.modifiers" | "hotKeyConfig.hotKeys.n.event" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.o.modifiers" | "hotKeyConfig.hotKeys.o.event" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.p.modifiers" | "hotKeyConfig.hotKeys.p.event" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.modifiers" | "hotKeyConfig.hotKeys.q.event" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.r.modifiers" | "hotKeyConfig.hotKeys.r.event" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.s.modifiers" | "hotKeyConfig.hotKeys.s.event" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.t.modifiers" | "hotKeyConfig.hotKeys.t.event" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.u.modifiers" | "hotKeyConfig.hotKeys.u.event" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.v.modifiers" | "hotKeyConfig.hotKeys.v.event" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.modifiers" | "hotKeyConfig.hotKeys.w.event" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.modifiers" | "hotKeyConfig.hotKeys.x.event" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.modifiers" | "hotKeyConfig.hotKeys.y.event" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.modifiers" | "hotKeyConfig.hotKeys.z.event" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.0.modifiers" | "hotKeyConfig.hotKeys.0.event" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.modifiers" | "hotKeyConfig.hotKeys.Space.event" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.modifiers" | "hotKeyConfig.hotKeys.Backspace.event" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.modifiers" | "hotKeyConfig.hotKeys.Tab.event" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.modifiers" | "hotKeyConfig.hotKeys.Enter.event" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.modifiers" | "hotKeyConfig.hotKeys.Escape.event" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | "hotKeyConfig.hotKeys.ArrowDown.event" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | "hotKeyConfig.hotKeys.ArrowLeft.event" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | "hotKeyConfig.hotKeys.ArrowRight.event" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | "hotKeyConfig.hotKeys.ArrowUp.event" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.End.modifiers" | "hotKeyConfig.hotKeys.End.event" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.modifiers" | "hotKeyConfig.hotKeys.Home.event" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.modifiers" | "hotKeyConfig.hotKeys.PageDown.event" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.modifiers" | "hotKeyConfig.hotKeys.PageUp.event" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.modifiers" | "hotKeyConfig.hotKeys.Delete.event" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.*.modifiers" | "hotKeyConfig.hotKeys.*.event" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.modifiers" | "hotKeyConfig.hotKeys.+.event" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.modifiers" | "hotKeyConfig.hotKeys.-.event" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...modifiers" | "hotKeyConfig.hotKeys...event" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys./.modifiers" | "hotKeyConfig.hotKeys./.event" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.modifiers" | "hotKeyConfig.hotKeys.F1.event" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.modifiers" | "hotKeyConfig.hotKeys.F2.event" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.modifiers" | "hotKeyConfig.hotKeys.F3.event" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.modifiers" | "hotKeyConfig.hotKeys.F4.event" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.modifiers" | "hotKeyConfig.hotKeys.F5.event" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.modifiers" | "hotKeyConfig.hotKeys.F6.event" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.modifiers" | "hotKeyConfig.hotKeys.F7.event" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.modifiers" | "hotKeyConfig.hotKeys.F8.event" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.modifiers" | "hotKeyConfig.hotKeys.F9.event" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.modifiers" | "hotKeyConfig.hotKeys.F10.event" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.modifiers" | "hotKeyConfig.hotKeys.F11.event" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.modifiers" | "hotKeyConfig.hotKeys.F12.event" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.;.modifiers" | "hotKeyConfig.hotKeys.;.event" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.modifiers" | "hotKeyConfig.hotKeys.=.event" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.modifiers" | "hotKeyConfig.hotKeys.,.event" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.modifiers" | "hotKeyConfig.hotKeys.`.event" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.modifiers" | "hotKeyConfig.hotKeys.[.event" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.modifiers" | "hotKeyConfig.hotKeys.\\.event" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].modifiers" | "hotKeyConfig.hotKeys.].event" | `hotKeyConfig.hotKeys.].modifiers.${number}` | "hotKeyConfig.hotKeys.4.modifiers" | "hotKeyConfig.hotKeys.4.event" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.1.modifiers" | "hotKeyConfig.hotKeys.1.event" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.2.modifiers" | "hotKeyConfig.hotKeys.2.event" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.3.modifiers" | "hotKeyConfig.hotKeys.3.event" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.5.modifiers" | "hotKeyConfig.hotKeys.5.event" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.modifiers" | "hotKeyConfig.hotKeys.6.event" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.modifiers" | "hotKeyConfig.hotKeys.7.event" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.modifiers" | "hotKeyConfig.hotKeys.8.event" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.modifiers" | "hotKeyConfig.hotKeys.9.event" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "selectedHttpClient.targetKey" | "selectedHttpClient.clientKey">(uid: (string & import("zod").$brand<"workspace">) | null | undefined, path: P, value: P extends "proxyUrl" | "description" | "uid" | "name" | "cookies" | "collections" | "environments" | "hotKeyConfig" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" ? {
73
+ edit: <P extends "proxyUrl" | "description" | "uid" | "name" | "cookies" | "collections" | "environments" | "hotKeyConfig" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | `cookies.${number}` | `collections.${number}` | `environments.${string}` | "hotKeyConfig.modifiers" | "hotKeyConfig.hotKeys" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.Delete" | "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.4" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys..modifiers" | "hotKeyConfig.hotKeys..event" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.modifiers" | "hotKeyConfig.hotKeys.a.event" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.modifiers" | "hotKeyConfig.hotKeys.b.event" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.c.modifiers" | "hotKeyConfig.hotKeys.c.event" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.d.modifiers" | "hotKeyConfig.hotKeys.d.event" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.e.modifiers" | "hotKeyConfig.hotKeys.e.event" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.modifiers" | "hotKeyConfig.hotKeys.f.event" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.g.modifiers" | "hotKeyConfig.hotKeys.g.event" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.h.modifiers" | "hotKeyConfig.hotKeys.h.event" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.i.modifiers" | "hotKeyConfig.hotKeys.i.event" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.j.modifiers" | "hotKeyConfig.hotKeys.j.event" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.modifiers" | "hotKeyConfig.hotKeys.k.event" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.modifiers" | "hotKeyConfig.hotKeys.l.event" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.modifiers" | "hotKeyConfig.hotKeys.m.event" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.n.modifiers" | "hotKeyConfig.hotKeys.n.event" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.o.modifiers" | "hotKeyConfig.hotKeys.o.event" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.p.modifiers" | "hotKeyConfig.hotKeys.p.event" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.modifiers" | "hotKeyConfig.hotKeys.q.event" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.r.modifiers" | "hotKeyConfig.hotKeys.r.event" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.s.modifiers" | "hotKeyConfig.hotKeys.s.event" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.t.modifiers" | "hotKeyConfig.hotKeys.t.event" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.u.modifiers" | "hotKeyConfig.hotKeys.u.event" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.v.modifiers" | "hotKeyConfig.hotKeys.v.event" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.modifiers" | "hotKeyConfig.hotKeys.w.event" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.modifiers" | "hotKeyConfig.hotKeys.x.event" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.modifiers" | "hotKeyConfig.hotKeys.y.event" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.modifiers" | "hotKeyConfig.hotKeys.z.event" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.0.modifiers" | "hotKeyConfig.hotKeys.0.event" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys...modifiers" | "hotKeyConfig.hotKeys...event" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.2.modifiers" | "hotKeyConfig.hotKeys.2.event" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.-.modifiers" | "hotKeyConfig.hotKeys.-.event" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys.,.modifiers" | "hotKeyConfig.hotKeys.,.event" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys./.modifiers" | "hotKeyConfig.hotKeys./.event" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.1.modifiers" | "hotKeyConfig.hotKeys.1.event" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.modifiers" | "hotKeyConfig.hotKeys.Space.event" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.modifiers" | "hotKeyConfig.hotKeys.Backspace.event" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.modifiers" | "hotKeyConfig.hotKeys.Tab.event" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.modifiers" | "hotKeyConfig.hotKeys.Enter.event" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.modifiers" | "hotKeyConfig.hotKeys.Escape.event" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | "hotKeyConfig.hotKeys.ArrowDown.event" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | "hotKeyConfig.hotKeys.ArrowLeft.event" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | "hotKeyConfig.hotKeys.ArrowRight.event" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | "hotKeyConfig.hotKeys.ArrowUp.event" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.End.modifiers" | "hotKeyConfig.hotKeys.End.event" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.modifiers" | "hotKeyConfig.hotKeys.Home.event" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.modifiers" | "hotKeyConfig.hotKeys.PageDown.event" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.modifiers" | "hotKeyConfig.hotKeys.PageUp.event" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.modifiers" | "hotKeyConfig.hotKeys.Delete.event" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.*.modifiers" | "hotKeyConfig.hotKeys.*.event" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.modifiers" | "hotKeyConfig.hotKeys.+.event" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.modifiers" | "hotKeyConfig.hotKeys.F1.event" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.modifiers" | "hotKeyConfig.hotKeys.F2.event" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.modifiers" | "hotKeyConfig.hotKeys.F3.event" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.modifiers" | "hotKeyConfig.hotKeys.F4.event" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.modifiers" | "hotKeyConfig.hotKeys.F5.event" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.modifiers" | "hotKeyConfig.hotKeys.F6.event" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.modifiers" | "hotKeyConfig.hotKeys.F7.event" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.modifiers" | "hotKeyConfig.hotKeys.F8.event" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.modifiers" | "hotKeyConfig.hotKeys.F9.event" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.modifiers" | "hotKeyConfig.hotKeys.F10.event" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.modifiers" | "hotKeyConfig.hotKeys.F11.event" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.modifiers" | "hotKeyConfig.hotKeys.F12.event" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.;.modifiers" | "hotKeyConfig.hotKeys.;.event" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.modifiers" | "hotKeyConfig.hotKeys.=.event" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.`.modifiers" | "hotKeyConfig.hotKeys.`.event" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.modifiers" | "hotKeyConfig.hotKeys.[.event" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.modifiers" | "hotKeyConfig.hotKeys.\\.event" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].modifiers" | "hotKeyConfig.hotKeys.].event" | `hotKeyConfig.hotKeys.].modifiers.${number}` | "hotKeyConfig.hotKeys.4.modifiers" | "hotKeyConfig.hotKeys.4.event" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.3.modifiers" | "hotKeyConfig.hotKeys.3.event" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.5.modifiers" | "hotKeyConfig.hotKeys.5.event" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.modifiers" | "hotKeyConfig.hotKeys.6.event" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.modifiers" | "hotKeyConfig.hotKeys.7.event" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.modifiers" | "hotKeyConfig.hotKeys.8.event" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.modifiers" | "hotKeyConfig.hotKeys.9.event" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "selectedHttpClient.targetKey" | "selectedHttpClient.clientKey">(uid: (string & import("zod").$brand<"workspace">) | null | undefined, path: P, value: P extends "proxyUrl" | "description" | "uid" | "name" | "cookies" | "collections" | "environments" | "hotKeyConfig" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" ? {
74
74
  uid: string & import("zod").$brand<"workspace">;
75
75
  name: string;
76
76
  description: string;
@@ -85,7 +85,7 @@ export declare function createStoreWorkspaces(useLocalStorage: boolean): {
85
85
  };
86
86
  hotKeyConfig?: {
87
87
  modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
88
- hotKeys?: Partial<Record<"" | "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" | "0" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]" | "4" | "1" | "2" | "3" | "5" | "6" | "7" | "8" | "9", {
88
+ hotKeys?: Partial<Record<"" | "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" | "0" | "." | "2" | "-" | "," | "/" | "1" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "`" | "[" | "\\" | "]" | "4" | "3" | "5" | "6" | "7" | "8" | "9", {
89
89
  event: "addTopNav" | "closeModal" | "closeTopNav" | "createNew" | "executeRequest" | "focusAddressBar" | "focusRequestSearch" | "jumpToLastTab" | "jumpToTab" | "navigateSearchResultsDown" | "navigateSearchResultsUp" | "navigateTopNavLeft" | "navigateTopNavRight" | "openCommandPalette" | "selectSearchResult" | "toggleSidebar";
90
90
  modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
91
91
  }>> | undefined;
@@ -106,7 +106,7 @@ export declare function createStoreWorkspaces(useLocalStorage: boolean): {
106
106
  };
107
107
  hotKeyConfig?: {
108
108
  modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
109
- hotKeys?: Partial<Record<"" | "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" | "0" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]" | "4" | "1" | "2" | "3" | "5" | "6" | "7" | "8" | "9", {
109
+ hotKeys?: Partial<Record<"" | "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" | "0" | "." | "2" | "-" | "," | "/" | "1" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "`" | "[" | "\\" | "]" | "4" | "3" | "5" | "6" | "7" | "8" | "9", {
110
110
  event: "addTopNav" | "closeModal" | "closeTopNav" | "createNew" | "executeRequest" | "focusAddressBar" | "focusRequestSearch" | "jumpToLastTab" | "jumpToTab" | "navigateSearchResultsDown" | "navigateSearchResultsUp" | "navigateTopNavLeft" | "navigateTopNavRight" | "openCommandPalette" | "selectSearchResult" | "toggleSidebar";
111
111
  modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
112
112
  }>> | undefined;
@@ -127,14 +127,14 @@ export declare function createStoreWorkspaces(useLocalStorage: boolean): {
127
127
  };
128
128
  hotKeyConfig?: {
129
129
  modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
130
- hotKeys?: Partial<Record<"" | "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" | "0" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]" | "4" | "1" | "2" | "3" | "5" | "6" | "7" | "8" | "9", {
130
+ hotKeys?: Partial<Record<"" | "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" | "0" | "." | "2" | "-" | "," | "/" | "1" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "`" | "[" | "\\" | "]" | "4" | "3" | "5" | "6" | "7" | "8" | "9", {
131
131
  event: "addTopNav" | "closeModal" | "closeTopNav" | "createNew" | "executeRequest" | "focusAddressBar" | "focusRequestSearch" | "jumpToLastTab" | "jumpToTab" | "navigateSearchResultsDown" | "navigateSearchResultsUp" | "navigateTopNavLeft" | "navigateTopNavRight" | "openCommandPalette" | "selectSearchResult" | "toggleSidebar";
132
132
  modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
133
133
  }>> | undefined;
134
134
  } | undefined;
135
135
  proxyUrl?: string | undefined;
136
136
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
137
- untrackedEdit: <P extends "proxyUrl" | "description" | "uid" | "name" | "cookies" | "collections" | "environments" | "hotKeyConfig" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | `cookies.${number}` | `collections.${number}` | `environments.${string}` | "hotKeyConfig.modifiers" | "hotKeyConfig.hotKeys" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys.*" | "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.4" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys..modifiers" | "hotKeyConfig.hotKeys..event" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.modifiers" | "hotKeyConfig.hotKeys.a.event" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.modifiers" | "hotKeyConfig.hotKeys.b.event" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.c.modifiers" | "hotKeyConfig.hotKeys.c.event" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.d.modifiers" | "hotKeyConfig.hotKeys.d.event" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.e.modifiers" | "hotKeyConfig.hotKeys.e.event" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.modifiers" | "hotKeyConfig.hotKeys.f.event" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.g.modifiers" | "hotKeyConfig.hotKeys.g.event" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.h.modifiers" | "hotKeyConfig.hotKeys.h.event" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.i.modifiers" | "hotKeyConfig.hotKeys.i.event" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.j.modifiers" | "hotKeyConfig.hotKeys.j.event" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.modifiers" | "hotKeyConfig.hotKeys.k.event" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.modifiers" | "hotKeyConfig.hotKeys.l.event" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.modifiers" | "hotKeyConfig.hotKeys.m.event" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.n.modifiers" | "hotKeyConfig.hotKeys.n.event" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.o.modifiers" | "hotKeyConfig.hotKeys.o.event" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.p.modifiers" | "hotKeyConfig.hotKeys.p.event" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.modifiers" | "hotKeyConfig.hotKeys.q.event" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.r.modifiers" | "hotKeyConfig.hotKeys.r.event" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.s.modifiers" | "hotKeyConfig.hotKeys.s.event" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.t.modifiers" | "hotKeyConfig.hotKeys.t.event" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.u.modifiers" | "hotKeyConfig.hotKeys.u.event" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.v.modifiers" | "hotKeyConfig.hotKeys.v.event" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.modifiers" | "hotKeyConfig.hotKeys.w.event" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.modifiers" | "hotKeyConfig.hotKeys.x.event" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.modifiers" | "hotKeyConfig.hotKeys.y.event" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.modifiers" | "hotKeyConfig.hotKeys.z.event" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.0.modifiers" | "hotKeyConfig.hotKeys.0.event" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.modifiers" | "hotKeyConfig.hotKeys.Space.event" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.modifiers" | "hotKeyConfig.hotKeys.Backspace.event" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.modifiers" | "hotKeyConfig.hotKeys.Tab.event" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.modifiers" | "hotKeyConfig.hotKeys.Enter.event" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.modifiers" | "hotKeyConfig.hotKeys.Escape.event" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | "hotKeyConfig.hotKeys.ArrowDown.event" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | "hotKeyConfig.hotKeys.ArrowLeft.event" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | "hotKeyConfig.hotKeys.ArrowRight.event" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | "hotKeyConfig.hotKeys.ArrowUp.event" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.End.modifiers" | "hotKeyConfig.hotKeys.End.event" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.modifiers" | "hotKeyConfig.hotKeys.Home.event" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.modifiers" | "hotKeyConfig.hotKeys.PageDown.event" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.modifiers" | "hotKeyConfig.hotKeys.PageUp.event" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.modifiers" | "hotKeyConfig.hotKeys.Delete.event" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.*.modifiers" | "hotKeyConfig.hotKeys.*.event" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.modifiers" | "hotKeyConfig.hotKeys.+.event" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.modifiers" | "hotKeyConfig.hotKeys.-.event" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...modifiers" | "hotKeyConfig.hotKeys...event" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys./.modifiers" | "hotKeyConfig.hotKeys./.event" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.modifiers" | "hotKeyConfig.hotKeys.F1.event" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.modifiers" | "hotKeyConfig.hotKeys.F2.event" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.modifiers" | "hotKeyConfig.hotKeys.F3.event" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.modifiers" | "hotKeyConfig.hotKeys.F4.event" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.modifiers" | "hotKeyConfig.hotKeys.F5.event" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.modifiers" | "hotKeyConfig.hotKeys.F6.event" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.modifiers" | "hotKeyConfig.hotKeys.F7.event" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.modifiers" | "hotKeyConfig.hotKeys.F8.event" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.modifiers" | "hotKeyConfig.hotKeys.F9.event" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.modifiers" | "hotKeyConfig.hotKeys.F10.event" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.modifiers" | "hotKeyConfig.hotKeys.F11.event" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.modifiers" | "hotKeyConfig.hotKeys.F12.event" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.;.modifiers" | "hotKeyConfig.hotKeys.;.event" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.modifiers" | "hotKeyConfig.hotKeys.=.event" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.modifiers" | "hotKeyConfig.hotKeys.,.event" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.modifiers" | "hotKeyConfig.hotKeys.`.event" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.modifiers" | "hotKeyConfig.hotKeys.[.event" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.modifiers" | "hotKeyConfig.hotKeys.\\.event" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].modifiers" | "hotKeyConfig.hotKeys.].event" | `hotKeyConfig.hotKeys.].modifiers.${number}` | "hotKeyConfig.hotKeys.4.modifiers" | "hotKeyConfig.hotKeys.4.event" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.1.modifiers" | "hotKeyConfig.hotKeys.1.event" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.2.modifiers" | "hotKeyConfig.hotKeys.2.event" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.3.modifiers" | "hotKeyConfig.hotKeys.3.event" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.5.modifiers" | "hotKeyConfig.hotKeys.5.event" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.modifiers" | "hotKeyConfig.hotKeys.6.event" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.modifiers" | "hotKeyConfig.hotKeys.7.event" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.modifiers" | "hotKeyConfig.hotKeys.8.event" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.modifiers" | "hotKeyConfig.hotKeys.9.event" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "selectedHttpClient.targetKey" | "selectedHttpClient.clientKey">(uid: string & import("zod").$brand<"workspace">, path: P, value: P extends "proxyUrl" | "description" | "uid" | "name" | "cookies" | "collections" | "environments" | "hotKeyConfig" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" ? {
137
+ untrackedEdit: <P extends "proxyUrl" | "description" | "uid" | "name" | "cookies" | "collections" | "environments" | "hotKeyConfig" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" | `cookies.${number}` | `collections.${number}` | `environments.${string}` | "hotKeyConfig.modifiers" | "hotKeyConfig.hotKeys" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.Delete" | "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.4" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys..modifiers" | "hotKeyConfig.hotKeys..event" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.modifiers" | "hotKeyConfig.hotKeys.a.event" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.modifiers" | "hotKeyConfig.hotKeys.b.event" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.c.modifiers" | "hotKeyConfig.hotKeys.c.event" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.d.modifiers" | "hotKeyConfig.hotKeys.d.event" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.e.modifiers" | "hotKeyConfig.hotKeys.e.event" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.modifiers" | "hotKeyConfig.hotKeys.f.event" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.g.modifiers" | "hotKeyConfig.hotKeys.g.event" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.h.modifiers" | "hotKeyConfig.hotKeys.h.event" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.i.modifiers" | "hotKeyConfig.hotKeys.i.event" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.j.modifiers" | "hotKeyConfig.hotKeys.j.event" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.modifiers" | "hotKeyConfig.hotKeys.k.event" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.modifiers" | "hotKeyConfig.hotKeys.l.event" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.modifiers" | "hotKeyConfig.hotKeys.m.event" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.n.modifiers" | "hotKeyConfig.hotKeys.n.event" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.o.modifiers" | "hotKeyConfig.hotKeys.o.event" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.p.modifiers" | "hotKeyConfig.hotKeys.p.event" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.modifiers" | "hotKeyConfig.hotKeys.q.event" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.r.modifiers" | "hotKeyConfig.hotKeys.r.event" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.s.modifiers" | "hotKeyConfig.hotKeys.s.event" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.t.modifiers" | "hotKeyConfig.hotKeys.t.event" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.u.modifiers" | "hotKeyConfig.hotKeys.u.event" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.v.modifiers" | "hotKeyConfig.hotKeys.v.event" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.modifiers" | "hotKeyConfig.hotKeys.w.event" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.modifiers" | "hotKeyConfig.hotKeys.x.event" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.modifiers" | "hotKeyConfig.hotKeys.y.event" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.modifiers" | "hotKeyConfig.hotKeys.z.event" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.0.modifiers" | "hotKeyConfig.hotKeys.0.event" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys...modifiers" | "hotKeyConfig.hotKeys...event" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.2.modifiers" | "hotKeyConfig.hotKeys.2.event" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.-.modifiers" | "hotKeyConfig.hotKeys.-.event" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys.,.modifiers" | "hotKeyConfig.hotKeys.,.event" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys./.modifiers" | "hotKeyConfig.hotKeys./.event" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.1.modifiers" | "hotKeyConfig.hotKeys.1.event" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.modifiers" | "hotKeyConfig.hotKeys.Space.event" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.modifiers" | "hotKeyConfig.hotKeys.Backspace.event" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.modifiers" | "hotKeyConfig.hotKeys.Tab.event" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.modifiers" | "hotKeyConfig.hotKeys.Enter.event" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.modifiers" | "hotKeyConfig.hotKeys.Escape.event" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | "hotKeyConfig.hotKeys.ArrowDown.event" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | "hotKeyConfig.hotKeys.ArrowLeft.event" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | "hotKeyConfig.hotKeys.ArrowRight.event" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | "hotKeyConfig.hotKeys.ArrowUp.event" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.End.modifiers" | "hotKeyConfig.hotKeys.End.event" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.modifiers" | "hotKeyConfig.hotKeys.Home.event" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.modifiers" | "hotKeyConfig.hotKeys.PageDown.event" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.modifiers" | "hotKeyConfig.hotKeys.PageUp.event" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.modifiers" | "hotKeyConfig.hotKeys.Delete.event" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.*.modifiers" | "hotKeyConfig.hotKeys.*.event" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.modifiers" | "hotKeyConfig.hotKeys.+.event" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.modifiers" | "hotKeyConfig.hotKeys.F1.event" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.modifiers" | "hotKeyConfig.hotKeys.F2.event" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.modifiers" | "hotKeyConfig.hotKeys.F3.event" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.modifiers" | "hotKeyConfig.hotKeys.F4.event" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.modifiers" | "hotKeyConfig.hotKeys.F5.event" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.modifiers" | "hotKeyConfig.hotKeys.F6.event" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.modifiers" | "hotKeyConfig.hotKeys.F7.event" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.modifiers" | "hotKeyConfig.hotKeys.F8.event" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.modifiers" | "hotKeyConfig.hotKeys.F9.event" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.modifiers" | "hotKeyConfig.hotKeys.F10.event" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.modifiers" | "hotKeyConfig.hotKeys.F11.event" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.modifiers" | "hotKeyConfig.hotKeys.F12.event" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.;.modifiers" | "hotKeyConfig.hotKeys.;.event" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.modifiers" | "hotKeyConfig.hotKeys.=.event" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.`.modifiers" | "hotKeyConfig.hotKeys.`.event" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.modifiers" | "hotKeyConfig.hotKeys.[.event" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.modifiers" | "hotKeyConfig.hotKeys.\\.event" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].modifiers" | "hotKeyConfig.hotKeys.].event" | `hotKeyConfig.hotKeys.].modifiers.${number}` | "hotKeyConfig.hotKeys.4.modifiers" | "hotKeyConfig.hotKeys.4.event" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.3.modifiers" | "hotKeyConfig.hotKeys.3.event" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.5.modifiers" | "hotKeyConfig.hotKeys.5.event" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.modifiers" | "hotKeyConfig.hotKeys.6.event" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.modifiers" | "hotKeyConfig.hotKeys.7.event" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.modifiers" | "hotKeyConfig.hotKeys.8.event" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.modifiers" | "hotKeyConfig.hotKeys.9.event" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "selectedHttpClient.targetKey" | "selectedHttpClient.clientKey">(uid: string & import("zod").$brand<"workspace">, path: P, value: P extends "proxyUrl" | "description" | "uid" | "name" | "cookies" | "collections" | "environments" | "hotKeyConfig" | "activeEnvironmentId" | "themeId" | "selectedHttpClient" ? {
138
138
  uid: string & import("zod").$brand<"workspace">;
139
139
  name: string;
140
140
  description: string;
@@ -149,7 +149,7 @@ export declare function createStoreWorkspaces(useLocalStorage: boolean): {
149
149
  };
150
150
  hotKeyConfig?: {
151
151
  modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
152
- hotKeys?: Partial<Record<"" | "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" | "0" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]" | "4" | "1" | "2" | "3" | "5" | "6" | "7" | "8" | "9", {
152
+ hotKeys?: Partial<Record<"" | "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" | "0" | "." | "2" | "-" | "," | "/" | "1" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "`" | "[" | "\\" | "]" | "4" | "3" | "5" | "6" | "7" | "8" | "9", {
153
153
  event: "addTopNav" | "closeModal" | "closeTopNav" | "createNew" | "executeRequest" | "focusAddressBar" | "focusRequestSearch" | "jumpToLastTab" | "jumpToTab" | "navigateSearchResultsDown" | "navigateSearchResultsUp" | "navigateTopNavLeft" | "navigateTopNavRight" | "openCommandPalette" | "selectSearchResult" | "toggleSidebar";
154
154
  modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
155
155
  }>> | undefined;
@@ -170,7 +170,7 @@ export declare function createStoreWorkspaces(useLocalStorage: boolean): {
170
170
  };
171
171
  hotKeyConfig?: {
172
172
  modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
173
- hotKeys?: Partial<Record<"" | "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" | "0" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]" | "4" | "1" | "2" | "3" | "5" | "6" | "7" | "8" | "9", {
173
+ hotKeys?: Partial<Record<"" | "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" | "0" | "." | "2" | "-" | "," | "/" | "1" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "`" | "[" | "\\" | "]" | "4" | "3" | "5" | "6" | "7" | "8" | "9", {
174
174
  event: "addTopNav" | "closeModal" | "closeTopNav" | "createNew" | "executeRequest" | "focusAddressBar" | "focusRequestSearch" | "jumpToLastTab" | "jumpToTab" | "navigateSearchResultsDown" | "navigateSearchResultsUp" | "navigateTopNavLeft" | "navigateTopNavRight" | "openCommandPalette" | "selectSearchResult" | "toggleSidebar";
175
175
  modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
176
176
  }>> | undefined;
@@ -191,7 +191,7 @@ export declare function createStoreWorkspaces(useLocalStorage: boolean): {
191
191
  };
192
192
  hotKeyConfig?: {
193
193
  modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
194
- hotKeys?: Partial<Record<"" | "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" | "0" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]" | "4" | "1" | "2" | "3" | "5" | "6" | "7" | "8" | "9", {
194
+ hotKeys?: Partial<Record<"" | "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" | "0" | "." | "2" | "-" | "," | "/" | "1" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "`" | "[" | "\\" | "]" | "4" | "3" | "5" | "6" | "7" | "8" | "9", {
195
195
  event: "addTopNav" | "closeModal" | "closeTopNav" | "createNew" | "executeRequest" | "focusAddressBar" | "focusRequestSearch" | "jumpToLastTab" | "jumpToTab" | "navigateSearchResultsDown" | "navigateSearchResultsUp" | "navigateTopNavLeft" | "navigateTopNavRight" | "openCommandPalette" | "selectSearchResult" | "toggleSidebar";
196
196
  modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
197
197
  }>> | undefined;
@@ -220,7 +220,7 @@ export declare function extendedWorkspaceDataFactory({ workspaces, workspaceMuta
220
220
  };
221
221
  hotKeyConfig?: {
222
222
  modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
223
- hotKeys?: Partial<Record<"" | "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" | "0" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]" | "4" | "1" | "2" | "3" | "5" | "6" | "7" | "8" | "9", {
223
+ hotKeys?: Partial<Record<"" | "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" | "0" | "." | "2" | "-" | "," | "/" | "1" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "*" | "+" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "`" | "[" | "\\" | "]" | "4" | "3" | "5" | "6" | "7" | "8" | "9", {
224
224
  event: "addTopNav" | "closeModal" | "closeTopNav" | "createNew" | "executeRequest" | "focusAddressBar" | "focusRequestSearch" | "jumpToLastTab" | "jumpToTab" | "navigateSearchResultsDown" | "navigateSearchResultsUp" | "navigateTopNavLeft" | "navigateTopNavRight" | "openCommandPalette" | "selectSearchResult" | "toggleSidebar";
225
225
  modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
226
226
  }>> | undefined;