drizzle-arktype 0.1.2-014cdb8 → 0.1.2-727cbe4
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 +2 -2
- package/column.d.mts +2 -2
- package/column.d.ts +2 -2
- package/package.json +1 -1
package/column.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type Type } from 'arktype';
|
|
2
2
|
import type { Column } from 'drizzle-orm';
|
|
3
|
-
export declare const literalSchema: import("arktype
|
|
4
|
-
export declare const jsonSchema: import("arktype
|
|
3
|
+
export declare const literalSchema: import("arktype").BaseType<string | number | boolean | null, {}>;
|
|
4
|
+
export declare const jsonSchema: import("arktype").BaseType<string | number | boolean | any[] | Record<string, any> | null, {}>;
|
|
5
5
|
export declare const bufferSchema: import("arktype/internal/methods/object.ts").ObjectType<Buffer, {}>;
|
|
6
6
|
export declare function columnToSchema(column: Column): Type;
|
package/column.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type Type } from 'arktype';
|
|
2
2
|
import type { Column } from 'drizzle-orm';
|
|
3
|
-
export declare const literalSchema: import("arktype
|
|
4
|
-
export declare const jsonSchema: import("arktype
|
|
3
|
+
export declare const literalSchema: import("arktype").BaseType<string | number | boolean | null, {}>;
|
|
4
|
+
export declare const jsonSchema: import("arktype").BaseType<string | number | boolean | any[] | Record<string, any> | null, {}>;
|
|
5
5
|
export declare const bufferSchema: import("arktype/internal/methods/object.ts").ObjectType<Buffer, {}>;
|
|
6
6
|
export declare function columnToSchema(column: Column): Type;
|
package/column.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type Type } from 'arktype';
|
|
2
2
|
import type { Column } from 'drizzle-orm';
|
|
3
|
-
export declare const literalSchema: import("arktype
|
|
4
|
-
export declare const jsonSchema: import("arktype
|
|
3
|
+
export declare const literalSchema: import("arktype").BaseType<string | number | boolean | null, {}>;
|
|
4
|
+
export declare const jsonSchema: import("arktype").BaseType<string | number | boolean | any[] | Record<string, any> | null, {}>;
|
|
5
5
|
export declare const bufferSchema: import("arktype/internal/methods/object.ts").ObjectType<Buffer, {}>;
|
|
6
6
|
export declare function columnToSchema(column: Column): Type;
|