@scalar/api-client 2.14.1 → 2.17.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 (293) hide show
  1. package/CHANGELOG.md +176 -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 +81 -65
  12. package/dist/v2/blocks/operation-block/components/Header.vue.d.ts +1 -23
  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 +3 -3
  15. package/dist/v2/blocks/operation-block/components/Header.vue2.js +29 -38
  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 +202 -160
  78. package/dist/v2/blocks/request-block/components/RequestBody.vue.d.ts +2 -0
  79. package/dist/v2/blocks/request-block/components/RequestBody.vue.d.ts.map +1 -1
  80. package/dist/v2/blocks/request-block/components/RequestBody.vue.js +1 -1
  81. package/dist/v2/blocks/request-block/components/RequestBody.vue2.js +60 -51
  82. package/dist/v2/blocks/request-block/components/RequestCodeSnippet.vue.d.ts +8 -0
  83. package/dist/v2/blocks/request-block/components/RequestCodeSnippet.vue.d.ts.map +1 -0
  84. package/dist/v2/blocks/request-block/components/RequestCodeSnippet.vue.js +127 -0
  85. package/dist/v2/blocks/request-block/components/RequestCodeSnippet.vue2.js +4 -0
  86. package/dist/v2/blocks/request-block/components/RequestParams.vue.d.ts +2 -2
  87. package/dist/v2/blocks/request-block/components/RequestParams.vue.d.ts.map +1 -1
  88. package/dist/v2/blocks/request-block/components/RequestParams.vue.js +24 -23
  89. package/dist/v2/blocks/request-block/components/RequestTable.vue.d.ts +2 -4
  90. package/dist/v2/blocks/request-block/components/RequestTable.vue.d.ts.map +1 -1
  91. package/dist/v2/blocks/request-block/components/RequestTable.vue.js +1 -1
  92. package/dist/v2/blocks/request-block/components/RequestTableRow.vue.d.ts +3 -2
  93. package/dist/v2/blocks/request-block/components/RequestTableRow.vue.d.ts.map +1 -1
  94. package/dist/v2/blocks/request-block/components/RequestTableRow.vue.js +146 -147
  95. package/dist/v2/blocks/request-block/components/RequestTableTooltip.vue.d.ts +1 -0
  96. package/dist/v2/blocks/request-block/components/RequestTableTooltip.vue.d.ts.map +1 -1
  97. package/dist/v2/blocks/request-block/components/RequestTableTooltip.vue.js +1 -1
  98. package/dist/v2/blocks/request-block/components/RequestTableTooltip.vue2.js +28 -27
  99. package/dist/v2/blocks/request-block/helpers/create-parameter-handlers.d.ts +1 -1
  100. package/dist/v2/blocks/request-block/helpers/create-parameter-handlers.d.ts.map +1 -1
  101. package/dist/v2/blocks/request-block/helpers/create-parameter-handlers.js +21 -15
  102. package/dist/v2/blocks/request-block/helpers/get-request-body-example.d.ts +3 -2
  103. package/dist/v2/blocks/request-block/helpers/get-request-body-example.d.ts.map +1 -1
  104. package/dist/v2/blocks/request-block/helpers/get-request-body-example.js +13 -3
  105. package/dist/v2/blocks/response-block/ResponseBlock.vue.d.ts +4 -4
  106. package/dist/v2/blocks/response-block/ResponseBlock.vue.d.ts.map +1 -1
  107. package/dist/v2/blocks/response-block/ResponseBlock.vue.js +3 -3
  108. package/dist/v2/blocks/response-block/ResponseBlock.vue2.js +41 -45
  109. package/dist/v2/blocks/response-block/components/Headers.vue.d.ts.map +1 -1
  110. package/dist/v2/blocks/response-block/components/Headers.vue.js +27 -27
  111. package/dist/v2/blocks/response-block/components/ResponseCookies.vue.js +1 -1
  112. package/dist/v2/blocks/response-block/helpers/parse-set-cookie.d.ts +18 -0
  113. package/dist/v2/blocks/response-block/helpers/parse-set-cookie.d.ts.map +1 -0
  114. package/dist/v2/blocks/response-block/helpers/parse-set-cookie.js +12 -0
  115. package/dist/v2/blocks/response-block/helpers/process-response-body.js +2 -2
  116. package/dist/v2/blocks/scalar-address-bar-block/components/AddressBar.vue.d.ts +4 -15
  117. package/dist/v2/blocks/scalar-address-bar-block/components/AddressBar.vue.d.ts.map +1 -1
  118. package/dist/v2/blocks/scalar-address-bar-block/components/AddressBar.vue.js +2 -2
  119. package/dist/v2/blocks/scalar-address-bar-block/components/AddressBar.vue2.js +117 -71
  120. package/dist/v2/blocks/scalar-address-bar-block/hooks/use-loading-animation.d.ts +19 -0
  121. package/dist/v2/blocks/scalar-address-bar-block/hooks/use-loading-animation.d.ts.map +1 -0
  122. package/dist/v2/blocks/scalar-address-bar-block/hooks/use-loading-animation.js +24 -0
  123. package/dist/v2/blocks/scalar-auth-selector-block/components/AuthSelector.vue.d.ts +3 -2
  124. package/dist/v2/blocks/scalar-auth-selector-block/components/AuthSelector.vue.d.ts.map +1 -1
  125. package/dist/v2/blocks/scalar-auth-selector-block/components/AuthSelector.vue.js +59 -56
  126. package/dist/v2/blocks/scalar-auth-selector-block/components/OAuth2.vue.d.ts +1 -1
  127. package/dist/v2/blocks/scalar-auth-selector-block/components/OAuth2.vue.d.ts.map +1 -1
  128. package/dist/v2/blocks/scalar-auth-selector-block/components/RequestAuthDataTable.vue.d.ts +3 -1
  129. package/dist/v2/blocks/scalar-auth-selector-block/components/RequestAuthDataTable.vue.d.ts.map +1 -1
  130. package/dist/v2/blocks/scalar-auth-selector-block/components/RequestAuthDataTable.vue.js +26 -24
  131. package/dist/v2/blocks/scalar-auth-selector-block/components/RequestAuthTab.vue.d.ts +2 -1
  132. package/dist/v2/blocks/scalar-auth-selector-block/components/RequestAuthTab.vue.d.ts.map +1 -1
  133. package/dist/v2/blocks/scalar-auth-selector-block/components/RequestAuthTab.vue.js +44 -43
  134. package/dist/v2/blocks/scalar-auth-selector-block/helpers/is-auth-optional.d.ts +4 -0
  135. package/dist/v2/blocks/scalar-auth-selector-block/helpers/is-auth-optional.d.ts.map +1 -0
  136. package/dist/v2/blocks/scalar-auth-selector-block/helpers/is-auth-optional.js +7 -0
  137. package/dist/v2/blocks/scalar-auth-selector-block/helpers/oauth.d.ts +4 -4
  138. package/dist/v2/blocks/scalar-auth-selector-block/helpers/oauth.d.ts.map +1 -1
  139. package/dist/v2/blocks/scalar-auth-selector-block/helpers/security-scheme.d.ts +2 -2
  140. package/dist/v2/components/code-input/CodeInput.vue.d.ts +16 -6
  141. package/dist/v2/components/code-input/CodeInput.vue.d.ts.map +1 -1
  142. package/dist/v2/components/code-input/CodeInput.vue.js +2 -2
  143. package/dist/v2/components/code-input/CodeInput.vue2.js +81 -65
  144. package/dist/v2/components/data-table/DataTableInputSelect.vue.d.ts +2 -2
  145. package/dist/v2/components/data-table/DataTableInputSelect.vue.d.ts.map +1 -1
  146. package/dist/v2/components/data-table/DataTableInputSelect.vue.js +44 -44
  147. package/dist/v2/components/resize/index.d.ts +0 -1
  148. package/dist/v2/components/resize/index.d.ts.map +1 -1
  149. package/dist/v2/components/sidebar/Sidebar.vue.d.ts +9 -5
  150. package/dist/v2/components/sidebar/Sidebar.vue.d.ts.map +1 -1
  151. package/dist/v2/components/sidebar/Sidebar.vue.js +51 -46
  152. package/dist/v2/components/sidebar/SidebarMenu.vue.d.ts +1 -1
  153. package/dist/v2/components/sidebar/SidebarMenu.vue.d.ts.map +1 -1
  154. package/dist/v2/features/app/App.vue.d.ts +3 -0
  155. package/dist/v2/features/app/App.vue.d.ts.map +1 -1
  156. package/dist/v2/features/app/App.vue.js +130 -143
  157. package/dist/v2/features/app/components/AppSidebar.vue.d.ts +3 -3
  158. package/dist/v2/features/app/components/AppSidebar.vue.d.ts.map +1 -1
  159. package/dist/v2/features/app/components/AppSidebar.vue.js +1 -1
  160. package/dist/v2/features/app/components/AppSidebar.vue2.js +216 -106
  161. package/dist/v2/features/app/components/DesktopTabs.vue.d.ts +1 -1
  162. package/dist/v2/features/app/components/DesktopTabs.vue.d.ts.map +1 -1
  163. package/dist/v2/features/app/components/ItemDecorator.vue.d.ts +22 -0
  164. package/dist/v2/features/app/components/ItemDecorator.vue.d.ts.map +1 -0
  165. package/dist/v2/features/app/components/ItemDecorator.vue.js +138 -0
  166. package/dist/v2/features/app/components/ItemDecorator.vue2.js +4 -0
  167. package/dist/v2/features/app/components/WebTopNav.vue.d.ts +1 -1
  168. package/dist/v2/features/app/components/WebTopNav.vue.d.ts.map +1 -1
  169. package/dist/v2/features/app/helpers/create-api-client-app.d.ts +2 -2
  170. package/dist/v2/features/app/helpers/create-api-client-app.d.ts.map +1 -1
  171. package/dist/v2/features/app/helpers/create-api-client-app.js +8 -8
  172. package/dist/v2/features/app/helpers/routes.d.ts +32 -6
  173. package/dist/v2/features/app/helpers/routes.d.ts.map +1 -1
  174. package/dist/v2/features/app/helpers/routes.js +25 -16
  175. package/dist/v2/{hooks/use-sidebar-state.d.ts → features/app/hooks/use-app-sidebar.d.ts} +10 -11
  176. package/dist/v2/features/app/hooks/use-app-sidebar.d.ts.map +1 -0
  177. package/dist/v2/{hooks/use-sidebar-state.js → features/app/hooks/use-app-sidebar.js} +19 -19
  178. package/dist/v2/features/app/hooks/use-document-watcher.d.ts.map +1 -0
  179. package/dist/v2/{hooks → features/app/hooks}/use-sync-path.d.ts +2 -2
  180. package/dist/v2/features/app/hooks/use-sync-path.d.ts.map +1 -0
  181. package/dist/v2/features/app/hooks/use-sync-path.js +52 -0
  182. package/dist/v2/{hooks → features/app/hooks}/use-tabs.d.ts +2 -2
  183. package/dist/v2/features/app/hooks/use-tabs.d.ts.map +1 -0
  184. package/dist/v2/{hooks → features/app/hooks}/use-tabs.js +1 -1
  185. package/dist/v2/{hooks/use-workspace-client-events.d.ts → features/app/hooks/use-workspace-client-app-events.d.ts} +5 -5
  186. package/dist/v2/features/app/hooks/use-workspace-client-app-events.d.ts.map +1 -0
  187. package/dist/v2/features/app/hooks/use-workspace-client-app-events.js +156 -0
  188. package/dist/v2/features/app/hooks/use-workspace-selector.d.ts.map +1 -0
  189. package/dist/v2/{hooks → features/app/hooks}/use-workspace-selector.js +1 -1
  190. package/dist/v2/features/collection/DocumentCollection.vue.js +92 -2
  191. package/dist/v2/features/collection/DocumentCollection.vue2.js +2 -91
  192. package/dist/v2/features/collection/WorkspaceCollection.vue.js +42 -2
  193. package/dist/v2/features/collection/WorkspaceCollection.vue2.js +2 -41
  194. package/dist/v2/features/collection/components/Authentication.vue.d.ts.map +1 -1
  195. package/dist/v2/features/collection/components/Authentication.vue.js +2 -2
  196. package/dist/v2/features/collection/components/Authentication.vue2.js +14 -12
  197. package/dist/v2/features/collection/components/Cookies.vue.js +30 -1
  198. package/dist/v2/features/collection/components/Cookies.vue2.js +1 -29
  199. package/dist/v2/features/collection/components/Environment.vue.js +32 -1
  200. package/dist/v2/features/collection/components/Environment.vue2.js +1 -31
  201. package/dist/v2/features/collection/components/Overview.vue2.js +5 -4
  202. package/dist/v2/features/collection/components/Servers.vue.js +142 -2
  203. package/dist/v2/features/collection/components/Servers.vue2.js +2 -141
  204. package/dist/v2/features/collection/components/Settings.vue.js +58 -2
  205. package/dist/v2/features/collection/components/Settings.vue2.js +2 -57
  206. package/dist/v2/features/command-palette/components/CommandPaletteExample.vue.d.ts +8 -0
  207. package/dist/v2/features/command-palette/components/CommandPaletteExample.vue.d.ts.map +1 -1
  208. package/dist/v2/features/command-palette/components/CommandPaletteExample.vue.js +76 -68
  209. package/dist/v2/features/command-palette/components/CommandPaletteRequest.vue.d.ts +8 -0
  210. package/dist/v2/features/command-palette/components/CommandPaletteRequest.vue.d.ts.map +1 -1
  211. package/dist/v2/features/command-palette/components/CommandPaletteRequest.vue.js +83 -75
  212. package/dist/v2/features/command-palette/components/CommandPaletteTag.vue.d.ts +4 -0
  213. package/dist/v2/features/command-palette/components/CommandPaletteTag.vue.d.ts.map +1 -1
  214. package/dist/v2/features/command-palette/components/CommandPaletteTag.vue.js +32 -34
  215. package/dist/v2/features/command-palette/hooks/use-command-palette-state.d.ts +16 -0
  216. package/dist/v2/features/command-palette/hooks/use-command-palette-state.d.ts.map +1 -1
  217. package/dist/v2/features/command-palette/hooks/use-command-palette-state.js +24 -21
  218. package/dist/v2/features/modal/Modal.vue.d.ts +23 -1
  219. package/dist/v2/features/modal/Modal.vue.d.ts.map +1 -1
  220. package/dist/v2/features/modal/Modal.vue.js +1 -1
  221. package/dist/v2/features/modal/Modal.vue2.js +118 -31
  222. package/dist/v2/features/modal/helpers/create-api-client-modal.d.ts +18 -32
  223. package/dist/v2/features/modal/helpers/create-api-client-modal.d.ts.map +1 -1
  224. package/dist/v2/features/modal/helpers/create-api-client-modal.js +46 -26
  225. package/dist/v2/features/modal/helpers/resolve-route-parameters.d.ts +55 -0
  226. package/dist/v2/features/modal/helpers/resolve-route-parameters.d.ts.map +1 -0
  227. package/dist/v2/features/modal/helpers/resolve-route-parameters.js +29 -0
  228. package/dist/v2/features/modal/hooks/use-modal-sidebar.d.ts +42 -0
  229. package/dist/v2/features/modal/hooks/use-modal-sidebar.d.ts.map +1 -0
  230. package/dist/v2/features/modal/hooks/use-modal-sidebar.js +93 -0
  231. package/dist/v2/features/modal/hooks/use-workspace-client-modal-events.d.ts +18 -0
  232. package/dist/v2/features/modal/hooks/use-workspace-client-modal-events.d.ts.map +1 -0
  233. package/dist/v2/features/modal/hooks/use-workspace-client-modal-events.js +30 -0
  234. package/dist/v2/features/operation/Operation.vue.d.ts.map +1 -1
  235. package/dist/v2/features/operation/Operation.vue.js +59 -28
  236. package/dist/v2/features/operation/helpers/get-operation-header.d.ts +17 -0
  237. package/dist/v2/features/operation/helpers/get-operation-header.d.ts.map +1 -0
  238. package/dist/v2/features/operation/helpers/get-operation-header.js +12 -0
  239. package/dist/v2/features/operation/helpers/get-security-requirements.d.ts +1 -1
  240. package/dist/v2/features/operation/helpers/get-security-requirements.d.ts.map +1 -1
  241. package/dist/v2/features/operation/helpers/get-selected-security.d.ts +7 -0
  242. package/dist/v2/features/operation/helpers/get-selected-security.d.ts.map +1 -0
  243. package/dist/v2/features/operation/helpers/get-selected-security.js +19 -0
  244. package/dist/v2/features/operation/index.d.ts +0 -1
  245. package/dist/v2/features/operation/index.d.ts.map +1 -1
  246. package/dist/v2/features/search/components/SearchModal.vue.d.ts.map +1 -1
  247. package/dist/v2/features/search/components/SearchModal.vue.js +3 -3
  248. package/dist/v2/features/search/components/SearchModal.vue2.js +45 -44
  249. package/dist/v2/features/settings/DocumentSettings.vue.js +2 -2
  250. package/dist/v2/features/settings/DocumentSettings.vue2.js +1 -1
  251. package/dist/v2/helpers/generate-location-id.d.ts +19 -0
  252. package/dist/v2/helpers/generate-location-id.d.ts.map +1 -0
  253. package/dist/v2/helpers/generate-location-id.js +10 -0
  254. package/dist/v2/helpers/get-active-environment.d.ts +5 -0
  255. package/dist/v2/helpers/get-active-environment.d.ts.map +1 -0
  256. package/dist/v2/helpers/get-active-environment.js +22 -0
  257. package/dist/v2/helpers/get-tab-details.d.ts +2 -2
  258. package/dist/v2/helpers/get-tab-details.d.ts.map +1 -1
  259. package/dist/v2/helpers/handle-hotkeys.js +1 -1
  260. package/dist/v2/helpers/plugins.d.ts +59 -0
  261. package/dist/v2/helpers/plugins.d.ts.map +1 -0
  262. package/dist/v2/helpers/plugins.js +11 -0
  263. package/dist/v2/helpers/storage.d.ts.map +1 -1
  264. package/dist/v2/helpers/storage.js +5 -5
  265. package/dist/v2/hooks/use-scroll-lock.d.ts +28 -0
  266. package/dist/v2/hooks/use-scroll-lock.d.ts.map +1 -0
  267. package/dist/v2/hooks/use-scroll-lock.js +21 -0
  268. package/dist/views/Components/CodeSnippet/helpers/get-har-request.d.ts +2 -0
  269. package/dist/views/Components/CodeSnippet/helpers/get-har-request.d.ts.map +1 -1
  270. package/dist/views/Components/CodeSnippet/helpers/get-har-request.js +1 -1
  271. package/dist/views/Request/RequestSection/RequestAuth/index.d.ts +0 -1
  272. package/dist/views/Request/RequestSection/RequestAuth/index.d.ts.map +1 -1
  273. package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
  274. package/package.json +19 -19
  275. package/dist/v2/blocks/operation-code-sample/helpers/operation-to-har/get-example-value.d.ts +0 -7
  276. package/dist/v2/blocks/operation-code-sample/helpers/operation-to-har/get-example-value.d.ts.map +0 -1
  277. package/dist/v2/blocks/operation-code-sample/helpers/operation-to-har/get-example-value.js +0 -28
  278. package/dist/v2/blocks/request-block/helpers/get-parameter-example.d.ts +0 -6
  279. package/dist/v2/blocks/request-block/helpers/get-parameter-example.d.ts.map +0 -1
  280. package/dist/v2/blocks/request-block/helpers/get-parameter-example.js +0 -12
  281. package/dist/v2/hooks/use-document-watcher.d.ts.map +0 -1
  282. package/dist/v2/hooks/use-sidebar-state.d.ts.map +0 -1
  283. package/dist/v2/hooks/use-sync-path.d.ts.map +0 -1
  284. package/dist/v2/hooks/use-sync-path.js +0 -51
  285. package/dist/v2/hooks/use-tabs.d.ts.map +0 -1
  286. package/dist/v2/hooks/use-workspace-client-events.d.ts.map +0 -1
  287. package/dist/v2/hooks/use-workspace-client-events.js +0 -112
  288. package/dist/v2/hooks/use-workspace-selector.d.ts.map +0 -1
  289. package/dist/v2/plugins.d.ts +0 -44
  290. package/dist/v2/plugins.d.ts.map +0 -1
  291. /package/dist/v2/{hooks → features/app/hooks}/use-document-watcher.d.ts +0 -0
  292. /package/dist/v2/{hooks → features/app/hooks}/use-document-watcher.js +0 -0
  293. /package/dist/v2/{hooks → features/app/hooks}/use-workspace-selector.d.ts +0 -0
@@ -1,4 +1,94 @@
1
- import f from "./DocumentCollection.vue2.js";
1
+ import { defineComponent as f, computed as d, createElementBlock as r, openBlock as n, createElementVNode as e, createVNode as o, withCtx as c, unref as m, createBlock as x, resolveDynamicComponent as v, mergeProps as _ } from "vue";
2
+ import { ScalarButton as h } from "@scalar/components";
3
+ import { LibraryIcon as b } from "@scalar/icons/library";
4
+ import { RouterView as y } from "vue-router";
5
+ import w from "../../../components/IconSelector.vue.js";
6
+ import g from "./components/LabelInput.vue.js";
7
+ import k from "./components/Tabs.vue.js";
8
+ const V = { class: "custom-scroll h-full" }, B = {
9
+ key: 0,
10
+ class: "w-full md:mx-auto md:max-w-[720px]"
11
+ }, C = ["aria-label"], D = { class: "flex flex-row items-center gap-2" }, N = { class: "group relative ml-1.25" }, I = { class: "px-1.5 py-8" }, S = {
12
+ key: 1,
13
+ class: "flex w-full flex-1 items-center justify-center"
14
+ }, U = {
15
+ name: "DocumentCollection"
16
+ }, P = /* @__PURE__ */ f({
17
+ ...U,
18
+ props: {
19
+ documentSlug: {},
20
+ document: {},
21
+ eventBus: {},
22
+ layout: {},
23
+ path: {},
24
+ method: {},
25
+ exampleName: {},
26
+ environment: {},
27
+ workspaceStore: {},
28
+ activeWorkspace: {},
29
+ plugins: {}
30
+ },
31
+ setup(p) {
32
+ const s = p, u = d(() => s.document?.info?.title || "Untitled Document"), i = d(
33
+ () => s.document?.["x-scalar-icon"] || "interface-content-folder"
34
+ );
35
+ return (a, t) => (n(), r("div", V, [
36
+ a.document ? (n(), r("div", B, [
37
+ e("div", {
38
+ "aria-label": `title: ${u.value}`,
39
+ class: "mx-auto flex h-fit w-full flex-col gap-2 pt-6 pb-3 md:mx-auto md:max-w-[720px]"
40
+ }, [
41
+ e("div", D, [
42
+ o(w, {
43
+ modelValue: i.value,
44
+ placement: "bottom-start",
45
+ "onUpdate:modelValue": t[0] || (t[0] = (l) => a.eventBus.emit("document:update:icon", l))
46
+ }, {
47
+ default: c(() => [
48
+ o(m(h), {
49
+ class: "hover:bg-b-2 aspect-square h-7 w-7 cursor-pointer rounded border border-transparent p-0 hover:border-inherit",
50
+ variant: "ghost"
51
+ }, {
52
+ default: c(() => [
53
+ o(m(b), {
54
+ class: "text-c-2 size-5",
55
+ src: i.value,
56
+ "stroke-width": "2"
57
+ }, null, 8, ["src"])
58
+ ]),
59
+ _: 1
60
+ })
61
+ ]),
62
+ _: 1
63
+ }, 8, ["modelValue"])
64
+ ]),
65
+ e("div", N, [
66
+ o(g, {
67
+ class: "text-xl font-bold",
68
+ inputId: "documentName",
69
+ modelValue: u.value,
70
+ "onUpdate:modelValue": t[1] || (t[1] = (l) => a.eventBus.emit("document:update:info", { title: l }))
71
+ }, null, 8, ["modelValue"])
72
+ ])
73
+ ], 8, C),
74
+ o(k, { type: "document" }),
75
+ e("div", I, [
76
+ o(m(y), null, {
77
+ default: c(({ Component: l }) => [
78
+ (n(), x(v(l), _(s, { collectionType: "document" }), null, 16))
79
+ ]),
80
+ _: 1
81
+ })
82
+ ])
83
+ ])) : (n(), r("div", S, [...t[2] || (t[2] = [
84
+ e("div", { class: "flex h-full flex-col items-center justify-center" }, [
85
+ e("h1", { class: "text-2xl font-bold" }, "Document not found"),
86
+ e("p", { class: "text-gray-500" }, " The document you are looking for does not exist. ")
87
+ ], -1)
88
+ ])]))
89
+ ]));
90
+ }
91
+ });
2
92
  export {
3
- f as default
93
+ P as default
4
94
  };
@@ -1,93 +1,4 @@
1
- import { defineComponent as f, computed as d, createElementBlock as r, openBlock as n, createElementVNode as e, createVNode as o, withCtx as c, unref as m, createBlock as x, resolveDynamicComponent as v, mergeProps as _ } from "vue";
2
- import { ScalarButton as h } from "@scalar/components";
3
- import { LibraryIcon as b } from "@scalar/icons/library";
4
- import { RouterView as y } from "vue-router";
5
- import w from "../../../components/IconSelector.vue.js";
6
- import g from "./components/LabelInput.vue.js";
7
- import k from "./components/Tabs.vue.js";
8
- const V = { class: "custom-scroll h-full" }, B = {
9
- key: 0,
10
- class: "w-full md:mx-auto md:max-w-[720px]"
11
- }, C = ["aria-label"], D = { class: "flex flex-row items-center gap-2" }, N = { class: "group relative ml-1.25" }, I = { class: "px-1.5 py-8" }, S = {
12
- key: 1,
13
- class: "flex w-full flex-1 items-center justify-center"
14
- }, U = {
15
- name: "DocumentCollection"
16
- }, P = /* @__PURE__ */ f({
17
- ...U,
18
- props: {
19
- documentSlug: {},
20
- document: {},
21
- eventBus: {},
22
- layout: {},
23
- path: {},
24
- method: {},
25
- exampleName: {},
26
- environment: {},
27
- workspaceStore: {},
28
- activeWorkspace: {}
29
- },
30
- setup(p) {
31
- const s = p, u = d(() => s.document?.info?.title || "Untitled Document"), i = d(
32
- () => s.document?.["x-scalar-icon"] || "interface-content-folder"
33
- );
34
- return (a, t) => (n(), r("div", V, [
35
- a.document ? (n(), r("div", B, [
36
- e("div", {
37
- "aria-label": `title: ${u.value}`,
38
- class: "mx-auto flex h-fit w-full flex-col gap-2 pt-6 pb-3 md:mx-auto md:max-w-[720px]"
39
- }, [
40
- e("div", D, [
41
- o(w, {
42
- modelValue: i.value,
43
- placement: "bottom-start",
44
- "onUpdate:modelValue": t[0] || (t[0] = (l) => a.eventBus.emit("document:update:icon", l))
45
- }, {
46
- default: c(() => [
47
- o(m(h), {
48
- class: "hover:bg-b-2 aspect-square h-7 w-7 cursor-pointer rounded border border-transparent p-0 hover:border-inherit",
49
- variant: "ghost"
50
- }, {
51
- default: c(() => [
52
- o(m(b), {
53
- class: "text-c-2 size-5",
54
- src: i.value,
55
- "stroke-width": "2"
56
- }, null, 8, ["src"])
57
- ]),
58
- _: 1
59
- })
60
- ]),
61
- _: 1
62
- }, 8, ["modelValue"])
63
- ]),
64
- e("div", N, [
65
- o(g, {
66
- class: "text-xl font-bold",
67
- inputId: "documentName",
68
- modelValue: u.value,
69
- "onUpdate:modelValue": t[1] || (t[1] = (l) => a.eventBus.emit("document:update:info", { title: l }))
70
- }, null, 8, ["modelValue"])
71
- ])
72
- ], 8, C),
73
- o(k, { type: "document" }),
74
- e("div", I, [
75
- o(m(y), null, {
76
- default: c(({ Component: l }) => [
77
- (n(), x(v(l), _(s, { collectionType: "document" }), null, 16))
78
- ]),
79
- _: 1
80
- })
81
- ])
82
- ])) : (n(), r("div", S, [...t[2] || (t[2] = [
83
- e("div", { class: "flex h-full flex-col items-center justify-center" }, [
84
- e("h1", { class: "text-2xl font-bold" }, "Document not found"),
85
- e("p", { class: "text-gray-500" }, " The document you are looking for does not exist. ")
86
- ], -1)
87
- ])]))
88
- ]));
89
- }
90
- });
1
+ import f from "./DocumentCollection.vue.js";
91
2
  export {
92
- P as default
3
+ f as default
93
4
  };
@@ -1,4 +1,44 @@
1
- import f from "./WorkspaceCollection.vue2.js";
1
+ import { defineComponent as l, createElementBlock as r, openBlock as n, createElementVNode as e, createVNode as o, unref as s, toDisplayString as i, mergeProps as m } from "vue";
2
+ import { ScalarIconGlobe as p } from "@scalar/icons";
3
+ import { RouterView as d } from "vue-router";
4
+ import u from "./components/Tabs.vue.js";
5
+ const _ = { class: "custom-scroll h-full" }, f = { class: "w-full md:mx-auto md:max-w-[720px]" }, x = ["aria-label"], h = { class: "group relative ml-1.25" }, v = { class: "text-c-1 flex h-8 items-center" }, k = { class: "px-1.5 py-8" }, w = {}, B = /* @__PURE__ */ l({
6
+ ...w,
7
+ __name: "WorkspaceCollection",
8
+ props: {
9
+ documentSlug: {},
10
+ document: {},
11
+ eventBus: {},
12
+ layout: {},
13
+ path: {},
14
+ method: {},
15
+ exampleName: {},
16
+ environment: {},
17
+ workspaceStore: {},
18
+ activeWorkspace: {},
19
+ plugins: {}
20
+ },
21
+ setup(a) {
22
+ const c = a;
23
+ return (t, g) => (n(), r("div", _, [
24
+ e("div", f, [
25
+ e("div", {
26
+ "aria-label": `title: ${t.activeWorkspace.name}`,
27
+ class: "mx-auto flex h-fit w-full flex-col gap-2 pt-6 pb-3 md:mx-auto md:max-w-[720px]"
28
+ }, [
29
+ o(s(p), { class: "text-c-2 size-6" }),
30
+ e("div", h, [
31
+ e("span", v, i(t.activeWorkspace.name), 1)
32
+ ])
33
+ ], 8, x),
34
+ o(u, { type: "workspace" }),
35
+ e("div", k, [
36
+ o(s(d), m(c, { collectionType: "workspace" }), null, 16)
37
+ ])
38
+ ])
39
+ ]));
40
+ }
41
+ });
2
42
  export {
3
- f as default
43
+ B as default
4
44
  };
@@ -1,43 +1,4 @@
1
- import { defineComponent as l, createElementBlock as r, openBlock as n, createElementVNode as e, createVNode as o, unref as a, toDisplayString as m, mergeProps as i } from "vue";
2
- import { ScalarIconGlobe as p } from "@scalar/icons";
3
- import { RouterView as d } from "vue-router";
4
- import _ from "./components/Tabs.vue.js";
5
- const u = { class: "custom-scroll h-full" }, f = { class: "w-full md:mx-auto md:max-w-[720px]" }, x = ["aria-label"], h = { class: "group relative ml-1.25" }, v = { class: "text-c-1 flex h-8 items-center" }, k = { class: "px-1.5 py-8" }, w = {}, B = /* @__PURE__ */ l({
6
- ...w,
7
- __name: "WorkspaceCollection",
8
- props: {
9
- documentSlug: {},
10
- document: {},
11
- eventBus: {},
12
- layout: {},
13
- path: {},
14
- method: {},
15
- exampleName: {},
16
- environment: {},
17
- workspaceStore: {},
18
- activeWorkspace: {}
19
- },
20
- setup(s) {
21
- const c = s;
22
- return (t, g) => (n(), r("div", u, [
23
- e("div", f, [
24
- e("div", {
25
- "aria-label": `title: ${t.activeWorkspace.name}`,
26
- class: "mx-auto flex h-fit w-full flex-col gap-2 pt-6 pb-3 md:mx-auto md:max-w-[720px]"
27
- }, [
28
- o(a(p), { class: "text-c-2 size-6" }),
29
- e("div", h, [
30
- e("span", v, m(t.activeWorkspace.name), 1)
31
- ])
32
- ], 8, x),
33
- o(_, { type: "workspace" }),
34
- e("div", k, [
35
- o(a(d), i(c, { collectionType: "workspace" }), null, 16)
36
- ])
37
- ])
38
- ]));
39
- }
40
- });
1
+ import f from "./WorkspaceCollection.vue.js";
41
2
  export {
42
- B as default
3
+ f as default
43
4
  };
@@ -1 +1 @@
1
- {"version":3,"file":"Authentication.vue.d.ts","sourceRoot":"","sources":["../../../../../src/v2/features/collection/components/Authentication.vue"],"names":[],"mappings":";;;;;;;;;;;;;AAyNA,wBAMG"}
1
+ {"version":3,"file":"Authentication.vue.d.ts","sourceRoot":"","sources":["../../../../../src/v2/features/collection/components/Authentication.vue"],"names":[],"mappings":";;;;;;;;;;;;;AA8NA,wBAMG"}
@@ -1,7 +1,7 @@
1
1
  import t from "./Authentication.vue2.js";
2
2
  /* empty css */
3
3
  import o from "../../../../_virtual/_plugin-vue_export-helper.js";
4
- const f = /* @__PURE__ */ o(t, [["__scopeId", "data-v-6fe7b6ea"]]);
4
+ const c = /* @__PURE__ */ o(t, [["__scopeId", "data-v-e15e1c6f"]]);
5
5
  export {
6
- f as default
6
+ c as default
7
7
  };
@@ -1,7 +1,7 @@
1
- import { defineComponent as u, computed as l, createElementBlock as m, openBlock as d, createElementVNode as n, createVNode as i, unref as a, normalizeClass as c } from "vue";
1
+ import { defineComponent as u, computed as l, createElementBlock as m, openBlock as d, createElementVNode as n, createVNode as r, unref as a, normalizeClass as i } from "vue";
2
2
  import { ScalarToggle as p } from "@scalar/components";
3
3
  import v from "../../../blocks/scalar-auth-selector-block/components/AuthSelector.vue.js";
4
- const y = { class: "flex flex-col gap-4" }, f = { class: "flex flex-col gap-2" }, h = { class: "flex h-8 items-center justify-between" }, x = /* @__PURE__ */ u({
4
+ const y = { class: "flex flex-col gap-4" }, f = { class: "flex flex-col gap-2" }, h = { class: "flex h-8 items-center justify-between" }, b = /* @__PURE__ */ u({
5
5
  __name: "Authentication",
6
6
  props: {
7
7
  documentSlug: {},
@@ -14,21 +14,22 @@ const y = { class: "flex flex-col gap-4" }, f = { class: "flex flex-col gap-2" }
14
14
  environment: {},
15
15
  workspaceStore: {},
16
16
  activeWorkspace: {},
17
+ plugins: {},
17
18
  collectionType: {}
18
19
  },
19
20
  setup(o) {
20
21
  const s = l(
21
22
  () => o.document?.["x-scalar-set-operation-security"] ?? !1
22
- ), r = l(
23
+ ), c = l(
23
24
  () => o.document?.servers?.find(
24
25
  ({ url: e }) => e === o.document?.["x-scalar-selected-server"]
25
- )
26
+ ) ?? null
26
27
  );
27
28
  return (e, t) => (d(), m("div", y, [
28
29
  n("div", f, [
29
30
  n("div", h, [
30
31
  t[1] || (t[1] = n("h3", { class: "font-bold" }, "Authentication", -1)),
31
- i(a(p), {
32
+ r(a(p), {
32
33
  class: "w-4",
33
34
  modelValue: s.value,
34
35
  "onUpdate:modelValue": t[0] || (t[0] = () => e.eventBus.emit("document:toggle:security"))
@@ -37,10 +38,10 @@ const y = { class: "flex flex-col gap-4" }, f = { class: "flex flex-col gap-2" }
37
38
  t[2] || (t[2] = n("p", { class: "pr-6 text-sm" }, " If enabled, all selected authentication will apply to all operations in this document. You can override this by disabling the toggle and authentication will then be applied at the operation level. ", -1))
38
39
  ]),
39
40
  n("div", {
40
- class: c(!s.value && "cursor-not-allowed")
41
+ class: i(!s.value && "cursor-not-allowed")
41
42
  }, [
42
- i(a(v), {
43
- class: c([
43
+ r(a(v), {
44
+ class: i([
44
45
  "scalar-collection-auth !border-none",
45
46
  !s.value && "pointer-events-none opacity-50 mix-blend-luminosity"
46
47
  ]),
@@ -48,16 +49,17 @@ const y = { class: "flex flex-col gap-4" }, f = { class: "flex flex-col gap-2" }
48
49
  eventBus: e.eventBus,
49
50
  isStatic: "",
50
51
  meta: { type: "document" },
51
- security: e.document?.security ?? [],
52
+ proxyUrl: e.workspaceStore.workspace["x-scalar-active-proxy"] ?? "",
53
+ securityRequirements: e.document?.security ?? [],
52
54
  securitySchemes: e.document?.components?.securitySchemes ?? {},
53
55
  selectedSecurity: e.document?.["x-scalar-selected-security"],
54
- server: r.value,
56
+ server: c.value,
55
57
  title: "Authentication"
56
- }, null, 8, ["class", "environment", "eventBus", "security", "securitySchemes", "selectedSecurity", "server"])
58
+ }, null, 8, ["class", "environment", "eventBus", "proxyUrl", "securityRequirements", "securitySchemes", "selectedSecurity", "server"])
57
59
  ], 2)
58
60
  ]));
59
61
  }
60
62
  });
61
63
  export {
62
- x as default
64
+ b as default
63
65
  };
@@ -1,4 +1,33 @@
1
- import f from "./Cookies.vue2.js";
1
+ import { defineComponent as c, computed as n, createElementBlock as l, openBlock as a, createStaticVNode as i, createVNode as r, unref as u } from "vue";
2
+ import d from "../../global-cookies/components/CookiesTable.vue.js";
3
+ const p = { class: "flex flex-col gap-4" }, f = /* @__PURE__ */ c({
4
+ __name: "Cookies",
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 s = n(() => (e.collectionType === "document" ? e.document["x-scalar-cookies"] : e.workspaceStore.workspace["x-scalar-cookies"]) ?? []);
21
+ return (o, t) => (a(), l("div", p, [
22
+ t[0] || (t[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">Cookies</h3></div><p class="text-c-2 mb-4 text-sm"> Manage your collection&#39;s cookies here.<br>Cookies allow you to store and send key-value data with your API requests—often used for things like session tokens, authentication, and saving user preferences.<br></p></div></div>', 1)),
23
+ r(u(d), {
24
+ cookies: s.value,
25
+ eventBus: o.eventBus,
26
+ collectionType: o.collectionType
27
+ }, null, 8, ["cookies", "eventBus", "collectionType"])
28
+ ]));
29
+ }
30
+ });
2
31
  export {
3
32
  f as default
4
33
  };
@@ -1,32 +1,4 @@
1
- import { defineComponent as c, computed as n, createElementBlock as l, openBlock as a, createStaticVNode as i, createVNode as r, unref as u } from "vue";
2
- import d from "../../global-cookies/components/CookiesTable.vue.js";
3
- const p = { class: "flex flex-col gap-4" }, f = /* @__PURE__ */ c({
4
- __name: "Cookies",
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 s = n(() => (e.collectionType === "document" ? e.document["x-scalar-cookies"] : e.workspaceStore.workspace["x-scalar-cookies"]) ?? []);
20
- return (o, t) => (a(), l("div", p, [
21
- t[0] || (t[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">Cookies</h3></div><p class="text-c-2 mb-4 text-sm"> Manage your collection&#39;s cookies here.<br>Cookies allow you to store and send key-value data with your API requests—often used for things like session tokens, authentication, and saving user preferences.<br></p></div></div>', 1)),
22
- r(u(d), {
23
- cookies: s.value,
24
- eventBus: o.eventBus,
25
- collectionType: o.collectionType
26
- }, null, 8, ["cookies", "eventBus", "collectionType"])
27
- ]));
28
- }
29
- });
1
+ import f from "./Cookies.vue.js";
30
2
  export {
31
3
  f as default
32
4
  };
@@ -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
  };