@instantdb/admin
Advanced tools
Comparing version 0.10.9 to 0.10.10
@@ -9,5 +9,10 @@ import { tx, TransactionChunk } from "@instantdb/core"; | ||
}; | ||
declare type WhereClause = { | ||
[key: string]: string | number | boolean | NonEmpty<WhereArgs>; | ||
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 $Option = { | ||
@@ -14,0 +19,0 @@ $?: { |
@@ -9,5 +9,10 @@ import { tx, TransactionChunk } from "@instantdb/core"; | ||
}; | ||
declare type WhereClause = { | ||
[key: string]: string | number | boolean | NonEmpty<WhereArgs>; | ||
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 $Option = { | ||
@@ -14,0 +19,0 @@ $?: { |
{ | ||
"name": "@instantdb/admin", | ||
"version": "0.10.9", | ||
"version": "0.10.10", | ||
"description": "Admin SDK for Instant DB", | ||
@@ -27,5 +27,5 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"@instantdb/core": "0.10.9", | ||
"@instantdb/core": "0.10.10", | ||
"uuid": "^9.0.1" | ||
} | ||
} |
@@ -17,6 +17,11 @@ import { tx, TransactionChunk, getOps } from "@instantdb/core"; | ||
type WhereClause = { | ||
[key: string]: string | number | boolean | NonEmpty<WhereArgs>; | ||
type WhereClauseValue = string | number | boolean | NonEmpty<WhereArgs>; | ||
type WhereClauseWithOr = { or?: BaseWhereClause[] | WhereClauseValue }; | ||
type BaseWhereClause = { | ||
[key: string]: WhereClauseValue; | ||
}; | ||
type WhereClause = WhereClauseWithOr | (WhereClauseWithOr & BaseWhereClause); | ||
type $Option = { $?: { where: WhereClause } }; | ||
@@ -23,0 +28,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
71731
1633
+ Added@instantdb/core@0.10.10(transitive)
- Removed@instantdb/core@0.10.9(transitive)
Updated@instantdb/core@0.10.10