@data-eden/cache
Advanced tools
Comparing version 0.13.0 to 0.13.1
{ | ||
"$schema": "https://json.schemastore.org/package.json", | ||
"name": "@data-eden/cache", | ||
"version": "0.13.0", | ||
"version": "0.13.1", | ||
"repository": { | ||
@@ -6,0 +6,0 @@ "type": "git", |
@@ -638,4 +638,4 @@ import { LiveCacheTransactionImpl } from './live-transaction.js'; | ||
function resolveConflict( | ||
target: Record<string, object | string | number>, | ||
source: Record<string, object | string | number>, | ||
target: Record<string, object | string | number | undefined>, | ||
source: Record<string, object | string | number | undefined>, | ||
property: string | ||
@@ -642,0 +642,0 @@ ): CacheKeyValue { |
@@ -265,3 +265,3 @@ export { buildCache } from '../src/cache.js'; | ||
export type CacheKeyValue = | ||
| Record<string, object | string | number> | ||
| Record<string, object | string | number | undefined> | ||
| string | ||
@@ -268,0 +268,0 @@ | number; |
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
253552