cogsbox-shape 0.5.204 → 0.5.206
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 +43 -41
- package/cogsbox-shape-state/dist/example/type-hover-example.js +2 -2
- package/cogsbox-shape-state/dist/plugin.d.ts +1 -0
- package/cogsbox-shape-state/dist/plugin.js +24 -4
- package/dist/schema.d.ts +51 -50
- package/dist/schema.js +91 -84
- package/dist/vitest/fullSchema.test.js +249 -127
- package/dist/vitest/refineRuntime.test.js +85 -14
- package/package.json +1 -1
|
@@ -6,11 +6,15 @@ describe("refine runtime behavior", () => {
|
|
|
6
6
|
const rules = schema({
|
|
7
7
|
_tableName: "rules",
|
|
8
8
|
id: s.sqlite({ type: "int", pk: true }),
|
|
9
|
-
min: s
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
min: s
|
|
10
|
+
.sqlite({ type: "int", nullable: true })
|
|
11
|
+
.client({ value: null, schema: z.number().nullable() }),
|
|
12
|
+
max: s
|
|
13
|
+
.sqlite({ type: "int", nullable: true })
|
|
14
|
+
.client({ value: null, schema: z.number().nullable() }),
|
|
15
|
+
label: s.sqlite({ type: "varchar" }).client({ value: "" }),
|
|
12
16
|
}).refine((r) => [
|
|
13
|
-
r(["
|
|
17
|
+
r(["client", "clientCheck"], (row) => {
|
|
14
18
|
if (row.min !== null && row.max !== null && row.min >= row.max) {
|
|
15
19
|
return { path: ["max"], message: "Max must be > min" };
|
|
16
20
|
}
|
|
@@ -28,19 +32,34 @@ describe("refine runtime behavior", () => {
|
|
|
28
32
|
]);
|
|
29
33
|
return createSchemaBox({ rules }, { rules: {} });
|
|
30
34
|
}
|
|
31
|
-
it("schemas.
|
|
35
|
+
it("schemas.client catches client refine", () => {
|
|
32
36
|
const box = makeRefinedBox();
|
|
33
|
-
const good = box.rules.schemas.
|
|
37
|
+
const good = box.rules.schemas.client.safeParse({
|
|
38
|
+
id: 1,
|
|
39
|
+
min: 1,
|
|
40
|
+
max: 10,
|
|
41
|
+
label: "x",
|
|
42
|
+
});
|
|
34
43
|
expect(good.success).toBe(true);
|
|
35
|
-
const bad = box.rules.schemas.
|
|
44
|
+
const bad = box.rules.schemas.client.safeParse({
|
|
45
|
+
id: 1,
|
|
46
|
+
min: 10,
|
|
47
|
+
max: 1,
|
|
48
|
+
label: "x",
|
|
49
|
+
});
|
|
36
50
|
expect(bad.success).toBe(false);
|
|
37
51
|
if (!bad.success) {
|
|
38
52
|
expect(bad.error.issues[0].message).toBe("Max must be > min");
|
|
39
53
|
}
|
|
40
54
|
});
|
|
41
|
-
it("schemas.
|
|
55
|
+
it("schemas.clientChecked catches client refine", () => {
|
|
42
56
|
const box = makeRefinedBox();
|
|
43
|
-
const bad = box.rules.schemas.
|
|
57
|
+
const bad = box.rules.schemas.clientChecked.safeParse({
|
|
58
|
+
id: 1,
|
|
59
|
+
min: 10,
|
|
60
|
+
max: 1,
|
|
61
|
+
label: "x",
|
|
62
|
+
});
|
|
44
63
|
expect(bad.success).toBe(false);
|
|
45
64
|
if (!bad.success) {
|
|
46
65
|
expect(bad.error.issues[0].message).toBe("Max must be > min");
|
|
@@ -48,7 +67,12 @@ describe("refine runtime behavior", () => {
|
|
|
48
67
|
});
|
|
49
68
|
it("schemas.server catches server refine", () => {
|
|
50
69
|
const box = makeRefinedBox();
|
|
51
|
-
const bad = box.rules.schemas.server.safeParse({
|
|
70
|
+
const bad = box.rules.schemas.server.safeParse({
|
|
71
|
+
id: 1,
|
|
72
|
+
min: 1,
|
|
73
|
+
max: 10,
|
|
74
|
+
label: "",
|
|
75
|
+
});
|
|
52
76
|
expect(bad.success).toBe(false);
|
|
53
77
|
if (!bad.success) {
|
|
54
78
|
expect(bad.error.issues[0].message).toBe("Label required");
|
|
@@ -56,7 +80,12 @@ describe("refine runtime behavior", () => {
|
|
|
56
80
|
});
|
|
57
81
|
it("schemas.sql catches server refine", () => {
|
|
58
82
|
const box = makeRefinedBox();
|
|
59
|
-
const bad = box.rules.schemas.sql.safeParse({
|
|
83
|
+
const bad = box.rules.schemas.sql.safeParse({
|
|
84
|
+
id: 1,
|
|
85
|
+
min: 1,
|
|
86
|
+
max: 10,
|
|
87
|
+
label: "",
|
|
88
|
+
});
|
|
60
89
|
expect(bad.success).toBe(false);
|
|
61
90
|
if (!bad.success) {
|
|
62
91
|
expect(bad.error.issues[0].message).toBe("Label required");
|
|
@@ -78,11 +107,53 @@ describe("refine runtime behavior", () => {
|
|
|
78
107
|
const rules = schema({
|
|
79
108
|
_tableName: "rules",
|
|
80
109
|
id: s.sqlite({ type: "int", pk: true }),
|
|
81
|
-
min: s
|
|
82
|
-
|
|
110
|
+
min: s
|
|
111
|
+
.sqlite({ type: "int", nullable: true })
|
|
112
|
+
.client({ value: null, schema: z.number().nullable() }),
|
|
113
|
+
max: s
|
|
114
|
+
.sqlite({ type: "int", nullable: true })
|
|
115
|
+
.client({ value: null, schema: z.number().nullable() }),
|
|
83
116
|
});
|
|
84
117
|
const box = createSchemaBox({ rules }, { rules: {} });
|
|
85
|
-
const good = box.rules.schemas.
|
|
118
|
+
const good = box.rules.schemas.client.safeParse({
|
|
119
|
+
id: 1,
|
|
120
|
+
min: 10,
|
|
121
|
+
max: 1,
|
|
122
|
+
});
|
|
86
123
|
expect(good.success).toBe(true);
|
|
87
124
|
});
|
|
125
|
+
it("view keeps leaf refines and prefixes issue paths", () => {
|
|
126
|
+
const rules = schema({
|
|
127
|
+
_tableName: "rules",
|
|
128
|
+
id: s.sqlite({ type: "int", pk: true }),
|
|
129
|
+
min: s
|
|
130
|
+
.sqlite({ type: "int", field: "minField" })
|
|
131
|
+
.client({ value: 0 }),
|
|
132
|
+
max: s.sqlite({ type: "int" }).client({ value: 0 }),
|
|
133
|
+
}).refine((r) => [
|
|
134
|
+
r("clientCheck", (row) => row.min >= row.max
|
|
135
|
+
? { path: ["max"], message: "Max must be > min" }
|
|
136
|
+
: undefined, ["min", "max"]),
|
|
137
|
+
]);
|
|
138
|
+
const journal = schema({
|
|
139
|
+
_tableName: "journal",
|
|
140
|
+
id: s.sqlite({ type: "int", pk: true }),
|
|
141
|
+
rules: s.hasOne(true),
|
|
142
|
+
});
|
|
143
|
+
const box = createSchemaBox({ rules, journal }, {
|
|
144
|
+
journal: { rules: { fromKey: "id", toKey: rules.id } },
|
|
145
|
+
});
|
|
146
|
+
const view = box.journal.createView({ rules: true });
|
|
147
|
+
const bad = view.schemas.clientChecked.safeParse({
|
|
148
|
+
id: 1,
|
|
149
|
+
rules: { id: 1, min: 10, max: 1 },
|
|
150
|
+
});
|
|
151
|
+
expect(bad.success).toBe(false);
|
|
152
|
+
if (!bad.success) {
|
|
153
|
+
expect(bad.error.issues[0]).toMatchObject({
|
|
154
|
+
path: ["rules", "max"],
|
|
155
|
+
message: "Max must be > min",
|
|
156
|
+
});
|
|
157
|
+
}
|
|
158
|
+
});
|
|
88
159
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cogsbox-shape",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.206",
|
|
4
4
|
"description": "A TypeScript library for creating type-safe database schemas with Zod validation, SQL type definitions, and automatic client/server transformations. Unifies client, server, and database types through a single schema definition, with built-in support for relationships and serialization.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|