@ontrails/permits 1.0.0-beta.42 → 1.0.0-beta.45
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 +20 -0
- package/package.json +7 -2
- package/src/boundary.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @ontrails/permits
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.45
|
|
4
|
+
|
|
5
|
+
## 1.0.0-beta.44
|
|
6
|
+
|
|
7
|
+
### Patch Changes
|
|
8
|
+
|
|
9
|
+
- [`b1fbe57`](https://github.com/outfitter-dev/trails/commit/b1fbe574e6f44d1fecb5e3a000270955c0a77b7b): Publish Bun-validated package tarballs through an npm trusted-publishing adapter
|
|
10
|
+
binding, add exact repository metadata for each public workspace package, and
|
|
11
|
+
correct the native Bun release descriptor to its pack-only runtime boundary.
|
|
12
|
+
|
|
13
|
+
## 1.0.0-beta.43
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [`88a6a62`](https://github.com/outfitter-dev/trails/commit/88a6a62a9e9e230ca6d368fa78dc3ece6c816204): Complete the v1 classification-first cutover from projection/project vocabulary
|
|
18
|
+
to derive/derived for contract-owned fact production and render/rendered for
|
|
19
|
+
surface presentation. Public type, helper, rule, relation, and report names move
|
|
20
|
+
without compatibility aliases; ordinary repository/project nouns remain
|
|
21
|
+
explicit preserves or structured review inventory.
|
|
22
|
+
|
|
3
23
|
## 1.0.0-beta.42
|
|
4
24
|
|
|
5
25
|
## 1.0.0-beta.41
|
package/package.json
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ontrails/permits",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.45",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "git+https://github.com/outfitter-dev/trails.git",
|
|
7
|
+
"directory": "packages/permits"
|
|
8
|
+
},
|
|
4
9
|
"files": [
|
|
5
10
|
"src/**/*.ts",
|
|
6
11
|
"!src/**/__tests__/**",
|
|
@@ -24,7 +29,7 @@
|
|
|
24
29
|
"clean": "rm -rf dist *.tsbuildinfo"
|
|
25
30
|
},
|
|
26
31
|
"peerDependencies": {
|
|
27
|
-
"@ontrails/core": "^1.0.0-beta.
|
|
32
|
+
"@ontrails/core": "^1.0.0-beta.45",
|
|
28
33
|
"zod": "^4.3.5"
|
|
29
34
|
}
|
|
30
35
|
}
|
package/src/boundary.ts
CHANGED
|
@@ -120,7 +120,7 @@ const materializeAuthAdapter = async (
|
|
|
120
120
|
* Resolve a surface-extracted bearer token to a `BasePermit`.
|
|
121
121
|
*
|
|
122
122
|
* Surfaces own credential extraction. This helper owns the shared auth
|
|
123
|
-
* adapter lookup, invocation, error normalization, and BasePermit
|
|
123
|
+
* adapter lookup, invocation, error normalization, and BasePermit rendering.
|
|
124
124
|
*/
|
|
125
125
|
export const resolvePermitFromBearerToken = async (
|
|
126
126
|
options: ResolvePermitFromBearerTokenOptions
|