@scalar/api-client 2.15.0 → 2.17.1

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 (271) hide show
  1. package/CHANGELOG.md +166 -0
  2. package/dist/hooks/useResponseBody.js +6 -6
  3. package/dist/libs/errors.d.ts +1 -0
  4. package/dist/libs/errors.d.ts.map +1 -1
  5. package/dist/libs/errors.js +1 -0
  6. package/dist/libs/send-request/create-request-operation.d.ts.map +1 -1
  7. package/dist/libs/send-request/create-request-operation.js +41 -35
  8. package/dist/style.css +1 -1
  9. package/dist/v2/blocks/operation-block/OperationBlock.vue.d.ts +28 -38
  10. package/dist/v2/blocks/operation-block/OperationBlock.vue.d.ts.map +1 -1
  11. package/dist/v2/blocks/operation-block/OperationBlock.vue.js +84 -45
  12. package/dist/v2/blocks/operation-block/components/Header.vue.d.ts +1 -11
  13. package/dist/v2/blocks/operation-block/components/Header.vue.d.ts.map +1 -1
  14. package/dist/v2/blocks/operation-block/components/Header.vue.js +2 -2
  15. package/dist/v2/blocks/operation-block/components/Header.vue2.js +28 -35
  16. package/dist/v2/blocks/operation-block/helpers/build-request-body.d.ts +10 -0
  17. package/dist/v2/blocks/operation-block/helpers/build-request-body.d.ts.map +1 -0
  18. package/dist/v2/blocks/operation-block/helpers/build-request-body.js +22 -0
  19. package/dist/v2/blocks/operation-block/helpers/build-request-cookie-header.d.ts +31 -0
  20. package/dist/v2/blocks/operation-block/helpers/build-request-cookie-header.d.ts.map +1 -0
  21. package/dist/v2/blocks/operation-block/helpers/build-request-cookie-header.js +31 -0
  22. package/dist/v2/blocks/operation-block/helpers/build-request-parameters.d.ts +3 -9
  23. package/dist/v2/blocks/operation-block/helpers/build-request-parameters.d.ts.map +1 -1
  24. package/dist/v2/blocks/operation-block/helpers/build-request-parameters.js +56 -0
  25. package/dist/v2/blocks/operation-block/helpers/build-request-security.d.ts +10 -3
  26. package/dist/v2/blocks/operation-block/helpers/build-request-security.d.ts.map +1 -1
  27. package/dist/v2/blocks/operation-block/helpers/build-request-security.js +46 -0
  28. package/dist/v2/blocks/operation-block/helpers/build-request.d.ts +45 -0
  29. package/dist/v2/blocks/operation-block/helpers/build-request.d.ts.map +1 -0
  30. package/dist/v2/blocks/operation-block/helpers/build-request.js +66 -0
  31. package/dist/v2/blocks/operation-block/helpers/decode-buffer.js +9 -0
  32. package/dist/v2/blocks/operation-block/helpers/get-cookie-header-keys.d.ts +16 -0
  33. package/dist/v2/blocks/operation-block/helpers/get-cookie-header-keys.d.ts.map +1 -0
  34. package/dist/v2/blocks/operation-block/helpers/get-cookie-header-keys.js +4 -0
  35. package/dist/v2/blocks/operation-block/helpers/get-delimiter.js +17 -0
  36. package/dist/v2/blocks/operation-block/helpers/get-example.d.ts +9 -3
  37. package/dist/v2/blocks/operation-block/helpers/get-example.d.ts.map +1 -1
  38. package/dist/v2/blocks/operation-block/helpers/get-example.js +21 -0
  39. package/dist/v2/blocks/operation-block/helpers/send-request.d.ts +53 -0
  40. package/dist/v2/blocks/operation-block/helpers/send-request.d.ts.map +1 -0
  41. package/dist/v2/blocks/operation-block/helpers/send-request.js +120 -0
  42. package/dist/v2/blocks/operation-code-sample/components/ExamplePicker.vue.d.ts +1 -1
  43. package/dist/v2/blocks/operation-code-sample/components/ExamplePicker.vue.d.ts.map +1 -1
  44. package/dist/v2/blocks/operation-code-sample/components/OperationCodeSample.vue.d.ts.map +1 -1
  45. package/dist/v2/blocks/operation-code-sample/components/OperationCodeSample.vue.js +1 -1
  46. package/dist/v2/blocks/operation-code-sample/components/OperationCodeSample.vue2.js +89 -110
  47. package/dist/v2/blocks/operation-code-sample/helpers/find-client.d.ts +2 -2
  48. package/dist/v2/blocks/operation-code-sample/helpers/find-client.d.ts.map +1 -1
  49. package/dist/v2/blocks/operation-code-sample/helpers/generate-client-options.d.ts +8 -13
  50. package/dist/v2/blocks/operation-code-sample/helpers/generate-client-options.d.ts.map +1 -1
  51. package/dist/v2/blocks/operation-code-sample/helpers/generate-client-options.js +22 -28
  52. package/dist/v2/blocks/operation-code-sample/helpers/generate-code-snippet.d.ts +19 -8
  53. package/dist/v2/blocks/operation-code-sample/helpers/generate-code-snippet.d.ts.map +1 -1
  54. package/dist/v2/blocks/operation-code-sample/helpers/generate-code-snippet.js +30 -24
  55. package/dist/v2/blocks/operation-code-sample/helpers/get-clients.d.ts +12 -0
  56. package/dist/v2/blocks/operation-code-sample/helpers/get-clients.d.ts.map +1 -0
  57. package/dist/v2/blocks/operation-code-sample/helpers/get-clients.js +20 -0
  58. package/dist/v2/blocks/operation-code-sample/helpers/get-custom-code-samples.d.ts +10 -0
  59. package/dist/v2/blocks/operation-code-sample/helpers/get-custom-code-samples.d.ts.map +1 -0
  60. package/dist/v2/blocks/operation-code-sample/helpers/get-custom-code-samples.js +4 -0
  61. package/dist/v2/blocks/operation-code-sample/helpers/get-example-from-schema.d.ts +14 -12
  62. package/dist/v2/blocks/operation-code-sample/helpers/get-example-from-schema.d.ts.map +1 -1
  63. package/dist/v2/blocks/operation-code-sample/helpers/get-example-from-schema.js +191 -169
  64. package/dist/v2/blocks/operation-code-sample/helpers/operation-to-har/operation-to-har.d.ts.map +1 -1
  65. package/dist/v2/blocks/operation-code-sample/helpers/operation-to-har/operation-to-har.js +10 -10
  66. package/dist/v2/blocks/operation-code-sample/helpers/operation-to-har/process-body.d.ts +2 -1
  67. package/dist/v2/blocks/operation-code-sample/helpers/operation-to-har/process-body.d.ts.map +1 -1
  68. package/dist/v2/blocks/operation-code-sample/helpers/operation-to-har/process-body.js +15 -19
  69. package/dist/v2/blocks/operation-code-sample/helpers/operation-to-har/process-parameters.js +2 -2
  70. package/dist/v2/blocks/operation-code-sample/index.d.ts +1 -1
  71. package/dist/v2/blocks/operation-code-sample/index.d.ts.map +1 -1
  72. package/dist/v2/blocks/operation-code-sample/types.d.ts +16 -0
  73. package/dist/v2/blocks/operation-code-sample/types.d.ts.map +1 -1
  74. package/dist/v2/blocks/request-block/RequestBlock.vue.d.ts +15 -10
  75. package/dist/v2/blocks/request-block/RequestBlock.vue.d.ts.map +1 -1
  76. package/dist/v2/blocks/request-block/RequestBlock.vue.js +1 -1
  77. package/dist/v2/blocks/request-block/RequestBlock.vue2.js +158 -125
  78. package/dist/v2/blocks/request-block/components/RequestBody.vue.d.ts.map +1 -1
  79. package/dist/v2/blocks/request-block/components/RequestBody.vue.js +2 -2
  80. package/dist/v2/blocks/request-block/components/RequestBody.vue2.js +59 -50
  81. package/dist/v2/blocks/request-block/components/RequestCodeSnippet.vue.d.ts +8 -0
  82. package/dist/v2/blocks/request-block/components/RequestCodeSnippet.vue.d.ts.map +1 -0
  83. package/dist/v2/blocks/request-block/components/RequestCodeSnippet.vue.js +127 -0
  84. package/dist/v2/blocks/request-block/components/RequestCodeSnippet.vue2.js +4 -0
  85. package/dist/v2/blocks/request-block/components/RequestParams.vue.d.ts.map +1 -1
  86. package/dist/v2/blocks/request-block/components/RequestParams.vue.js +24 -23
  87. package/dist/v2/blocks/request-block/components/RequestTableRow.vue.d.ts +1 -0
  88. package/dist/v2/blocks/request-block/components/RequestTableRow.vue.d.ts.map +1 -1
  89. package/dist/v2/blocks/request-block/components/RequestTableRow.vue.js +148 -149
  90. package/dist/v2/blocks/request-block/components/RequestTableTooltip.vue.d.ts +1 -0
  91. package/dist/v2/blocks/request-block/components/RequestTableTooltip.vue.d.ts.map +1 -1
  92. package/dist/v2/blocks/request-block/components/RequestTableTooltip.vue.js +1 -1
  93. package/dist/v2/blocks/request-block/components/RequestTableTooltip.vue2.js +28 -27
  94. package/dist/v2/blocks/request-block/helpers/get-request-body-example.d.ts +3 -2
  95. package/dist/v2/blocks/request-block/helpers/get-request-body-example.d.ts.map +1 -1
  96. package/dist/v2/blocks/request-block/helpers/get-request-body-example.js +13 -3
  97. package/dist/v2/blocks/response-block/ResponseBlock.vue.d.ts +4 -4
  98. package/dist/v2/blocks/response-block/ResponseBlock.vue.d.ts.map +1 -1
  99. package/dist/v2/blocks/response-block/ResponseBlock.vue.js +3 -3
  100. package/dist/v2/blocks/response-block/ResponseBlock.vue2.js +41 -45
  101. package/dist/v2/blocks/response-block/components/Headers.vue.d.ts.map +1 -1
  102. package/dist/v2/blocks/response-block/components/Headers.vue.js +27 -27
  103. package/dist/v2/blocks/response-block/components/ResponseCookies.vue.js +1 -1
  104. package/dist/v2/blocks/response-block/helpers/parse-set-cookie.d.ts +18 -0
  105. package/dist/v2/blocks/response-block/helpers/parse-set-cookie.d.ts.map +1 -0
  106. package/dist/v2/blocks/response-block/helpers/parse-set-cookie.js +12 -0
  107. package/dist/v2/blocks/response-block/helpers/process-response-body.js +2 -2
  108. package/dist/v2/blocks/scalar-address-bar-block/components/AddressBar.vue.d.ts +0 -2
  109. package/dist/v2/blocks/scalar-address-bar-block/components/AddressBar.vue.d.ts.map +1 -1
  110. package/dist/v2/blocks/scalar-address-bar-block/components/AddressBar.vue.js +2 -2
  111. package/dist/v2/blocks/scalar-address-bar-block/components/AddressBar.vue2.js +97 -87
  112. package/dist/v2/blocks/scalar-address-bar-block/hooks/use-loading-animation.d.ts +19 -0
  113. package/dist/v2/blocks/scalar-address-bar-block/hooks/use-loading-animation.d.ts.map +1 -0
  114. package/dist/v2/blocks/scalar-address-bar-block/hooks/use-loading-animation.js +24 -0
  115. package/dist/v2/blocks/scalar-auth-selector-block/components/AuthSelector.vue.d.ts +3 -2
  116. package/dist/v2/blocks/scalar-auth-selector-block/components/AuthSelector.vue.d.ts.map +1 -1
  117. package/dist/v2/blocks/scalar-auth-selector-block/components/AuthSelector.vue.js +59 -56
  118. package/dist/v2/blocks/scalar-auth-selector-block/components/OAuth2.vue.d.ts +1 -1
  119. package/dist/v2/blocks/scalar-auth-selector-block/components/OAuth2.vue.d.ts.map +1 -1
  120. package/dist/v2/blocks/scalar-auth-selector-block/components/RequestAuthDataTable.vue.d.ts +3 -1
  121. package/dist/v2/blocks/scalar-auth-selector-block/components/RequestAuthDataTable.vue.d.ts.map +1 -1
  122. package/dist/v2/blocks/scalar-auth-selector-block/components/RequestAuthDataTable.vue.js +26 -24
  123. package/dist/v2/blocks/scalar-auth-selector-block/components/RequestAuthTab.vue.d.ts +2 -1
  124. package/dist/v2/blocks/scalar-auth-selector-block/components/RequestAuthTab.vue.d.ts.map +1 -1
  125. package/dist/v2/blocks/scalar-auth-selector-block/components/RequestAuthTab.vue.js +44 -43
  126. package/dist/v2/blocks/scalar-auth-selector-block/helpers/is-auth-optional.d.ts +4 -0
  127. package/dist/v2/blocks/scalar-auth-selector-block/helpers/is-auth-optional.d.ts.map +1 -0
  128. package/dist/v2/blocks/scalar-auth-selector-block/helpers/is-auth-optional.js +7 -0
  129. package/dist/v2/blocks/scalar-auth-selector-block/helpers/oauth.d.ts +4 -4
  130. package/dist/v2/blocks/scalar-auth-selector-block/helpers/oauth.d.ts.map +1 -1
  131. package/dist/v2/blocks/scalar-auth-selector-block/helpers/security-scheme.d.ts +2 -2
  132. package/dist/v2/components/code-input/CodeInput.vue.d.ts +7 -6
  133. package/dist/v2/components/code-input/CodeInput.vue.d.ts.map +1 -1
  134. package/dist/v2/components/code-input/CodeInput.vue.js +2 -2
  135. package/dist/v2/components/code-input/CodeInput.vue2.js +61 -59
  136. package/dist/v2/components/data-table/DataTableInputSelect.vue.d.ts +2 -2
  137. package/dist/v2/components/data-table/DataTableInputSelect.vue.d.ts.map +1 -1
  138. package/dist/v2/components/data-table/DataTableInputSelect.vue.js +44 -44
  139. package/dist/v2/components/resize/index.d.ts +0 -1
  140. package/dist/v2/components/resize/index.d.ts.map +1 -1
  141. package/dist/v2/components/sidebar/Sidebar.vue.d.ts +5 -5
  142. package/dist/v2/components/sidebar/Sidebar.vue.d.ts.map +1 -1
  143. package/dist/v2/components/sidebar/Sidebar.vue.js +49 -47
  144. package/dist/v2/components/sidebar/SidebarMenu.vue.d.ts +1 -1
  145. package/dist/v2/components/sidebar/SidebarMenu.vue.d.ts.map +1 -1
  146. package/dist/v2/features/app/App.vue.d.ts +3 -0
  147. package/dist/v2/features/app/App.vue.d.ts.map +1 -1
  148. package/dist/v2/features/app/App.vue.js +128 -139
  149. package/dist/v2/features/app/components/AppSidebar.vue.d.ts +3 -3
  150. package/dist/v2/features/app/components/AppSidebar.vue.d.ts.map +1 -1
  151. package/dist/v2/features/app/components/AppSidebar.vue.js +3 -3
  152. package/dist/v2/features/app/components/AppSidebar.vue2.js +137 -105
  153. package/dist/v2/features/app/components/DesktopTabs.vue.d.ts +1 -1
  154. package/dist/v2/features/app/components/DesktopTabs.vue.d.ts.map +1 -1
  155. package/dist/v2/features/app/components/{ItemDecorator.vue.d.ts → SidebarItemMenu.vue.d.ts} +1 -1
  156. package/dist/v2/features/app/components/SidebarItemMenu.vue.d.ts.map +1 -0
  157. package/dist/v2/features/app/components/SidebarItemMenu.vue.js +129 -0
  158. package/dist/v2/features/app/components/SidebarItemMenu.vue2.js +4 -0
  159. package/dist/v2/features/app/components/WebTopNav.vue.d.ts +1 -1
  160. package/dist/v2/features/app/components/WebTopNav.vue.d.ts.map +1 -1
  161. package/dist/v2/features/app/helpers/create-api-client-app.d.ts +2 -2
  162. package/dist/v2/features/app/helpers/create-api-client-app.d.ts.map +1 -1
  163. package/dist/v2/features/app/helpers/create-api-client-app.js +8 -8
  164. package/dist/v2/features/app/helpers/routes.d.ts +32 -6
  165. package/dist/v2/features/app/helpers/routes.d.ts.map +1 -1
  166. package/dist/v2/features/app/helpers/routes.js +25 -16
  167. package/dist/v2/{hooks/use-sidebar-state.d.ts → features/app/hooks/use-app-sidebar.d.ts} +10 -11
  168. package/dist/v2/features/app/hooks/use-app-sidebar.d.ts.map +1 -0
  169. package/dist/v2/{hooks/use-sidebar-state.js → features/app/hooks/use-app-sidebar.js} +19 -19
  170. package/dist/v2/features/app/hooks/use-document-watcher.d.ts.map +1 -0
  171. package/dist/v2/{hooks → features/app/hooks}/use-sync-path.d.ts +2 -2
  172. package/dist/v2/features/app/hooks/use-sync-path.d.ts.map +1 -0
  173. package/dist/v2/features/app/hooks/use-sync-path.js +52 -0
  174. package/dist/v2/{hooks → features/app/hooks}/use-tabs.d.ts +2 -2
  175. package/dist/v2/features/app/hooks/use-tabs.d.ts.map +1 -0
  176. package/dist/v2/{hooks → features/app/hooks}/use-tabs.js +1 -1
  177. package/dist/v2/{hooks/use-workspace-client-events.d.ts → features/app/hooks/use-workspace-client-app-events.d.ts} +5 -5
  178. package/dist/v2/features/app/hooks/use-workspace-client-app-events.d.ts.map +1 -0
  179. package/dist/v2/{hooks/use-workspace-client-events.js → features/app/hooks/use-workspace-client-app-events.js} +48 -45
  180. package/dist/v2/features/app/hooks/use-workspace-selector.d.ts.map +1 -0
  181. package/dist/v2/{hooks → features/app/hooks}/use-workspace-selector.js +1 -1
  182. package/dist/v2/features/collection/DocumentCollection.vue.js +92 -2
  183. package/dist/v2/features/collection/DocumentCollection.vue2.js +2 -91
  184. package/dist/v2/features/collection/WorkspaceCollection.vue.js +42 -2
  185. package/dist/v2/features/collection/WorkspaceCollection.vue2.js +2 -41
  186. package/dist/v2/features/collection/components/Authentication.vue.d.ts.map +1 -1
  187. package/dist/v2/features/collection/components/Authentication.vue.js +2 -2
  188. package/dist/v2/features/collection/components/Authentication.vue2.js +14 -12
  189. package/dist/v2/features/collection/components/Cookies.vue.js +30 -1
  190. package/dist/v2/features/collection/components/Cookies.vue2.js +1 -29
  191. package/dist/v2/features/collection/components/Environment.vue.js +32 -1
  192. package/dist/v2/features/collection/components/Environment.vue2.js +1 -31
  193. package/dist/v2/features/collection/components/Overview.vue2.js +5 -4
  194. package/dist/v2/features/collection/components/Servers.vue.js +142 -2
  195. package/dist/v2/features/collection/components/Servers.vue2.js +2 -141
  196. package/dist/v2/features/collection/components/Settings.vue.js +58 -2
  197. package/dist/v2/features/collection/components/Settings.vue2.js +2 -57
  198. package/dist/v2/features/modal/Modal.vue.d.ts +23 -1
  199. package/dist/v2/features/modal/Modal.vue.d.ts.map +1 -1
  200. package/dist/v2/features/modal/Modal.vue.js +1 -1
  201. package/dist/v2/features/modal/Modal.vue2.js +118 -31
  202. package/dist/v2/features/modal/helpers/create-api-client-modal.d.ts +18 -32
  203. package/dist/v2/features/modal/helpers/create-api-client-modal.d.ts.map +1 -1
  204. package/dist/v2/features/modal/helpers/create-api-client-modal.js +46 -26
  205. package/dist/v2/features/modal/helpers/resolve-route-parameters.d.ts +55 -0
  206. package/dist/v2/features/modal/helpers/resolve-route-parameters.d.ts.map +1 -0
  207. package/dist/v2/features/modal/helpers/resolve-route-parameters.js +29 -0
  208. package/dist/v2/features/modal/hooks/use-modal-sidebar.d.ts +42 -0
  209. package/dist/v2/features/modal/hooks/use-modal-sidebar.d.ts.map +1 -0
  210. package/dist/v2/features/modal/hooks/use-modal-sidebar.js +93 -0
  211. package/dist/v2/features/modal/hooks/use-workspace-client-modal-events.d.ts +18 -0
  212. package/dist/v2/features/modal/hooks/use-workspace-client-modal-events.d.ts.map +1 -0
  213. package/dist/v2/features/modal/hooks/use-workspace-client-modal-events.js +30 -0
  214. package/dist/v2/features/operation/Operation.vue.d.ts.map +1 -1
  215. package/dist/v2/features/operation/Operation.vue.js +59 -28
  216. package/dist/v2/features/operation/helpers/get-operation-header.d.ts +17 -0
  217. package/dist/v2/features/operation/helpers/get-operation-header.d.ts.map +1 -0
  218. package/dist/v2/features/operation/helpers/get-operation-header.js +12 -0
  219. package/dist/v2/features/operation/helpers/get-security-requirements.d.ts +1 -1
  220. package/dist/v2/features/operation/helpers/get-security-requirements.d.ts.map +1 -1
  221. package/dist/v2/features/operation/helpers/get-selected-security.d.ts +7 -0
  222. package/dist/v2/features/operation/helpers/get-selected-security.d.ts.map +1 -0
  223. package/dist/v2/features/operation/helpers/get-selected-security.js +19 -0
  224. package/dist/v2/features/operation/index.d.ts +0 -1
  225. package/dist/v2/features/operation/index.d.ts.map +1 -1
  226. package/dist/v2/features/search/components/SearchModal.vue.d.ts.map +1 -1
  227. package/dist/v2/features/search/components/SearchModal.vue.js +3 -3
  228. package/dist/v2/features/search/components/SearchModal.vue2.js +45 -44
  229. package/dist/v2/helpers/generate-location-id.d.ts +19 -0
  230. package/dist/v2/helpers/generate-location-id.d.ts.map +1 -0
  231. package/dist/v2/helpers/generate-location-id.js +10 -0
  232. package/dist/v2/helpers/get-active-environment.d.ts +5 -0
  233. package/dist/v2/helpers/get-active-environment.d.ts.map +1 -0
  234. package/dist/v2/helpers/get-active-environment.js +22 -0
  235. package/dist/v2/helpers/get-tab-details.d.ts +2 -2
  236. package/dist/v2/helpers/get-tab-details.d.ts.map +1 -1
  237. package/dist/v2/helpers/handle-hotkeys.js +1 -1
  238. package/dist/v2/helpers/plugins.d.ts +59 -0
  239. package/dist/v2/helpers/plugins.d.ts.map +1 -0
  240. package/dist/v2/helpers/plugins.js +11 -0
  241. package/dist/v2/hooks/use-scroll-lock.d.ts +28 -0
  242. package/dist/v2/hooks/use-scroll-lock.d.ts.map +1 -0
  243. package/dist/v2/hooks/use-scroll-lock.js +21 -0
  244. package/dist/views/Components/CodeSnippet/helpers/get-har-request.d.ts +2 -0
  245. package/dist/views/Components/CodeSnippet/helpers/get-har-request.d.ts.map +1 -1
  246. package/dist/views/Components/CodeSnippet/helpers/get-har-request.js +1 -1
  247. package/dist/views/Request/RequestSection/RequestAuth/index.d.ts +0 -1
  248. package/dist/views/Request/RequestSection/RequestAuth/index.d.ts.map +1 -1
  249. package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
  250. package/package.json +20 -20
  251. package/dist/v2/blocks/operation-code-sample/helpers/operation-to-har/get-example-value.d.ts +0 -7
  252. package/dist/v2/blocks/operation-code-sample/helpers/operation-to-har/get-example-value.d.ts.map +0 -1
  253. package/dist/v2/blocks/operation-code-sample/helpers/operation-to-har/get-example-value.js +0 -28
  254. package/dist/v2/blocks/request-block/helpers/get-parameter-example.d.ts +0 -6
  255. package/dist/v2/blocks/request-block/helpers/get-parameter-example.d.ts.map +0 -1
  256. package/dist/v2/blocks/request-block/helpers/get-parameter-example.js +0 -12
  257. package/dist/v2/features/app/components/ItemDecorator.vue.d.ts.map +0 -1
  258. package/dist/v2/features/app/components/ItemDecorator.vue.js +0 -138
  259. package/dist/v2/features/app/components/ItemDecorator.vue2.js +0 -4
  260. package/dist/v2/hooks/use-document-watcher.d.ts.map +0 -1
  261. package/dist/v2/hooks/use-sidebar-state.d.ts.map +0 -1
  262. package/dist/v2/hooks/use-sync-path.d.ts.map +0 -1
  263. package/dist/v2/hooks/use-sync-path.js +0 -51
  264. package/dist/v2/hooks/use-tabs.d.ts.map +0 -1
  265. package/dist/v2/hooks/use-workspace-client-events.d.ts.map +0 -1
  266. package/dist/v2/hooks/use-workspace-selector.d.ts.map +0 -1
  267. package/dist/v2/plugins.d.ts +0 -44
  268. package/dist/v2/plugins.d.ts.map +0 -1
  269. /package/dist/v2/{hooks → features/app/hooks}/use-document-watcher.d.ts +0 -0
  270. /package/dist/v2/{hooks → features/app/hooks}/use-document-watcher.js +0 -0
  271. /package/dist/v2/{hooks → features/app/hooks}/use-workspace-selector.d.ts +0 -0
@@ -1,4 +1,35 @@
1
- import f from "./Environment.vue2.js";
1
+ import { defineComponent as s, computed as c, createElementBlock as l, openBlock as a, createStaticVNode as i, createVNode as r, unref as m } from "vue";
2
+ import v from "../../environments/EnvironmentsList.vue.js";
3
+ const d = { class: "flex flex-col gap-4" }, f = /* @__PURE__ */ s({
4
+ __name: "Environment",
5
+ props: {
6
+ documentSlug: {},
7
+ document: {},
8
+ eventBus: {},
9
+ layout: {},
10
+ path: {},
11
+ method: {},
12
+ exampleName: {},
13
+ environment: {},
14
+ workspaceStore: {},
15
+ activeWorkspace: {},
16
+ plugins: {},
17
+ collectionType: {}
18
+ },
19
+ setup(e) {
20
+ const o = c(
21
+ () => (e.collectionType === "document" ? e.document["x-scalar-environments"] : e.workspaceStore.workspace["x-scalar-environments"]) ?? {}
22
+ );
23
+ return (t, n) => (a(), l("div", d, [
24
+ n[0] || (n[0] = i('<div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2"><div class="flex h-8 items-center"><h3 class="font-bold">Environment Variables</h3></div><p class="text-c-2 mb-4 text-sm"> Set environment variables at your collection level. Use <code class="font-code text-c-2"> {{ variable }} </code> to add / search among the selected environment&#39;s variables in your request inputs. </p></div></div>', 1)),
25
+ r(m(v), {
26
+ collectionType: t.collectionType,
27
+ environments: o.value,
28
+ eventBus: t.eventBus
29
+ }, null, 8, ["collectionType", "environments", "eventBus"])
30
+ ]));
31
+ }
32
+ });
2
33
  export {
3
34
  f as default
4
35
  };
@@ -1,34 +1,4 @@
1
- import { defineComponent as s, computed as c, createElementBlock as l, openBlock as a, createStaticVNode as i, createVNode as r, unref as m } from "vue";
2
- import v from "../../environments/EnvironmentsList.vue.js";
3
- const d = { class: "flex flex-col gap-4" }, f = /* @__PURE__ */ s({
4
- __name: "Environment",
5
- props: {
6
- documentSlug: {},
7
- document: {},
8
- eventBus: {},
9
- layout: {},
10
- path: {},
11
- method: {},
12
- exampleName: {},
13
- environment: {},
14
- workspaceStore: {},
15
- activeWorkspace: {},
16
- collectionType: {}
17
- },
18
- setup(e) {
19
- const o = c(
20
- () => (e.collectionType === "document" ? e.document["x-scalar-environments"] : e.workspaceStore.workspace["x-scalar-environments"]) ?? {}
21
- );
22
- return (t, n) => (a(), l("div", d, [
23
- n[0] || (n[0] = i('<div class="flex items-start justify-between gap-2"><div class="flex flex-col gap-2"><div class="flex h-8 items-center"><h3 class="font-bold">Environment Variables</h3></div><p class="text-c-2 mb-4 text-sm"> Set environment variables at your collection level. Use <code class="font-code text-c-2"> {{ variable }} </code> to add / search among the selected environment&#39;s variables in your request inputs. </p></div></div>', 1)),
24
- r(m(v), {
25
- collectionType: t.collectionType,
26
- environments: o.value,
27
- eventBus: t.eventBus
28
- }, null, 8, ["collectionType", "environments", "eventBus"])
29
- ]));
30
- }
31
- });
1
+ import f from "./Environment.vue.js";
32
2
  export {
33
3
  f as default
34
4
  };
@@ -1,11 +1,11 @@
1
- import { defineComponent as g, computed as x, ref as y, useTemplateRef as w, createElementBlock as i, openBlock as t, createElementVNode as o, createBlock as c, createCommentVNode as h, unref as n, withCtx as m, createVNode as d, Fragment as v, nextTick as B } from "vue";
1
+ import { defineComponent as k, computed as x, ref as y, useTemplateRef as w, createElementBlock as i, openBlock as t, createElementVNode as o, createBlock as c, createCommentVNode as h, unref as n, withCtx as m, createVNode as d, Fragment as v, nextTick as B } from "vue";
2
2
  import { ScalarButton as f, ScalarMarkdown as C } from "@scalar/components";
3
3
  import { ScalarIconPencil as b } from "@scalar/icons";
4
4
  import I from "../../../components/code-input/CodeInput.vue.js";
5
5
  const V = { class: "flex flex-col gap-2" }, z = { class: "flex items-center justify-between gap-2 pl-1.5" }, S = { class: "has-[:focus-visible]:bg-b-1 group rounded-lg" }, N = {
6
6
  key: 1,
7
7
  class: "text-c-3 flex items-center justify-center rounded-lg border p-4"
8
- }, j = /* @__PURE__ */ g({
8
+ }, j = /* @__PURE__ */ k({
9
9
  __name: "Overview",
10
10
  props: {
11
11
  documentSlug: {},
@@ -18,11 +18,12 @@ const V = { class: "flex flex-col gap-2" }, z = { class: "flex items-center just
18
18
  environment: {},
19
19
  workspaceStore: {},
20
20
  activeWorkspace: {},
21
+ plugins: {},
21
22
  collectionType: {}
22
23
  },
23
- setup(k) {
24
+ setup(g) {
24
25
  const u = x(
25
- () => k.document?.info?.description ?? ""
26
+ () => g.document?.info?.description ?? ""
26
27
  ), a = y("preview"), p = w("codeInputRef"), r = async (s) => {
27
28
  a.value = s, s === "edit" && (await B(), p.value?.focus());
28
29
  };
@@ -1,4 +1,144 @@
1
- import f from "./Servers.vue2.js";
1
+ import { defineComponent as M, ref as A, computed as x, createElementBlock as u, openBlock as c, Fragment as S, createElementVNode as s, createVNode as l, createTextVNode as g, renderList as I, createBlock as y, unref as r, toDisplayString as T, withCtx as f, createCommentVNode as V } from "vue";
2
+ import { useModal as P, ScalarMarkdown as z, ScalarButton as k, ScalarModal as L } from "@scalar/components";
3
+ import { debounce as O } from "@scalar/helpers/general/debounce";
4
+ import { ScalarIconTrash as R, ScalarIconPlus as j } from "@scalar/icons";
5
+ import E from "../../../../components/Sidebar/Actions/DeleteSidebarListElement.vue.js";
6
+ import F from "./Form.vue.js";
7
+ import W from "../../../../components/Server/ServerVariablesForm.vue.js";
8
+ const Y = { class: "flex flex-col gap-4" }, q = { class: "flex flex-col gap-4" }, G = { class: "bg-b-2 flex items-center justify-between rounded-t-lg px-3 py-1 text-sm" }, H = {
9
+ key: 1,
10
+ class: "self-center"
11
+ }, J = { class: "divide-0 flex w-full flex-col divide-y rounded-b-lg text-sm" }, K = { class: "text-c-3 flex h-full items-center justify-center rounded-lg border p-4" }, re = /* @__PURE__ */ M({
12
+ __name: "Servers",
13
+ props: {
14
+ documentSlug: {},
15
+ document: {},
16
+ eventBus: {},
17
+ layout: {},
18
+ path: {},
19
+ method: {},
20
+ exampleName: {},
21
+ environment: {},
22
+ workspaceStore: {},
23
+ activeWorkspace: {},
24
+ plugins: {},
25
+ collectionType: {}
26
+ },
27
+ setup(o) {
28
+ const v = P(), n = A(-1), _ = x(
29
+ () => o.document?.servers?.[n.value]
30
+ ), $ = x(() => o.document?.servers ?? []), B = [
31
+ {
32
+ label: "URL",
33
+ key: "url",
34
+ placeholder: "https://void.scalar.com"
35
+ },
36
+ {
37
+ label: "Description",
38
+ key: "description",
39
+ placeholder: "Production"
40
+ }
41
+ ], w = (t) => {
42
+ n.value = t, v.show();
43
+ }, p = () => {
44
+ v.hide(), n.value = -1;
45
+ }, N = () => {
46
+ n.value < 0 || (o.eventBus.emit("server:delete:server", { index: n.value }), p());
47
+ }, { execute: b } = O({ delay: 328, maxWait: 1e3 }), U = (t, e, a) => b(
48
+ `${t}-${e}`,
49
+ () => o.eventBus.emit("server:update:server", {
50
+ index: t,
51
+ server: { [e]: a }
52
+ })
53
+ ), C = (t, e, a) => b(
54
+ `${t}-${e}`,
55
+ () => o.eventBus.emit("server:update:variables", {
56
+ index: t,
57
+ key: e,
58
+ value: a
59
+ })
60
+ ), D = () => o.eventBus.emit("server:add:server"), h = (t, e = 0) => t?.description || `Server ${e + 1}`;
61
+ return (t, e) => (c(), u(S, null, [
62
+ s("div", Y, [
63
+ e[1] || (e[1] = s("div", { class: "flex flex-col gap-2" }, [
64
+ s("h3", { class: "font-bold" }, "Servers"),
65
+ s("p", { class: "text-sm" }, [
66
+ g(" Add different base URLs for your API. You can use "),
67
+ s("code", { class: "font-code text-c-2" }, "{variables}"),
68
+ g(" for dynamic parts. ")
69
+ ])
70
+ ], -1)),
71
+ s("div", q, [
72
+ (c(!0), u(S, null, I($.value, (a, d) => (c(), u("div", {
73
+ key: d,
74
+ class: "rounded-lg border"
75
+ }, [
76
+ s("div", G, [
77
+ a.description ? (c(), y(r(z), {
78
+ key: 0,
79
+ class: "self-center",
80
+ value: a.description
81
+ }, null, 8, ["value"])) : (c(), u("span", H, T(h(a, d)), 1)),
82
+ l(r(k), {
83
+ class: "hover:bg-b-3 hover:text-c-1 h-fit p-1.25",
84
+ "data-testid": "delete-server-button",
85
+ variant: "ghost",
86
+ onClick: (i) => w(d)
87
+ }, {
88
+ default: f(() => [
89
+ l(r(R), { class: "size-3.5" })
90
+ ]),
91
+ _: 1
92
+ }, 8, ["onClick"])
93
+ ]),
94
+ s("div", J, [
95
+ l(F, {
96
+ data: a,
97
+ environment: t.environment,
98
+ onUpdate: (i, m) => U(d, i, m),
99
+ options: B
100
+ }, null, 8, ["data", "environment", "onUpdate"]),
101
+ a.variables ? (c(), y(r(W), {
102
+ key: 0,
103
+ variables: a.variables,
104
+ "onUpdate:variable": (i, m) => C(d, i, m)
105
+ }, null, 8, ["variables", "onUpdate:variable"])) : V("", !0)
106
+ ])
107
+ ]))), 128))
108
+ ]),
109
+ s("div", K, [
110
+ l(r(k), {
111
+ class: "hover:bg-b-2 hover:text-c-1 flex items-center gap-2",
112
+ size: "sm",
113
+ variant: "ghost",
114
+ onClick: D
115
+ }, {
116
+ default: f(() => [
117
+ l(r(j)),
118
+ e[0] || (e[0] = s("span", null, "Add Server", -1))
119
+ ]),
120
+ _: 1
121
+ })
122
+ ])
123
+ ]),
124
+ l(r(L), {
125
+ size: "xxs",
126
+ state: r(v),
127
+ title: `Delete ${h(_.value, n.value)}`
128
+ }, {
129
+ default: f(() => [
130
+ l(E, {
131
+ variableName: "Server",
132
+ warningMessage: "Are you sure you want to delete this server? This action cannot be undone.",
133
+ onClose: p,
134
+ onDelete: N
135
+ })
136
+ ]),
137
+ _: 1
138
+ }, 8, ["state", "title"])
139
+ ], 64));
140
+ }
141
+ });
2
142
  export {
3
- f as default
143
+ re as default
4
144
  };
@@ -1,143 +1,4 @@
1
- import { defineComponent as M, ref as A, computed as x, createElementBlock as u, openBlock as c, Fragment as S, createElementVNode as r, createVNode as o, createTextVNode as g, renderList as I, createBlock as y, unref as s, toDisplayString as T, withCtx as f, createCommentVNode as V } from "vue";
2
- import { useModal as P, ScalarMarkdown as z, ScalarButton as k, ScalarModal as L } from "@scalar/components";
3
- import { debounce as O } from "@scalar/helpers/general/debounce";
4
- import { ScalarIconTrash as R, ScalarIconPlus as j } from "@scalar/icons";
5
- import E from "../../../../components/Sidebar/Actions/DeleteSidebarListElement.vue.js";
6
- import F from "./Form.vue.js";
7
- import W from "../../../../components/Server/ServerVariablesForm.vue.js";
8
- const Y = { class: "flex flex-col gap-4" }, q = { class: "flex flex-col gap-4" }, G = { class: "bg-b-2 flex items-center justify-between rounded-t-lg px-3 py-1 text-sm" }, H = {
9
- key: 1,
10
- class: "self-center"
11
- }, J = { class: "divide-0 flex w-full flex-col divide-y rounded-b-lg text-sm" }, K = { class: "text-c-3 flex h-full items-center justify-center rounded-lg border p-4" }, se = /* @__PURE__ */ M({
12
- __name: "Servers",
13
- props: {
14
- documentSlug: {},
15
- document: {},
16
- eventBus: {},
17
- layout: {},
18
- path: {},
19
- method: {},
20
- exampleName: {},
21
- environment: {},
22
- workspaceStore: {},
23
- activeWorkspace: {},
24
- collectionType: {}
25
- },
26
- setup(l) {
27
- const v = P(), n = A(-1), _ = x(
28
- () => l.document?.servers?.[n.value]
29
- ), $ = x(() => l.document?.servers ?? []), B = [
30
- {
31
- label: "URL",
32
- key: "url",
33
- placeholder: "https://void.scalar.com"
34
- },
35
- {
36
- label: "Description",
37
- key: "description",
38
- placeholder: "Production"
39
- }
40
- ], w = (t) => {
41
- n.value = t, v.show();
42
- }, p = () => {
43
- v.hide(), n.value = -1;
44
- }, N = () => {
45
- n.value < 0 || (l.eventBus.emit("server:delete:server", { index: n.value }), p());
46
- }, { execute: b } = O({ delay: 328, maxWait: 1e3 }), U = (t, e, a) => b(
47
- `${t}-${e}`,
48
- () => l.eventBus.emit("server:update:server", {
49
- index: t,
50
- server: { [e]: a }
51
- })
52
- ), C = (t, e, a) => b(
53
- `${t}-${e}`,
54
- () => l.eventBus.emit("server:update:variables", {
55
- index: t,
56
- key: e,
57
- value: a
58
- })
59
- ), D = () => l.eventBus.emit("server:add:server"), h = (t, e = 0) => t?.description || `Server ${e + 1}`;
60
- return (t, e) => (c(), u(S, null, [
61
- r("div", Y, [
62
- e[1] || (e[1] = r("div", { class: "flex flex-col gap-2" }, [
63
- r("h3", { class: "font-bold" }, "Servers"),
64
- r("p", { class: "text-sm" }, [
65
- g(" Add different base URLs for your API. You can use "),
66
- r("code", { class: "font-code text-c-2" }, "{variables}"),
67
- g(" for dynamic parts. ")
68
- ])
69
- ], -1)),
70
- r("div", q, [
71
- (c(!0), u(S, null, I($.value, (a, d) => (c(), u("div", {
72
- key: d,
73
- class: "rounded-lg border"
74
- }, [
75
- r("div", G, [
76
- a.description ? (c(), y(s(z), {
77
- key: 0,
78
- class: "self-center",
79
- value: a.description
80
- }, null, 8, ["value"])) : (c(), u("span", H, T(h(a, d)), 1)),
81
- o(s(k), {
82
- class: "hover:bg-b-3 hover:text-c-1 h-fit p-1.25",
83
- "data-testid": "delete-server-button",
84
- variant: "ghost",
85
- onClick: (i) => w(d)
86
- }, {
87
- default: f(() => [
88
- o(s(R), { class: "size-3.5" })
89
- ]),
90
- _: 1
91
- }, 8, ["onClick"])
92
- ]),
93
- r("div", J, [
94
- o(F, {
95
- data: a,
96
- environment: t.environment,
97
- onUpdate: (i, m) => U(d, i, m),
98
- options: B
99
- }, null, 8, ["data", "environment", "onUpdate"]),
100
- a.variables ? (c(), y(s(W), {
101
- key: 0,
102
- variables: a.variables,
103
- "onUpdate:variable": (i, m) => C(d, i, m)
104
- }, null, 8, ["variables", "onUpdate:variable"])) : V("", !0)
105
- ])
106
- ]))), 128))
107
- ]),
108
- r("div", K, [
109
- o(s(k), {
110
- class: "hover:bg-b-2 hover:text-c-1 flex items-center gap-2",
111
- size: "sm",
112
- variant: "ghost",
113
- onClick: D
114
- }, {
115
- default: f(() => [
116
- o(s(j)),
117
- e[0] || (e[0] = r("span", null, "Add Server", -1))
118
- ]),
119
- _: 1
120
- })
121
- ])
122
- ]),
123
- o(s(L), {
124
- size: "xxs",
125
- state: s(v),
126
- title: `Delete ${h(_.value, n.value)}`
127
- }, {
128
- default: f(() => [
129
- o(E, {
130
- variableName: "Server",
131
- warningMessage: "Are you sure you want to delete this server? This action cannot be undone.",
132
- onClose: p,
133
- onDelete: N
134
- })
135
- ]),
136
- _: 1
137
- }, 8, ["state", "title"])
138
- ], 64));
139
- }
140
- });
1
+ import f from "./Servers.vue.js";
141
2
  export {
142
- se as default
3
+ f as default
143
4
  };
@@ -1,4 +1,60 @@
1
- import f from "./Settings.vue2.js";
1
+ import { defineComponent as u, createBlock as t, openBlock as a, unref as r } from "vue";
2
+ import { useRouter as i } from "vue-router";
3
+ import p from "../../settings/DocumentSettings.vue.js";
4
+ import h from "../../settings/CollectionSettings.vue.js";
5
+ const y = /* @__PURE__ */ u({
6
+ __name: "Settings",
7
+ props: {
8
+ documentSlug: {},
9
+ document: {},
10
+ eventBus: {},
11
+ layout: {},
12
+ path: {},
13
+ method: {},
14
+ exampleName: {},
15
+ environment: {},
16
+ workspaceStore: {},
17
+ activeWorkspace: {},
18
+ plugins: {},
19
+ collectionType: {}
20
+ },
21
+ setup(o) {
22
+ const c = (e) => {
23
+ o.eventBus.emit("document:update:watch-mode", e);
24
+ }, n = (e) => {
25
+ o.eventBus.emit("workspace:update:theme", e);
26
+ }, m = (e) => {
27
+ o.eventBus.emit("workspace:update:active-proxy", e);
28
+ }, d = (e) => {
29
+ o.eventBus.emit("workspace:update:color-mode", e);
30
+ }, l = i(), s = () => {
31
+ o.workspaceStore.deleteDocument(o.documentSlug), l.push({
32
+ name: "workspace.environment",
33
+ params: {
34
+ workspaceSlug: o.activeWorkspace.id
35
+ }
36
+ });
37
+ };
38
+ return (e, k) => e.collectionType === "document" ? (a(), t(r(p), {
39
+ key: 0,
40
+ documentUrl: e.document?.["x-scalar-original-source-url"],
41
+ isDraftDocument: e.documentSlug === "drafts",
42
+ title: e.document?.info.title ?? "",
43
+ watchMode: e.document?.["x-scalar-watch-mode"] ?? !0,
44
+ "onDelete:document": s,
45
+ "onUpdate:watchMode": c
46
+ }, null, 8, ["documentUrl", "isDraftDocument", "title", "watchMode"])) : (a(), t(r(h), {
47
+ key: 1,
48
+ activeProxyUrl: e.workspaceStore.workspace["x-scalar-active-proxy"],
49
+ activeThemeId: e.workspaceStore.workspace["x-scalar-theme"] ?? "default",
50
+ colorMode: e.workspaceStore.workspace["x-scalar-color-mode"] ?? "system",
51
+ customProxyUrl: e.workspaceStore.config["x-scalar-reference-config"].settings.proxyUrl,
52
+ "onUpdate:colorMode": d,
53
+ "onUpdate:proxyUrl": m,
54
+ "onUpdate:themeId": n
55
+ }, null, 8, ["activeProxyUrl", "activeThemeId", "colorMode", "customProxyUrl"]));
56
+ }
57
+ });
2
58
  export {
3
- f as default
59
+ y as default
4
60
  };
@@ -1,59 +1,4 @@
1
- import { defineComponent as u, createBlock as t, openBlock as a, unref as r } from "vue";
2
- import { useRouter as i } from "vue-router";
3
- import p from "../../settings/DocumentSettings.vue.js";
4
- import h from "../../settings/CollectionSettings.vue.js";
5
- const y = /* @__PURE__ */ u({
6
- __name: "Settings",
7
- props: {
8
- documentSlug: {},
9
- document: {},
10
- eventBus: {},
11
- layout: {},
12
- path: {},
13
- method: {},
14
- exampleName: {},
15
- environment: {},
16
- workspaceStore: {},
17
- activeWorkspace: {},
18
- collectionType: {}
19
- },
20
- setup(o) {
21
- const c = (e) => {
22
- o.eventBus.emit("document:update:watch-mode", e);
23
- }, n = (e) => {
24
- o.eventBus.emit("workspace:update:theme", e);
25
- }, m = (e) => {
26
- o.eventBus.emit("workspace:update:active-proxy", e);
27
- }, d = (e) => {
28
- o.eventBus.emit("workspace:update:color-mode", e);
29
- }, l = i(), s = () => {
30
- o.workspaceStore.deleteDocument(o.documentSlug), l.push({
31
- name: "workspace.environment",
32
- params: {
33
- workspaceSlug: o.activeWorkspace.id
34
- }
35
- });
36
- };
37
- return (e, k) => e.collectionType === "document" ? (a(), t(r(p), {
38
- key: 0,
39
- documentUrl: e.document?.["x-scalar-original-source-url"],
40
- isDraftDocument: e.documentSlug === "drafts",
41
- title: e.document?.info.title ?? "",
42
- watchMode: e.document?.["x-scalar-watch-mode"] ?? !0,
43
- "onDelete:document": s,
44
- "onUpdate:watchMode": c
45
- }, null, 8, ["documentUrl", "isDraftDocument", "title", "watchMode"])) : (a(), t(r(h), {
46
- key: 1,
47
- activeProxyUrl: e.workspaceStore.workspace["x-scalar-active-proxy"],
48
- activeThemeId: e.workspaceStore.workspace["x-scalar-theme"] ?? "default",
49
- colorMode: e.workspaceStore.workspace["x-scalar-color-mode"] ?? "system",
50
- customProxyUrl: e.workspaceStore.config["x-scalar-reference-config"].settings.proxyUrl,
51
- "onUpdate:colorMode": d,
52
- "onUpdate:proxyUrl": m,
53
- "onUpdate:themeId": n
54
- }, null, 8, ["activeProxyUrl", "activeThemeId", "colorMode", "customProxyUrl"]));
55
- }
56
- });
1
+ import f from "./Settings.vue.js";
57
2
  export {
58
- y as default
3
+ f as default
59
4
  };
@@ -1,14 +1,36 @@
1
1
  import { type ModalState } from '@scalar/components';
2
+ import type { HttpMethod } from '@scalar/helpers/http/http-methods';
2
3
  import type { WorkspaceStore } from '@scalar/workspace-store/client';
4
+ import type { WorkspaceDocument } from '@scalar/workspace-store/schemas';
5
+ import { type ComputedRef } from 'vue';
6
+ import { type UseModalSidebarReturn } from '../../../v2/features/modal/hooks/use-modal-sidebar.js';
7
+ import type { ClientPlugin } from '../../../v2/helpers/plugins.js';
3
8
  export type ModalProps = {
9
+ /** The workspace store must be initialized and passed in */
4
10
  workspaceStore: WorkspaceStore;
11
+ /** The document must be initialized and passed in */
12
+ document: ComputedRef<WorkspaceDocument | null>;
13
+ /** The path must be initialized and passed in */
14
+ path: ComputedRef<string | undefined>;
15
+ /** The method must be initialized and passed in */
16
+ method: ComputedRef<HttpMethod | undefined>;
17
+ /** The example name must be initialized and passed in */
18
+ exampleName: ComputedRef<string | undefined>;
19
+ /** Controls the visibility of the modal */
5
20
  modalState: ModalState;
21
+ /** The sidebar state must be initialized and passed in */
22
+ sidebarState: UseModalSidebarReturn;
23
+ /** Api client plugins to include in the modal */
24
+ plugins?: ClientPlugin[];
6
25
  };
7
26
  /**
8
27
  * Scalar Api Client Modal
9
28
  *
10
29
  * This component is used to render the API Client Modal
11
30
  */
12
- declare const _default: import("vue").DefineComponent<ModalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ModalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
31
+ declare const _default: import("vue").DefineComponent<ModalProps, {
32
+ sidebarWidth: ComputedRef<number>;
33
+ environment: ComputedRef<import("@scalar/workspace-store/schemas/extensions/document/x-scalar-environments").XScalarEnvironment>;
34
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ModalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
35
  export default _default;
14
36
  //# sourceMappingURL=Modal.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Modal.vue.d.ts","sourceRoot":"","sources":["../../../../src/v2/features/modal/Modal.vue"],"names":[],"mappings":"AAgRA,OAAO,EAGL,KAAK,UAAU,EAChB,MAAM,oBAAoB,CAAA;AAC3B,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAA;AAYpE,MAAM,MAAM,UAAU,GAAG;IAEvB,cAAc,EAAE,cAAc,CAAA;IAC9B,UAAU,EAAE,UAAU,CAAA;CACvB,CAAA;AAED;;;;GAIG;;AACH,wBAmLC"}
1
+ {"version":3,"file":"Modal.vue.d.ts","sourceRoot":"","sources":["../../../../src/v2/features/modal/Modal.vue"],"names":[],"mappings":"AAyXA,OAAO,EAGL,KAAK,UAAU,EAChB,MAAM,oBAAoB,CAAA;AAC3B,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAA;AAEnE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAA;AAEpE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAA;AAExE,OAAO,EAQL,KAAK,WAAW,EACjB,MAAM,KAAK,CAAA;AAIZ,OAAO,EAAE,KAAK,qBAAqB,EAAE,MAAM,6CAA6C,CAAA;AAGxF,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AAQxD,MAAM,MAAM,UAAU,GAAG;IACvB,4DAA4D;IAC5D,cAAc,EAAE,cAAc,CAAA;IAC9B,qDAAqD;IACrD,QAAQ,EAAE,WAAW,CAAC,iBAAiB,GAAG,IAAI,CAAC,CAAA;IAC/C,iDAAiD;IACjD,IAAI,EAAE,WAAW,CAAC,MAAM,GAAG,SAAS,CAAC,CAAA;IACrC,mDAAmD;IACnD,MAAM,EAAE,WAAW,CAAC,UAAU,GAAG,SAAS,CAAC,CAAA;IAC3C,yDAAyD;IACzD,WAAW,EAAE,WAAW,CAAC,MAAM,GAAG,SAAS,CAAC,CAAA;IAC5C,2CAA2C;IAC3C,UAAU,EAAE,UAAU,CAAA;IACtB,0DAA0D;IAC1D,YAAY,EAAE,qBAAqB,CAAA;IACnC,iDAAiD;IACjD,OAAO,CAAC,EAAE,YAAY,EAAE,CAAA;CACzB,CAAA;AAED;;;;GAIG;;;;;AACH,wBAgWC"}
@@ -1,7 +1,7 @@
1
1
  import o from "./Modal.vue2.js";
2
2
  /* empty css */
3
3
  import t from "../../../_virtual/_plugin-vue_export-helper.js";
4
- const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-86f0c0fb"]]);
4
+ const m = /* @__PURE__ */ t(o, [["__scopeId", "data-v-3209f6ba"]]);
5
5
  export {
6
6
  m as default
7
7
  };