@blitznocode/blitz-orm 0.11.4 → 0.11.6

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.mts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { TypeDBDriver, TypeDBSession } from 'typedb-driver';
2
- import { Surreal } from 'surrealdb.js';
2
+ import { Surreal } from 'surrealdb';
3
3
 
4
4
  interface TypeDBProvider extends CommonProvider {
5
5
  provider: 'typeDB';
@@ -412,7 +412,7 @@ type Sorter = {
412
412
  } | string;
413
413
  type FilterValue = string | number | boolean | string[] | number[] | boolean[] | null;
414
414
  type PositiveFilter = {
415
- [field: string]: FilterValue;
415
+ [field: string]: FilterValue | Filter;
416
416
  };
417
417
  type NegativeFilter = {
418
418
  $not?: PositiveFilter;