@ontrails/permits 1.0.0-beta.18 → 1.0.0-beta.19

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,28 @@
1
1
  # @ontrails/permits
2
2
 
3
+ ## 1.0.0-beta.19
4
+
5
+ ### Patch Changes
6
+
7
+ - 5d88104: Polish Trails blaze terminology across package docs and Warden guidance.
8
+ - Updated dependencies [e41c382]
9
+ - Updated dependencies [1eb5bdc]
10
+ - Updated dependencies [f8d80b9]
11
+ - Updated dependencies [846a597]
12
+ - Updated dependencies [223aaad]
13
+ - Updated dependencies [3125f4d]
14
+ - Updated dependencies [2494dc6]
15
+ - Updated dependencies [2d53717]
16
+ - Updated dependencies [16cb740]
17
+ - Updated dependencies [8894ecb]
18
+ - Updated dependencies [fdf7ec9]
19
+ - Updated dependencies [d76be13]
20
+ - Updated dependencies [84f56a5]
21
+ - Updated dependencies [431b04c]
22
+ - Updated dependencies [5d88104]
23
+ - Updated dependencies [f04a9ef]
24
+ - @ontrails/core@1.0.0-beta.19
25
+
3
26
  ## 1.0.0-beta.18
4
27
 
5
28
  ### Patch Changes
package/README.md CHANGED
@@ -12,7 +12,7 @@ The permits package owns adapter-agnostic auth resources, adapters, and helpers.
12
12
  export const create = trail('gist.create', {
13
13
  permit: { scopes: ['gist:write'] },
14
14
  blaze: async (input, ctx) => {
15
- // executeTrail enforces scopes before blaze runs
15
+ // executeTrail enforces scopes before execution enters the blaze
16
16
  return Result.ok(newGist);
17
17
  },
18
18
  });
@@ -72,10 +72,7 @@ const adapter = createJwtAdapter({
72
72
  });
73
73
  ```
74
74
 
75
- `@ontrails/permits/jwt` is the canonical built-in JWT adapter subpath. The root
76
- package intentionally keeps convenience re-exports for interactive discovery,
77
- but generated code, docs, and adapter-specific examples should import JWT names
78
- from the subpath.
75
+ `@ontrails/permits/jwt` is the canonical built-in JWT adapter subpath. The root package intentionally keeps convenience re-exports for interactive discovery, but generated code, docs, and adapter-specific examples should import JWT names from the subpath.
79
76
 
80
77
  ### Custom adapters
81
78
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ontrails/permits",
3
- "version": "1.0.0-beta.18",
3
+ "version": "1.0.0-beta.19",
4
4
  "files": [
5
5
  "src/**/*.ts",
6
6
  "!src/**/__tests__/**",
@@ -24,7 +24,7 @@
24
24
  "clean": "rm -rf dist *.tsbuildinfo"
25
25
  },
26
26
  "peerDependencies": {
27
- "@ontrails/core": "^1.0.0-beta.17",
27
+ "@ontrails/core": "^1.0.0-beta.19",
28
28
  "zod": "^4.3.5"
29
29
  }
30
30
  }