@stainless-api/docs 0.1.0-beta.134 → 0.1.0-beta.135

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,11 @@
1
1
  # @stainless-api/docs
2
2
 
3
+ ## 0.1.0-beta.135
4
+
5
+ ### Patch Changes
6
+
7
+ - dea0395: fix backwards llmsTxt.disabled parsing
8
+
3
9
  ## 0.1.0-beta.134
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stainless-api/docs",
3
- "version": "0.1.0-beta.134",
3
+ "version": "0.1.0-beta.135",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -90,8 +90,8 @@
90
90
  "vite": "^7.3.2",
91
91
  "vitest": "^4.1.4",
92
92
  "zod": "^4.3.6",
93
- "@stainless/sdk-json": "^0.1.0-beta.10",
94
- "@stainless/eslint-config": "0.1.0-beta.2"
93
+ "@stainless/eslint-config": "0.1.0-beta.2",
94
+ "@stainless/sdk-json": "^0.1.0-beta.10"
95
95
  },
96
96
  "scripts": {
97
97
  "vendor-deps": "node scripts/vendor_deps.ts",
@@ -395,7 +395,7 @@ function normalizeConfig(partial: SomeStainlessStarlightUserConfig, astroOptions
395
395
  experimentalPrerender: partial.experimentalPrerender ?? true,
396
396
  stainlessProject: partial.stainlessProject,
397
397
  llmsTxt: {
398
- enabled: partial.llmsTxt?.disabled ?? true,
398
+ enabled: !partial.llmsTxt?.disabled,
399
399
  description: partial.llmsTxt?.description ?? null,
400
400
  detailThreshold: partial.llmsTxt?.detailThreshold ?? 2000,
401
401
  },