@ontrails/config 1.0.0-beta.16 → 1.0.0-beta.18

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,19 @@
1
1
  # @ontrails/config
2
2
 
3
+ ## 1.0.0-beta.18
4
+
5
+ ### Patch Changes
6
+
7
+ - @ontrails/core@1.0.0-beta.18
8
+
9
+ ## 1.0.0-beta.17
10
+
11
+ ### Patch Changes
12
+
13
+ - 3dc8254: Fix README TypeScript snippets so the expanded documentation snippet gate can verify them.
14
+ - Updated dependencies [3dc8254]
15
+ - @ontrails/core@1.0.0-beta.17
16
+
3
17
  ## 1.0.0-beta.16
4
18
 
5
19
  ### Major Changes
package/README.md CHANGED
@@ -113,7 +113,7 @@ Environment variables are coerced to the schema type. Apply `env()` before `.def
113
113
  Mark a schema field as sensitive:
114
114
 
115
115
  ```typescript
116
- import { secret } from '@ontrails/config';
116
+ import { env, secret } from '@ontrails/config';
117
117
 
118
118
  const schema = z.object({
119
119
  apiKey: secret(z.string()),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ontrails/config",
3
- "version": "1.0.0-beta.16",
3
+ "version": "1.0.0-beta.18",
4
4
  "files": [
5
5
  "src/**/*.ts",
6
6
  "!src/**/__tests__/**",
@@ -22,7 +22,7 @@
22
22
  "clean": "rm -rf dist *.tsbuildinfo"
23
23
  },
24
24
  "peerDependencies": {
25
- "@ontrails/core": "^1.0.0-beta.15",
25
+ "@ontrails/core": "^1.0.0-beta.17",
26
26
  "zod": "^4.3.5"
27
27
  }
28
28
  }