@clossys/butler 0.1.4 → 0.1.5
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 +14 -0
- package/dist/schema.d.ts +5 -5
- package/dist/schema.js +5 -5
- package/package.json +1 -1
- package/src/schema.ts +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
3
3
|
All notable changes to this package are documented here. Format follows
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
5
5
|
|
|
6
|
+
## [0.1.5] - 2026-09-17
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
|
|
10
|
+
- Removed a doc-comment citation in `src/schema.ts` that pointed at a
|
|
11
|
+
repository-root agent-policy file. `src/` is packed content and compiles
|
|
12
|
+
into `dist/`, so that comment reached an installed consumer while the file
|
|
13
|
+
it named did not: `files` carries `dist`, `src`, this changelog, the README
|
|
14
|
+
and the licence, and nothing from the repository root. The sentence now
|
|
15
|
+
states the hand-rolled-validation convention on its own, which is the part
|
|
16
|
+
a reader of the installed package can actually act on. No type, export,
|
|
17
|
+
signature, or runtime behaviour changed.
|
|
18
|
+
|
|
6
19
|
## [0.1.4] - 2026-09-16
|
|
7
20
|
|
|
8
21
|
### Fixed
|
|
@@ -16,6 +29,7 @@ All notable changes to this package are documented here. Format follows
|
|
|
16
29
|
installs anonymously. A reader following the instruction as written
|
|
17
30
|
would create a credential this package never asks for. (#924)
|
|
18
31
|
|
|
32
|
+
|
|
19
33
|
## [0.1.3] - 2026-09-02
|
|
20
34
|
|
|
21
35
|
### Fixed
|
package/dist/schema.d.ts
CHANGED
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
* carries nothing else.
|
|
42
42
|
*
|
|
43
43
|
* Validation here is hand-rolled over `unknown`, with no schema library,
|
|
44
|
-
* matching every other package in this workspace
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
44
|
+
* matching every other package in this workspace. These validators exist
|
|
45
|
+
* for the boundary where records arrive as untyped JSON — a
|
|
46
|
+
* preference-centre route body, a file the CLI reads, a value read back out
|
|
47
|
+
* of a host's own store — before anything downstream is allowed to trust
|
|
48
|
+
* them.
|
|
49
49
|
*/
|
|
50
50
|
import { type ValidationResult } from "./validation.js";
|
|
51
51
|
/**
|
package/dist/schema.js
CHANGED
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
* carries nothing else.
|
|
42
42
|
*
|
|
43
43
|
* Validation here is hand-rolled over `unknown`, with no schema library,
|
|
44
|
-
* matching every other package in this workspace
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
44
|
+
* matching every other package in this workspace. These validators exist
|
|
45
|
+
* for the boundary where records arrive as untyped JSON — a
|
|
46
|
+
* preference-centre route body, a file the CLI reads, a value read back out
|
|
47
|
+
* of a host's own store — before anything downstream is allowed to trust
|
|
48
|
+
* them.
|
|
49
49
|
*/
|
|
50
50
|
import { isOneOf, isPlainObject, pushIssue, optionalTimestamp, requireArrayOf, requireBoolean, requireNumber, requireString, requireTimestamp, } from "./validation.js";
|
|
51
51
|
/** Every provenance value, for a caller validating untyped input. */
|
package/package.json
CHANGED
package/src/schema.ts
CHANGED
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
* carries nothing else.
|
|
42
42
|
*
|
|
43
43
|
* Validation here is hand-rolled over `unknown`, with no schema library,
|
|
44
|
-
* matching every other package in this workspace
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
*
|
|
48
|
-
*
|
|
44
|
+
* matching every other package in this workspace. These validators exist
|
|
45
|
+
* for the boundary where records arrive as untyped JSON — a
|
|
46
|
+
* preference-centre route body, a file the CLI reads, a value read back out
|
|
47
|
+
* of a host's own store — before anything downstream is allowed to trust
|
|
48
|
+
* them.
|
|
49
49
|
*/
|
|
50
50
|
|
|
51
51
|
import {
|