@instantdb/admin
Advanced tools
Comparing version 0.10.10 to 0.10.11
@@ -10,9 +10,10 @@ import { tx, TransactionChunk } from "@instantdb/core"; | ||
declare type WhereClauseValue = string | number | boolean | NonEmpty<WhereArgs>; | ||
declare type WhereClauseWithOr = { | ||
or?: BaseWhereClause[] | WhereClauseValue; | ||
}; | ||
declare type BaseWhereClause = { | ||
[key: string]: WhereClauseValue; | ||
}; | ||
declare type WhereClause = WhereClauseWithOr | (WhereClauseWithOr & BaseWhereClause); | ||
declare type WhereClauseWithCombinaton = { | ||
or?: WhereClause[] | WhereClauseValue; | ||
and?: WhereClause[] | WhereClauseValue; | ||
}; | ||
declare type WhereClause = WhereClauseWithCombinaton | (WhereClauseWithCombinaton & BaseWhereClause); | ||
declare type $Option = { | ||
@@ -19,0 +20,0 @@ $?: { |
@@ -10,9 +10,10 @@ import { tx, TransactionChunk } from "@instantdb/core"; | ||
declare type WhereClauseValue = string | number | boolean | NonEmpty<WhereArgs>; | ||
declare type WhereClauseWithOr = { | ||
or?: BaseWhereClause[] | WhereClauseValue; | ||
}; | ||
declare type BaseWhereClause = { | ||
[key: string]: WhereClauseValue; | ||
}; | ||
declare type WhereClause = WhereClauseWithOr | (WhereClauseWithOr & BaseWhereClause); | ||
declare type WhereClauseWithCombinaton = { | ||
or?: WhereClause[] | WhereClauseValue; | ||
and?: WhereClause[] | WhereClauseValue; | ||
}; | ||
declare type WhereClause = WhereClauseWithCombinaton | (WhereClauseWithCombinaton & BaseWhereClause); | ||
declare type $Option = { | ||
@@ -19,0 +20,0 @@ $?: { |
{ | ||
"name": "@instantdb/admin", | ||
"version": "0.10.10", | ||
"version": "0.10.11", | ||
"description": "Admin SDK for Instant DB", | ||
@@ -27,5 +27,5 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"@instantdb/core": "0.10.10", | ||
"@instantdb/core": "0.10.11", | ||
"uuid": "^9.0.1" | ||
} | ||
} |
@@ -19,3 +19,2 @@ import { tx, TransactionChunk, getOps } from "@instantdb/core"; | ||
type WhereClauseWithOr = { or?: BaseWhereClause[] | WhereClauseValue }; | ||
type BaseWhereClause = { | ||
@@ -25,4 +24,11 @@ [key: string]: WhereClauseValue; | ||
type WhereClause = WhereClauseWithOr | (WhereClauseWithOr & BaseWhereClause); | ||
type WhereClauseWithCombinaton = { | ||
or?: WhereClause[] | WhereClauseValue; | ||
and?: WhereClause[] | WhereClauseValue; | ||
}; | ||
type WhereClause = | ||
| WhereClauseWithCombinaton | ||
| (WhereClauseWithCombinaton & BaseWhereClause); | ||
type $Option = { $?: { where: WhereClause } }; | ||
@@ -29,0 +35,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
72031
1640
+ Added@instantdb/core@0.10.11(transitive)
- Removed@instantdb/core@0.10.10(transitive)
Updated@instantdb/core@0.10.11