@stainless-api/docs 0.1.0-beta.12 → 0.1.0-beta.121

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 (152) hide show
  1. package/CHANGELOG.md +1012 -0
  2. package/eslint-suppressions.json +95 -0
  3. package/{eslint.config.js → eslint.config.ts} +0 -2
  4. package/locals.d.ts +17 -0
  5. package/package.json +57 -43
  6. package/playground-virtual-modules.d.ts +96 -0
  7. package/plugin/assets/languages/cli.svg +14 -0
  8. package/plugin/assets/languages/csharp.svg +1 -0
  9. package/plugin/assets/languages/php.svg +4 -0
  10. package/plugin/buildAlgoliaIndex.ts +40 -39
  11. package/plugin/components/MethodDescription.tsx +54 -0
  12. package/plugin/components/RequestBuilder/ParamEditor.tsx +55 -0
  13. package/plugin/components/RequestBuilder/SnippetStainlessIsland.tsx +107 -0
  14. package/plugin/components/RequestBuilder/index.tsx +40 -0
  15. package/plugin/components/RequestBuilder/props.ts +9 -0
  16. package/plugin/components/RequestBuilder/spec-helpers.ts +47 -0
  17. package/plugin/components/RequestBuilder/styles.css +67 -0
  18. package/plugin/components/SDKSelect.astro +18 -111
  19. package/plugin/components/SnippetCode.tsx +112 -70
  20. package/plugin/components/StainlessIslands.tsx +126 -0
  21. package/plugin/components/search/SearchAlgolia.astro +46 -29
  22. package/plugin/components/search/SearchIsland.tsx +61 -37
  23. package/plugin/generateAPIReferenceLink.ts +2 -2
  24. package/plugin/globalJs/ai-dropdown-options.ts +248 -0
  25. package/plugin/globalJs/code-snippets.ts +45 -16
  26. package/plugin/globalJs/copy.ts +115 -27
  27. package/plugin/globalJs/create-playground.shim.ts +3 -0
  28. package/plugin/globalJs/method-descriptions.ts +33 -0
  29. package/plugin/globalJs/navigation.ts +15 -33
  30. package/plugin/globalJs/playground-data.shim.ts +1 -0
  31. package/plugin/globalJs/playground-data.ts +14 -0
  32. package/plugin/globalJs/summary-selection-tweak.ts +29 -0
  33. package/plugin/helpers/generateDocsRoutes.ts +59 -0
  34. package/plugin/helpers/multiSpec.ts +8 -0
  35. package/plugin/index.ts +306 -142
  36. package/plugin/languages.ts +8 -2
  37. package/plugin/loadPluginConfig.ts +251 -107
  38. package/plugin/middlewareBuilder/stainlessMiddleware.d.ts +3 -1
  39. package/plugin/react/Routing.tsx +214 -143
  40. package/plugin/referencePlaceholderUtils.ts +18 -15
  41. package/plugin/replaceSidebarPlaceholderMiddleware.ts +39 -35
  42. package/plugin/routes/Docs.astro +71 -111
  43. package/plugin/routes/DocsStatic.astro +6 -5
  44. package/plugin/routes/Overview.astro +46 -22
  45. package/plugin/routes/markdown.ts +13 -12
  46. package/plugin/{cms → sidebar-utils}/sidebar-builder.ts +83 -63
  47. package/plugin/specs/FileCache.ts +99 -0
  48. package/plugin/specs/fetchSpecSSR.ts +27 -0
  49. package/plugin/specs/generateSpec.ts +112 -0
  50. package/plugin/specs/index.ts +137 -0
  51. package/plugin/specs/inputResolver.ts +148 -0
  52. package/plugin/{cms → specs}/worker.ts +82 -5
  53. package/plugin/vendor/preview.worker.docs.js +27234 -17991
  54. package/plugin/vendor/templates/cli.md +1 -0
  55. package/plugin/vendor/templates/go.md +4 -2
  56. package/plugin/vendor/templates/java.md +5 -1
  57. package/plugin/vendor/templates/kotlin.md +5 -1
  58. package/plugin/vendor/templates/node.md +4 -2
  59. package/plugin/vendor/templates/python.md +4 -2
  60. package/plugin/vendor/templates/ruby.md +4 -2
  61. package/plugin/vendor/templates/terraform.md +1 -1
  62. package/plugin/vendor/templates/typescript.md +3 -1
  63. package/resolveSrcFile.ts +10 -0
  64. package/scripts/vendor_deps.ts +5 -5
  65. package/shared/conditionalIntegration.ts +28 -0
  66. package/shared/getProsePages.ts +41 -0
  67. package/shared/getSharedLogger.ts +15 -0
  68. package/shared/terminalUtils.ts +3 -0
  69. package/shared/virtualModule.ts +54 -1
  70. package/src/content.config.ts +9 -0
  71. package/stl-docs/components/AIDropdown.tsx +63 -0
  72. package/stl-docs/components/AiChatIsland.tsx +14 -0
  73. package/stl-docs/components/{content-panel/ContentBreadcrumbs.tsx → ContentBreadcrumbs.tsx} +2 -2
  74. package/stl-docs/components/ContentPanel.astro +9 -0
  75. package/stl-docs/components/Footer.astro +89 -0
  76. package/stl-docs/components/Head.astro +20 -0
  77. package/stl-docs/components/Header.astro +3 -10
  78. package/stl-docs/components/PageFrame.astro +34 -0
  79. package/stl-docs/components/PageSidebar.astro +11 -0
  80. package/stl-docs/components/PageTitle.astro +82 -0
  81. package/stl-docs/components/StainlessLogo.svg +4 -0
  82. package/stl-docs/components/TableOfContents.astro +34 -0
  83. package/stl-docs/components/ThemeProvider.astro +36 -0
  84. package/stl-docs/components/ThemeSelect.astro +84 -146
  85. package/stl-docs/components/TwoColumnContent.astro +2 -0
  86. package/stl-docs/components/headers/DefaultHeader.astro +4 -6
  87. package/stl-docs/components/headers/StackedHeader.astro +8 -51
  88. package/stl-docs/components/icons/chat-gpt.tsx +2 -2
  89. package/stl-docs/components/icons/cursor.tsx +10 -0
  90. package/stl-docs/components/icons/gemini.tsx +19 -0
  91. package/stl-docs/components/icons/markdown.tsx +1 -1
  92. package/stl-docs/components/index.ts +1 -0
  93. package/stl-docs/components/mintlify-compat/Frame.astro +4 -4
  94. package/stl-docs/components/mintlify-compat/card.css +4 -4
  95. package/stl-docs/components/mintlify-compat/index.ts +2 -4
  96. package/stl-docs/components/nav-tabs/NavDropdown.astro +31 -75
  97. package/stl-docs/components/nav-tabs/NavTabs.astro +79 -81
  98. package/stl-docs/components/nav-tabs/SecondaryNavTabs.astro +15 -7
  99. package/stl-docs/components/nav-tabs/buildNavLinks.ts +3 -2
  100. package/stl-docs/components/pagination/HomeLink.astro +10 -0
  101. package/stl-docs/components/pagination/Pagination.astro +177 -0
  102. package/stl-docs/components/pagination/PaginationLinkEmphasized.astro +22 -0
  103. package/stl-docs/components/pagination/PaginationLinkQuiet.astro +13 -0
  104. package/stl-docs/components/pagination/util.ts +71 -0
  105. package/stl-docs/components/scripts.ts +1 -0
  106. package/stl-docs/components/sidebars/BaseSidebar.astro +80 -2
  107. package/stl-docs/components/sidebars/SidebarWithComponents.tsx +10 -0
  108. package/stl-docs/components/sidebars/convertAstroSidebarToStl.tsx +62 -0
  109. package/stl-docs/disableCalloutSyntax.ts +36 -0
  110. package/stl-docs/fonts.ts +186 -0
  111. package/stl-docs/index.ts +178 -54
  112. package/stl-docs/loadStlDocsConfig.ts +64 -8
  113. package/stl-docs/proseDocSync.ts +314 -0
  114. package/stl-docs/proseMarkdown/proseMarkdownIntegration.ts +53 -0
  115. package/stl-docs/proseMarkdown/proseMarkdownMiddleware.ts +41 -0
  116. package/stl-docs/proseMarkdown/toMarkdown.ts +158 -0
  117. package/stl-docs/proseSearchIndexing.ts +222 -0
  118. package/stl-docs/tabsMiddleware.ts +14 -5
  119. package/styles/code.css +53 -49
  120. package/styles/links.css +2 -37
  121. package/styles/method-descriptions.css +36 -0
  122. package/styles/overrides.css +28 -46
  123. package/styles/page.css +230 -52
  124. package/styles/sdk_select.css +9 -6
  125. package/styles/search.css +11 -21
  126. package/styles/sidebar.css +28 -211
  127. package/styles/{variables.css → sl-variables.css} +4 -8
  128. package/styles/stldocs-variables.css +6 -0
  129. package/styles/toc.css +19 -8
  130. package/theme.css +11 -9
  131. package/tsconfig.json +1 -4
  132. package/virtual-module.d.ts +65 -8
  133. package/components/variables.css +0 -112
  134. package/plugin/cms/client.ts +0 -62
  135. package/plugin/cms/server.ts +0 -268
  136. package/plugin/globalJs/ai-dropdown.ts +0 -57
  137. package/stl-docs/components/APIReferenceAIDropdown.tsx +0 -58
  138. package/stl-docs/components/content-panel/ContentPanel.astro +0 -69
  139. package/stl-docs/components/content-panel/ProseAIDropdown.tsx +0 -55
  140. package/stl-docs/components/headers/SplashMobileMenuToggle.astro +0 -49
  141. package/stl-docs/components/mintlify-compat/Step.astro +0 -56
  142. package/stl-docs/components/mintlify-compat/Steps.astro +0 -15
  143. package/styles/fonts.css +0 -68
  144. /package/{plugin/assets → assets}/fonts/geist/OFL.txt +0 -0
  145. /package/{plugin/assets → assets}/fonts/geist/geist-italic-latin-ext.woff2 +0 -0
  146. /package/{plugin/assets → assets}/fonts/geist/geist-italic-latin.woff2 +0 -0
  147. /package/{plugin/assets → assets}/fonts/geist/geist-latin-ext.woff2 +0 -0
  148. /package/{plugin/assets → assets}/fonts/geist/geist-latin.woff2 +0 -0
  149. /package/{plugin/assets → assets}/fonts/geist/geist-mono-italic-latin-ext.woff2 +0 -0
  150. /package/{plugin/assets → assets}/fonts/geist/geist-mono-italic-latin.woff2 +0 -0
  151. /package/{plugin/assets → assets}/fonts/geist/geist-mono-latin-ext.woff2 +0 -0
  152. /package/{plugin/assets → assets}/fonts/geist/geist-mono-latin.woff2 +0 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,1017 @@
1
1
  # @stainless-api/docs
2
2
 
3
+ ## 0.1.0-beta.121
4
+
5
+ ### Minor Changes
6
+
7
+ - 9cb2166: Join base path with HEADER_LINKS and TABS
8
+
9
+ ### Patch Changes
10
+
11
+ - 7701d8f: Clean up console warnings loading DocsSearch markdown renderer
12
+ - Updated dependencies [7701d8f]
13
+ - Updated dependencies [5460e81]
14
+ - @stainless-api/docs-ui@0.1.0-beta.87
15
+ - @stainless-api/docs-search@0.1.0-beta.40
16
+
17
+ ## 0.1.0-beta.120
18
+
19
+ ### Patch Changes
20
+
21
+ - fe6cd04: Improves sidebar item rendering in Terraform
22
+
23
+ ## 0.1.0-beta.119
24
+
25
+ ### Patch Changes
26
+
27
+ - 403c097: Export additional components
28
+ - Updated dependencies [848cff4]
29
+ - Updated dependencies [ea2b90c]
30
+ - @stainless-api/ui-primitives@0.1.0-beta.50
31
+ - @stainless-api/docs-ui@0.1.0-beta.86
32
+ - @stainless-api/docs-search@0.1.0-beta.39
33
+
34
+ ## 0.1.0-beta.118
35
+
36
+ ### Minor Changes
37
+
38
+ - 9599de4: Updates preview worker to improve response snippets
39
+
40
+ ### Patch Changes
41
+
42
+ - 7901fd4: fix astro scoping for language-block style?
43
+ - Updated dependencies [93a3767]
44
+ - @stainless-api/docs-ui@0.1.0-beta.85
45
+ - @stainless-api/docs-search@0.1.0-beta.38
46
+
47
+ ## 0.1.0-beta.117
48
+
49
+ ### Patch Changes
50
+
51
+ - af60696: ensure splash pages aren't uncentered from ghost sidebar
52
+
53
+ ## 0.1.0-beta.116
54
+
55
+ ### Patch Changes
56
+
57
+ - ad9552c: don’t let toc shrink to its intrinisc size
58
+
59
+ ## 0.1.0-beta.115
60
+
61
+ ### Minor Changes
62
+
63
+ - 2a9da30: Update to Astro 6
64
+
65
+ ## 0.1.0-beta.114
66
+
67
+ ### Patch Changes
68
+
69
+ - Updated dependencies [eab438f]
70
+ - Updated dependencies [438a593]
71
+ - @stainless-api/docs-search@0.1.0-beta.37
72
+ - @stainless-api/docs-ui@0.1.0-beta.84
73
+
74
+ ## 0.1.0-beta.113
75
+
76
+ ### Patch Changes
77
+
78
+ - aeda757: Handles cases where pagefind does not exist
79
+ - Updated dependencies [1c38511]
80
+ - Updated dependencies [aeda757]
81
+ - @stainless-api/docs-ui@0.1.0-beta.83
82
+ - @stainless-api/docs-search@0.1.0-beta.36
83
+
84
+ ## 0.1.0-beta.112
85
+
86
+ ### Patch Changes
87
+
88
+ - Updated dependencies [37cc2ac]
89
+ - @stainless-api/docs-ui@0.1.0-beta.82
90
+ - @stainless-api/docs-search@0.1.0-beta.35
91
+
92
+ ## 0.1.0-beta.111
93
+
94
+ ### Patch Changes
95
+
96
+ - 6cab196: prevent summary elements from toggling when users are selecting text
97
+ - Updated dependencies [134885b]
98
+ - Updated dependencies [5ba9135]
99
+ - Updated dependencies [df0c958]
100
+ - Updated dependencies [e641d33]
101
+ - @stainless-api/docs-ui@0.1.0-beta.81
102
+ - @stainless-api/docs-search@0.1.0-beta.34
103
+
104
+ ## 0.1.0-beta.110
105
+
106
+ ### Minor Changes
107
+
108
+ - c1723f0: Updates preview worker
109
+ - 05cd046: Adds support for overriding components
110
+
111
+ ### Patch Changes
112
+
113
+ - f38f92f: fix scroll-padding-top
114
+ - Updated dependencies [05cd046]
115
+ - @stainless-api/docs-ui@0.1.0-beta.80
116
+ - @stainless-api/docs-search@0.1.0-beta.33
117
+
118
+ ## 0.1.0-beta.109
119
+
120
+ ### Patch Changes
121
+
122
+ - b45d8e2: clean up empty state on Overview when there are no “Libraries”
123
+
124
+ ## 0.1.0-beta.108
125
+
126
+ ### Patch Changes
127
+
128
+ - 27d2130: add powered by stainless to footer
129
+
130
+ ## 0.1.0-beta.107
131
+
132
+ ### Minor Changes
133
+
134
+ - 971a12f: Adds an experimental flag to disable indexing
135
+
136
+ ## 0.1.0-beta.106
137
+
138
+ ### Patch Changes
139
+
140
+ - a8ed299: Adds the ability for AI chat to move into a sidebar “panel” position.
141
+
142
+ ## 0.1.0-beta.105
143
+
144
+ ### Patch Changes
145
+
146
+ - 46956c1: update preview worker
147
+ - 04d04c1: update preview worker
148
+
149
+ ## 0.1.0-beta.104
150
+
151
+ ### Minor Changes
152
+
153
+ - 6d9933d: Replace starlight page frame with top-level CSS grid layout
154
+ - 1a150ee: Updates preview worker
155
+
156
+ ### Patch Changes
157
+
158
+ - Updated dependencies [6d9933d]
159
+ - @stainless-api/ui-primitives@0.1.0-beta.49
160
+ - @stainless-api/docs-ui@0.1.0-beta.79
161
+ - @stainless-api/docs-search@0.1.0-beta.32
162
+
163
+ ## 0.1.0-beta.103
164
+
165
+ ### Patch Changes
166
+
167
+ - Updated dependencies [54add64]
168
+ - @stainless-api/docs-ui@0.1.0-beta.78
169
+ - @stainless-api/docs-search@0.1.0-beta.31
170
+
171
+ ## 0.1.0-beta.102
172
+
173
+ ### Minor Changes
174
+
175
+ - a1b8e83: adds starlight passthrough option for configuring pagefind
176
+
177
+ ## 0.1.0-beta.101
178
+
179
+ ### Patch Changes
180
+
181
+ - f81fade: Fix false negatives detecting prose pages to convert to markdown
182
+ - Updated dependencies [21e50d3]
183
+ - @stainless-api/docs-ui@0.1.0-beta.77
184
+ - @stainless-api/docs-search@0.1.0-beta.30
185
+
186
+ ## 0.1.0-beta.100
187
+
188
+ ### Minor Changes
189
+
190
+ - 5701494: Improves sidebar perf + new experimental option to link group titles to overview pages for the group
191
+
192
+ ### Patch Changes
193
+
194
+ - Updated dependencies [7ea23ef]
195
+ - Updated dependencies [95fe66c]
196
+ - Updated dependencies [5701494]
197
+ - @stainless-api/ui-primitives@0.1.0-beta.48
198
+ - @stainless-api/docs-ui@0.1.0-beta.76
199
+ - @stainless-api/docs-search@0.1.0-beta.29
200
+
201
+ ## 0.1.0-beta.99
202
+
203
+ ### Minor Changes
204
+
205
+ - e005e5c: Adds PHP to the docs
206
+
207
+ ### Patch Changes
208
+
209
+ - e7d3aaa: defer references to `navigator` until browser time
210
+ - Updated dependencies [2919b0a]
211
+ - Updated dependencies [e005e5c]
212
+ - @stainless-api/docs-ui@0.1.0-beta.75
213
+ - @stainless-api/docs-search@0.1.0-beta.28
214
+
215
+ ## 0.1.0-beta.98
216
+
217
+ ### Minor Changes
218
+
219
+ - ba39673: Makes sidebar keys truly unique
220
+
221
+ ## 0.1.0-beta.97
222
+
223
+ ### Patch Changes
224
+
225
+ - 415629f: Allow displaying a user-provided snippet as the “default” in single-snippet
226
+ - Updated dependencies [415629f]
227
+ - @stainless-api/docs-ui@0.1.0-beta.74
228
+ - @stainless-api/docs-search@0.1.0-beta.27
229
+
230
+ ## 0.1.0-beta.96
231
+
232
+ ### Patch Changes
233
+
234
+ - 5c36876: type updates
235
+ - Updated dependencies [5c36876]
236
+ - @stainless-api/docs-ui@0.1.0-beta.73
237
+ - @stainless-api/docs-search@0.1.0-beta.26
238
+
239
+ ## 0.1.0-beta.95
240
+
241
+ ### Minor Changes
242
+
243
+ - 6b86a8b: Support multiple snippet examples
244
+
245
+ ### Patch Changes
246
+
247
+ - Updated dependencies [6b86a8b]
248
+ - @stainless-api/docs-ui@0.1.0-beta.72
249
+ - @stainless-api/docs-search@0.1.0-beta.25
250
+
251
+ ## 0.1.0-beta.94
252
+
253
+ ### Minor Changes
254
+
255
+ - beff534: Adds support for multiple sdkjsons
256
+
257
+ ### Patch Changes
258
+
259
+ - Updated dependencies [cd578b7]
260
+ - Updated dependencies [beff534]
261
+ - @stainless-api/docs-ui@0.1.0-beta.71
262
+ - @stainless-api/docs-search@0.1.0-beta.24
263
+
264
+ ## 0.1.0-beta.93
265
+
266
+ ### Patch Changes
267
+
268
+ - Updated dependencies [93c8f94]
269
+ - @stainless-api/docs-ui@0.1.0-beta.70
270
+ - @stainless-api/docs-search@0.1.0-beta.23
271
+
272
+ ## 0.1.0-beta.92
273
+
274
+ ### Patch Changes
275
+
276
+ - 61ba36f: add support for form data bodies
277
+ - Updated dependencies [61ba36f]
278
+ - @stainless-api/docs-ui@0.1.0-beta.69
279
+ - @stainless-api/docs-search@0.1.0-beta.22
280
+
281
+ ## 0.1.0-beta.91
282
+
283
+ ### Patch Changes
284
+
285
+ - c083afe: chore: update preview worker
286
+ - Updated dependencies [a3f1ede]
287
+ - @stainless-api/docs-ui@0.1.0-beta.68
288
+ - @stainless-api/docs-search@0.1.0-beta.21
289
+
290
+ ## 0.1.0-beta.90
291
+
292
+ ### Minor Changes
293
+
294
+ - b8f1f3c: improve prose chunking
295
+
296
+ ### Patch Changes
297
+
298
+ - 3de4232: support additional extra custom fonts
299
+ - c77e607: fixes issue where sdk select wasnt showing on readme pages
300
+
301
+ ## 0.1.0-beta.89
302
+
303
+ ### Minor Changes
304
+
305
+ - 4b2bd1c: Adds Webhook events overview page
306
+
307
+ ### Patch Changes
308
+
309
+ - 7bda782: fix bug when detecting current sidebar item
310
+ - de83f02: fix api reference base path
311
+ - 31457f3: support for setting custom fonts
312
+ - Updated dependencies [31457f3]
313
+ - @stainless-api/ui-primitives@0.1.0-beta.47
314
+ - @stainless-api/docs-search@0.1.0-beta.20
315
+ - @stainless-api/docs-ui@0.1.0-beta.67
316
+
317
+ ## 0.1.0-beta.88
318
+
319
+ ### Minor Changes
320
+
321
+ - c1fb4e5: remove CMS server; refactor and simplify spec generation pipeline
322
+
323
+ ### Patch Changes
324
+
325
+ - Updated dependencies [65a1c9b]
326
+ - Updated dependencies [4f1cee7]
327
+ - Updated dependencies [4c72a83]
328
+ - Updated dependencies [068469b]
329
+ - @stainless-api/docs-ui@0.1.0-beta.66
330
+ - @stainless-api/docs-search@0.1.0-beta.19
331
+
332
+ ## 0.1.0-beta.87
333
+
334
+ ### Patch Changes
335
+
336
+ - b62eb05: improved support for webhooks and functions
337
+ - Updated dependencies [b62eb05]
338
+ - Updated dependencies [d42dd8f]
339
+ - @stainless-api/ui-primitives@0.1.0-beta.46
340
+ - @stainless-api/docs-ui@0.1.0-beta.65
341
+ - @stainless-api/docs-search@0.1.0-beta.18
342
+
343
+ ## 0.1.0-beta.86
344
+
345
+ ### Minor Changes
346
+
347
+ - 7439be7: Adds Terraform rendering to docs
348
+
349
+ ### Patch Changes
350
+
351
+ - c8fb9b3: fix layout shift on api pages
352
+ - 3411ffe: Add underlying capabilities to the sidebar: collapsible/icon
353
+ - 509a074: bump astro & starlight for pagefind fix
354
+ - Updated dependencies [3411ffe]
355
+ - Updated dependencies [7439be7]
356
+ - @stainless-api/docs-ui@0.1.0-beta.64
357
+ - @stainless-api/docs-search@0.1.0-beta.17
358
+
359
+ ## 0.1.0-beta.85
360
+
361
+ ### Patch Changes
362
+
363
+ - 4b1a91d: pagefind-ignore for breadcrumbs & ai dropdown
364
+ - Updated dependencies [274cefc]
365
+ - @stainless-api/docs-ui@0.1.0-beta.63
366
+ - @stainless-api/docs-search@0.1.0-beta.16
367
+
368
+ ## 0.1.0-beta.84
369
+
370
+ ### Minor Changes
371
+
372
+ - 6ef241e: Sidebar improvements; rename Sidebar to SDKSidebar
373
+
374
+ ### Patch Changes
375
+
376
+ - d3a85b5: feat: improve not implemented fallback ui
377
+ - 5156697: include markdown alt link for all pages
378
+ - dedd93b: fix incorrect link rel=alternate markdown URLs
379
+ - b532d45: use method summary as page title
380
+ - Updated dependencies [6ef241e]
381
+ - Updated dependencies [d3a85b5]
382
+ - Updated dependencies [d3a85b5]
383
+ - Updated dependencies [2dcb5fb]
384
+ - @stainless-api/docs-ui@0.1.0-beta.62
385
+ - @stainless-api/docs-search@0.1.0-beta.15
386
+
387
+ ## 0.1.0-beta.83
388
+
389
+ ### Patch Changes
390
+
391
+ - 96e974e: clean up n^2 calls to generateDocsRoutes by passing props
392
+ - a0301a2: Improves build speed by up to 8x for large APIs
393
+ - b6b9d30: fix: should hide skipped resources in sidebar
394
+ - Updated dependencies [3037a19]
395
+ - @stainless-api/ui-primitives@0.1.0-beta.45
396
+ - @stainless-api/docs-search@0.1.0-beta.14
397
+ - @stainless-api/docs-ui@0.1.0-beta.61
398
+
399
+ ## 0.1.0-beta.82
400
+
401
+ ### Patch Changes
402
+
403
+ - 29089a7: add experimental support for prerender flag
404
+
405
+ ## 0.1.0-beta.81
406
+
407
+ ### Patch Changes
408
+
409
+ - 5c257e2: separate steelie into separate packages
410
+
411
+ ## 0.1.0-beta.80
412
+
413
+ ### Patch Changes
414
+
415
+ - Updated dependencies [b4b51f7]
416
+ - @stainless-api/ui-primitives@0.1.0-beta.44
417
+ - @stainless-api/docs-search@0.1.0-beta.13
418
+ - @stainless-api/docs-ui@0.1.0-beta.60
419
+
420
+ ## 0.1.0-beta.79
421
+
422
+ ### Minor Changes
423
+
424
+ - 32b2c88: add simple request fields to request builder
425
+ - 6fd3625: Introduce experimentalRequestBuilder to hydrate within code snippets
426
+ - 98166fd: Adds CLI docs
427
+
428
+ ### Patch Changes
429
+
430
+ - 7a79858: more aggressively suppress dev-server waterfalls through ai-chat
431
+ - Updated dependencies [32b2c88]
432
+ - Updated dependencies [6fd3625]
433
+ - Updated dependencies [98166fd]
434
+ - @stainless-api/docs-ui@0.1.0-beta.59
435
+ - @stainless-api/docs-search@0.1.0-beta.12
436
+
437
+ ## 0.1.0-beta.78
438
+
439
+ ### Patch Changes
440
+
441
+ - Updated dependencies [1b04416]
442
+ - Updated dependencies [905cdac]
443
+ - @stainless-api/docs-ui@0.1.0-beta.58
444
+ - @stainless-api/docs-search@0.1.0-beta.11
445
+
446
+ ## 0.1.0-beta.77
447
+
448
+ ### Patch Changes
449
+
450
+ - 5c8fef8: fixes pagefind path
451
+
452
+ ## 0.1.0-beta.76
453
+
454
+ ### Patch Changes
455
+
456
+ - 5a6d886: fix searchbar styles
457
+ - d79718a: should use base url when resolving pagefind
458
+
459
+ ## 0.1.0-beta.75
460
+
461
+ ### Patch Changes
462
+
463
+ - b1ff7b3: write manifest file after build
464
+
465
+ ## 0.1.0-beta.74
466
+
467
+ ### Patch Changes
468
+
469
+ - d0d1122: support astro config base param
470
+ - Updated dependencies [6eb6d38]
471
+ - Updated dependencies [7bc8f4e]
472
+ - Updated dependencies [2f6b86d]
473
+ - @stainless-api/docs-ui@0.1.0-beta.57
474
+ - @stainless-api/ui-primitives@0.1.0-beta.43
475
+ - @stainless-api/docs-search@0.1.0-beta.10
476
+
477
+ ## 0.1.0-beta.73
478
+
479
+ ### Patch Changes
480
+
481
+ - 6adf1c6: fixes show more button background opacity
482
+
483
+ ## 0.1.0-beta.72
484
+
485
+ ### Patch Changes
486
+
487
+ - Updated dependencies [2d82e2e]
488
+ - @stainless-api/ui-primitives@0.1.0-beta.42
489
+ - @stainless-api/docs-search@0.1.0-beta.9
490
+ - @stainless-api/docs-ui@0.1.0-beta.56
491
+
492
+ ## 0.1.0-beta.71
493
+
494
+ ### Patch Changes
495
+
496
+ - Updated dependencies [0a84207]
497
+ - @stainless-api/docs-search@0.1.0-beta.8
498
+
499
+ ## 0.1.0-beta.70
500
+
501
+ ### Patch Changes
502
+
503
+ - Updated dependencies [750c348]
504
+ - @stainless-api/ui-primitives@0.1.0-beta.41
505
+ - @stainless-api/docs-search@0.1.0-beta.7
506
+ - @stainless-api/docs-ui@0.1.0-beta.55
507
+
508
+ ## 0.1.0-beta.69
509
+
510
+ ### Patch Changes
511
+
512
+ - 67aa6b5: improves UI for algolia search on desktop and mobile
513
+ - bf9bdd4: Remove old/broken mintlify-compat Steps implementation in favor of the new component
514
+ - 68f4528: Adds support for opengraph images
515
+ - Updated dependencies [67aa6b5]
516
+ - @stainless-api/docs-search@0.1.0-beta.6
517
+ - @stainless-api/docs-ui@0.1.0-beta.54
518
+
519
+ ## 0.1.0-beta.68
520
+
521
+ ### Patch Changes
522
+
523
+ - add prose docs vector indexing
524
+
525
+ ## 0.1.0-beta.67
526
+
527
+ ### Patch Changes
528
+
529
+ - a59d5f7: Pass current page context through as “intent”
530
+ - Updated dependencies [e9567b0]
531
+ - @stainless-api/ui-primitives@0.1.0-beta.40
532
+ - @stainless-api/docs-ui@0.1.0-beta.53
533
+ - @stainless-api/docs-search@0.1.0-beta.5
534
+
535
+ ## 0.1.0-beta.66
536
+
537
+ ### Patch Changes
538
+
539
+ - af54129: fix: index missing prose docs for search
540
+
541
+ ## 0.1.0-beta.65
542
+
543
+ ### Patch Changes
544
+
545
+ - 22a19ed: exporting Head component to support custom head implements
546
+
547
+ ## 0.1.0-beta.64
548
+
549
+ ### Patch Changes
550
+
551
+ - add markdown indexing functionality
552
+
553
+ ## 0.1.0-beta.63
554
+
555
+ ### Patch Changes
556
+
557
+ - d2e3686: add a success state to the copy markdown action
558
+ - Updated dependencies [5d6e5fa]
559
+ - @stainless-api/ui-primitives@0.1.0-beta.39
560
+ - @stainless-api/docs-ui@0.1.0-beta.52
561
+ - @stainless-api/docs-search@0.1.0-beta.4
562
+
563
+ ## 0.1.0-beta.62
564
+
565
+ ### Patch Changes
566
+
567
+ - 3c4a030: increase minimum starlight depdendency version
568
+ - cd86726: Fix a crash when stl-starlight plugin isn’t being loaded
569
+ - aa9d333: fixes for markdown rendering when astro integrations override the starlight html entrypoint
570
+ - 07a2c87: Should override ThemeProvider for setting theme within the html head
571
+ - @stainless-api/docs-search@0.1.0-beta.3
572
+ - @stainless-api/docs-ui@0.1.0-beta.51
573
+ - @stainless-api/ui-primitives@0.1.0-beta.38
574
+
575
+ ## 0.1.0-beta.61
576
+
577
+ ### Patch Changes
578
+
579
+ - 88a9894: patch vite optimizeDeps for docs-ai-chat
580
+ - Updated dependencies [2a79bae]
581
+ - @stainless-api/ui-primitives@0.1.0-beta.38
582
+ - @stainless-api/docs-ui@0.1.0-beta.51
583
+ - @stainless-api/docs-search@0.1.0-beta.3
584
+
585
+ ## 0.1.0-beta.60
586
+
587
+ ### Patch Changes
588
+
589
+ - 2d00f0d: compatibility with the first alpha version of docs-ai-chat
590
+ - Updated dependencies [2d00f0d]
591
+ - @stainless-api/docs-ui@0.1.0-beta.50
592
+ - @stainless-api/ui-primitives@0.1.0-beta.37
593
+ - @stainless-api/docs-search@0.1.0-beta.2
594
+
595
+ ## 0.1.0-beta.59
596
+
597
+ ### Patch Changes
598
+
599
+ - 23bbd6d: fix search input layout on default header layout
600
+
601
+ ## 0.1.0-beta.58
602
+
603
+ ### Minor Changes
604
+
605
+ - af090c3: refactor: extract search to @stainless-api/docs-search package
606
+
607
+ ### Patch Changes
608
+
609
+ - e79d6c3: fix an issue where the search bar would overflow over nav elements
610
+ - 2d372fb: feat: support for stainless docs plugins
611
+ - Updated dependencies [af090c3]
612
+ - Updated dependencies [4cf4aa5]
613
+ - Updated dependencies [8886c7c]
614
+ - @stainless-api/docs-search@0.1.0-beta.1
615
+ - @stainless-api/docs-ui@0.1.0-beta.49
616
+ - @stainless-api/ui-primitives@0.1.0-beta.36
617
+
618
+ ## 0.1.0-beta.57
619
+
620
+ ### Patch Changes
621
+
622
+ - Updated dependencies [ada37ee]
623
+ - @stainless-api/docs-ui@0.1.0-beta.48
624
+
625
+ ## 0.1.0-beta.56
626
+
627
+ ### Minor Changes
628
+
629
+ - d75a72f: Adds C# language support
630
+
631
+ ### Patch Changes
632
+
633
+ - Updated dependencies [d75a72f]
634
+ - Updated dependencies [2464347]
635
+ - @stainless-api/docs-ui@0.1.0-beta.47
636
+
637
+ ## 0.1.0-beta.55
638
+
639
+ ### Patch Changes
640
+
641
+ - ae56b3c: ensure changeset release commit doesn’t include [skip ci]
642
+ - Updated dependencies [ae56b3c]
643
+ - @stainless-api/docs-ui@0.1.0-beta.46
644
+ - @stainless-api/ui-primitives@0.1.0-beta.35
645
+
646
+ ## 0.1.0-beta.54
647
+
648
+ ### Minor Changes
649
+
650
+ - a70f60c: Adds the title property
651
+
652
+ ### Patch Changes
653
+
654
+ - 2ebf696: enable trusted publishing
655
+ - Updated dependencies [2ebf696]
656
+ - Updated dependencies [a70f60c]
657
+ - @stainless-api/docs-ui@0.1.0-beta.45
658
+ - @stainless-api/ui-primitives@0.1.0-beta.34
659
+
660
+ ## 0.1.0-beta.53
661
+
662
+ ### Patch Changes
663
+
664
+ - 2e1639a: Updated preview worker and added experimental playgrounds feature.
665
+ - Updated dependencies [239e28c]
666
+ - Updated dependencies [ddc4593]
667
+ - Updated dependencies [2e1639a]
668
+ - Updated dependencies [2e1639a]
669
+ - @stainless-api/docs-ui@0.1.0-beta.44
670
+ - @stainless-api/ui-primitives@0.1.0-beta.33
671
+
672
+ ## 0.1.0-beta.52
673
+
674
+ ### Patch Changes
675
+
676
+ - 72c7604: include default themes in stainlessStarlight plugin
677
+ - Updated dependencies [8a32bbb]
678
+ - @stainless-api/ui-primitives@0.1.0-beta.32
679
+ - @stainless-api/docs-ui@0.1.0-beta.43
680
+
681
+ ## 0.1.0-beta.51
682
+
683
+ ### Patch Changes
684
+
685
+ - 4fc191c: standardize accent border colors
686
+ - Updated dependencies [3d2179f]
687
+ - @stainless-api/ui-primitives@0.1.0-beta.31
688
+ - @stainless-api/docs-ui@0.1.0-beta.42
689
+
690
+ ## 0.1.0-beta.50
691
+
692
+ ### Patch Changes
693
+
694
+ - 6de051d: update vendored preview worker
695
+
696
+ ## 0.1.0-beta.49
697
+
698
+ ### Patch Changes
699
+
700
+ - Updated dependencies [b9e4b82]
701
+ - Updated dependencies [6d12e06]
702
+ - Updated dependencies [5051795]
703
+ - @stainless-api/ui-primitives@0.1.0-beta.30
704
+ - @stainless-api/docs-ui@0.1.0-beta.41
705
+
706
+ ## 0.1.0-beta.48
707
+
708
+ ### Patch Changes
709
+
710
+ - Updated dependencies [81b5b21]
711
+ - Updated dependencies [ba269f9]
712
+ - Updated dependencies [e2a7098]
713
+ - Updated dependencies [589b13d]
714
+ - @stainless-api/ui-primitives@0.1.0-beta.29
715
+ - @stainless-api/docs-ui@0.1.0-beta.40
716
+
717
+ ## 0.1.0-beta.47
718
+
719
+ ### Patch Changes
720
+
721
+ - 466285c: Fixes for expressive code styles
722
+ - Ensure expressive code styles are applied to docs sites that do not include API reference
723
+ - Use correct red & green palettes for ins/del diff annotations
724
+
725
+ - Updated dependencies [d2d5d51]
726
+ - @stainless-api/ui-primitives@0.1.0-beta.28
727
+ - @stainless-api/docs-ui@0.1.0-beta.39
728
+
729
+ ## 0.1.0-beta.46
730
+
731
+ ### Minor Changes
732
+
733
+ - b61b7c1: New theming system
734
+
735
+ A whole new set of design system variables used throughout docs, docs-ui, and ui-primitives
736
+
737
+ Improves customizability & uniformness compared to the old set of variables.
738
+
739
+ ### Patch Changes
740
+
741
+ - Updated dependencies [b61b7c1]
742
+ - Updated dependencies [262f201]
743
+ - @stainless-api/docs-ui@0.1.0-beta.38
744
+ - @stainless-api/ui-primitives@0.1.0-beta.27
745
+
746
+ ## 0.1.0-beta.45
747
+
748
+ ### Patch Changes
749
+
750
+ - 00b33d9: syntax highlighting for markdown renderer
751
+ - fa43cff: json brackets should use muted foreground color
752
+ - c06e5c3: update marked dependency
753
+ - 32d1735: experimental support for collapsible method descriptions
754
+ - Updated dependencies [00b33d9]
755
+ - Updated dependencies [32d1735]
756
+ - Updated dependencies [23254d1]
757
+ - @stainless-api/ui-primitives@0.1.0-beta.26
758
+ - @stainless-api/docs-ui@0.1.0-beta.37
759
+
760
+ ## 0.1.0-beta.44
761
+
762
+ ### Patch Changes
763
+
764
+ - Updated dependencies [38b7030]
765
+ - @stainless-api/docs-ui@0.1.0-beta.36
766
+
767
+ ## 0.1.0-beta.43
768
+
769
+ ### Patch Changes
770
+
771
+ - a44a012: Remove debug code
772
+
773
+ ## 0.1.0-beta.42
774
+
775
+ ### Patch Changes
776
+
777
+ - Updated dependencies [3817ff5]
778
+ - Updated dependencies [391a7ce]
779
+ - Updated dependencies [945d4f3]
780
+ - @stainless-api/docs-ui@0.1.0-beta.35
781
+
782
+ ## 0.1.0-beta.41
783
+
784
+ ### Patch Changes
785
+
786
+ - 6557889: temporarily remove experimental AI search feature
787
+ - Updated dependencies [6557889]
788
+ - @stainless-api/docs-ui@0.1.0-beta.34
789
+
790
+ ## 0.1.0-beta.40
791
+
792
+ ### Patch Changes
793
+
794
+ - Updated dependencies [8670d73]
795
+ - @stainless-api/docs-ui@0.1.0-beta.33
796
+
797
+ ## 0.1.0-beta.39
798
+
799
+ ### Patch Changes
800
+
801
+ - 242deef: fix mobile menu on splash pages
802
+ - Updated dependencies [242deef]
803
+ - @stainless-api/ui-primitives@0.1.0-beta.25
804
+ - @stainless-api/docs-ui@0.1.0-beta.32
805
+
806
+ ## 0.1.0-beta.38
807
+
808
+ ### Patch Changes
809
+
810
+ - Updated dependencies [c28b0a6]
811
+ - Updated dependencies [f23c6bc]
812
+ - Updated dependencies [2cd1b33]
813
+ - @stainless-api/docs-ui@0.1.0-beta.31
814
+ - @stainless-api/ui-primitives@0.1.0-beta.24
815
+
816
+ ## 0.1.0-beta.37
817
+
818
+ ### Patch Changes
819
+
820
+ - 5f14e53: Render page descriptions as part of page header by default
821
+ - Updated dependencies [49e1b93]
822
+ - @stainless-api/docs-ui@0.1.0-beta.30
823
+ - @stainless-api/ui-primitives@0.1.0-beta.23
824
+
825
+ ## 0.1.0-beta.36
826
+
827
+ ### Patch Changes
828
+
829
+ - Updated dependencies [7897575]
830
+ - @stainless-api/ui-primitives@0.1.0-beta.22
831
+ - @stainless-api/docs-ui@0.1.0-beta.29
832
+
833
+ ## 0.1.0-beta.35
834
+
835
+ ### Patch Changes
836
+
837
+ - Updated dependencies [344761e]
838
+ - @stainless-api/ui-primitives@0.1.0-beta.21
839
+ - @stainless-api/docs-ui@0.1.0-beta.28
840
+
841
+ ## 0.1.0-beta.34
842
+
843
+ ### Patch Changes
844
+
845
+ - f5173e9: fix: theme flickering
846
+
847
+ ## 0.1.0-beta.33
848
+
849
+ ### Patch Changes
850
+
851
+ - 7ef572c: feat: updated dropdowns
852
+ - Updated dependencies [7ef572c]
853
+ - @stainless-api/docs-ui@0.1.0-beta.27
854
+ - @stainless-api/ui-primitives@0.1.0-beta.20
855
+
856
+ ## 0.1.0-beta.32
857
+
858
+ ### Patch Changes
859
+
860
+ - 58040d8: feat: ui primitives updates, cursor support
861
+ - Updated dependencies [58040d8]
862
+ - @stainless-api/docs-ui@0.1.0-beta.26
863
+ - @stainless-api/ui-primitives@0.1.0-beta.19
864
+
865
+ ## 0.1.0-beta.31
866
+
867
+ ### Patch Changes
868
+
869
+ - Updated dependencies [afd1f8e]
870
+ - Updated dependencies [279fa0e]
871
+ - @stainless-api/docs-ui@0.1.0-beta.25
872
+
873
+ ## 0.1.0-beta.30
874
+
875
+ ### Patch Changes
876
+
877
+ - Updated dependencies [ab570bc]
878
+ - @stainless-api/docs-ui@0.1.0-beta.24
879
+
880
+ ## 0.1.0-beta.29
881
+
882
+ ### Patch Changes
883
+
884
+ - Updated dependencies [279fa0e]
885
+ - @stainless-api/docs-ui@0.1.0-beta.23
886
+
887
+ ## 0.1.0-beta.28
888
+
889
+ ### Minor Changes
890
+
891
+ - c635741: Updated worker and fixed docs-ui jsx issue
892
+
893
+ ### Patch Changes
894
+
895
+ - Updated dependencies [c635741]
896
+ - @stainless-api/docs-ui@0.1.0-beta.22
897
+ - @stainless-api/ui-primitives@0.1.0-beta.18
898
+
899
+ ## 0.1.0-beta.27
900
+
901
+ ### Patch Changes
902
+
903
+ - de189ee: remove max width on site title
904
+
905
+ ## 0.1.0-beta.26
906
+
907
+ ### Patch Changes
908
+
909
+ - 1517484: fixing font loading, updating nav bar height
910
+ - Updated dependencies [1517484]
911
+ - @stainless-api/docs-ui@0.1.0-beta.21
912
+ - @stainless-api/ui-primitives@0.1.0-beta.17
913
+
914
+ ## 0.1.0-beta.25
915
+
916
+ ### Patch Changes
917
+
918
+ - Updated dependencies [b9ce1b6]
919
+ - @stainless-api/docs-ui@0.1.0-beta.20
920
+
921
+ ## 0.1.0-beta.24
922
+
923
+ ### Patch Changes
924
+
925
+ - Updated dependencies [402222a]
926
+ - @stainless-api/docs-ui@0.1.0-beta.19
927
+
928
+ ## 0.1.0-beta.23
929
+
930
+ ### Patch Changes
931
+
932
+ - Updated dependencies [2150eee]
933
+ - @stainless-api/docs-ui@0.1.0-beta.18
934
+
935
+ ## 0.1.0-beta.22
936
+
937
+ ### Patch Changes
938
+
939
+ - Updated dependencies [f7ba067]
940
+ - @stainless-api/docs-ui@0.1.0-beta.17
941
+
942
+ ## 0.1.0-beta.21
943
+
944
+ ### Patch Changes
945
+
946
+ - 41e87cb: fix virtual module imports
947
+
948
+ ## 0.1.0-beta.20
949
+
950
+ ### Patch Changes
951
+
952
+ - 9cdb24d: Update pagination components, fix search modal
953
+ - Updated dependencies [9cdb24d]
954
+ - @stainless-api/docs-ui@0.1.0-beta.16
955
+ - @stainless-api/ui-primitives@0.1.0-beta.16
956
+
957
+ ## 0.1.0-beta.19
958
+
959
+ ### Patch Changes
960
+
961
+ - 15c003d: fix react peer dependencies
962
+ - Updated dependencies [15c003d]
963
+ - @stainless-api/docs-ui@0.1.0-beta.15
964
+ - @stainless-api/ui-primitives@0.1.0-beta.15
965
+
966
+ ## 0.1.0-beta.18
967
+
968
+ ### Patch Changes
969
+
970
+ - Updated dependencies [0572f60]
971
+ - @stainless-api/docs-ui@0.1.0-beta.14
972
+
973
+ ## 0.1.0-beta.17
974
+
975
+ ### Patch Changes
976
+
977
+ - a925bb4: fix markdown icon color in dark mode
978
+
979
+ ## 0.1.0-beta.16
980
+
981
+ ### Patch Changes
982
+
983
+ - 0618d05: Markdown rendering of prose pages, ai context menu, auth via cli, minor fixes
984
+ - Updated dependencies [0618d05]
985
+ - @stainless-api/docs-ui@0.1.0-beta.13
986
+ - @stainless-api/ui-primitives@0.1.0-beta.14
987
+
988
+ ## 0.1.0-beta.15
989
+
990
+ ### Patch Changes
991
+
992
+ - e35360f: include ui-primitive packages
993
+ - Updated dependencies [e35360f]
994
+ - @stainless-api/docs-ui@0.1.0-beta.12
995
+ - @stainless-api/ui-primitives@0.1.0-beta.13
996
+
997
+ ## 0.1.0-beta.14
998
+
999
+ ### Patch Changes
1000
+
1001
+ - a529fd4: fix: site title height
1002
+ - Updated dependencies [a529fd4]
1003
+ - @stainless-api/docs-ui@0.1.0-beta.11
1004
+ - @stainless-api/ui-primitives@0.1.0-beta.12
1005
+
1006
+ ## 0.1.0-beta.13
1007
+
1008
+ ### Patch Changes
1009
+
1010
+ - 26a4786: fix: include missing starlight config options
1011
+ - Updated dependencies [26a4786]
1012
+ - @stainless-api/docs-ui@0.1.0-beta.10
1013
+ - @stainless-api/ui-primitives@0.1.0-beta.11
1014
+
3
1015
  ## 0.1.0-beta.12
4
1016
 
5
1017
  ### Patch Changes