@stoplight/elements-core 9.0.11 → 9.0.12-beta-0.2

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 (417) hide show
  1. package/.storybook/main.js +6 -0
  2. package/.storybook/manager.js +1 -0
  3. package/.storybook/preview.jsx +50 -0
  4. package/dist/LICENSE +190 -0
  5. package/dist/README.md +1 -0
  6. package/{index.esm.js → dist/index.esm.js} +60 -1
  7. package/{index.js → dist/index.js} +60 -1
  8. package/{index.mjs → dist/index.mjs} +60 -1
  9. package/dist/package.json +64 -0
  10. package/jest.config.js +10 -0
  11. package/package.json +74 -14
  12. package/src/__fixtures__/articles/basic.md +10 -0
  13. package/src/__fixtures__/articles/kitchen-sink.md +318 -0
  14. package/src/__fixtures__/articles/long-page-heading.md +955 -0
  15. package/src/__fixtures__/articles/multiple-try-its.md +54 -0
  16. package/src/__fixtures__/articles/schema-with-refs.ts +82 -0
  17. package/src/__fixtures__/http-request.json +11 -0
  18. package/src/__fixtures__/models/model-with-no-examples.json +15 -0
  19. package/src/__fixtures__/models/model-with-one-example.json +23 -0
  20. package/src/__fixtures__/models/model-with-three-examples.json +35 -0
  21. package/src/__fixtures__/operations/application-octet-stream-post.ts +39 -0
  22. package/src/__fixtures__/operations/base64-file-upload.ts +43 -0
  23. package/src/__fixtures__/operations/big-response.ts +4690 -0
  24. package/src/__fixtures__/operations/bundled-parameter.ts +128 -0
  25. package/src/__fixtures__/operations/empty-response.ts +15 -0
  26. package/src/__fixtures__/operations/examples-request-body.ts +135 -0
  27. package/src/__fixtures__/operations/head-todos.ts +49 -0
  28. package/src/__fixtures__/operations/invalid-response-example.ts +45 -0
  29. package/src/__fixtures__/operations/multipart-formdata-post.ts +61 -0
  30. package/src/__fixtures__/operations/operation-minimal.ts +11 -0
  31. package/src/__fixtures__/operations/operation-parameters.ts +337 -0
  32. package/src/__fixtures__/operations/operation-with-examples.ts +113 -0
  33. package/src/__fixtures__/operations/operation-without-servers.ts +16 -0
  34. package/src/__fixtures__/operations/patch-todos.ts +49 -0
  35. package/src/__fixtures__/operations/put-todos.ts +862 -0
  36. package/src/__fixtures__/operations/referenced-body.ts +62 -0
  37. package/src/__fixtures__/operations/request-body-empty-schema.ts +35 -0
  38. package/src/__fixtures__/operations/request-body.ts +62 -0
  39. package/src/__fixtures__/operations/securedOperation.ts +118 -0
  40. package/src/__fixtures__/operations/security-basic.ts +24 -0
  41. package/src/__fixtures__/operations/security-bearer.ts +25 -0
  42. package/src/__fixtures__/operations/simple-get.ts +17 -0
  43. package/src/__fixtures__/operations/simple.ts +103 -0
  44. package/src/__fixtures__/operations/string-numeric-enums.ts +32 -0
  45. package/src/__fixtures__/operations/urlencoded-post-oneof.ts +81 -0
  46. package/src/__fixtures__/operations/urlencoded-post.ts +54 -0
  47. package/src/__fixtures__/operations/vendor-extensions.ts +337 -0
  48. package/src/__fixtures__/operations/with-url-variables.ts +47 -0
  49. package/src/__fixtures__/operations/x-code-samples.ts +348 -0
  50. package/src/__fixtures__/schemas/circular.ts +1906 -0
  51. package/src/__fixtures__/schemas/contact.json +293 -0
  52. package/src/__fixtures__/schemas/media-entry.json +69 -0
  53. package/src/__fixtures__/schemas/simple.json +27 -0
  54. package/src/__fixtures__/schemas/todo-full.v1.json +35 -0
  55. package/src/__fixtures__/schemas/todo-partial.v1.json +14 -0
  56. package/src/__fixtures__/schemas/user.v1.json +17 -0
  57. package/src/__fixtures__/security-schemes/index.ts +38 -0
  58. package/src/__fixtures__/services/petstore.ts +167 -0
  59. package/src/__fixtures__/services/with-unnamed-servers.ts +38 -0
  60. package/src/__fixtures__/services/with-url-variables.ts +83 -0
  61. package/src/__fixtures__/services/without-origin.ts +20 -0
  62. package/src/__fixtures__/table-of-contents/nested.ts +44 -0
  63. package/src/__fixtures__/table-of-contents/studio-template.ts +100 -0
  64. package/src/__fixtures__/table-of-contents/studio.ts +559 -0
  65. package/src/components/Docs/Article/Article.spec.tsx +38 -0
  66. package/src/components/Docs/Article/Article.stories.tsx +17 -0
  67. package/src/components/Docs/Article/index.tsx +38 -0
  68. package/src/components/Docs/Docs.stories.tsx +33 -0
  69. package/src/components/Docs/Docs.tsx +272 -0
  70. package/src/components/Docs/HttpOperation/Badges.tsx +49 -0
  71. package/src/components/Docs/HttpOperation/Body.tsx +115 -0
  72. package/src/components/Docs/HttpOperation/Callbacks.tsx +89 -0
  73. package/src/components/Docs/HttpOperation/HttpOperation.spec.tsx +787 -0
  74. package/src/components/Docs/HttpOperation/HttpOperation.stories.ts +14 -0
  75. package/src/components/Docs/HttpOperation/HttpOperation.tsx +260 -0
  76. package/src/components/Docs/HttpOperation/LazySchemaTreePreviewer.tsx +651 -0
  77. package/src/components/Docs/HttpOperation/Parameters.spec.tsx +101 -0
  78. package/src/components/Docs/HttpOperation/Parameters.tsx +118 -0
  79. package/src/components/Docs/HttpOperation/Request.tsx +152 -0
  80. package/src/components/Docs/HttpOperation/Responses.tsx +301 -0
  81. package/src/components/Docs/HttpOperation/index.ts +1 -0
  82. package/src/components/Docs/HttpService/AdditionalInfo.stories.ts +48 -0
  83. package/src/components/Docs/HttpService/AdditionalInfo.tsx +61 -0
  84. package/src/components/Docs/HttpService/ExportButton.tsx +35 -0
  85. package/src/components/Docs/HttpService/HttpService.spec.tsx +429 -0
  86. package/src/components/Docs/HttpService/HttpService.stories.ts +14 -0
  87. package/src/components/Docs/HttpService/HttpService.tsx +99 -0
  88. package/src/components/Docs/HttpService/SecuritySchemes.tsx +82 -0
  89. package/src/components/Docs/HttpService/ServerInfo.tsx +196 -0
  90. package/src/components/Docs/HttpService/index.ts +1 -0
  91. package/src/components/Docs/Model/Model.spec.tsx +241 -0
  92. package/src/components/Docs/Model/Model.stories.tsx +16 -0
  93. package/src/components/Docs/Model/Model.tsx +192 -0
  94. package/src/components/Docs/Model/index.ts +1 -0
  95. package/src/components/Docs/NodeVendorExtensions.tsx +55 -0
  96. package/src/components/Docs/Sections.tsx +54 -0
  97. package/src/components/Docs/Security/PanelContent.tsx +38 -0
  98. package/src/components/Docs/Security/index.ts +1 -0
  99. package/src/components/Docs/Skeleton.tsx +12 -0
  100. package/src/components/Docs/TwoColumnLayout.tsx +27 -0
  101. package/src/components/Docs/index.ts +1 -0
  102. package/src/components/Docs/story-helper.ts +46 -0
  103. package/src/components/Docs/story-renderer-helper.tsx +56 -0
  104. package/src/components/Layout/MobileTopNav.tsx +78 -0
  105. package/src/components/Layout/ResponsiveSidebarLayout.tsx +175 -0
  106. package/src/components/Layout/SidebarLayout.tsx +107 -0
  107. package/src/components/LinkHeading.tsx +21 -0
  108. package/src/components/LoadMore.tsx +20 -0
  109. package/src/components/Loading/Loading.tsx +9 -0
  110. package/src/components/Logo.tsx +25 -0
  111. package/src/components/MarkdownViewer/CustomComponents/CodeComponent.spec.ts +90 -0
  112. package/src/components/MarkdownViewer/CustomComponents/CodeComponent.tsx +164 -0
  113. package/src/components/MarkdownViewer/CustomComponents/Provider.tsx +20 -0
  114. package/src/components/MarkdownViewer/CustomComponents/ReactRouterLink.tsx +27 -0
  115. package/src/components/MarkdownViewer/CustomComponents/ResolvedImage.tsx +86 -0
  116. package/src/components/MarkdownViewer/CustomComponents/ScrollToHashElement.tsx +96 -0
  117. package/src/components/MarkdownViewer/MarkdownViewer.spec.tsx +170 -0
  118. package/src/components/MarkdownViewer/index.tsx +10 -0
  119. package/src/components/NonIdealState.tsx +20 -0
  120. package/src/components/PoweredByLink.tsx +30 -0
  121. package/src/components/RequestSamples/RequestSamples.stories.tsx +67 -0
  122. package/src/components/RequestSamples/RequestSamples.tsx +246 -0
  123. package/src/components/RequestSamples/__tests__/RequestSamples.test.tsx +131 -0
  124. package/src/components/RequestSamples/__tests__/__snapshots__/convertRequestToSample.spec.ts.snap +746 -0
  125. package/src/components/RequestSamples/__tests__/convertRequestToSample.spec.ts +118 -0
  126. package/src/components/RequestSamples/convertRequestToSample.ts +56 -0
  127. package/src/components/RequestSamples/extractCodeSamples.ts +50 -0
  128. package/src/components/RequestSamples/index.ts +2 -0
  129. package/src/components/RequestSamples/requestSampleConfigs.ts +182 -0
  130. package/src/components/ResponseExamples/ResponseExamples.spec.tsx +121 -0
  131. package/src/components/ResponseExamples/ResponseExamples.stories.tsx +21 -0
  132. package/src/components/ResponseExamples/ResponseExamples.tsx +79 -0
  133. package/src/components/TableOfContents/TableOfContents.spec.tsx +301 -0
  134. package/src/components/TableOfContents/TableOfContents.stories.tsx +121 -0
  135. package/src/components/TableOfContents/TableOfContents.tsx +406 -0
  136. package/src/components/TableOfContents/constants.ts +45 -0
  137. package/src/components/TableOfContents/index.ts +2 -0
  138. package/src/components/TableOfContents/types.ts +51 -0
  139. package/src/components/TableOfContents/utils.ts +84 -0
  140. package/src/components/TryIt/Auth/APIKeyAuth.tsx +19 -0
  141. package/src/components/TryIt/Auth/Auth.tsx +169 -0
  142. package/src/components/TryIt/Auth/AuthTokenInput.tsx +37 -0
  143. package/src/components/TryIt/Auth/BasicAuth.tsx +62 -0
  144. package/src/components/TryIt/Auth/BearerAuth.tsx +19 -0
  145. package/src/components/TryIt/Auth/DigestAuth.tsx +35 -0
  146. package/src/components/TryIt/Auth/OAuth2Auth.tsx +19 -0
  147. package/src/components/TryIt/Auth/authentication-utils.ts +113 -0
  148. package/src/components/TryIt/Body/BinaryBody.tsx +52 -0
  149. package/src/components/TryIt/Body/FormDataBody.tsx +145 -0
  150. package/src/components/TryIt/Body/RequestBody.tsx +71 -0
  151. package/src/components/TryIt/Body/__tests__/BinaryBody.test.tsx +29 -0
  152. package/src/components/TryIt/Body/__tests__/FormDataBody.test.tsx +94 -0
  153. package/src/components/TryIt/Body/request-body-utils.ts +127 -0
  154. package/src/components/TryIt/Body/useTextRequestBodyState.ts +27 -0
  155. package/src/components/TryIt/Mocking/MockingButton.tsx +98 -0
  156. package/src/components/TryIt/Mocking/mocking-utils.ts +56 -0
  157. package/src/components/TryIt/Mocking/useMockingOptions.ts +6 -0
  158. package/src/components/TryIt/Parameters/FileUploadParameterEditors.tsx +62 -0
  159. package/src/components/TryIt/Parameters/OperationParameters.tsx +39 -0
  160. package/src/components/TryIt/Parameters/ParameterEditor.tsx +118 -0
  161. package/src/components/TryIt/Parameters/__tests__/parameter-utils.spec.ts +60 -0
  162. package/src/components/TryIt/Parameters/parameter-utils.spec.ts +118 -0
  163. package/src/components/TryIt/Parameters/parameter-utils.ts +179 -0
  164. package/src/components/TryIt/Parameters/useOperationParameters.ts +60 -0
  165. package/src/components/TryIt/Response/ReponseCodeViewer.tsx +28 -0
  166. package/src/components/TryIt/Response/Response.spec.tsx +174 -0
  167. package/src/components/TryIt/Response/Response.tsx +172 -0
  168. package/src/components/TryIt/Response/hooks/useLineCount.ts +7 -0
  169. package/src/components/TryIt/Servers/ServerVariables.tsx +33 -0
  170. package/src/components/TryIt/Servers/ServersDropdown.tsx +53 -0
  171. package/src/components/TryIt/Servers/VariableEditor.tsx +51 -0
  172. package/src/components/TryIt/Servers/useServerVariables.ts +19 -0
  173. package/src/components/TryIt/TryIt.spec.tsx +1511 -0
  174. package/src/components/TryIt/TryIt.stories.tsx +77 -0
  175. package/src/components/TryIt/TryIt.tsx +384 -0
  176. package/src/components/TryIt/TryItWithRequestSamples.spec.tsx +143 -0
  177. package/src/components/TryIt/TryItWithRequestSamples.stories.tsx +32 -0
  178. package/src/components/TryIt/TryItWithRequestSamples.tsx +42 -0
  179. package/src/components/TryIt/build-request.spec.ts +213 -0
  180. package/src/components/TryIt/build-request.ts +357 -0
  181. package/src/components/TryIt/chosenServer.ts +5 -0
  182. package/src/components/TryIt/index.ts +3 -0
  183. package/src/components/__tests__/LinkHeading.spec.tsx +125 -0
  184. package/src/constants.ts +176 -0
  185. package/src/containers/MockingProvider.tsx +23 -0
  186. package/src/context/InlineRefResolver.spec.tsx +183 -0
  187. package/src/context/InlineRefResolver.tsx +94 -0
  188. package/src/context/Options.tsx +27 -0
  189. package/src/context/Persistence.tsx +24 -0
  190. package/src/context/RouterType.tsx +9 -0
  191. package/src/core.css +97 -0
  192. package/src/hoc/utils.ts +5 -0
  193. package/src/hoc/withMosaicProvider.spec.tsx +48 -0
  194. package/src/hoc/withMosaicProvider.tsx +28 -0
  195. package/src/hoc/withQueryClientProvider.spec.tsx +38 -0
  196. package/src/hoc/withQueryClientProvider.tsx +35 -0
  197. package/src/hoc/withRouter.tsx +71 -0
  198. package/src/hooks/useBundleRefsIntoDocument.ts +60 -0
  199. package/src/hooks/useFirstRender.ts +8 -0
  200. package/src/hooks/useIsCompact.ts +26 -0
  201. package/src/hooks/useParsedData.ts +99 -0
  202. package/src/hooks/useParsedValue.ts +19 -0
  203. package/src/hooks/useResponsiveLayout.tsx +51 -0
  204. package/src/hooks/useRouter.tsx +31 -0
  205. package/src/hooks/useUniqueId.ts +4 -0
  206. package/src/index.ts +48 -0
  207. package/src/styled.tsx +22 -0
  208. package/src/styles.css +4 -0
  209. package/src/types.ts +170 -0
  210. package/src/utils/__tests__/securitySchemes.spec.ts +137 -0
  211. package/src/utils/exampleGeneration/exampleGeneration.spec.tsx +18 -0
  212. package/src/utils/exampleGeneration/exampleGeneration.ts +110 -0
  213. package/src/utils/fileToBase64.ts +11 -0
  214. package/src/utils/guards.ts +48 -0
  215. package/src/utils/headers.ts +316 -0
  216. package/src/utils/http-spec/IServer.ts +100 -0
  217. package/src/utils/http-spec/__tests__/IServer.spec.ts +51 -0
  218. package/src/utils/http-spec/examples.ts +5 -0
  219. package/src/utils/http.ts +9 -0
  220. package/src/utils/jotai/persistAtom.ts +31 -0
  221. package/src/utils/node.ts +19 -0
  222. package/src/utils/oas/__tests__/security.spec.ts +18 -0
  223. package/src/utils/oas/security.ts +76 -0
  224. package/src/utils/ref-resolving/ReferenceResolver.ts +29 -0
  225. package/src/utils/ref-resolving/resolvedObject.test.ts +415 -0
  226. package/src/utils/ref-resolving/resolvedObject.ts +109 -0
  227. package/src/utils/securitySchemes.ts +117 -0
  228. package/src/utils/string.ts +15 -0
  229. package/src/utils/tests/chooseOption.ts +7 -0
  230. package/src/web-components/createElementClass.ts +154 -0
  231. package/tsconfig.build.json +14 -0
  232. package/tsconfig.json +7 -0
  233. /package/{__fixtures__ → dist/__fixtures__}/articles/schema-with-refs.d.ts +0 -0
  234. /package/{__fixtures__ → dist/__fixtures__}/operations/application-octet-stream-post.d.ts +0 -0
  235. /package/{__fixtures__ → dist/__fixtures__}/operations/base64-file-upload.d.ts +0 -0
  236. /package/{__fixtures__ → dist/__fixtures__}/operations/big-response.d.ts +0 -0
  237. /package/{__fixtures__ → dist/__fixtures__}/operations/examples-request-body.d.ts +0 -0
  238. /package/{__fixtures__ → dist/__fixtures__}/operations/head-todos.d.ts +0 -0
  239. /package/{__fixtures__ → dist/__fixtures__}/operations/multipart-formdata-post.d.ts +0 -0
  240. /package/{__fixtures__ → dist/__fixtures__}/operations/operation-minimal.d.ts +0 -0
  241. /package/{__fixtures__ → dist/__fixtures__}/operations/operation-parameters.d.ts +0 -0
  242. /package/{__fixtures__ → dist/__fixtures__}/operations/operation-with-examples.d.ts +0 -0
  243. /package/{__fixtures__ → dist/__fixtures__}/operations/operation-without-servers.d.ts +0 -0
  244. /package/{__fixtures__ → dist/__fixtures__}/operations/patch-todos.d.ts +0 -0
  245. /package/{__fixtures__ → dist/__fixtures__}/operations/put-todos.d.ts +0 -0
  246. /package/{__fixtures__ → dist/__fixtures__}/operations/referenced-body.d.ts +0 -0
  247. /package/{__fixtures__ → dist/__fixtures__}/operations/request-body-empty-schema.d.ts +0 -0
  248. /package/{__fixtures__ → dist/__fixtures__}/operations/request-body.d.ts +0 -0
  249. /package/{__fixtures__ → dist/__fixtures__}/operations/securedOperation.d.ts +0 -0
  250. /package/{__fixtures__ → dist/__fixtures__}/operations/security-basic.d.ts +0 -0
  251. /package/{__fixtures__ → dist/__fixtures__}/operations/security-bearer.d.ts +0 -0
  252. /package/{__fixtures__ → dist/__fixtures__}/operations/simple-get.d.ts +0 -0
  253. /package/{__fixtures__ → dist/__fixtures__}/operations/string-numeric-enums.d.ts +0 -0
  254. /package/{__fixtures__ → dist/__fixtures__}/operations/urlencoded-post-oneof.d.ts +0 -0
  255. /package/{__fixtures__ → dist/__fixtures__}/operations/urlencoded-post.d.ts +0 -0
  256. /package/{__fixtures__ → dist/__fixtures__}/operations/with-url-variables.d.ts +0 -0
  257. /package/{__fixtures__ → dist/__fixtures__}/security-schemes/index.d.ts +0 -0
  258. /package/{__fixtures__ → dist/__fixtures__}/services/petstore.d.ts +0 -0
  259. /package/{__fixtures__ → dist/__fixtures__}/services/with-unnamed-servers.d.ts +0 -0
  260. /package/{__fixtures__ → dist/__fixtures__}/services/with-url-variables.d.ts +0 -0
  261. /package/{__fixtures__ → dist/__fixtures__}/services/without-origin.d.ts +0 -0
  262. /package/{components → dist/components}/Docs/Article/Article.spec.d.ts +0 -0
  263. /package/{components → dist/components}/Docs/Article/Article.stories.d.ts +0 -0
  264. /package/{components → dist/components}/Docs/Article/index.d.ts +0 -0
  265. /package/{components → dist/components}/Docs/Docs.d.ts +0 -0
  266. /package/{components → dist/components}/Docs/Docs.stories.d.ts +0 -0
  267. /package/{components → dist/components}/Docs/HttpOperation/Badges.d.ts +0 -0
  268. /package/{components → dist/components}/Docs/HttpOperation/Body.d.ts +0 -0
  269. /package/{components → dist/components}/Docs/HttpOperation/Callbacks.d.ts +0 -0
  270. /package/{components → dist/components}/Docs/HttpOperation/HttpOperation.d.ts +0 -0
  271. /package/{components → dist/components}/Docs/HttpOperation/HttpOperation.spec.d.ts +0 -0
  272. /package/{components → dist/components}/Docs/HttpOperation/HttpOperation.stories.d.ts +0 -0
  273. /package/{components → dist/components}/Docs/HttpOperation/LazySchemaTreePreviewer.d.ts +0 -0
  274. /package/{components → dist/components}/Docs/HttpOperation/Parameters.d.ts +0 -0
  275. /package/{components → dist/components}/Docs/HttpOperation/Parameters.spec.d.ts +0 -0
  276. /package/{components → dist/components}/Docs/HttpOperation/Request.d.ts +0 -0
  277. /package/{components → dist/components}/Docs/HttpOperation/Responses.d.ts +0 -0
  278. /package/{components → dist/components}/Docs/HttpOperation/index.d.ts +0 -0
  279. /package/{components → dist/components}/Docs/HttpService/AdditionalInfo.d.ts +0 -0
  280. /package/{components → dist/components}/Docs/HttpService/AdditionalInfo.stories.d.ts +0 -0
  281. /package/{components → dist/components}/Docs/HttpService/ExportButton.d.ts +0 -0
  282. /package/{components → dist/components}/Docs/HttpService/HttpService.d.ts +0 -0
  283. /package/{components → dist/components}/Docs/HttpService/HttpService.spec.d.ts +0 -0
  284. /package/{components → dist/components}/Docs/HttpService/HttpService.stories.d.ts +0 -0
  285. /package/{components → dist/components}/Docs/HttpService/SecuritySchemes.d.ts +0 -0
  286. /package/{components → dist/components}/Docs/HttpService/ServerInfo.d.ts +0 -0
  287. /package/{components → dist/components}/Docs/HttpService/index.d.ts +0 -0
  288. /package/{components → dist/components}/Docs/Model/Model.d.ts +0 -0
  289. /package/{components → dist/components}/Docs/Model/Model.spec.d.ts +0 -0
  290. /package/{components → dist/components}/Docs/Model/Model.stories.d.ts +0 -0
  291. /package/{components → dist/components}/Docs/Model/index.d.ts +0 -0
  292. /package/{components → dist/components}/Docs/NodeVendorExtensions.d.ts +0 -0
  293. /package/{components → dist/components}/Docs/Sections.d.ts +0 -0
  294. /package/{components → dist/components}/Docs/Security/PanelContent.d.ts +0 -0
  295. /package/{components → dist/components}/Docs/Security/index.d.ts +0 -0
  296. /package/{components → dist/components}/Docs/Skeleton.d.ts +0 -0
  297. /package/{components → dist/components}/Docs/TwoColumnLayout.d.ts +0 -0
  298. /package/{components → dist/components}/Docs/index.d.ts +0 -0
  299. /package/{components → dist/components}/Docs/story-helper.d.ts +0 -0
  300. /package/{components → dist/components}/Docs/story-renderer-helper.d.ts +0 -0
  301. /package/{components → dist/components}/Layout/MobileTopNav.d.ts +0 -0
  302. /package/{components → dist/components}/Layout/ResponsiveSidebarLayout.d.ts +0 -0
  303. /package/{components → dist/components}/Layout/SidebarLayout.d.ts +0 -0
  304. /package/{components → dist/components}/LinkHeading.d.ts +0 -0
  305. /package/{components → dist/components}/LoadMore.d.ts +0 -0
  306. /package/{components → dist/components}/Loading/Loading.d.ts +0 -0
  307. /package/{components → dist/components}/Logo.d.ts +0 -0
  308. /package/{components → dist/components}/MarkdownViewer/CustomComponents/CodeComponent.d.ts +0 -0
  309. /package/{components → dist/components}/MarkdownViewer/CustomComponents/CodeComponent.spec.d.ts +0 -0
  310. /package/{components → dist/components}/MarkdownViewer/CustomComponents/Provider.d.ts +0 -0
  311. /package/{components → dist/components}/MarkdownViewer/CustomComponents/ReactRouterLink.d.ts +0 -0
  312. /package/{components → dist/components}/MarkdownViewer/CustomComponents/ResolvedImage.d.ts +0 -0
  313. /package/{components → dist/components}/MarkdownViewer/CustomComponents/ScrollToHashElement.d.ts +0 -0
  314. /package/{components → dist/components}/MarkdownViewer/MarkdownViewer.spec.d.ts +0 -0
  315. /package/{components → dist/components}/MarkdownViewer/index.d.ts +0 -0
  316. /package/{components → dist/components}/NonIdealState.d.ts +0 -0
  317. /package/{components → dist/components}/PoweredByLink.d.ts +0 -0
  318. /package/{components → dist/components}/RequestSamples/RequestSamples.d.ts +0 -0
  319. /package/{components → dist/components}/RequestSamples/RequestSamples.stories.d.ts +0 -0
  320. /package/{components → dist/components}/RequestSamples/convertRequestToSample.d.ts +0 -0
  321. /package/{components → dist/components}/RequestSamples/extractCodeSamples.d.ts +0 -0
  322. /package/{components → dist/components}/RequestSamples/index.d.ts +0 -0
  323. /package/{components → dist/components}/RequestSamples/requestSampleConfigs.d.ts +0 -0
  324. /package/{components → dist/components}/ResponseExamples/ResponseExamples.d.ts +0 -0
  325. /package/{components → dist/components}/ResponseExamples/ResponseExamples.spec.d.ts +0 -0
  326. /package/{components → dist/components}/ResponseExamples/ResponseExamples.stories.d.ts +0 -0
  327. /package/{components → dist/components}/TableOfContents/TableOfContents.d.ts +0 -0
  328. /package/{components → dist/components}/TableOfContents/TableOfContents.spec.d.ts +0 -0
  329. /package/{components → dist/components}/TableOfContents/TableOfContents.stories.d.ts +0 -0
  330. /package/{components → dist/components}/TableOfContents/constants.d.ts +0 -0
  331. /package/{components → dist/components}/TableOfContents/index.d.ts +0 -0
  332. /package/{components → dist/components}/TableOfContents/types.d.ts +0 -0
  333. /package/{components → dist/components}/TableOfContents/utils.d.ts +0 -0
  334. /package/{components → dist/components}/TryIt/Auth/APIKeyAuth.d.ts +0 -0
  335. /package/{components → dist/components}/TryIt/Auth/Auth.d.ts +0 -0
  336. /package/{components → dist/components}/TryIt/Auth/AuthTokenInput.d.ts +0 -0
  337. /package/{components → dist/components}/TryIt/Auth/BasicAuth.d.ts +0 -0
  338. /package/{components → dist/components}/TryIt/Auth/BearerAuth.d.ts +0 -0
  339. /package/{components → dist/components}/TryIt/Auth/DigestAuth.d.ts +0 -0
  340. /package/{components → dist/components}/TryIt/Auth/OAuth2Auth.d.ts +0 -0
  341. /package/{components → dist/components}/TryIt/Auth/authentication-utils.d.ts +0 -0
  342. /package/{components → dist/components}/TryIt/Body/BinaryBody.d.ts +0 -0
  343. /package/{components → dist/components}/TryIt/Body/FormDataBody.d.ts +0 -0
  344. /package/{components → dist/components}/TryIt/Body/RequestBody.d.ts +0 -0
  345. /package/{components → dist/components}/TryIt/Body/request-body-utils.d.ts +0 -0
  346. /package/{components → dist/components}/TryIt/Body/useTextRequestBodyState.d.ts +0 -0
  347. /package/{components → dist/components}/TryIt/Mocking/MockingButton.d.ts +0 -0
  348. /package/{components → dist/components}/TryIt/Mocking/mocking-utils.d.ts +0 -0
  349. /package/{components → dist/components}/TryIt/Mocking/useMockingOptions.d.ts +0 -0
  350. /package/{components → dist/components}/TryIt/Parameters/FileUploadParameterEditors.d.ts +0 -0
  351. /package/{components → dist/components}/TryIt/Parameters/OperationParameters.d.ts +0 -0
  352. /package/{components → dist/components}/TryIt/Parameters/ParameterEditor.d.ts +0 -0
  353. /package/{components → dist/components}/TryIt/Parameters/parameter-utils.d.ts +0 -0
  354. /package/{components → dist/components}/TryIt/Parameters/parameter-utils.spec.d.ts +0 -0
  355. /package/{components → dist/components}/TryIt/Parameters/useOperationParameters.d.ts +0 -0
  356. /package/{components → dist/components}/TryIt/Response/ReponseCodeViewer.d.ts +0 -0
  357. /package/{components → dist/components}/TryIt/Response/Response.d.ts +0 -0
  358. /package/{components → dist/components}/TryIt/Response/Response.spec.d.ts +0 -0
  359. /package/{components → dist/components}/TryIt/Response/hooks/useLineCount.d.ts +0 -0
  360. /package/{components → dist/components}/TryIt/Servers/ServerVariables.d.ts +0 -0
  361. /package/{components → dist/components}/TryIt/Servers/ServersDropdown.d.ts +0 -0
  362. /package/{components → dist/components}/TryIt/Servers/VariableEditor.d.ts +0 -0
  363. /package/{components → dist/components}/TryIt/Servers/useServerVariables.d.ts +0 -0
  364. /package/{components → dist/components}/TryIt/TryIt.d.ts +0 -0
  365. /package/{components → dist/components}/TryIt/TryIt.spec.d.ts +0 -0
  366. /package/{components → dist/components}/TryIt/TryIt.stories.d.ts +0 -0
  367. /package/{components → dist/components}/TryIt/TryItWithRequestSamples.d.ts +0 -0
  368. /package/{components → dist/components}/TryIt/TryItWithRequestSamples.spec.d.ts +0 -0
  369. /package/{components → dist/components}/TryIt/TryItWithRequestSamples.stories.d.ts +0 -0
  370. /package/{components → dist/components}/TryIt/build-request.d.ts +0 -0
  371. /package/{components → dist/components}/TryIt/build-request.spec.d.ts +0 -0
  372. /package/{components → dist/components}/TryIt/chosenServer.d.ts +0 -0
  373. /package/{components → dist/components}/TryIt/index.d.ts +0 -0
  374. /package/{constants.d.ts → dist/constants.d.ts} +0 -0
  375. /package/{containers → dist/containers}/MockingProvider.d.ts +0 -0
  376. /package/{context → dist/context}/InlineRefResolver.d.ts +0 -0
  377. /package/{context → dist/context}/InlineRefResolver.spec.d.ts +0 -0
  378. /package/{context → dist/context}/Options.d.ts +0 -0
  379. /package/{context → dist/context}/Persistence.d.ts +0 -0
  380. /package/{context → dist/context}/RouterType.d.ts +0 -0
  381. /package/{core.css → dist/core.css} +0 -0
  382. /package/{hoc → dist/hoc}/utils.d.ts +0 -0
  383. /package/{hoc → dist/hoc}/withMosaicProvider.d.ts +0 -0
  384. /package/{hoc → dist/hoc}/withMosaicProvider.spec.d.ts +0 -0
  385. /package/{hoc → dist/hoc}/withQueryClientProvider.d.ts +0 -0
  386. /package/{hoc → dist/hoc}/withQueryClientProvider.spec.d.ts +0 -0
  387. /package/{hoc → dist/hoc}/withRouter.d.ts +0 -0
  388. /package/{hooks → dist/hooks}/useBundleRefsIntoDocument.d.ts +0 -0
  389. /package/{hooks → dist/hooks}/useFirstRender.d.ts +0 -0
  390. /package/{hooks → dist/hooks}/useIsCompact.d.ts +0 -0
  391. /package/{hooks → dist/hooks}/useParsedData.d.ts +0 -0
  392. /package/{hooks → dist/hooks}/useParsedValue.d.ts +0 -0
  393. /package/{hooks → dist/hooks}/useResponsiveLayout.d.ts +0 -0
  394. /package/{hooks → dist/hooks}/useRouter.d.ts +0 -0
  395. /package/{hooks → dist/hooks}/useUniqueId.d.ts +0 -0
  396. /package/{index.d.ts → dist/index.d.ts} +0 -0
  397. /package/{styled.d.ts → dist/styled.d.ts} +0 -0
  398. /package/{styles.min.css → dist/styles.min.css} +0 -0
  399. /package/{types.d.ts → dist/types.d.ts} +0 -0
  400. /package/{utils → dist/utils}/exampleGeneration/exampleGeneration.d.ts +0 -0
  401. /package/{utils → dist/utils}/exampleGeneration/exampleGeneration.spec.d.ts +0 -0
  402. /package/{utils → dist/utils}/fileToBase64.d.ts +0 -0
  403. /package/{utils → dist/utils}/guards.d.ts +0 -0
  404. /package/{utils → dist/utils}/headers.d.ts +0 -0
  405. /package/{utils → dist/utils}/http-spec/IServer.d.ts +0 -0
  406. /package/{utils → dist/utils}/http-spec/examples.d.ts +0 -0
  407. /package/{utils → dist/utils}/http.d.ts +0 -0
  408. /package/{utils → dist/utils}/jotai/persistAtom.d.ts +0 -0
  409. /package/{utils → dist/utils}/node.d.ts +0 -0
  410. /package/{utils → dist/utils}/oas/security.d.ts +0 -0
  411. /package/{utils → dist/utils}/ref-resolving/ReferenceResolver.d.ts +0 -0
  412. /package/{utils → dist/utils}/ref-resolving/resolvedObject.d.ts +0 -0
  413. /package/{utils → dist/utils}/ref-resolving/resolvedObject.test.d.ts +0 -0
  414. /package/{utils → dist/utils}/securitySchemes.d.ts +0 -0
  415. /package/{utils → dist/utils}/string.d.ts +0 -0
  416. /package/{utils → dist/utils}/tests/chooseOption.d.ts +0 -0
  417. /package/{web-components → dist/web-components}/createElementClass.d.ts +0 -0
@@ -0,0 +1,746 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`given c, convertRequestToSample converts a request to a sample 1`] = `
4
+ "CURL *hnd = curl_easy_init();
5
+
6
+ curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, \\"PUT\\");
7
+ curl_easy_setopt(hnd, CURLOPT_URL, \\"https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=\\");
8
+
9
+ struct curl_slist *headers = NULL;
10
+ headers = curl_slist_append(headers, \\"Content-Type: application/json\\");
11
+ headers = curl_slist_append(headers, \\"account-id: account-id-default\\");
12
+ headers = curl_slist_append(headers, \\"message-id: example value\\");
13
+ headers = curl_slist_append(headers, \\"optional_header: \\");
14
+ headers = curl_slist_append(headers, \\"quote: \\");
15
+ curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
16
+
17
+ curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, \\"{\\\\n \\\\\\"name\\\\\\": \\\\\\"Docs Module\\\\\\",\\\\n \\\\\\"completed\\\\\\": false\\\\n}\\");
18
+
19
+ CURLcode ret = curl_easy_perform(hnd);"
20
+ `;
21
+
22
+ exports[`given clojure, convertRequestToSample converts a request to a sample 1`] = `
23
+ "(require '[clj-http.client :as client])
24
+
25
+ (client/put \\"https://todos.stoplight.io/todos/todoId\\" {:headers {:account-id \\"account-id-default\\"
26
+ :message-id \\"example value\\"
27
+ :optional_header \\"\\"
28
+ :quote \\"\\"}
29
+ :query-params {:value \\"1\\"
30
+ :type \\"something\\"
31
+ :API Key \\"\\"}
32
+ :content-type :json
33
+ :form-params {:name \\"Docs Module\\"
34
+ :completed false}})"
35
+ `;
36
+
37
+ exports[`given csharp / httpclient, convertRequestToSample converts a request to a sample 1`] = `
38
+ "using System.Net.Http.Headers;
39
+ var client = new HttpClient();
40
+ var request = new HttpRequestMessage
41
+ {
42
+ Method = HttpMethod.Put,
43
+ RequestUri = new Uri(\\"https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=\\"),
44
+ Headers =
45
+ {
46
+ { \\"account-id\\", \\"account-id-default\\" },
47
+ { \\"message-id\\", \\"example value\\" },
48
+ { \\"optional_header\\", \\"\\" },
49
+ { \\"quote\\", \\"\\" },
50
+ },
51
+ Content = new StringContent(\\"{\\\\n \\\\\\"name\\\\\\": \\\\\\"Docs Module\\\\\\",\\\\n \\\\\\"completed\\\\\\": false\\\\n}\\")
52
+ {
53
+ Headers =
54
+ {
55
+ ContentType = new MediaTypeHeaderValue(\\"application/json\\")
56
+ }
57
+ }
58
+ };
59
+ using (var response = await client.SendAsync(request))
60
+ {
61
+ response.EnsureSuccessStatusCode();
62
+ var body = await response.Content.ReadAsStringAsync();
63
+ Console.WriteLine(body);
64
+ }"
65
+ `;
66
+
67
+ exports[`given csharp / restsharp, convertRequestToSample converts a request to a sample 1`] = `
68
+ "var client = new RestClient(\\"https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=\\");
69
+ var request = new RestRequest(Method.PUT);
70
+ request.AddHeader(\\"Content-Type\\", \\"application/json\\");
71
+ request.AddHeader(\\"account-id\\", \\"account-id-default\\");
72
+ request.AddHeader(\\"message-id\\", \\"example value\\");
73
+ request.AddHeader(\\"optional_header\\", \\"\\");
74
+ request.AddHeader(\\"quote\\", \\"\\");
75
+ request.AddParameter(\\"application/json\\", \\"{\\\\n \\\\\\"name\\\\\\": \\\\\\"Docs Module\\\\\\",\\\\n \\\\\\"completed\\\\\\": false\\\\n}\\", ParameterType.RequestBody);
76
+ IRestResponse response = client.Execute(request);"
77
+ `;
78
+
79
+ exports[`given go, convertRequestToSample converts a request to a sample 1`] = `
80
+ "package main
81
+
82
+ import (
83
+ \\"fmt\\"
84
+ \\"strings\\"
85
+ \\"net/http\\"
86
+ \\"io\\"
87
+ )
88
+
89
+ func main() {
90
+
91
+ url := \\"https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=\\"
92
+
93
+ payload := strings.NewReader(\\"{\\\\n \\\\\\"name\\\\\\": \\\\\\"Docs Module\\\\\\",\\\\n \\\\\\"completed\\\\\\": false\\\\n}\\")
94
+
95
+ req, _ := http.NewRequest(\\"PUT\\", url, payload)
96
+
97
+ req.Header.Add(\\"Content-Type\\", \\"application/json\\")
98
+ req.Header.Add(\\"account-id\\", \\"account-id-default\\")
99
+ req.Header.Add(\\"message-id\\", \\"example value\\")
100
+ req.Header.Add(\\"optional_header\\", \\"\\")
101
+ req.Header.Add(\\"quote\\", \\"\\")
102
+
103
+ res, _ := http.DefaultClient.Do(req)
104
+
105
+ defer res.Body.Close()
106
+ body, _ := io.ReadAll(res.Body)
107
+
108
+ fmt.Println(res)
109
+ fmt.Println(string(body))
110
+
111
+ }"
112
+ `;
113
+
114
+ exports[`given http / http1.1, convertRequestToSample converts a request to a sample 1`] = `
115
+ "PUT /todos/todoId?value=1&type=something&API+Key= HTTP/1.1
116
+ Content-Type: application/json
117
+ Account-Id: account-id-default
118
+ Message-Id: example value
119
+ Optional_header:
120
+ Quote:
121
+ Host: todos.stoplight.io
122
+ Content-Length: 49
123
+
124
+ {
125
+ \\"name\\": \\"Docs Module\\",
126
+ \\"completed\\": false
127
+ }"
128
+ `;
129
+
130
+ exports[`given java / asynchttp, convertRequestToSample converts a request to a sample 1`] = `
131
+ "AsyncHttpClient client = new DefaultAsyncHttpClient();
132
+ client.prepare(\\"PUT\\", \\"https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=\\")
133
+ .setHeader(\\"Content-Type\\", \\"application/json\\")
134
+ .setHeader(\\"account-id\\", \\"account-id-default\\")
135
+ .setHeader(\\"message-id\\", \\"example value\\")
136
+ .setHeader(\\"optional_header\\", \\"\\")
137
+ .setHeader(\\"quote\\", \\"\\")
138
+ .setBody(\\"{\\\\n \\\\\\"name\\\\\\": \\\\\\"Docs Module\\\\\\",\\\\n \\\\\\"completed\\\\\\": false\\\\n}\\")
139
+ .execute()
140
+ .toCompletableFuture()
141
+ .thenAccept(System.out::println)
142
+ .join();
143
+
144
+ client.close();"
145
+ `;
146
+
147
+ exports[`given java / nethttp, convertRequestToSample converts a request to a sample 1`] = `
148
+ "HttpRequest request = HttpRequest.newBuilder()
149
+ .uri(URI.create(\\"https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=\\"))
150
+ .header(\\"Content-Type\\", \\"application/json\\")
151
+ .header(\\"account-id\\", \\"account-id-default\\")
152
+ .header(\\"message-id\\", \\"example value\\")
153
+ .header(\\"optional_header\\", \\"\\")
154
+ .header(\\"quote\\", \\"\\")
155
+ .method(\\"PUT\\", HttpRequest.BodyPublishers.ofString(\\"{\\\\n \\\\\\"name\\\\\\": \\\\\\"Docs Module\\\\\\",\\\\n \\\\\\"completed\\\\\\": false\\\\n}\\"))
156
+ .build();
157
+ HttpResponse<String> response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
158
+ System.out.println(response.body());"
159
+ `;
160
+
161
+ exports[`given java / okhttp, convertRequestToSample converts a request to a sample 1`] = `
162
+ "OkHttpClient client = new OkHttpClient();
163
+
164
+ MediaType mediaType = MediaType.parse(\\"application/json\\");
165
+ RequestBody body = RequestBody.create(mediaType, \\"{\\\\n \\\\\\"name\\\\\\": \\\\\\"Docs Module\\\\\\",\\\\n \\\\\\"completed\\\\\\": false\\\\n}\\");
166
+ Request request = new Request.Builder()
167
+ .url(\\"https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=\\")
168
+ .put(body)
169
+ .addHeader(\\"Content-Type\\", \\"application/json\\")
170
+ .addHeader(\\"account-id\\", \\"account-id-default\\")
171
+ .addHeader(\\"message-id\\", \\"example value\\")
172
+ .addHeader(\\"optional_header\\", \\"\\")
173
+ .addHeader(\\"quote\\", \\"\\")
174
+ .build();
175
+
176
+ Response response = client.newCall(request).execute();"
177
+ `;
178
+
179
+ exports[`given java / unirest, convertRequestToSample converts a request to a sample 1`] = `
180
+ "HttpResponse<String> response = Unirest.put(\\"https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=\\")
181
+ .header(\\"Content-Type\\", \\"application/json\\")
182
+ .header(\\"account-id\\", \\"account-id-default\\")
183
+ .header(\\"message-id\\", \\"example value\\")
184
+ .header(\\"optional_header\\", \\"\\")
185
+ .header(\\"quote\\", \\"\\")
186
+ .body(\\"{\\\\n \\\\\\"name\\\\\\": \\\\\\"Docs Module\\\\\\",\\\\n \\\\\\"completed\\\\\\": false\\\\n}\\")
187
+ .asString();"
188
+ `;
189
+
190
+ exports[`given javascript / axios, convertRequestToSample converts a request to a sample 1`] = `
191
+ "import axios from 'axios';
192
+
193
+ const options = {
194
+ method: 'PUT',
195
+ url: 'https://todos.stoplight.io/todos/todoId',
196
+ params: {value: '1', type: 'something', 'API Key': ''},
197
+ headers: {
198
+ 'Content-Type': 'application/json',
199
+ 'account-id': 'account-id-default',
200
+ 'message-id': 'example value',
201
+ optional_header: '',
202
+ quote: ''
203
+ },
204
+ data: {name: 'Docs Module', completed: false}
205
+ };
206
+
207
+ try {
208
+ const { data } = await axios.request(options);
209
+ console.log(data);
210
+ } catch (error) {
211
+ console.error(error);
212
+ }"
213
+ `;
214
+
215
+ exports[`given javascript / fetch, convertRequestToSample converts a request to a sample 1`] = `
216
+ "const url = 'https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=';
217
+ const options = {
218
+ method: 'PUT',
219
+ headers: {
220
+ 'Content-Type': 'application/json',
221
+ 'account-id': 'account-id-default',
222
+ 'message-id': 'example value',
223
+ optional_header: '',
224
+ quote: ''
225
+ },
226
+ body: '{\\"name\\":\\"Docs Module\\",\\"completed\\":false}'
227
+ };
228
+
229
+ try {
230
+ const response = await fetch(url, options);
231
+ const data = await response.json();
232
+ console.log(data);
233
+ } catch (error) {
234
+ console.error(error);
235
+ }"
236
+ `;
237
+
238
+ exports[`given javascript / jquery, convertRequestToSample converts a request to a sample 1`] = `
239
+ "const settings = {
240
+ async: true,
241
+ crossDomain: true,
242
+ url: 'https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=',
243
+ method: 'PUT',
244
+ headers: {
245
+ 'Content-Type': 'application/json',
246
+ 'account-id': 'account-id-default',
247
+ 'message-id': 'example value',
248
+ optional_header: '',
249
+ quote: ''
250
+ },
251
+ processData: false,
252
+ data: '{\\\\n \\"name\\": \\"Docs Module\\",\\\\n \\"completed\\": false\\\\n}'
253
+ };
254
+
255
+ $.ajax(settings).done(function (response) {
256
+ console.log(response);
257
+ });"
258
+ `;
259
+
260
+ exports[`given javascript / xhr, convertRequestToSample converts a request to a sample 1`] = `
261
+ "const data = JSON.stringify({
262
+ name: 'Docs Module',
263
+ completed: false
264
+ });
265
+
266
+ const xhr = new XMLHttpRequest();
267
+ xhr.withCredentials = true;
268
+
269
+ xhr.addEventListener('readystatechange', function () {
270
+ if (this.readyState === this.DONE) {
271
+ console.log(this.responseText);
272
+ }
273
+ });
274
+
275
+ xhr.open('PUT', 'https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=');
276
+ xhr.setRequestHeader('Content-Type', 'application/json');
277
+ xhr.setRequestHeader('account-id', 'account-id-default');
278
+ xhr.setRequestHeader('message-id', 'example value');
279
+ xhr.setRequestHeader('optional_header', '');
280
+ xhr.setRequestHeader('quote', '');
281
+
282
+ xhr.send(data);"
283
+ `;
284
+
285
+ exports[`given kotlin, convertRequestToSample converts a request to a sample 1`] = `
286
+ "val client = OkHttpClient()
287
+
288
+ val mediaType = MediaType.parse(\\"application/json\\")
289
+ val body = RequestBody.create(mediaType, \\"{\\\\n \\\\\\"name\\\\\\": \\\\\\"Docs Module\\\\\\",\\\\n \\\\\\"completed\\\\\\": false\\\\n}\\")
290
+ val request = Request.Builder()
291
+ .url(\\"https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=\\")
292
+ .put(body)
293
+ .addHeader(\\"Content-Type\\", \\"application/json\\")
294
+ .addHeader(\\"account-id\\", \\"account-id-default\\")
295
+ .addHeader(\\"message-id\\", \\"example value\\")
296
+ .addHeader(\\"optional_header\\", \\"\\")
297
+ .addHeader(\\"quote\\", \\"\\")
298
+ .build()
299
+
300
+ val response = client.newCall(request).execute()"
301
+ `;
302
+
303
+ exports[`given node / axios, convertRequestToSample converts a request to a sample 1`] = `
304
+ "const axios = require('axios').default;
305
+
306
+ const options = {
307
+ method: 'PUT',
308
+ url: 'https://todos.stoplight.io/todos/todoId',
309
+ params: {value: '1', type: 'something', 'API Key': ''},
310
+ headers: {
311
+ 'Content-Type': 'application/json',
312
+ 'account-id': 'account-id-default',
313
+ 'message-id': 'example value',
314
+ optional_header: '',
315
+ quote: ''
316
+ },
317
+ data: {name: 'Docs Module', completed: false}
318
+ };
319
+
320
+ try {
321
+ const { data } = await axios.request(options);
322
+ console.log(data);
323
+ } catch (error) {
324
+ console.error(error);
325
+ }"
326
+ `;
327
+
328
+ exports[`given node / fetch, convertRequestToSample converts a request to a sample 1`] = `
329
+ "const fetch = require('node-fetch');
330
+
331
+ const url = 'https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=';
332
+ const options = {
333
+ method: 'PUT',
334
+ headers: {
335
+ 'Content-Type': 'application/json',
336
+ 'account-id': 'account-id-default',
337
+ 'message-id': 'example value',
338
+ optional_header: '',
339
+ quote: ''
340
+ },
341
+ body: '{\\"name\\":\\"Docs Module\\",\\"completed\\":false}'
342
+ };
343
+
344
+ try {
345
+ const response = await fetch(url, options);
346
+ const data = await response.json();
347
+ console.log(data);
348
+ } catch (error) {
349
+ console.error(error);
350
+ }"
351
+ `;
352
+
353
+ exports[`given node / native, convertRequestToSample converts a request to a sample 1`] = `
354
+ "const http = require('https');
355
+
356
+ const options = {
357
+ method: 'PUT',
358
+ hostname: 'todos.stoplight.io',
359
+ port: null,
360
+ path: '/todos/todoId?value=1&type=something&API+Key=',
361
+ headers: {
362
+ 'Content-Type': 'application/json',
363
+ 'account-id': 'account-id-default',
364
+ 'message-id': 'example value',
365
+ optional_header: '',
366
+ quote: ''
367
+ }
368
+ };
369
+
370
+ const req = http.request(options, function (res) {
371
+ const chunks = [];
372
+
373
+ res.on('data', function (chunk) {
374
+ chunks.push(chunk);
375
+ });
376
+
377
+ res.on('end', function () {
378
+ const body = Buffer.concat(chunks);
379
+ console.log(body.toString());
380
+ });
381
+ });
382
+
383
+ req.write(JSON.stringify({name: 'Docs Module', completed: false}));
384
+ req.end();"
385
+ `;
386
+
387
+ exports[`given node / request, convertRequestToSample converts a request to a sample 1`] = `
388
+ "const request = require('request');
389
+
390
+ const options = {
391
+ method: 'PUT',
392
+ url: 'https://todos.stoplight.io/todos/todoId',
393
+ qs: {value: '1', type: 'something', 'API Key': ''},
394
+ headers: {
395
+ 'Content-Type': 'application/json',
396
+ 'account-id': 'account-id-default',
397
+ 'message-id': 'example value',
398
+ optional_header: '',
399
+ quote: ''
400
+ },
401
+ body: {name: 'Docs Module', completed: false},
402
+ json: true
403
+ };
404
+
405
+ request(options, function (error, response, body) {
406
+ if (error) throw new Error(error);
407
+
408
+ console.log(body);
409
+ });"
410
+ `;
411
+
412
+ exports[`given node / unirest, convertRequestToSample converts a request to a sample 1`] = `
413
+ "const unirest = require('unirest');
414
+
415
+ const req = unirest('PUT', 'https://todos.stoplight.io/todos/todoId');
416
+
417
+ req.query({
418
+ value: '1',
419
+ type: 'something',
420
+ 'API Key': ''
421
+ });
422
+
423
+ req.headers({
424
+ 'Content-Type': 'application/json',
425
+ 'account-id': 'account-id-default',
426
+ 'message-id': 'example value',
427
+ optional_header: '',
428
+ quote: ''
429
+ });
430
+
431
+ req.type('json');
432
+ req.send({
433
+ name: 'Docs Module',
434
+ completed: false
435
+ });
436
+
437
+ req.end(function (res) {
438
+ if (res.error) throw new Error(res.error);
439
+
440
+ console.log(res.body);
441
+ });"
442
+ `;
443
+
444
+ exports[`given objc, convertRequestToSample converts a request to a sample 1`] = `
445
+ "#import <Foundation/Foundation.h>
446
+
447
+ NSDictionary *headers = @{ @\\"Content-Type\\": @\\"application/json\\",
448
+ @\\"account-id\\": @\\"account-id-default\\",
449
+ @\\"message-id\\": @\\"example value\\",
450
+ @\\"optional_header\\": @\\"\\",
451
+ @\\"quote\\": @\\"\\" };
452
+ NSDictionary *parameters = @{ @\\"name\\": @\\"Docs Module\\",
453
+ @\\"completed\\": @NO };
454
+
455
+ NSData *postData = [NSJSONSerialization dataWithJSONObject:parameters options:0 error:nil];
456
+
457
+ NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@\\"https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=\\"]
458
+ cachePolicy:NSURLRequestUseProtocolCachePolicy
459
+ timeoutInterval:10.0];
460
+ [request setHTTPMethod:@\\"PUT\\"];
461
+ [request setAllHTTPHeaderFields:headers];
462
+ [request setHTTPBody:postData];
463
+
464
+ NSURLSession *session = [NSURLSession sharedSession];
465
+ NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request
466
+ completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
467
+ if (error) {
468
+ NSLog(@\\"%@\\", error);
469
+ } else {
470
+ NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;
471
+ NSLog(@\\"%@\\", httpResponse);
472
+ }
473
+ }];
474
+ [dataTask resume];"
475
+ `;
476
+
477
+ exports[`given ocaml, convertRequestToSample converts a request to a sample 1`] = `
478
+ "open Cohttp_lwt_unix
479
+ open Cohttp
480
+ open Lwt
481
+
482
+ let uri = Uri.of_string \\"https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=\\" in
483
+ let headers = Header.add_list (Header.init ()) [
484
+ (\\"Content-Type\\", \\"application/json\\");
485
+ (\\"account-id\\", \\"account-id-default\\");
486
+ (\\"message-id\\", \\"example value\\");
487
+ (\\"optional_header\\", \\"\\");
488
+ (\\"quote\\", \\"\\");
489
+ ] in
490
+ let body = Cohttp_lwt_body.of_string \\"{\\\\n \\\\\\"name\\\\\\": \\\\\\"Docs Module\\\\\\",\\\\n \\\\\\"completed\\\\\\": false\\\\n}\\" in
491
+
492
+ Client.call ~headers ~body \`PUT uri
493
+ >>= fun (res, body_stream) ->
494
+ (* Do stuff with the result *)"
495
+ `;
496
+
497
+ exports[`given php / curl, convertRequestToSample converts a request to a sample 1`] = `
498
+ "<?php
499
+
500
+ $curl = curl_init();
501
+
502
+ curl_setopt_array($curl, [
503
+ CURLOPT_URL => \\"https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=\\",
504
+ CURLOPT_RETURNTRANSFER => true,
505
+ CURLOPT_ENCODING => \\"\\",
506
+ CURLOPT_MAXREDIRS => 10,
507
+ CURLOPT_TIMEOUT => 30,
508
+ CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
509
+ CURLOPT_CUSTOMREQUEST => \\"PUT\\",
510
+ CURLOPT_POSTFIELDS => json_encode([
511
+ 'name' => 'Docs Module',
512
+ 'completed' => null
513
+ ]),
514
+ CURLOPT_HTTPHEADER => [
515
+ \\"Content-Type: application/json\\",
516
+ \\"account-id: account-id-default\\",
517
+ \\"message-id: example value\\",
518
+ \\"optional_header: \\",
519
+ \\"quote: \\"
520
+ ],
521
+ ]);
522
+
523
+ $response = curl_exec($curl);
524
+ $err = curl_error($curl);
525
+
526
+ curl_close($curl);
527
+
528
+ if ($err) {
529
+ echo \\"cURL Error #:\\" . $err;
530
+ } else {
531
+ echo $response;
532
+ }"
533
+ `;
534
+
535
+ exports[`given php / guzzle, convertRequestToSample converts a request to a sample 1`] = `
536
+ "<?php
537
+
538
+ $client = new \\\\GuzzleHttp\\\\Client();
539
+
540
+ $response = $client->request('PUT', 'https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=', [
541
+ 'body' => '{
542
+ \\"name\\": \\"Docs Module\\",
543
+ \\"completed\\": false
544
+ }',
545
+ 'headers' => [
546
+ 'Content-Type' => 'application/json',
547
+ 'account-id' => 'account-id-default',
548
+ 'message-id' => 'example value',
549
+ 'optional_header' => '',
550
+ 'quote' => '',
551
+ ],
552
+ ]);
553
+
554
+ echo $response->getBody();"
555
+ `;
556
+
557
+ exports[`given powershell / restmethod, convertRequestToSample converts a request to a sample 1`] = `
558
+ "$headers=@{}
559
+ $headers.Add(\\"Content-Type\\", \\"application/json\\")
560
+ $headers.Add(\\"account-id\\", \\"account-id-default\\")
561
+ $headers.Add(\\"message-id\\", \\"example value\\")
562
+ $headers.Add(\\"optional_header\\", \\"\\")
563
+ $headers.Add(\\"quote\\", \\"\\")
564
+ $response = Invoke-RestMethod -Uri 'https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{
565
+ \\"name\\": \\"Docs Module\\",
566
+ \\"completed\\": false
567
+ }'"
568
+ `;
569
+
570
+ exports[`given powershell / webrequest, convertRequestToSample converts a request to a sample 1`] = `
571
+ "$headers=@{}
572
+ $headers.Add(\\"Content-Type\\", \\"application/json\\")
573
+ $headers.Add(\\"account-id\\", \\"account-id-default\\")
574
+ $headers.Add(\\"message-id\\", \\"example value\\")
575
+ $headers.Add(\\"optional_header\\", \\"\\")
576
+ $headers.Add(\\"quote\\", \\"\\")
577
+ $response = Invoke-WebRequest -Uri 'https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=' -Method PUT -Headers $headers -ContentType 'application/json' -Body '{
578
+ \\"name\\": \\"Docs Module\\",
579
+ \\"completed\\": false
580
+ }'"
581
+ `;
582
+
583
+ exports[`given python / python3, convertRequestToSample converts a request to a sample 1`] = `
584
+ "import http.client
585
+
586
+ conn = http.client.HTTPSConnection(\\"todos.stoplight.io\\")
587
+
588
+ payload = \\"{\\\\n \\\\\\"name\\\\\\": \\\\\\"Docs Module\\\\\\",\\\\n \\\\\\"completed\\\\\\": false\\\\n}\\"
589
+
590
+ headers = {
591
+ 'Content-Type': \\"application/json\\",
592
+ 'account-id': \\"account-id-default\\",
593
+ 'message-id': \\"example value\\",
594
+ 'optional_header': \\"\\",
595
+ 'quote': \\"\\"
596
+ }
597
+
598
+ conn.request(\\"PUT\\", \\"/todos/todoId?value=1&type=something&API+Key=\\", payload, headers)
599
+
600
+ res = conn.getresponse()
601
+ data = res.read()
602
+
603
+ print(data.decode(\\"utf-8\\"))"
604
+ `;
605
+
606
+ exports[`given python / requests, convertRequestToSample converts a request to a sample 1`] = `
607
+ "import requests
608
+
609
+ url = \\"https://todos.stoplight.io/todos/todoId\\"
610
+
611
+ querystring = {\\"value\\":\\"1\\",\\"type\\":\\"something\\",\\"API Key\\":\\"\\"}
612
+
613
+ payload = {
614
+ \\"name\\": \\"Docs Module\\",
615
+ \\"completed\\": False
616
+ }
617
+ headers = {
618
+ \\"Content-Type\\": \\"application/json\\",
619
+ \\"account-id\\": \\"account-id-default\\",
620
+ \\"message-id\\": \\"example value\\",
621
+ \\"optional_header\\": \\"\\",
622
+ \\"quote\\": \\"\\"
623
+ }
624
+
625
+ response = requests.put(url, json=payload, headers=headers, params=querystring)
626
+
627
+ print(response.json())"
628
+ `;
629
+
630
+ exports[`given r, convertRequestToSample converts a request to a sample 1`] = `
631
+ "library(httr)
632
+
633
+ url <- \\"https://todos.stoplight.io/todos/todoId\\"
634
+
635
+ queryString <- list(
636
+ value = \\"1\\",
637
+ type = \\"something\\",
638
+ API Key = \\"\\"
639
+ )
640
+
641
+ payload <- \\"{\\\\n \\\\\\"name\\\\\\": \\\\\\"Docs Module\\\\\\",\\\\n \\\\\\"completed\\\\\\": false\\\\n}\\"
642
+
643
+ encode <- \\"json\\"
644
+
645
+ response <- VERB(\\"PUT\\", url, body = payload, query = queryString, add_headers('account-id' = 'account-id-default', 'message-id' = 'example value', 'optional_header' = '', 'quote' = ''), content_type(\\"application/json\\"), encode = encode)
646
+
647
+ content(response, \\"text\\")"
648
+ `;
649
+
650
+ exports[`given ruby, convertRequestToSample converts a request to a sample 1`] = `
651
+ "require 'uri'
652
+ require 'net/http'
653
+
654
+ url = URI(\\"https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=\\")
655
+
656
+ http = Net::HTTP.new(url.host, url.port)
657
+ http.use_ssl = true
658
+
659
+ request = Net::HTTP::Put.new(url)
660
+ request[\\"Content-Type\\"] = 'application/json'
661
+ request[\\"account-id\\"] = 'account-id-default'
662
+ request[\\"message-id\\"] = 'example value'
663
+ request[\\"optional_header\\"] = ''
664
+ request[\\"quote\\"] = ''
665
+ request.body = \\"{\\\\n \\\\\\"name\\\\\\": \\\\\\"Docs Module\\\\\\",\\\\n \\\\\\"completed\\\\\\": false\\\\n}\\"
666
+
667
+ response = http.request(request)
668
+ puts response.read_body"
669
+ `;
670
+
671
+ exports[`given shell / curl, convertRequestToSample converts a request to a sample 1`] = `
672
+ "curl --request PUT \\\\
673
+ --url 'https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=' \\\\
674
+ --header 'Content-Type: application/json' \\\\
675
+ --header 'account-id: account-id-default' \\\\
676
+ --header 'message-id: example value' \\\\
677
+ --header 'optional_header: ' \\\\
678
+ --header 'quote: ' \\\\
679
+ --data '{
680
+ \\"name\\": \\"Docs Module\\",
681
+ \\"completed\\": false
682
+ }'"
683
+ `;
684
+
685
+ exports[`given shell / httpie, convertRequestToSample converts a request to a sample 1`] = `
686
+ "echo '{
687
+ \\"name\\": \\"Docs Module\\",
688
+ \\"completed\\": false
689
+ }' | \\\\
690
+ http PUT 'https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=' \\\\
691
+ Content-Type:application/json \\\\
692
+ account-id:account-id-default \\\\
693
+ message-id:'example value' \\\\
694
+ optional_header:'' \\\\
695
+ quote:''"
696
+ `;
697
+
698
+ exports[`given shell / wget, convertRequestToSample converts a request to a sample 1`] = `
699
+ "wget --quiet \\\\
700
+ --method PUT \\\\
701
+ --header 'Content-Type: application/json' \\\\
702
+ --header 'account-id: account-id-default' \\\\
703
+ --header 'message-id: example value' \\\\
704
+ --header 'optional_header: ' \\\\
705
+ --header 'quote: ' \\\\
706
+ --body-data '{\\\\n \\"name\\": \\"Docs Module\\",\\\\n \\"completed\\": false\\\\n}' \\\\
707
+ --output-document \\\\
708
+ - 'https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key='"
709
+ `;
710
+
711
+ exports[`given swift, convertRequestToSample converts a request to a sample 1`] = `
712
+ "import Foundation
713
+
714
+ let headers = [
715
+ \\"Content-Type\\": \\"application/json\\",
716
+ \\"account-id\\": \\"account-id-default\\",
717
+ \\"message-id\\": \\"example value\\",
718
+ \\"optional_header\\": \\"\\",
719
+ \\"quote\\": \\"\\"
720
+ ]
721
+ let parameters = [
722
+ \\"name\\": \\"Docs Module\\",
723
+ \\"completed\\": false
724
+ ] as [String : Any]
725
+
726
+ let postData = JSONSerialization.data(withJSONObject: parameters, options: [])
727
+
728
+ let request = NSMutableURLRequest(url: NSURL(string: \\"https://todos.stoplight.io/todos/todoId?value=1&type=something&API+Key=\\")! as URL,
729
+ cachePolicy: .useProtocolCachePolicy,
730
+ timeoutInterval: 10.0)
731
+ request.httpMethod = \\"PUT\\"
732
+ request.allHTTPHeaderFields = headers
733
+ request.httpBody = postData as Data
734
+
735
+ let session = URLSession.shared
736
+ let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
737
+ if (error != nil) {
738
+ print(error as Any)
739
+ } else {
740
+ let httpResponse = response as? HTTPURLResponse
741
+ print(httpResponse)
742
+ }
743
+ })
744
+
745
+ dataTask.resume()"
746
+ `;