@ultimat3/manifest 5.0.1 → 6.0.0
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 +6 -6
- package/src/schema.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ultimat3/manifest",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "x.manifest.json: deterministic generated facts, contract diff, AGENTS.md budget",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"test": "bun test"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@ultimat3/action": "
|
|
35
|
-
"@ultimat3/core": "
|
|
36
|
-
"@ultimat3/entity": "
|
|
37
|
-
"@ultimat3/jobs": "
|
|
38
|
-
"@ultimat3/query": "
|
|
34
|
+
"@ultimat3/action": "6.0.0",
|
|
35
|
+
"@ultimat3/core": "6.0.0",
|
|
36
|
+
"@ultimat3/entity": "6.0.0",
|
|
37
|
+
"@ultimat3/jobs": "6.0.0",
|
|
38
|
+
"@ultimat3/query": "6.0.0"
|
|
39
39
|
}
|
|
40
40
|
}
|
package/src/schema.ts
CHANGED
|
@@ -25,7 +25,7 @@ export type JsonValue =
|
|
|
25
25
|
| readonly JsonValue[]
|
|
26
26
|
| { readonly [key: string]: JsonValue };
|
|
27
27
|
|
|
28
|
-
export type RenderMode = 'static' | 'isr' | 'ssr' | 'stream'
|
|
28
|
+
export type RenderMode = 'static' | 'isr' | 'ssr' | 'stream';
|
|
29
29
|
export type OfflineStrategy = 'precache' | 'runtime' | 'network-only';
|
|
30
30
|
export type HydrateStrategy = 'idle' | 'visible' | 'interaction' | 'never';
|
|
31
31
|
|