Comparing version 3.0.0-rc.1 to 3.0.0-rc.2
@@ -7,3 +7,3 @@ /* | ||
* | ||
* Version 3.0.0-rc.1, Wed Oct 30 2019 | ||
* Version 3.0.0-rc.2, Mon Jan 27 2020 | ||
* | ||
@@ -413,5 +413,12 @@ * http://dexie.org | ||
bulkGet(keys: TKey[]): PromiseExtended<T[]>; | ||
bulkAdd(items: T[], keys?: IndexableTypeArrayReadonly): PromiseExtended<TKey>; | ||
bulkPut(items: T[], keys?: IndexableTypeArrayReadonly): PromiseExtended<TKey>; | ||
bulkDelete(keys: IndexableTypeArrayReadonly) : PromiseExtended<void>; | ||
bulkAdd<B extends boolean>(items: T[], keys: IndexableTypeArrayReadonly, options: { allKeys: B }): B extends true ? Promise<TKey[]> : Promise<TKey>; | ||
bulkAdd<B extends boolean>(items: T[], options: { allKeys: B }): B extends true ? Promise<TKey[]> : Promise<TKey>; | ||
bulkAdd(items: T[], keys?: IndexableTypeArrayReadonly, options?: { allKeys: boolean }): Promise<TKey>; | ||
bulkPut<B extends boolean>(items: T[], keys: IndexableTypeArrayReadonly, options: { allKeys: B }): B extends true ? Promise<TKey[]> : Promise<TKey>; | ||
bulkPut<B extends boolean>(items: T[], options: { allKeys: B }): B extends true ? Promise<TKey[]> : Promise<TKey>; | ||
bulkPut(items: T[], keys?: IndexableTypeArrayReadonly, options?: { allKeys: boolean }): Promise<TKey>; | ||
bulkDelete(keys: IndexableTypeArrayReadonly): PromiseExtended<void>; | ||
} | ||
@@ -418,0 +425,0 @@ export interface Version { |
{ | ||
"name": "dexie", | ||
"version": "3.0.0-rc.1", | ||
"version": "3.0.0-rc.2", | ||
"description": "A Minimalistic Wrapper for IndexedDB", | ||
@@ -5,0 +5,0 @@ "main": "dist/dexie.js", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1404314
9192