@stainless-api/docs 0.1.0-beta.55 → 0.1.0-beta.56

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @stainless-api/docs
2
2
 
3
+ ## 0.1.0-beta.56
4
+
5
+ ### Minor Changes
6
+
7
+ - d75a72f: Adds C# language support
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [d75a72f]
12
+ - Updated dependencies [2464347]
13
+ - @stainless-api/docs-ui@0.1.0-beta.47
14
+
3
15
  ## 0.1.0-beta.55
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stainless-api/docs",
3
- "version": "0.1.0-beta.55",
3
+ "version": "0.1.0-beta.56",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -52,8 +52,8 @@
52
52
  "vite-plugin-prebundle-workers": "^0.2.0",
53
53
  "web-worker": "^1.5.0",
54
54
  "yaml": "^2.8.2",
55
- "@stainless-api/docs-ui": "0.1.0-beta.46",
56
- "@stainless-api/ui-primitives": "0.1.0-beta.35"
55
+ "@stainless-api/ui-primitives": "0.1.0-beta.35",
56
+ "@stainless-api/docs-ui": "0.1.0-beta.47"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@astrojs/check": "^0.9.6",
@@ -68,7 +68,7 @@
68
68
  "vite": "^6.4.1",
69
69
  "zod": "^4.1.13",
70
70
  "@stainless/eslint-config": "0.1.0-beta.0",
71
- "@stainless/sdk-json": "^0.1.0-beta.1"
71
+ "@stainless/sdk-json": "^0.1.0-beta.2"
72
72
  },
73
73
  "scripts": {
74
74
  "vendor-deps": "tsx scripts/vendor_deps.ts",
package/plugin/index.ts CHANGED
@@ -289,7 +289,7 @@ async function stlStarlightAstroIntegration(
289
289
  buildVirtualModuleString({
290
290
  BASE_PATH: pluginConfig.basePath,
291
291
  CMS_PORT,
292
- EXCLUDE_LANGUAGES: ['csharp', 'php', ...pluginConfig.excludeLanguages],
292
+ EXCLUDE_LANGUAGES: ['php', ...pluginConfig.excludeLanguages],
293
293
  DEFAULT_LANGUAGE: pluginConfig.defaultLanguage,
294
294
  BREADCRUMB_CONFIG: pluginConfig.breadcrumbs,
295
295
  EXPAND_RESOURCES: pluginConfig.expandResources,