@lobomfz/db 0.5.0 → 0.5.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/types.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobomfz/db",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Bun SQLite database with Arktype schemas and typed Kysely client",
5
5
  "keywords": [
6
6
  "arktype",
package/src/types.ts CHANGED
@@ -50,7 +50,7 @@ type TransformTable<TOutput, TInput> = {
50
50
  [K in keyof TOutput & keyof TInput]: TransformField<TOutput, TInput, K>;
51
51
  };
52
52
 
53
- export type SchemaRecord = Record<string, Type>;
53
+ export type SchemaRecord = Record<string, Type<unknown, any>>;
54
54
 
55
55
  export type InferTableType<T> = TransformTable<ExtractOutput<T>, ExtractInput<T>>;
56
56