@trust0/ridb-core 1.4.0-rc.2 → 1.4.0-rc.3

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/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
8
- "version": "1.4.0-rc.2",
8
+ "version": "1.4.0-rc.3",
9
9
  "main": "./pkg/ridb_core.js",
10
10
  "types": "./pkg/ridb_core.d.ts",
11
11
  "sideEffects": [
@@ -568,7 +568,7 @@ export abstract class StorageInternal<Schemas extends SchemaTypeRecord> {
568
568
  abstract findDocumentById(
569
569
  collectionName: keyof Schemas,
570
570
  id: string
571
- ): Promise<Doc<Schemas[keyof Schemas]> | undefined | null>;
571
+ ): Promise<Doc<Schemas[keyof Schemas]> | null>;
572
572
  abstract find(
573
573
  collectionName: keyof Schemas,
574
574
  query: QueryType<Schemas[keyof Schemas]>,