@supawatch/target-seed 0.9.0 → 0.9.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/README.md +7 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -18,9 +18,12 @@ with a nullable edge, and a post-seed insert that does not collide
|
|
|
18
18
|
because sequences were resynced. Seeded rows are ground-truth checked
|
|
19
19
|
against the generated Zod schemas.
|
|
20
20
|
|
|
21
|
-
Honest limits, emitted as comments rather than guesses:
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
21
|
+
Honest limits, emitted as comments rather than guesses: anything the
|
|
22
|
+
generator cannot fill truthfully is skipped by name rather than
|
|
23
|
+
approximated. That covers required foreign keys that form a cycle or
|
|
24
|
+
reference something other than a predictable single-column primary key,
|
|
25
|
+
multi-column foreign keys, constrained domains, and required columns
|
|
26
|
+
whose types have no honest literal (composites, unknown types, string
|
|
27
|
+
types with constrained input syntax like inet or interval).
|
|
25
28
|
|
|
26
29
|
MIT.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supawatch/target-seed",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"description": "Deterministic FK-aware seed.sql generated from live Postgres by supawatch: topological order, identity overriding, sequence resync.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"supabase",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"dist"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@supawatch/core": "0.9.
|
|
37
|
+
"@supawatch/core": "0.9.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/node": "^22.20.1",
|