@ontrails/adapter-kit 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/package.json +8 -3
- package/src/overlay.ts +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ontrails/adapter-kit",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.45",
|
|
4
4
|
"description": "Internal adapter authoring kit for Trails metadata, scaffolding, and checks.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/outfitter-dev/trails.git",
|
|
8
|
+
"directory": "packages/adapter-kit"
|
|
9
|
+
},
|
|
5
10
|
"files": [
|
|
6
11
|
"src/**/*.ts",
|
|
7
12
|
"!src/**/__tests__/**",
|
|
@@ -21,8 +26,8 @@
|
|
|
21
26
|
"clean": "rm -rf dist *.tsbuildinfo"
|
|
22
27
|
},
|
|
23
28
|
"dependencies": {
|
|
24
|
-
"@ontrails/core": "^1.0.0-beta.
|
|
25
|
-
"@ontrails/source": "^1.0.0-beta.
|
|
29
|
+
"@ontrails/core": "^1.0.0-beta.45",
|
|
30
|
+
"@ontrails/source": "^1.0.0-beta.45"
|
|
26
31
|
},
|
|
27
32
|
"peerDependencies": {
|
|
28
33
|
"zod": "^4.3.5"
|
package/src/overlay.ts
CHANGED
|
@@ -76,7 +76,7 @@ export interface Overlay {
|
|
|
76
76
|
*/
|
|
77
77
|
readonly schema: z.ZodType;
|
|
78
78
|
/**
|
|
79
|
-
*
|
|
79
|
+
* Derive the topo into this overlay's facts.
|
|
80
80
|
*
|
|
81
81
|
* Must be deterministic — the same topo always yields the same facts
|
|
82
82
|
* (sort any collections) — and must return JSON-plain data, because the
|