@sqrzro/server 4.0.0-alpha.31 → 4.0.0-alpha.32

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.
@@ -2,7 +2,7 @@ import { SQL } from 'drizzle-orm';
2
2
  import { PgColumn } from 'drizzle-orm/pg-core';
3
3
  import { P as Paginated } from '../interfaces-DTUqy5Oj.js';
4
4
 
5
- type QueryConditions = SQL[];
5
+ type QueryConditions = (SQL | undefined)[];
6
6
  type UnwrapColumnType<T> = T extends PgColumn<infer C, any, any> ? C['data'] : never;
7
7
  type UnwrapInsert<TConfig> = TConfig extends {
8
8
  makeInsertMutation: (values: infer Data) => Promise<infer Model>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sqrzro/server",
3
- "version": "4.0.0-alpha.31",
3
+ "version": "4.0.0-alpha.32",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -50,7 +50,7 @@
50
50
  "react-dom": "^19.2.4",
51
51
  "redis": "^5.11.0",
52
52
  "zod": "^4.3.6",
53
- "@sqrzro/utility": "^4.0.0-alpha.12"
53
+ "@sqrzro/utility": "^4.0.0-alpha.13"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@types/jest": "^29.5.14",