drizzle-arktype 0.1.3-69a2ca0 → 0.1.3-7275360
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/column.d.cts +1 -1
- package/column.d.mts +1 -1
- package/column.d.ts +1 -1
- package/package.json +2 -2
package/column.d.cts
CHANGED
|
@@ -2,5 +2,5 @@ import { type Type } from 'arktype';
|
|
|
2
2
|
import { type Column } from 'drizzle-orm';
|
|
3
3
|
export declare const literalSchema: import("arktype").BaseType<string | number | boolean | null, {}>;
|
|
4
4
|
export declare const jsonSchema: import("arktype").BaseType<string | number | boolean | any[] | Record<string, any> | null, {}>;
|
|
5
|
-
export declare const bufferSchema: import("arktype/internal/methods/object.ts").ObjectType<Buffer
|
|
5
|
+
export declare const bufferSchema: import("arktype/internal/methods/object.ts").ObjectType<Buffer<ArrayBufferLike>, {}>;
|
|
6
6
|
export declare function columnToSchema(column: Column): Type;
|
package/column.d.mts
CHANGED
|
@@ -2,5 +2,5 @@ import { type Type } from 'arktype';
|
|
|
2
2
|
import { type Column } from 'drizzle-orm';
|
|
3
3
|
export declare const literalSchema: import("arktype").BaseType<string | number | boolean | null, {}>;
|
|
4
4
|
export declare const jsonSchema: import("arktype").BaseType<string | number | boolean | any[] | Record<string, any> | null, {}>;
|
|
5
|
-
export declare const bufferSchema: import("arktype/internal/methods/object.ts").ObjectType<Buffer
|
|
5
|
+
export declare const bufferSchema: import("arktype/internal/methods/object.ts").ObjectType<Buffer<ArrayBufferLike>, {}>;
|
|
6
6
|
export declare function columnToSchema(column: Column): Type;
|
package/column.d.ts
CHANGED
|
@@ -2,5 +2,5 @@ import { type Type } from 'arktype';
|
|
|
2
2
|
import { type Column } from 'drizzle-orm';
|
|
3
3
|
export declare const literalSchema: import("arktype").BaseType<string | number | boolean | null, {}>;
|
|
4
4
|
export declare const jsonSchema: import("arktype").BaseType<string | number | boolean | any[] | Record<string, any> | null, {}>;
|
|
5
|
-
export declare const bufferSchema: import("arktype/internal/methods/object.ts").ObjectType<Buffer
|
|
5
|
+
export declare const bufferSchema: import("arktype/internal/methods/object.ts").ObjectType<Buffer<ArrayBufferLike>, {}>;
|
|
6
6
|
export declare function columnToSchema(column: Column): Type;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drizzle-arktype",
|
|
3
|
-
"version": "0.1.3-
|
|
3
|
+
"version": "0.1.3-7275360",
|
|
4
4
|
"description": "Generate arktype schemas from Drizzle ORM schemas",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"license": "Apache-2.0",
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"arktype": ">=2.0.0",
|
|
60
|
-
"drizzle-orm": ">=0.
|
|
60
|
+
"drizzle-orm": ">=1.0.0-beta.1"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@ark/attest": "^0.45.8",
|