@read-frog/api-contract 0.1.1 → 0.1.3
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/dist/index.d.ts +5 -0
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ declare const ColumnUpdateInputSchema: z.ZodObject<{
|
|
|
66
66
|
color: z.ZodString;
|
|
67
67
|
}, z.core.$strip>>>;
|
|
68
68
|
}, z.core.$strip>], "type">>;
|
|
69
|
+
width: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
69
70
|
}, z.core.$strict>;
|
|
70
71
|
}, z.core.$strip>;
|
|
71
72
|
declare const ColumnUpdateOutputSchema: z.ZodObject<{
|
|
@@ -140,6 +141,7 @@ declare const TableColumnSchema: z.ZodObject<{
|
|
|
140
141
|
}, z.core.$strip>], "type">;
|
|
141
142
|
position: z.ZodNumber;
|
|
142
143
|
isPrimary: z.ZodBoolean;
|
|
144
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
143
145
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
144
146
|
updatedAt: z.ZodCoercedDate<unknown>;
|
|
145
147
|
}, z.core.$strip>;
|
|
@@ -202,6 +204,7 @@ declare const CustomTableGetOutputSchema: z.ZodObject<{
|
|
|
202
204
|
}, z.core.$strip>], "type">;
|
|
203
205
|
position: z.ZodNumber;
|
|
204
206
|
isPrimary: z.ZodBoolean;
|
|
207
|
+
width: z.ZodNullable<z.ZodNumber>;
|
|
205
208
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
206
209
|
updatedAt: z.ZodCoercedDate<unknown>;
|
|
207
210
|
}, z.core.$strip>>;
|
|
@@ -321,6 +324,7 @@ declare const contract: {
|
|
|
321
324
|
}, zod_v4_core0.$strip>], "type">;
|
|
322
325
|
position: z$1.ZodNumber;
|
|
323
326
|
isPrimary: z$1.ZodBoolean;
|
|
327
|
+
width: z$1.ZodNullable<z$1.ZodNumber>;
|
|
324
328
|
createdAt: z$1.ZodCoercedDate<unknown>;
|
|
325
329
|
updatedAt: z$1.ZodCoercedDate<unknown>;
|
|
326
330
|
}, zod_v4_core0.$strip>>;
|
|
@@ -428,6 +432,7 @@ declare const contract: {
|
|
|
428
432
|
color: z$1.ZodString;
|
|
429
433
|
}, zod_v4_core0.$strip>>>;
|
|
430
434
|
}, zod_v4_core0.$strip>], "type">>;
|
|
435
|
+
width: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodNumber>>;
|
|
431
436
|
}, zod_v4_core0.$strict>;
|
|
432
437
|
}, zod_v4_core0.$strip>, z$1.ZodObject<{
|
|
433
438
|
txid: z$1.ZodNumber;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@read-frog/api-contract",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.3",
|
|
5
5
|
"private": false,
|
|
6
6
|
"exports": {
|
|
7
7
|
".": "./dist/index.d.ts"
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
"dist"
|
|
12
12
|
],
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@orpc/contract": "^1.13.
|
|
15
|
-
"zod": "^4.3.
|
|
16
|
-
"@read-frog/definitions": "0.
|
|
14
|
+
"@orpc/contract": "^1.13.4",
|
|
15
|
+
"zod": "^4.3.6",
|
|
16
|
+
"@read-frog/definitions": "0.1.1"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@types/node": "^25.
|
|
20
|
-
"tsdown": "^0.
|
|
19
|
+
"@types/node": "^25.2.1",
|
|
20
|
+
"tsdown": "^0.20.3",
|
|
21
21
|
"@repo/eslint-config": "0.0.0",
|
|
22
22
|
"@repo/typescript-config": "0.0.0"
|
|
23
23
|
},
|