@pome-sh/checks 0.1.0 → 0.1.1
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 +21 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @pome-sh/checks
|
|
2
2
|
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
No change to the published surface — `dist/` is byte-identical to 0.1.0, so no
|
|
6
|
+
declaration moved and no consumer's verdict changes. What moved is the test that
|
|
7
|
+
protects that surface, and it moved because the surface acquired a real consumer:
|
|
8
|
+
pome-cloud F-1349 pointed all 19 of its grading import sites here, so the
|
|
9
|
+
per-twin subpaths are now load-bearing rather than provided-for-later.
|
|
10
|
+
|
|
11
|
+
- `per-twin subpaths` pins each twin's seed schema by its EXACT name instead of
|
|
12
|
+
asking whether any of three names is present. The old assertion passed as long
|
|
13
|
+
as one of `seedSchema` / `gmailSeedSchema` / `linearSeedSchema` existed on the
|
|
14
|
+
module, so gmail exporting `seedSchema` would have been green here and a
|
|
15
|
+
compile error in the consumer.
|
|
16
|
+
- The same arm now pins `defaultSeedState` (github/gmail/linear/slack) and
|
|
17
|
+
`defaultSeed` (stripe), which nothing pinned before. The barrel exports the
|
|
18
|
+
same values under prefixed aliases (`defaultGitHubSeed`, …) and the barrel arm
|
|
19
|
+
covers those, so a subpath dropping or renaming them was invisible.
|
|
20
|
+
- Each subpath's default seed is called and round-tripped through that subpath's
|
|
21
|
+
own `parseSeed`, since a factory that is present but broken reads the same as
|
|
22
|
+
one that works.
|
|
23
|
+
|
|
3
24
|
## 0.1.0
|
|
4
25
|
|
|
5
26
|
First release. Carries the grading vocabulary of all five digital twins so a
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pome-sh/checks",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Pome's grading vocabulary
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Pome's grading vocabulary — the check declarations, seed schemas and default seeds of all five digital twins, plus the check DSL they are written in. Declarations only: no twin server, no database, no routes, no tools.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|