zudoku 0.0.0-fcb84d6 → 0.0.0-fd8f8ad

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 (665) hide show
  1. package/README.md +121 -0
  2. package/cli.js +2 -2
  3. package/dist/app/demo.js +0 -2
  4. package/dist/app/demo.js.map +1 -1
  5. package/dist/app/entry.client.js +16 -2
  6. package/dist/app/entry.client.js.map +1 -1
  7. package/dist/app/entry.server.js +9 -6
  8. package/dist/app/entry.server.js.map +1 -1
  9. package/dist/app/main.d.ts +2 -1
  10. package/dist/app/main.js +11 -28
  11. package/dist/app/main.js.map +1 -1
  12. package/dist/app/standalone.js +0 -2
  13. package/dist/app/standalone.js.map +1 -1
  14. package/dist/cli/cli.js +1 -2
  15. package/dist/cli/cli.js.map +1 -1
  16. package/dist/cli/common/machine-id/lib.js.map +1 -1
  17. package/dist/cli/common/outdated.js.map +1 -1
  18. package/dist/cli/common/utils/box.js.map +1 -1
  19. package/dist/codegen.d.ts +3 -0
  20. package/dist/codegen.js +45 -0
  21. package/dist/codegen.js.map +1 -0
  22. package/dist/config/validators/InputSidebarSchema.d.ts +12 -12
  23. package/dist/config/validators/SidebarSchema.d.ts +24 -1
  24. package/dist/config/validators/SidebarSchema.js +76 -39
  25. package/dist/config/validators/SidebarSchema.js.map +1 -1
  26. package/dist/config/validators/validate.d.ts +398 -252
  27. package/dist/config/validators/validate.js +23 -7
  28. package/dist/config/validators/validate.js.map +1 -1
  29. package/dist/index.d.ts +4 -1
  30. package/dist/index.js +1 -1
  31. package/dist/index.js.map +1 -1
  32. package/dist/lib/authentication/authentication.d.ts +2 -2
  33. package/dist/lib/authentication/components/CallbackHandler.js +21 -31
  34. package/dist/lib/authentication/components/CallbackHandler.js.map +1 -1
  35. package/dist/lib/authentication/hook.d.ts +1 -1
  36. package/dist/lib/authentication/hook.js +1 -1
  37. package/dist/lib/authentication/hook.js.map +1 -1
  38. package/dist/lib/authentication/providers/auth0.js +10 -9
  39. package/dist/lib/authentication/providers/auth0.js.map +1 -1
  40. package/dist/lib/authentication/state.d.ts +1 -1
  41. package/dist/lib/authentication/state.js +5 -3
  42. package/dist/lib/authentication/state.js.map +1 -1
  43. package/dist/lib/authentication/use-broadcast/shared.d.ts +48 -0
  44. package/dist/lib/authentication/use-broadcast/shared.js +243 -0
  45. package/dist/lib/authentication/use-broadcast/shared.js.map +1 -0
  46. package/dist/lib/authentication/use-broadcast/useBroadcast.d.ts +24 -0
  47. package/dist/lib/authentication/use-broadcast/useBroadcast.js +106 -0
  48. package/dist/lib/authentication/use-broadcast/useBroadcast.js.map +1 -0
  49. package/dist/lib/components/Bootstrap.d.ts +3 -1
  50. package/dist/lib/components/Bootstrap.js +11 -3
  51. package/dist/lib/components/Bootstrap.js.map +1 -1
  52. package/dist/lib/components/ClientOnly.d.ts +4 -2
  53. package/dist/lib/components/ClientOnly.js +1 -1
  54. package/dist/lib/components/ClientOnly.js.map +1 -1
  55. package/dist/lib/components/DeveloperHint.js +2 -1
  56. package/dist/lib/components/DeveloperHint.js.map +1 -1
  57. package/dist/lib/components/Header.js +10 -7
  58. package/dist/lib/components/Header.js.map +1 -1
  59. package/dist/lib/components/Heading.d.ts +1 -1
  60. package/dist/lib/components/MobileTopNavigation.js +7 -3
  61. package/dist/lib/components/MobileTopNavigation.js.map +1 -1
  62. package/dist/lib/components/SlotletProvider.d.ts +2 -1
  63. package/dist/lib/components/SlotletProvider.js.map +1 -1
  64. package/dist/lib/components/SyntaxHighlight.js +19 -12
  65. package/dist/lib/components/SyntaxHighlight.js.map +1 -1
  66. package/dist/lib/components/ThemeSwitch.d.ts +1 -0
  67. package/dist/lib/components/ThemeSwitch.js +11 -0
  68. package/dist/lib/components/ThemeSwitch.js.map +1 -0
  69. package/dist/lib/components/TopNavigation.d.ts +3 -0
  70. package/dist/lib/components/TopNavigation.js +38 -5
  71. package/dist/lib/components/TopNavigation.js.map +1 -1
  72. package/dist/lib/components/{DevPortal.d.ts → Zudoku.d.ts} +3 -3
  73. package/dist/lib/components/{DevPortal.js → Zudoku.js} +13 -14
  74. package/dist/lib/components/Zudoku.js.map +1 -0
  75. package/dist/lib/components/context/ZudokuContext.d.ts +10 -14
  76. package/dist/lib/components/context/ZudokuContext.js +27 -26
  77. package/dist/lib/components/context/ZudokuContext.js.map +1 -1
  78. package/dist/lib/components/context/ZudokuProvider.d.ts +2 -2
  79. package/dist/lib/components/context/ZudokuProvider.js.map +1 -1
  80. package/dist/lib/components/index.d.ts +20 -13
  81. package/dist/lib/components/index.js +11 -5
  82. package/dist/lib/components/index.js.map +1 -1
  83. package/dist/lib/components/navigation/Sidebar.js +3 -3
  84. package/dist/lib/components/navigation/Sidebar.js.map +1 -1
  85. package/dist/lib/components/navigation/SidebarCategory.js +12 -7
  86. package/dist/lib/components/navigation/SidebarCategory.js.map +1 -1
  87. package/dist/lib/components/navigation/SidebarItem.js +3 -5
  88. package/dist/lib/components/navigation/SidebarItem.js.map +1 -1
  89. package/dist/lib/components/navigation/utils.js +10 -14
  90. package/dist/lib/components/navigation/utils.js.map +1 -1
  91. package/dist/lib/core/{DevPortalContext.d.ts → ZudokuContext.d.ts} +6 -13
  92. package/dist/lib/core/{DevPortalContext.js → ZudokuContext.js} +2 -7
  93. package/dist/lib/core/ZudokuContext.js.map +1 -0
  94. package/dist/lib/core/plugins.d.ts +13 -12
  95. package/dist/lib/core/plugins.js.map +1 -1
  96. package/dist/lib/errors/ErrorAlert.d.ts +1 -1
  97. package/dist/lib/errors/ErrorAlert.js +8 -3
  98. package/dist/lib/errors/ErrorAlert.js.map +1 -1
  99. package/dist/lib/oas/graphql/index.js +4 -4
  100. package/dist/lib/oas/graphql/index.js.map +1 -1
  101. package/dist/lib/oas/parser/upgrade/index.js +3 -1
  102. package/dist/lib/oas/parser/upgrade/index.js.map +1 -1
  103. package/dist/lib/plugins/api-keys/CreateApiKey.js +1 -1
  104. package/dist/lib/plugins/api-keys/CreateApiKey.js.map +1 -1
  105. package/dist/lib/plugins/api-keys/index.d.ts +9 -9
  106. package/dist/lib/plugins/api-keys/index.js.map +1 -1
  107. package/dist/lib/plugins/custom-pages/CustomPage.js +2 -2
  108. package/dist/lib/plugins/custom-pages/index.d.ts +2 -2
  109. package/dist/lib/plugins/custom-pages/index.js.map +1 -1
  110. package/dist/lib/plugins/markdown/index.d.ts +6 -7
  111. package/dist/lib/plugins/markdown/index.js +31 -3
  112. package/dist/lib/plugins/markdown/index.js.map +1 -1
  113. package/dist/lib/plugins/markdown/resolver.d.ts +38 -0
  114. package/dist/lib/plugins/markdown/resolver.js +75 -0
  115. package/dist/lib/plugins/markdown/resolver.js.map +1 -0
  116. package/dist/lib/plugins/openapi/CollapsibleCode.d.ts +5 -0
  117. package/dist/lib/plugins/openapi/CollapsibleCode.js +24 -0
  118. package/dist/lib/plugins/openapi/CollapsibleCode.js.map +1 -0
  119. package/dist/lib/plugins/openapi/ColorizedParam.js +13 -9
  120. package/dist/lib/plugins/openapi/ColorizedParam.js.map +1 -1
  121. package/dist/lib/plugins/openapi/Endpoint.d.ts +1 -1
  122. package/dist/lib/plugins/openapi/Endpoint.js +5 -9
  123. package/dist/lib/plugins/openapi/Endpoint.js.map +1 -1
  124. package/dist/lib/plugins/openapi/OperationList.d.ts +2 -2
  125. package/dist/lib/plugins/openapi/OperationList.js +21 -22
  126. package/dist/lib/plugins/openapi/OperationList.js.map +1 -1
  127. package/dist/lib/plugins/openapi/ParameterListItem.js +6 -1
  128. package/dist/lib/plugins/openapi/ParameterListItem.js.map +1 -1
  129. package/dist/lib/plugins/openapi/RequestBodySidecarBox.js +7 -3
  130. package/dist/lib/plugins/openapi/RequestBodySidecarBox.js.map +1 -1
  131. package/dist/lib/plugins/openapi/ResponsesSidecarBox.js +9 -2
  132. package/dist/lib/plugins/openapi/ResponsesSidecarBox.js.map +1 -1
  133. package/dist/lib/plugins/openapi/Route.d.ts +4 -4
  134. package/dist/lib/plugins/openapi/Route.js +2 -4
  135. package/dist/lib/plugins/openapi/Route.js.map +1 -1
  136. package/dist/lib/plugins/openapi/Sidecar.d.ts +1 -1
  137. package/dist/lib/plugins/openapi/Sidecar.js +35 -33
  138. package/dist/lib/plugins/openapi/Sidecar.js.map +1 -1
  139. package/dist/lib/plugins/openapi/client/GraphQLClient.d.ts +8 -0
  140. package/dist/lib/plugins/openapi/client/GraphQLClient.js +102 -0
  141. package/dist/lib/plugins/openapi/client/GraphQLClient.js.map +1 -0
  142. package/dist/lib/plugins/openapi/client/GraphQLContext.d.ts +7 -0
  143. package/dist/lib/plugins/openapi/client/GraphQLContext.js +5 -0
  144. package/dist/lib/plugins/openapi/client/GraphQLContext.js.map +1 -0
  145. package/dist/lib/plugins/openapi/client/createServer.d.ts +1 -0
  146. package/dist/lib/plugins/openapi/client/useCreateQuery.d.ts +5 -0
  147. package/dist/lib/plugins/openapi/client/useCreateQuery.js +13 -0
  148. package/dist/lib/plugins/openapi/client/useCreateQuery.js.map +1 -0
  149. package/dist/lib/plugins/openapi/client/worker.d.ts +4 -1
  150. package/dist/lib/plugins/openapi/client/worker.js +23 -14
  151. package/dist/lib/plugins/openapi/client/worker.js.map +1 -1
  152. package/dist/lib/plugins/openapi/graphql/fragment-masking.d.ts +3 -3
  153. package/dist/lib/plugins/openapi/graphql/fragment-masking.js +3 -4
  154. package/dist/lib/plugins/openapi/graphql/fragment-masking.js.map +1 -1
  155. package/dist/lib/plugins/openapi/graphql/gql.d.ts +5 -51
  156. package/dist/lib/plugins/openapi/graphql/gql.js +4 -2
  157. package/dist/lib/plugins/openapi/graphql/gql.js.map +1 -1
  158. package/dist/lib/plugins/openapi/graphql/graphql.d.ts +32 -8
  159. package/dist/lib/plugins/openapi/graphql/graphql.js +194 -662
  160. package/dist/lib/plugins/openapi/graphql/graphql.js.map +1 -1
  161. package/dist/lib/plugins/openapi/index.d.ts +2 -2
  162. package/dist/lib/plugins/openapi/index.js +40 -53
  163. package/dist/lib/plugins/openapi/index.js.map +1 -1
  164. package/dist/lib/plugins/openapi/playground/Playground.js +2 -1
  165. package/dist/lib/plugins/openapi/playground/Playground.js.map +1 -1
  166. package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js +1 -1
  167. package/dist/lib/plugins/openapi/playground/PlaygroundDialog.js.map +1 -1
  168. package/dist/lib/plugins/openapi/schema/SchemaView.js +2 -1
  169. package/dist/lib/plugins/openapi/schema/SchemaView.js.map +1 -1
  170. package/dist/lib/plugins/openapi/util/generateSchemaExample.d.ts +0 -1
  171. package/dist/lib/plugins/openapi/util/generateSchemaExample.js +25 -36
  172. package/dist/lib/plugins/openapi/util/generateSchemaExample.js.map +1 -1
  173. package/dist/lib/plugins/openapi-worker.d.ts +1 -1
  174. package/dist/lib/plugins/openapi-worker.js +7 -1
  175. package/dist/lib/plugins/openapi-worker.js.map +1 -1
  176. package/dist/lib/plugins/redirect/index.d.ts +4 -7
  177. package/dist/lib/plugins/redirect/index.js +1 -1
  178. package/dist/lib/plugins/redirect/index.js.map +1 -1
  179. package/dist/lib/plugins/search-inkeep/index.d.ts +2 -2
  180. package/dist/lib/plugins/search-inkeep/index.js.map +1 -1
  181. package/dist/lib/ui/Accordion.d.ts +7 -0
  182. package/dist/lib/ui/Accordion.js +14 -0
  183. package/dist/lib/ui/Accordion.js.map +1 -0
  184. package/dist/lib/ui/ActionButton.d.ts +4 -0
  185. package/dist/lib/ui/ActionButton.js +10 -0
  186. package/dist/lib/ui/ActionButton.js.map +1 -0
  187. package/dist/lib/ui/Alert.d.ts +8 -0
  188. package/dist/lib/ui/Alert.js +23 -0
  189. package/dist/lib/ui/Alert.js.map +1 -0
  190. package/dist/lib/ui/AlertDialog.d.ts +20 -0
  191. package/dist/lib/ui/AlertDialog.js +27 -0
  192. package/dist/lib/ui/AlertDialog.js.map +1 -0
  193. package/dist/lib/ui/AspectRatio.d.ts +3 -0
  194. package/dist/lib/ui/AspectRatio.js +4 -0
  195. package/dist/lib/ui/AspectRatio.js.map +1 -0
  196. package/dist/lib/ui/Badge.d.ts +9 -0
  197. package/dist/lib/ui/Badge.js +21 -0
  198. package/dist/lib/ui/Badge.js.map +1 -0
  199. package/dist/lib/ui/Breadcrumb.d.ts +19 -0
  200. package/dist/lib/ui/Breadcrumb.js +24 -0
  201. package/dist/lib/ui/Breadcrumb.js.map +1 -0
  202. package/dist/lib/ui/Button.d.ts +2 -3
  203. package/dist/lib/ui/Button.js +1 -1
  204. package/dist/lib/ui/Button.js.map +1 -1
  205. package/dist/lib/ui/Carousel.d.ts +18 -0
  206. package/dist/lib/ui/Carousel.js +99 -0
  207. package/dist/lib/ui/Carousel.js.map +1 -0
  208. package/dist/lib/ui/Checkbox.d.ts +4 -0
  209. package/dist/lib/ui/Checkbox.js +9 -0
  210. package/dist/lib/ui/Checkbox.js.map +1 -0
  211. package/dist/lib/ui/Collapsible.d.ts +5 -0
  212. package/dist/lib/ui/Collapsible.js +6 -0
  213. package/dist/lib/ui/Collapsible.js.map +1 -0
  214. package/dist/lib/ui/Command.d.ts +80 -0
  215. package/dist/lib/ui/Command.js +31 -0
  216. package/dist/lib/ui/Command.js.map +1 -0
  217. package/dist/lib/{components → ui}/Dialog.js +2 -2
  218. package/dist/lib/ui/Dialog.js.map +1 -0
  219. package/dist/lib/ui/Form.d.ts +23 -0
  220. package/dist/lib/ui/Form.js +63 -0
  221. package/dist/lib/ui/Form.js.map +1 -0
  222. package/dist/lib/ui/HoverCard.d.ts +6 -0
  223. package/dist/lib/ui/HoverCard.js +10 -0
  224. package/dist/lib/ui/HoverCard.js.map +1 -0
  225. package/dist/lib/ui/Label.d.ts +5 -0
  226. package/dist/lib/ui/Label.js +10 -0
  227. package/dist/lib/ui/Label.js.map +1 -0
  228. package/dist/lib/ui/Pagination.d.ts +28 -0
  229. package/dist/lib/ui/Pagination.js +24 -0
  230. package/dist/lib/ui/Pagination.js.map +1 -0
  231. package/dist/lib/ui/Popover.d.ts +6 -0
  232. package/dist/lib/ui/Popover.js +10 -0
  233. package/dist/lib/ui/Popover.js.map +1 -0
  234. package/dist/lib/ui/Progress.d.ts +4 -0
  235. package/dist/lib/ui/Progress.js +8 -0
  236. package/dist/lib/ui/Progress.js.map +1 -0
  237. package/dist/lib/ui/RadioGroup.d.ts +5 -0
  238. package/dist/lib/ui/RadioGroup.js +15 -0
  239. package/dist/lib/ui/RadioGroup.js.map +1 -0
  240. package/dist/lib/ui/ScrollArea.d.ts +5 -0
  241. package/dist/lib/ui/ScrollArea.js +12 -0
  242. package/dist/lib/ui/ScrollArea.js.map +1 -0
  243. package/dist/lib/ui/Select.js.map +1 -0
  244. package/dist/lib/ui/Skeleton.d.ts +2 -0
  245. package/dist/lib/ui/Skeleton.js +7 -0
  246. package/dist/lib/ui/Skeleton.js.map +1 -0
  247. package/dist/lib/ui/Slider.d.ts +4 -0
  248. package/dist/lib/ui/Slider.js +8 -0
  249. package/dist/lib/ui/Slider.js.map +1 -0
  250. package/dist/lib/ui/Switch.d.ts +4 -0
  251. package/dist/lib/ui/Switch.js +8 -0
  252. package/dist/lib/ui/Switch.js.map +1 -0
  253. package/dist/lib/ui/Textarea.d.ts +4 -0
  254. package/dist/lib/ui/Textarea.js +9 -0
  255. package/dist/lib/ui/Textarea.js.map +1 -0
  256. package/dist/lib/ui/Toggle.d.ts +12 -0
  257. package/dist/lib/ui/Toggle.js +26 -0
  258. package/dist/lib/ui/Toggle.js.map +1 -0
  259. package/dist/lib/ui/ToggleGroup.d.ts +12 -0
  260. package/dist/lib/ui/ToggleGroup.js +21 -0
  261. package/dist/lib/ui/ToggleGroup.js.map +1 -0
  262. package/dist/lib/ui/Tooltip.d.ts +7 -0
  263. package/dist/lib/ui/Tooltip.js +11 -0
  264. package/dist/lib/ui/Tooltip.js.map +1 -0
  265. package/dist/lib/util/MdxComponents.d.ts +1 -1
  266. package/dist/lib/util/MdxComponents.js.map +1 -1
  267. package/dist/lib/util/invariant.d.ts +9 -0
  268. package/dist/lib/util/invariant.js +7 -3
  269. package/dist/lib/util/invariant.js.map +1 -1
  270. package/dist/lib/util/useExposedProps.js +3 -2
  271. package/dist/lib/util/useExposedProps.js.map +1 -1
  272. package/dist/lib/util/useIsomorphicLayoutEffect.d.ts +3 -0
  273. package/dist/lib/util/useIsomorphicLayoutEffect.js +4 -0
  274. package/dist/lib/util/useIsomorphicLayoutEffect.js.map +1 -0
  275. package/dist/lib/util/useOnScreen.d.ts +4 -0
  276. package/dist/lib/util/useOnScreen.js +19 -0
  277. package/dist/lib/util/useOnScreen.js.map +1 -0
  278. package/dist/lib/util/useScrollToAnchor.js.map +1 -1
  279. package/dist/vite/build.js +12 -3
  280. package/dist/vite/build.js.map +1 -1
  281. package/dist/vite/config.d.ts +2 -8
  282. package/dist/vite/config.js +24 -60
  283. package/dist/vite/config.js.map +1 -1
  284. package/dist/vite/debug.d.ts +1 -0
  285. package/dist/vite/debug.js +10 -0
  286. package/dist/vite/debug.js.map +1 -0
  287. package/dist/vite/dev-server.js +1 -1
  288. package/dist/vite/dev-server.js.map +1 -1
  289. package/dist/vite/html.js +0 -2
  290. package/dist/vite/html.js.map +1 -1
  291. package/dist/vite/output.d.ts +101 -0
  292. package/dist/vite/output.js +33 -0
  293. package/dist/vite/output.js.map +1 -0
  294. package/dist/vite/plugin-component.js +17 -7
  295. package/dist/vite/plugin-component.js.map +1 -1
  296. package/dist/vite/plugin-config-reload.js +0 -2
  297. package/dist/vite/plugin-config-reload.js.map +1 -1
  298. package/dist/vite/plugin-config.d.ts +2 -3
  299. package/dist/vite/plugin-config.js +2 -3
  300. package/dist/vite/plugin-config.js.map +1 -1
  301. package/dist/vite/plugin-docs.js +37 -26
  302. package/dist/vite/plugin-docs.js.map +1 -1
  303. package/dist/vite/plugin-frontmatter.d.ts +2 -1
  304. package/dist/vite/plugin-frontmatter.js +27 -24
  305. package/dist/vite/plugin-frontmatter.js.map +1 -1
  306. package/dist/vite/plugin-mdx.d.ts +0 -6
  307. package/dist/vite/plugin-mdx.js +3 -2
  308. package/dist/vite/plugin-mdx.js.map +1 -1
  309. package/dist/vite/plugin-search.d.ts +3 -0
  310. package/dist/vite/plugin-search.js +26 -0
  311. package/dist/vite/plugin-search.js.map +1 -0
  312. package/dist/vite/plugin-sidebar.js +7 -6
  313. package/dist/vite/plugin-sidebar.js.map +1 -1
  314. package/dist/vite/plugin.js +4 -4
  315. package/dist/vite/plugin.js.map +1 -1
  316. package/dist/vite/prerender.d.ts +5 -1
  317. package/dist/vite/prerender.js +7 -5
  318. package/dist/vite/prerender.js.map +1 -1
  319. package/dist/vite/remarkStaticGeneration.d.ts +3 -0
  320. package/dist/vite/remarkStaticGeneration.js +125 -0
  321. package/dist/vite/remarkStaticGeneration.js.map +1 -0
  322. package/lib/{utils-C8S3st2k.js → AnchorLink-CDlhr8gL.js} +232 -275
  323. package/lib/AnchorLink-CDlhr8gL.js.map +1 -0
  324. package/lib/{AuthenticationPlugin-D1nhROkO.js → AuthenticationPlugin-DeGDVa1r.js} +6 -5
  325. package/lib/{AuthenticationPlugin-D1nhROkO.js.map → AuthenticationPlugin-DeGDVa1r.js.map} +1 -1
  326. package/lib/Button-jK0EsymC.js +48 -0
  327. package/lib/Button-jK0EsymC.js.map +1 -0
  328. package/lib/{CategoryHeading-B7TlPvuN.js → CategoryHeading-Bb9dqxD3.js} +4 -4
  329. package/lib/{CategoryHeading-B7TlPvuN.js.map → CategoryHeading-Bb9dqxD3.js.map} +1 -1
  330. package/lib/ClientOnly-E7hGysn1.js +11 -0
  331. package/lib/ClientOnly-E7hGysn1.js.map +1 -0
  332. package/lib/Dialog-k70Qfukb.js +67 -0
  333. package/lib/Dialog-k70Qfukb.js.map +1 -0
  334. package/lib/Markdown-BorQdbxW.js +15192 -0
  335. package/lib/Markdown-BorQdbxW.js.map +1 -0
  336. package/lib/{MdxPage-B4FcPIi5.js → MdxPage-DFlbtJWi.js} +33 -31
  337. package/lib/{MdxPage-B4FcPIi5.js.map → MdxPage-DFlbtJWi.js.map} +1 -1
  338. package/lib/OperationList-KshJrrLL.js +4691 -0
  339. package/lib/OperationList-KshJrrLL.js.map +1 -0
  340. package/lib/Route-DlG_HTMu.js +11 -0
  341. package/lib/Route-DlG_HTMu.js.map +1 -0
  342. package/lib/Select-DP74t8Yy.js +223 -0
  343. package/lib/Select-DP74t8Yy.js.map +1 -0
  344. package/lib/SidebarBadge-DxFJcJ6V.js +51 -0
  345. package/lib/SidebarBadge-DxFJcJ6V.js.map +1 -0
  346. package/lib/SlotletProvider-D2v6rJy1.js +252 -0
  347. package/lib/SlotletProvider-D2v6rJy1.js.map +1 -0
  348. package/lib/SyntaxHighlight-CBmwwKoM.js +2983 -0
  349. package/lib/SyntaxHighlight-CBmwwKoM.js.map +1 -0
  350. package/lib/__vite-browser-external-BYRIRx8p.js +9 -0
  351. package/lib/__vite-browser-external-BYRIRx8p.js.map +1 -0
  352. package/lib/_commonjsHelpers-BkfeUUK-.js +29 -0
  353. package/lib/_commonjsHelpers-BkfeUUK-.js.map +1 -0
  354. package/lib/assets/{worker-Bf8vjASY.js → worker-CPsGZsve.js} +565 -561
  355. package/lib/assets/{worker-Bf8vjASY.js.map → worker-CPsGZsve.js.map} +1 -1
  356. package/lib/cn-BmFQLtkS.js +2279 -0
  357. package/lib/cn-BmFQLtkS.js.map +1 -0
  358. package/lib/context-D1nXWxm7.js +22 -0
  359. package/lib/context-D1nXWxm7.js.map +1 -0
  360. package/lib/createServer-DK-g7kbB.js +16089 -0
  361. package/lib/createServer-DK-g7kbB.js.map +1 -0
  362. package/lib/hook-Diu0rqp-.js +229 -0
  363. package/lib/hook-Diu0rqp-.js.map +1 -0
  364. package/lib/index-BcesIHH4.js +1273 -0
  365. package/lib/index-BcesIHH4.js.map +1 -0
  366. package/lib/index-Bn6Lc9tq.js +9 -0
  367. package/lib/{index-DJqnphbT.js.map → index-Bn6Lc9tq.js.map} +1 -1
  368. package/lib/index-BuAyrJe3.js +46 -0
  369. package/lib/index-BuAyrJe3.js.map +1 -0
  370. package/lib/index-Czzd9rjU.js +899 -0
  371. package/lib/index-Czzd9rjU.js.map +1 -0
  372. package/lib/{index-D06ATMgg.js → index-LNp6rxyU.js} +2 -2
  373. package/lib/{index-D06ATMgg.js.map → index-LNp6rxyU.js.map} +1 -1
  374. package/lib/index-Yn8c3UWE.js +921 -0
  375. package/lib/index-Yn8c3UWE.js.map +1 -0
  376. package/lib/index.esm-C5mr_sKO.js +1193 -0
  377. package/lib/index.esm-C5mr_sKO.js.map +1 -0
  378. package/lib/invariant-Caa8-XvF.js +26 -0
  379. package/lib/invariant-Caa8-XvF.js.map +1 -0
  380. package/lib/{router-BsfSoK2j.js → router-lfyopgBI.js} +23 -23
  381. package/lib/{router-BsfSoK2j.js.map → router-lfyopgBI.js.map} +1 -1
  382. package/lib/state-BsPrOUAh.js +252 -0
  383. package/lib/state-BsPrOUAh.js.map +1 -0
  384. package/lib/ui/Accordion.js +47 -0
  385. package/lib/ui/Accordion.js.map +1 -0
  386. package/lib/ui/ActionButton.js +25 -0
  387. package/lib/ui/ActionButton.js.map +1 -0
  388. package/lib/ui/Alert.js +51 -0
  389. package/lib/ui/Alert.js.map +1 -0
  390. package/lib/ui/AlertDialog.js +114 -0
  391. package/lib/ui/AlertDialog.js.map +1 -0
  392. package/lib/ui/AspectRatio.js +6 -0
  393. package/lib/ui/AspectRatio.js.map +1 -0
  394. package/lib/ui/Badge.js +27 -0
  395. package/lib/ui/Badge.js.map +1 -0
  396. package/lib/ui/Breadcrumb.js +94 -0
  397. package/lib/ui/Breadcrumb.js.map +1 -0
  398. package/lib/ui/Button.js +49 -0
  399. package/lib/ui/Button.js.map +1 -0
  400. package/lib/ui/Callout.js +77 -0
  401. package/lib/ui/Callout.js.map +1 -0
  402. package/lib/ui/Card.js +62 -0
  403. package/lib/ui/Card.js.map +1 -0
  404. package/lib/ui/Carousel.js +1410 -0
  405. package/lib/ui/Carousel.js.map +1 -0
  406. package/lib/ui/Checkbox.js +28 -0
  407. package/lib/ui/Checkbox.js.map +1 -0
  408. package/lib/ui/Collapsible.js +8 -0
  409. package/lib/ui/Collapsible.js.map +1 -0
  410. package/lib/ui/Command.js +550 -0
  411. package/lib/ui/Command.js.map +1 -0
  412. package/lib/ui/Dialog.js +101 -0
  413. package/lib/ui/Dialog.js.map +1 -0
  414. package/lib/ui/Drawer.js +1153 -0
  415. package/lib/ui/Drawer.js.map +1 -0
  416. package/lib/ui/DropdownMenu.js +145 -0
  417. package/lib/ui/DropdownMenu.js.map +1 -0
  418. package/lib/ui/Form.js +95 -0
  419. package/lib/ui/Form.js.map +1 -0
  420. package/lib/ui/HoverCard.js +24 -0
  421. package/lib/ui/HoverCard.js.map +1 -0
  422. package/lib/ui/Input.js +22 -0
  423. package/lib/ui/Input.js.map +1 -0
  424. package/lib/ui/Label.js +20 -0
  425. package/lib/ui/Label.js.map +1 -0
  426. package/lib/ui/Pagination.js +106 -0
  427. package/lib/ui/Pagination.js.map +1 -0
  428. package/lib/ui/Popover.js +24 -0
  429. package/lib/ui/Popover.js.map +1 -0
  430. package/lib/ui/Progress.js +27 -0
  431. package/lib/ui/Progress.js.map +1 -0
  432. package/lib/ui/RadioGroup.js +32 -0
  433. package/lib/ui/RadioGroup.js.map +1 -0
  434. package/lib/ui/ScrollArea.js +39 -0
  435. package/lib/ui/ScrollArea.js.map +1 -0
  436. package/lib/ui/Select.js +122 -0
  437. package/lib/ui/Select.js.map +1 -0
  438. package/lib/ui/Skeleton.js +18 -0
  439. package/lib/ui/Skeleton.js.map +1 -0
  440. package/lib/ui/Slider.js +24 -0
  441. package/lib/ui/Slider.js.map +1 -0
  442. package/lib/ui/Switch.js +28 -0
  443. package/lib/ui/Switch.js.map +1 -0
  444. package/lib/ui/Tabs.js +47 -0
  445. package/lib/ui/Tabs.js.map +1 -0
  446. package/lib/ui/Textarea.js +21 -0
  447. package/lib/ui/Textarea.js.map +1 -0
  448. package/lib/ui/Toggle.js +38 -0
  449. package/lib/ui/Toggle.js.map +1 -0
  450. package/lib/ui/ToggleGroup.js +42 -0
  451. package/lib/ui/ToggleGroup.js.map +1 -0
  452. package/lib/ui/Tooltip.js +24 -0
  453. package/lib/ui/Tooltip.js.map +1 -0
  454. package/lib/useExposedProps-CTPtylCV.js +10 -0
  455. package/lib/useExposedProps-CTPtylCV.js.map +1 -0
  456. package/lib/{ZudokuContext-MRoel6bS.js → utils-DcpDOncX.js} +455 -410
  457. package/lib/utils-DcpDOncX.js.map +1 -0
  458. package/lib/zudoku.auth-auth0.js +24 -19
  459. package/lib/zudoku.auth-auth0.js.map +1 -1
  460. package/lib/zudoku.auth-clerk.js +2 -2
  461. package/lib/zudoku.auth-openid.js +482 -488
  462. package/lib/zudoku.auth-openid.js.map +1 -1
  463. package/lib/zudoku.components.js +1109 -2963
  464. package/lib/zudoku.components.js.map +1 -1
  465. package/lib/zudoku.openapi-worker.js +10 -16336
  466. package/lib/zudoku.openapi-worker.js.map +1 -1
  467. package/lib/zudoku.plugin-api-keys.js +68 -75
  468. package/lib/zudoku.plugin-api-keys.js.map +1 -1
  469. package/lib/zudoku.plugin-custom-pages.js +9 -8
  470. package/lib/zudoku.plugin-custom-pages.js.map +1 -1
  471. package/lib/zudoku.plugin-markdown.js +93 -27
  472. package/lib/zudoku.plugin-markdown.js.map +1 -1
  473. package/lib/zudoku.plugin-openapi.js +6 -11
  474. package/lib/zudoku.plugin-openapi.js.map +1 -1
  475. package/lib/zudoku.plugin-redirect.js +2 -2
  476. package/lib/zudoku.plugin-redirect.js.map +1 -1
  477. package/lib/zudoku.plugin-search-inkeep.js +9 -13
  478. package/lib/zudoku.plugin-search-inkeep.js.map +1 -1
  479. package/package.json +42 -10
  480. package/src/app/demo.tsx +0 -3
  481. package/src/app/entry.client.tsx +18 -2
  482. package/src/app/entry.server.tsx +60 -50
  483. package/src/app/main.css +5 -2
  484. package/src/app/main.tsx +16 -34
  485. package/src/app/standalone.tsx +1 -4
  486. package/src/lib/authentication/authentication.ts +2 -2
  487. package/src/lib/authentication/components/CallbackHandler.tsx +20 -51
  488. package/src/lib/authentication/hook.ts +1 -1
  489. package/src/lib/authentication/providers/auth0.tsx +15 -10
  490. package/src/lib/authentication/state.ts +12 -5
  491. package/{LICENSE.md → src/lib/authentication/use-broadcast/LICENSE.md} +2 -2
  492. package/src/lib/authentication/use-broadcast/shared.ts +372 -0
  493. package/src/lib/authentication/use-broadcast/useBroadcast.ts +146 -0
  494. package/src/lib/components/Bootstrap.tsx +36 -9
  495. package/src/lib/components/ClientOnly.tsx +6 -3
  496. package/src/lib/components/DeveloperHint.tsx +6 -1
  497. package/src/lib/components/Header.tsx +50 -40
  498. package/src/lib/components/MobileTopNavigation.tsx +9 -1
  499. package/src/lib/components/SlotletProvider.tsx +2 -0
  500. package/src/lib/components/SyntaxHighlight.tsx +84 -46
  501. package/src/lib/components/ThemeSwitch.tsx +24 -0
  502. package/src/lib/components/TopNavigation.tsx +70 -23
  503. package/src/lib/components/Zudoku.tsx +108 -0
  504. package/src/lib/components/context/ZudokuContext.ts +33 -30
  505. package/src/lib/components/context/ZudokuProvider.tsx +2 -2
  506. package/src/lib/components/index.ts +14 -6
  507. package/src/lib/components/navigation/Sidebar.tsx +5 -5
  508. package/src/lib/components/navigation/SidebarCategory.tsx +13 -13
  509. package/src/lib/components/navigation/SidebarItem.tsx +3 -5
  510. package/src/lib/components/navigation/utils.ts +11 -16
  511. package/src/lib/core/{DevPortalContext.ts → ZudokuContext.ts} +6 -13
  512. package/src/lib/core/plugins.ts +14 -16
  513. package/src/lib/errors/ErrorAlert.tsx +20 -6
  514. package/src/lib/oas/graphql/index.ts +4 -4
  515. package/src/lib/oas/parser/upgrade/index.ts +3 -1
  516. package/src/lib/plugins/api-keys/CreateApiKey.tsx +2 -2
  517. package/src/lib/plugins/api-keys/index.tsx +9 -9
  518. package/src/lib/plugins/custom-pages/CustomPage.tsx +2 -2
  519. package/src/lib/plugins/custom-pages/index.tsx +2 -2
  520. package/src/lib/plugins/markdown/index.tsx +50 -13
  521. package/src/lib/plugins/markdown/resolver.ts +92 -0
  522. package/src/lib/plugins/openapi/CollapsibleCode.tsx +80 -0
  523. package/src/lib/plugins/openapi/ColorizedParam.tsx +23 -14
  524. package/src/lib/plugins/openapi/Endpoint.tsx +7 -12
  525. package/src/lib/plugins/openapi/OperationList.tsx +20 -40
  526. package/src/lib/plugins/openapi/ParameterListItem.tsx +37 -31
  527. package/src/lib/plugins/openapi/RequestBodySidecarBox.tsx +18 -13
  528. package/src/lib/plugins/openapi/ResponsesSidecarBox.tsx +17 -12
  529. package/src/lib/plugins/openapi/Route.tsx +11 -12
  530. package/src/lib/plugins/openapi/Sidecar.tsx +73 -59
  531. package/src/lib/plugins/openapi/client/GraphQLClient.tsx +140 -0
  532. package/src/lib/plugins/openapi/client/GraphQLContext.tsx +16 -0
  533. package/src/lib/plugins/openapi/client/createServer.ts +2 -0
  534. package/src/lib/plugins/openapi/client/useCreateQuery.ts +18 -0
  535. package/src/lib/plugins/openapi/client/worker.ts +38 -24
  536. package/src/lib/plugins/openapi/graphql/fragment-masking.ts +11 -18
  537. package/src/lib/plugins/openapi/graphql/gql.ts +10 -27
  538. package/src/lib/plugins/openapi/graphql/graphql.ts +233 -665
  539. package/src/lib/plugins/openapi/index.tsx +42 -67
  540. package/src/lib/plugins/openapi/playground/Playground.tsx +4 -3
  541. package/src/lib/plugins/openapi/playground/PlaygroundDialog.tsx +1 -1
  542. package/src/lib/plugins/openapi/schema/SchemaView.tsx +4 -1
  543. package/src/lib/plugins/openapi/util/generateSchemaExample.ts +28 -42
  544. package/src/lib/plugins/openapi-worker.ts +11 -1
  545. package/src/lib/plugins/redirect/index.tsx +5 -9
  546. package/src/lib/plugins/search-inkeep/index.tsx +2 -2
  547. package/src/lib/ui/Accordion.tsx +56 -0
  548. package/src/lib/ui/ActionButton.tsx +28 -0
  549. package/src/lib/ui/{Note.tsx → Alert.tsx} +11 -10
  550. package/src/lib/ui/AlertDialog.tsx +139 -0
  551. package/src/lib/ui/AspectRatio.tsx +5 -0
  552. package/src/lib/ui/Badge.tsx +36 -0
  553. package/src/lib/ui/Breadcrumb.tsx +115 -0
  554. package/src/lib/ui/Button.tsx +1 -1
  555. package/src/lib/ui/Carousel.tsx +260 -0
  556. package/src/lib/ui/Checkbox.tsx +28 -0
  557. package/src/lib/ui/Collapsible.tsx +9 -0
  558. package/src/lib/ui/Command.tsx +151 -0
  559. package/src/lib/{components → ui}/Dialog.tsx +4 -3
  560. package/src/lib/ui/Form.tsx +177 -0
  561. package/src/lib/ui/HoverCard.tsx +27 -0
  562. package/src/lib/ui/Label.tsx +24 -0
  563. package/src/lib/ui/Pagination.tsx +117 -0
  564. package/src/lib/ui/Popover.tsx +29 -0
  565. package/src/lib/ui/Progress.tsx +26 -0
  566. package/src/lib/ui/RadioGroup.tsx +42 -0
  567. package/src/lib/ui/ScrollArea.tsx +46 -0
  568. package/src/lib/ui/Skeleton.tsx +15 -0
  569. package/src/lib/ui/Slider.tsx +26 -0
  570. package/src/lib/ui/Switch.tsx +27 -0
  571. package/src/lib/ui/Textarea.tsx +23 -0
  572. package/src/lib/ui/Toggle.tsx +43 -0
  573. package/src/lib/ui/ToggleGroup.tsx +59 -0
  574. package/src/lib/ui/Tooltip.tsx +28 -0
  575. package/src/lib/util/MdxComponents.tsx +0 -1
  576. package/src/lib/util/invariant.ts +15 -3
  577. package/src/lib/util/useExposedProps.tsx +8 -2
  578. package/src/lib/util/useIsomorphicLayoutEffect.ts +5 -0
  579. package/src/lib/util/useOnScreen.ts +32 -0
  580. package/src/lib/util/useScrollToAnchor.ts +1 -1
  581. package/dist/internal.d.ts +0 -1
  582. package/dist/internal.js +0 -2
  583. package/dist/internal.js.map +0 -1
  584. package/dist/lib/components/DevPortal.js.map +0 -1
  585. package/dist/lib/components/Dialog.js.map +0 -1
  586. package/dist/lib/components/Select.js.map +0 -1
  587. package/dist/lib/components/context/ThemeContext.d.ts +0 -2
  588. package/dist/lib/components/context/ThemeContext.js +0 -7
  589. package/dist/lib/components/context/ThemeContext.js.map +0 -1
  590. package/dist/lib/components/context/ThemeProvider.d.ts +0 -4
  591. package/dist/lib/components/context/ThemeProvider.js +0 -23
  592. package/dist/lib/components/context/ThemeProvider.js.map +0 -1
  593. package/dist/lib/core/DevPortalContext.js.map +0 -1
  594. package/dist/lib/plugins/markdown/generateRoutes.d.ts +0 -3
  595. package/dist/lib/plugins/markdown/generateRoutes.js +0 -21
  596. package/dist/lib/plugins/markdown/generateRoutes.js.map +0 -1
  597. package/dist/lib/plugins/openapi/client/createMemoryClient.d.ts +0 -12
  598. package/dist/lib/plugins/openapi/client/createMemoryClient.js +0 -46
  599. package/dist/lib/plugins/openapi/client/createMemoryClient.js.map +0 -1
  600. package/dist/lib/plugins/openapi/client/createWorkerClient.d.ts +0 -10
  601. package/dist/lib/plugins/openapi/client/createWorkerClient.js +0 -61
  602. package/dist/lib/plugins/openapi/client/createWorkerClient.js.map +0 -1
  603. package/dist/lib/plugins/openapi/client/interfaces.d.ts +0 -4
  604. package/dist/lib/plugins/openapi/client/interfaces.js +0 -2
  605. package/dist/lib/plugins/openapi/client/interfaces.js.map +0 -1
  606. package/dist/lib/themeToggle.d.ts +0 -1
  607. package/dist/lib/themeToggle.js +0 -7
  608. package/dist/lib/themeToggle.js.map +0 -1
  609. package/dist/lib/ui/Note.d.ts +0 -8
  610. package/dist/lib/ui/Note.js +0 -23
  611. package/dist/lib/ui/Note.js.map +0 -1
  612. package/dist/lib/util/createWaitForNotify.d.ts +0 -1
  613. package/dist/lib/util/createWaitForNotify.js +0 -15
  614. package/dist/lib/util/createWaitForNotify.js.map +0 -1
  615. package/dist/vite/plugin-html-transform.d.ts +0 -2
  616. package/dist/vite/plugin-html-transform.js +0 -15
  617. package/dist/vite/plugin-html-transform.js.map +0 -1
  618. package/lib/DeveloperHint-B_QCCafl.js +0 -16
  619. package/lib/DeveloperHint-B_QCCafl.js.map +0 -1
  620. package/lib/ErrorPage-DqqAV1dr.js +0 -16
  621. package/lib/ErrorPage-DqqAV1dr.js.map +0 -1
  622. package/lib/Input-a9rLgbP_.js +0 -2229
  623. package/lib/Input-a9rLgbP_.js.map +0 -1
  624. package/lib/Markdown-Y__eLG0x.js +0 -20441
  625. package/lib/Markdown-Y__eLG0x.js.map +0 -1
  626. package/lib/OperationList-DuPG2FA2.js +0 -601
  627. package/lib/OperationList-DuPG2FA2.js.map +0 -1
  628. package/lib/Route-Bb3QClHu.js +0 -13
  629. package/lib/Route-Bb3QClHu.js.map +0 -1
  630. package/lib/SidebarBadge-BdzN0ZBK.js +0 -503
  631. package/lib/SidebarBadge-BdzN0ZBK.js.map +0 -1
  632. package/lib/SlotletProvider-DmqWiVFt.js +0 -239
  633. package/lib/SlotletProvider-DmqWiVFt.js.map +0 -1
  634. package/lib/ZudokuContext-MRoel6bS.js.map +0 -1
  635. package/lib/index-BijFM__9.js +0 -124
  636. package/lib/index-BijFM__9.js.map +0 -1
  637. package/lib/index-CCa8ojDW.js +0 -5964
  638. package/lib/index-CCa8ojDW.js.map +0 -1
  639. package/lib/index-DFN92YJN.js +0 -1782
  640. package/lib/index-DFN92YJN.js.map +0 -1
  641. package/lib/index-DJqnphbT.js +0 -35
  642. package/lib/index-_GxJ8hpM.js +0 -2867
  643. package/lib/index-_GxJ8hpM.js.map +0 -1
  644. package/lib/joinPath-B7kNnUX4.js +0 -8
  645. package/lib/joinPath-B7kNnUX4.js.map +0 -1
  646. package/lib/state-CsuHT8ZO.js +0 -183
  647. package/lib/state-CsuHT8ZO.js.map +0 -1
  648. package/lib/urql-core-KJnLL26g.js +0 -1455
  649. package/lib/urql-core-KJnLL26g.js.map +0 -1
  650. package/lib/useExposedProps-BWwxa-Hg.js +0 -9
  651. package/lib/useExposedProps-BWwxa-Hg.js.map +0 -1
  652. package/lib/utils-C8S3st2k.js.map +0 -1
  653. package/src/lib/components/DevPortal.tsx +0 -111
  654. package/src/lib/components/context/ThemeContext.tsx +0 -8
  655. package/src/lib/components/context/ThemeProvider.tsx +0 -27
  656. package/src/lib/plugins/markdown/generateRoutes.tsx +0 -38
  657. package/src/lib/plugins/openapi/client/createMemoryClient.ts +0 -51
  658. package/src/lib/plugins/openapi/client/createWorkerClient.ts +0 -75
  659. package/src/lib/plugins/openapi/client/interfaces.ts +0 -5
  660. package/src/lib/themeToggle.ts +0 -7
  661. package/src/lib/util/createWaitForNotify.ts +0 -18
  662. /package/dist/lib/{components → ui}/Dialog.d.ts +0 -0
  663. /package/dist/lib/{components → ui}/Select.d.ts +0 -0
  664. /package/dist/lib/{components → ui}/Select.js +0 -0
  665. /package/src/lib/{components → ui}/Select.tsx +0 -0
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable */
2
- import type { TypedDocumentNode as DocumentNode } from "@graphql-typed-document-node/core";
2
+ import type { DocumentTypeDecoration } from "@graphql-typed-document-node/core";
3
3
  export type Maybe<T> = T | null;
4
4
  export type InputMaybe<T> = Maybe<T>;
5
5
  export type Exact<T extends { [key: string]: unknown }> = {
@@ -49,7 +49,7 @@ export type ExampleItem = {
49
49
  externalValue?: Maybe<Scalars["String"]["output"]>;
50
50
  name: Scalars["String"]["output"];
51
51
  summary?: Maybe<Scalars["String"]["output"]>;
52
- value?: Maybe<Scalars["String"]["output"]>;
52
+ value?: Maybe<Scalars["JSON"]["output"]>;
53
53
  };
54
54
 
55
55
  export type MediaTypeObject = {
@@ -206,7 +206,7 @@ export type OperationsFragmentFragment = {
206
206
  name: string;
207
207
  description?: string | null;
208
208
  externalValue?: string | null;
209
- value?: string | null;
209
+ value?: any | null;
210
210
  summary?: string | null;
211
211
  }> | null;
212
212
  }> | null;
@@ -219,6 +219,14 @@ export type OperationsFragmentFragment = {
219
219
  mediaType: string;
220
220
  schema?: any | null;
221
221
  encoding?: Array<{ __typename?: "EncodingItem"; name: string }> | null;
222
+ examples?: Array<{
223
+ __typename?: "ExampleItem";
224
+ name: string;
225
+ description?: string | null;
226
+ externalValue?: string | null;
227
+ value?: any | null;
228
+ summary?: string | null;
229
+ }> | null;
222
230
  }> | null;
223
231
  } | null;
224
232
  responses: Array<{
@@ -230,6 +238,14 @@ export type OperationsFragmentFragment = {
230
238
  __typename?: "MediaTypeObject";
231
239
  mediaType: string;
232
240
  schema?: any | null;
241
+ examples?: Array<{
242
+ __typename?: "ExampleItem";
243
+ name: string;
244
+ description?: string | null;
245
+ externalValue?: string | null;
246
+ value?: any | null;
247
+ summary?: string | null;
248
+ }> | null;
233
249
  encoding?: Array<{ __typename?: "EncodingItem"; name: string }> | null;
234
250
  }> | null;
235
251
  }>;
@@ -286,6 +302,7 @@ export type GetCategoriesQuery = {
286
302
  __typename?: "Query";
287
303
  schema: {
288
304
  __typename?: "Schema";
305
+ url: string;
289
306
  tags: Array<{
290
307
  __typename: "SchemaTag";
291
308
  name?: string | null;
@@ -302,665 +319,216 @@ export type GetCategoriesQuery = {
302
319
  };
303
320
  };
304
321
 
305
- export const OperationsFragmentFragmentDoc = {
306
- kind: "Document",
307
- definitions: [
308
- {
309
- kind: "FragmentDefinition",
310
- name: { kind: "Name", value: "OperationsFragment" },
311
- typeCondition: {
312
- kind: "NamedType",
313
- name: { kind: "Name", value: "OperationItem" },
314
- },
315
- selectionSet: {
316
- kind: "SelectionSet",
317
- selections: [
318
- { kind: "Field", name: { kind: "Name", value: "slug" } },
319
- { kind: "Field", name: { kind: "Name", value: "summary" } },
320
- { kind: "Field", name: { kind: "Name", value: "method" } },
321
- { kind: "Field", name: { kind: "Name", value: "description" } },
322
- { kind: "Field", name: { kind: "Name", value: "operationId" } },
323
- { kind: "Field", name: { kind: "Name", value: "contentTypes" } },
324
- { kind: "Field", name: { kind: "Name", value: "path" } },
325
- {
326
- kind: "Field",
327
- name: { kind: "Name", value: "parameters" },
328
- selectionSet: {
329
- kind: "SelectionSet",
330
- selections: [
331
- { kind: "Field", name: { kind: "Name", value: "name" } },
332
- { kind: "Field", name: { kind: "Name", value: "in" } },
333
- { kind: "Field", name: { kind: "Name", value: "description" } },
334
- { kind: "Field", name: { kind: "Name", value: "required" } },
335
- { kind: "Field", name: { kind: "Name", value: "schema" } },
336
- { kind: "Field", name: { kind: "Name", value: "style" } },
337
- {
338
- kind: "Field",
339
- name: { kind: "Name", value: "examples" },
340
- selectionSet: {
341
- kind: "SelectionSet",
342
- selections: [
343
- { kind: "Field", name: { kind: "Name", value: "name" } },
344
- {
345
- kind: "Field",
346
- name: { kind: "Name", value: "description" },
347
- },
348
- {
349
- kind: "Field",
350
- name: { kind: "Name", value: "externalValue" },
351
- },
352
- { kind: "Field", name: { kind: "Name", value: "value" } },
353
- {
354
- kind: "Field",
355
- name: { kind: "Name", value: "summary" },
356
- },
357
- ],
358
- },
359
- },
360
- ],
361
- },
362
- },
363
- {
364
- kind: "Field",
365
- name: { kind: "Name", value: "requestBody" },
366
- selectionSet: {
367
- kind: "SelectionSet",
368
- selections: [
369
- {
370
- kind: "Field",
371
- name: { kind: "Name", value: "content" },
372
- selectionSet: {
373
- kind: "SelectionSet",
374
- selections: [
375
- {
376
- kind: "Field",
377
- name: { kind: "Name", value: "mediaType" },
378
- },
379
- {
380
- kind: "Field",
381
- name: { kind: "Name", value: "encoding" },
382
- selectionSet: {
383
- kind: "SelectionSet",
384
- selections: [
385
- {
386
- kind: "Field",
387
- name: { kind: "Name", value: "name" },
388
- },
389
- ],
390
- },
391
- },
392
- {
393
- kind: "Field",
394
- name: { kind: "Name", value: "schema" },
395
- },
396
- ],
397
- },
398
- },
399
- { kind: "Field", name: { kind: "Name", value: "description" } },
400
- { kind: "Field", name: { kind: "Name", value: "required" } },
401
- ],
402
- },
403
- },
404
- {
405
- kind: "Field",
406
- name: { kind: "Name", value: "responses" },
407
- selectionSet: {
408
- kind: "SelectionSet",
409
- selections: [
410
- { kind: "Field", name: { kind: "Name", value: "statusCode" } },
411
- { kind: "Field", name: { kind: "Name", value: "links" } },
412
- { kind: "Field", name: { kind: "Name", value: "description" } },
413
- {
414
- kind: "Field",
415
- name: { kind: "Name", value: "content" },
416
- selectionSet: {
417
- kind: "SelectionSet",
418
- selections: [
419
- {
420
- kind: "Field",
421
- name: { kind: "Name", value: "mediaType" },
422
- },
423
- {
424
- kind: "Field",
425
- name: { kind: "Name", value: "encoding" },
426
- selectionSet: {
427
- kind: "SelectionSet",
428
- selections: [
429
- {
430
- kind: "Field",
431
- name: { kind: "Name", value: "name" },
432
- },
433
- ],
434
- },
435
- },
436
- {
437
- kind: "Field",
438
- name: { kind: "Name", value: "schema" },
439
- },
440
- ],
441
- },
442
- },
443
- ],
444
- },
445
- },
446
- ],
447
- },
448
- },
449
- ],
450
- } as unknown as DocumentNode<OperationsFragmentFragment, unknown>;
451
- export const ServersQueryDocument = {
452
- kind: "Document",
453
- definitions: [
454
- {
455
- kind: "OperationDefinition",
456
- operation: "query",
457
- name: { kind: "Name", value: "ServersQuery" },
458
- variableDefinitions: [
459
- {
460
- kind: "VariableDefinition",
461
- variable: {
462
- kind: "Variable",
463
- name: { kind: "Name", value: "input" },
464
- },
465
- type: {
466
- kind: "NonNullType",
467
- type: { kind: "NamedType", name: { kind: "Name", value: "JSON" } },
468
- },
469
- },
470
- {
471
- kind: "VariableDefinition",
472
- variable: { kind: "Variable", name: { kind: "Name", value: "type" } },
473
- type: {
474
- kind: "NonNullType",
475
- type: {
476
- kind: "NamedType",
477
- name: { kind: "Name", value: "SchemaType" },
478
- },
479
- },
480
- },
481
- ],
482
- selectionSet: {
483
- kind: "SelectionSet",
484
- selections: [
485
- {
486
- kind: "Field",
487
- name: { kind: "Name", value: "schema" },
488
- arguments: [
489
- {
490
- kind: "Argument",
491
- name: { kind: "Name", value: "input" },
492
- value: {
493
- kind: "Variable",
494
- name: { kind: "Name", value: "input" },
495
- },
496
- },
497
- {
498
- kind: "Argument",
499
- name: { kind: "Name", value: "type" },
500
- value: {
501
- kind: "Variable",
502
- name: { kind: "Name", value: "type" },
503
- },
504
- },
505
- ],
506
- selectionSet: {
507
- kind: "SelectionSet",
508
- selections: [
509
- { kind: "Field", name: { kind: "Name", value: "url" } },
510
- {
511
- kind: "Field",
512
- name: { kind: "Name", value: "servers" },
513
- selectionSet: {
514
- kind: "SelectionSet",
515
- selections: [
516
- { kind: "Field", name: { kind: "Name", value: "url" } },
517
- ],
518
- },
519
- },
520
- ],
521
- },
522
- },
523
- ],
524
- },
525
- },
526
- ],
527
- } as unknown as DocumentNode<ServersQueryQuery, ServersQueryQueryVariables>;
528
- export const AllOperationsDocument = {
529
- kind: "Document",
530
- definitions: [
531
- {
532
- kind: "OperationDefinition",
533
- operation: "query",
534
- name: { kind: "Name", value: "AllOperations" },
535
- variableDefinitions: [
536
- {
537
- kind: "VariableDefinition",
538
- variable: {
539
- kind: "Variable",
540
- name: { kind: "Name", value: "input" },
541
- },
542
- type: {
543
- kind: "NonNullType",
544
- type: { kind: "NamedType", name: { kind: "Name", value: "JSON" } },
545
- },
546
- },
547
- {
548
- kind: "VariableDefinition",
549
- variable: { kind: "Variable", name: { kind: "Name", value: "type" } },
550
- type: {
551
- kind: "NonNullType",
552
- type: {
553
- kind: "NamedType",
554
- name: { kind: "Name", value: "SchemaType" },
555
- },
556
- },
557
- },
558
- ],
559
- selectionSet: {
560
- kind: "SelectionSet",
561
- selections: [
562
- {
563
- kind: "Field",
564
- name: { kind: "Name", value: "schema" },
565
- arguments: [
566
- {
567
- kind: "Argument",
568
- name: { kind: "Name", value: "input" },
569
- value: {
570
- kind: "Variable",
571
- name: { kind: "Name", value: "input" },
572
- },
573
- },
574
- {
575
- kind: "Argument",
576
- name: { kind: "Name", value: "type" },
577
- value: {
578
- kind: "Variable",
579
- name: { kind: "Name", value: "type" },
580
- },
581
- },
582
- ],
583
- selectionSet: {
584
- kind: "SelectionSet",
585
- selections: [
586
- { kind: "Field", name: { kind: "Name", value: "description" } },
587
- { kind: "Field", name: { kind: "Name", value: "title" } },
588
- { kind: "Field", name: { kind: "Name", value: "url" } },
589
- { kind: "Field", name: { kind: "Name", value: "version" } },
590
- {
591
- kind: "Field",
592
- name: { kind: "Name", value: "tags" },
593
- selectionSet: {
594
- kind: "SelectionSet",
595
- selections: [
596
- { kind: "Field", name: { kind: "Name", value: "name" } },
597
- {
598
- kind: "Field",
599
- name: { kind: "Name", value: "description" },
600
- },
601
- {
602
- kind: "Field",
603
- name: { kind: "Name", value: "operations" },
604
- selectionSet: {
605
- kind: "SelectionSet",
606
- selections: [
607
- {
608
- kind: "Field",
609
- name: { kind: "Name", value: "slug" },
610
- },
611
- {
612
- kind: "FragmentSpread",
613
- name: {
614
- kind: "Name",
615
- value: "OperationsFragment",
616
- },
617
- },
618
- ],
619
- },
620
- },
621
- ],
622
- },
623
- },
624
- ],
625
- },
626
- },
627
- ],
628
- },
629
- },
630
- {
631
- kind: "FragmentDefinition",
632
- name: { kind: "Name", value: "OperationsFragment" },
633
- typeCondition: {
634
- kind: "NamedType",
635
- name: { kind: "Name", value: "OperationItem" },
636
- },
637
- selectionSet: {
638
- kind: "SelectionSet",
639
- selections: [
640
- { kind: "Field", name: { kind: "Name", value: "slug" } },
641
- { kind: "Field", name: { kind: "Name", value: "summary" } },
642
- { kind: "Field", name: { kind: "Name", value: "method" } },
643
- { kind: "Field", name: { kind: "Name", value: "description" } },
644
- { kind: "Field", name: { kind: "Name", value: "operationId" } },
645
- { kind: "Field", name: { kind: "Name", value: "contentTypes" } },
646
- { kind: "Field", name: { kind: "Name", value: "path" } },
647
- {
648
- kind: "Field",
649
- name: { kind: "Name", value: "parameters" },
650
- selectionSet: {
651
- kind: "SelectionSet",
652
- selections: [
653
- { kind: "Field", name: { kind: "Name", value: "name" } },
654
- { kind: "Field", name: { kind: "Name", value: "in" } },
655
- { kind: "Field", name: { kind: "Name", value: "description" } },
656
- { kind: "Field", name: { kind: "Name", value: "required" } },
657
- { kind: "Field", name: { kind: "Name", value: "schema" } },
658
- { kind: "Field", name: { kind: "Name", value: "style" } },
659
- {
660
- kind: "Field",
661
- name: { kind: "Name", value: "examples" },
662
- selectionSet: {
663
- kind: "SelectionSet",
664
- selections: [
665
- { kind: "Field", name: { kind: "Name", value: "name" } },
666
- {
667
- kind: "Field",
668
- name: { kind: "Name", value: "description" },
669
- },
670
- {
671
- kind: "Field",
672
- name: { kind: "Name", value: "externalValue" },
673
- },
674
- { kind: "Field", name: { kind: "Name", value: "value" } },
675
- {
676
- kind: "Field",
677
- name: { kind: "Name", value: "summary" },
678
- },
679
- ],
680
- },
681
- },
682
- ],
683
- },
684
- },
685
- {
686
- kind: "Field",
687
- name: { kind: "Name", value: "requestBody" },
688
- selectionSet: {
689
- kind: "SelectionSet",
690
- selections: [
691
- {
692
- kind: "Field",
693
- name: { kind: "Name", value: "content" },
694
- selectionSet: {
695
- kind: "SelectionSet",
696
- selections: [
697
- {
698
- kind: "Field",
699
- name: { kind: "Name", value: "mediaType" },
700
- },
701
- {
702
- kind: "Field",
703
- name: { kind: "Name", value: "encoding" },
704
- selectionSet: {
705
- kind: "SelectionSet",
706
- selections: [
707
- {
708
- kind: "Field",
709
- name: { kind: "Name", value: "name" },
710
- },
711
- ],
712
- },
713
- },
714
- {
715
- kind: "Field",
716
- name: { kind: "Name", value: "schema" },
717
- },
718
- ],
719
- },
720
- },
721
- { kind: "Field", name: { kind: "Name", value: "description" } },
722
- { kind: "Field", name: { kind: "Name", value: "required" } },
723
- ],
724
- },
725
- },
726
- {
727
- kind: "Field",
728
- name: { kind: "Name", value: "responses" },
729
- selectionSet: {
730
- kind: "SelectionSet",
731
- selections: [
732
- { kind: "Field", name: { kind: "Name", value: "statusCode" } },
733
- { kind: "Field", name: { kind: "Name", value: "links" } },
734
- { kind: "Field", name: { kind: "Name", value: "description" } },
735
- {
736
- kind: "Field",
737
- name: { kind: "Name", value: "content" },
738
- selectionSet: {
739
- kind: "SelectionSet",
740
- selections: [
741
- {
742
- kind: "Field",
743
- name: { kind: "Name", value: "mediaType" },
744
- },
745
- {
746
- kind: "Field",
747
- name: { kind: "Name", value: "encoding" },
748
- selectionSet: {
749
- kind: "SelectionSet",
750
- selections: [
751
- {
752
- kind: "Field",
753
- name: { kind: "Name", value: "name" },
754
- },
755
- ],
756
- },
757
- },
758
- {
759
- kind: "Field",
760
- name: { kind: "Name", value: "schema" },
761
- },
762
- ],
763
- },
764
- },
765
- ],
766
- },
767
- },
768
- ],
769
- },
770
- },
771
- ],
772
- } as unknown as DocumentNode<AllOperationsQuery, AllOperationsQueryVariables>;
773
- export const GetServerQueryDocument = {
774
- kind: "Document",
775
- definitions: [
776
- {
777
- kind: "OperationDefinition",
778
- operation: "query",
779
- name: { kind: "Name", value: "getServerQuery" },
780
- variableDefinitions: [
781
- {
782
- kind: "VariableDefinition",
783
- variable: {
784
- kind: "Variable",
785
- name: { kind: "Name", value: "input" },
786
- },
787
- type: {
788
- kind: "NonNullType",
789
- type: { kind: "NamedType", name: { kind: "Name", value: "JSON" } },
790
- },
791
- },
792
- {
793
- kind: "VariableDefinition",
794
- variable: { kind: "Variable", name: { kind: "Name", value: "type" } },
795
- type: {
796
- kind: "NonNullType",
797
- type: {
798
- kind: "NamedType",
799
- name: { kind: "Name", value: "SchemaType" },
800
- },
801
- },
802
- },
803
- ],
804
- selectionSet: {
805
- kind: "SelectionSet",
806
- selections: [
807
- {
808
- kind: "Field",
809
- name: { kind: "Name", value: "schema" },
810
- arguments: [
811
- {
812
- kind: "Argument",
813
- name: { kind: "Name", value: "input" },
814
- value: {
815
- kind: "Variable",
816
- name: { kind: "Name", value: "input" },
817
- },
818
- },
819
- {
820
- kind: "Argument",
821
- name: { kind: "Name", value: "type" },
822
- value: {
823
- kind: "Variable",
824
- name: { kind: "Name", value: "type" },
825
- },
826
- },
827
- ],
828
- selectionSet: {
829
- kind: "SelectionSet",
830
- selections: [
831
- { kind: "Field", name: { kind: "Name", value: "url" } },
832
- {
833
- kind: "Field",
834
- name: { kind: "Name", value: "servers" },
835
- selectionSet: {
836
- kind: "SelectionSet",
837
- selections: [
838
- { kind: "Field", name: { kind: "Name", value: "url" } },
839
- ],
840
- },
841
- },
842
- ],
843
- },
844
- },
845
- ],
846
- },
847
- },
848
- ],
849
- } as unknown as DocumentNode<GetServerQueryQuery, GetServerQueryQueryVariables>;
850
- export const GetCategoriesDocument = {
851
- kind: "Document",
852
- definitions: [
853
- {
854
- kind: "OperationDefinition",
855
- operation: "query",
856
- name: { kind: "Name", value: "GetCategories" },
857
- variableDefinitions: [
858
- {
859
- kind: "VariableDefinition",
860
- variable: {
861
- kind: "Variable",
862
- name: { kind: "Name", value: "input" },
863
- },
864
- type: {
865
- kind: "NonNullType",
866
- type: { kind: "NamedType", name: { kind: "Name", value: "JSON" } },
867
- },
868
- },
869
- {
870
- kind: "VariableDefinition",
871
- variable: { kind: "Variable", name: { kind: "Name", value: "type" } },
872
- type: {
873
- kind: "NonNullType",
874
- type: {
875
- kind: "NamedType",
876
- name: { kind: "Name", value: "SchemaType" },
877
- },
878
- },
879
- },
880
- ],
881
- selectionSet: {
882
- kind: "SelectionSet",
883
- selections: [
884
- {
885
- kind: "Field",
886
- name: { kind: "Name", value: "schema" },
887
- arguments: [
888
- {
889
- kind: "Argument",
890
- name: { kind: "Name", value: "input" },
891
- value: {
892
- kind: "Variable",
893
- name: { kind: "Name", value: "input" },
894
- },
895
- },
896
- {
897
- kind: "Argument",
898
- name: { kind: "Name", value: "type" },
899
- value: {
900
- kind: "Variable",
901
- name: { kind: "Name", value: "type" },
902
- },
903
- },
904
- ],
905
- selectionSet: {
906
- kind: "SelectionSet",
907
- selections: [
908
- {
909
- kind: "Field",
910
- name: { kind: "Name", value: "tags" },
911
- selectionSet: {
912
- kind: "SelectionSet",
913
- selections: [
914
- {
915
- kind: "Field",
916
- name: { kind: "Name", value: "__typename" },
917
- },
918
- { kind: "Field", name: { kind: "Name", value: "name" } },
919
- {
920
- kind: "Field",
921
- name: { kind: "Name", value: "operations" },
922
- selectionSet: {
923
- kind: "SelectionSet",
924
- selections: [
925
- {
926
- kind: "Field",
927
- name: { kind: "Name", value: "__typename" },
928
- },
929
- {
930
- kind: "Field",
931
- name: { kind: "Name", value: "slug" },
932
- },
933
- {
934
- kind: "Field",
935
- name: { kind: "Name", value: "deprecated" },
936
- },
937
- {
938
- kind: "Field",
939
- name: { kind: "Name", value: "method" },
940
- },
941
- {
942
- kind: "Field",
943
- name: { kind: "Name", value: "summary" },
944
- },
945
- {
946
- kind: "Field",
947
- name: { kind: "Name", value: "operationId" },
948
- },
949
- {
950
- kind: "Field",
951
- name: { kind: "Name", value: "path" },
952
- },
953
- ],
954
- },
955
- },
956
- ],
957
- },
958
- },
959
- ],
960
- },
961
- },
962
- ],
963
- },
964
- },
965
- ],
966
- } as unknown as DocumentNode<GetCategoriesQuery, GetCategoriesQueryVariables>;
322
+ export class TypedDocumentString<TResult, TVariables>
323
+ extends String
324
+ implements DocumentTypeDecoration<TResult, TVariables>
325
+ {
326
+ __apiType?: DocumentTypeDecoration<TResult, TVariables>["__apiType"];
327
+
328
+ constructor(
329
+ private value: string,
330
+ public __meta__?: Record<string, any> | undefined,
331
+ ) {
332
+ super(value);
333
+ }
334
+
335
+ toString(): string & DocumentTypeDecoration<TResult, TVariables> {
336
+ return this.value;
337
+ }
338
+ }
339
+ export const OperationsFragmentFragmentDoc = new TypedDocumentString(
340
+ `
341
+ fragment OperationsFragment on OperationItem {
342
+ slug
343
+ summary
344
+ method
345
+ description
346
+ operationId
347
+ contentTypes
348
+ path
349
+ parameters {
350
+ name
351
+ in
352
+ description
353
+ required
354
+ schema
355
+ style
356
+ examples {
357
+ name
358
+ description
359
+ externalValue
360
+ value
361
+ summary
362
+ }
363
+ }
364
+ requestBody {
365
+ content {
366
+ mediaType
367
+ encoding {
368
+ name
369
+ }
370
+ examples {
371
+ name
372
+ description
373
+ externalValue
374
+ value
375
+ summary
376
+ }
377
+ schema
378
+ }
379
+ description
380
+ required
381
+ }
382
+ responses {
383
+ statusCode
384
+ links
385
+ description
386
+ content {
387
+ examples {
388
+ name
389
+ description
390
+ externalValue
391
+ value
392
+ summary
393
+ }
394
+ mediaType
395
+ encoding {
396
+ name
397
+ }
398
+ schema
399
+ }
400
+ }
401
+ }
402
+ `,
403
+ { fragmentName: "OperationsFragment" },
404
+ ) as unknown as TypedDocumentString<OperationsFragmentFragment, unknown>;
405
+ export const ServersQueryDocument = new TypedDocumentString(`
406
+ query ServersQuery($input: JSON!, $type: SchemaType!) {
407
+ schema(input: $input, type: $type) {
408
+ url
409
+ servers {
410
+ url
411
+ }
412
+ }
413
+ }
414
+ `) as unknown as TypedDocumentString<
415
+ ServersQueryQuery,
416
+ ServersQueryQueryVariables
417
+ >;
418
+ export const AllOperationsDocument = new TypedDocumentString(`
419
+ query AllOperations($input: JSON!, $type: SchemaType!) {
420
+ schema(input: $input, type: $type) {
421
+ description
422
+ title
423
+ url
424
+ version
425
+ tags {
426
+ name
427
+ description
428
+ operations {
429
+ slug
430
+ ...OperationsFragment
431
+ }
432
+ }
433
+ }
434
+ }
435
+ fragment OperationsFragment on OperationItem {
436
+ slug
437
+ summary
438
+ method
439
+ description
440
+ operationId
441
+ contentTypes
442
+ path
443
+ parameters {
444
+ name
445
+ in
446
+ description
447
+ required
448
+ schema
449
+ style
450
+ examples {
451
+ name
452
+ description
453
+ externalValue
454
+ value
455
+ summary
456
+ }
457
+ }
458
+ requestBody {
459
+ content {
460
+ mediaType
461
+ encoding {
462
+ name
463
+ }
464
+ examples {
465
+ name
466
+ description
467
+ externalValue
468
+ value
469
+ summary
470
+ }
471
+ schema
472
+ }
473
+ description
474
+ required
475
+ }
476
+ responses {
477
+ statusCode
478
+ links
479
+ description
480
+ content {
481
+ examples {
482
+ name
483
+ description
484
+ externalValue
485
+ value
486
+ summary
487
+ }
488
+ mediaType
489
+ encoding {
490
+ name
491
+ }
492
+ schema
493
+ }
494
+ }
495
+ }`) as unknown as TypedDocumentString<
496
+ AllOperationsQuery,
497
+ AllOperationsQueryVariables
498
+ >;
499
+ export const GetServerQueryDocument = new TypedDocumentString(`
500
+ query getServerQuery($input: JSON!, $type: SchemaType!) {
501
+ schema(input: $input, type: $type) {
502
+ url
503
+ servers {
504
+ url
505
+ }
506
+ }
507
+ }
508
+ `) as unknown as TypedDocumentString<
509
+ GetServerQueryQuery,
510
+ GetServerQueryQueryVariables
511
+ >;
512
+ export const GetCategoriesDocument = new TypedDocumentString(`
513
+ query GetCategories($input: JSON!, $type: SchemaType!) {
514
+ schema(input: $input, type: $type) {
515
+ url
516
+ tags {
517
+ __typename
518
+ name
519
+ operations {
520
+ __typename
521
+ slug
522
+ deprecated
523
+ method
524
+ summary
525
+ operationId
526
+ path
527
+ }
528
+ }
529
+ }
530
+ }
531
+ `) as unknown as TypedDocumentString<
532
+ GetCategoriesQuery,
533
+ GetCategoriesQueryVariables
534
+ >;