@travetto/model
Advanced tools
Comparing version 5.0.13 to 5.0.14
{ | ||
"name": "@travetto/model", | ||
"version": "5.0.13", | ||
"version": "5.0.14", | ||
"description": "Datastore abstraction for core operations.", | ||
@@ -29,10 +29,10 @@ "keywords": [ | ||
"dependencies": { | ||
"@travetto/config": "^5.0.12", | ||
"@travetto/di": "^5.0.12", | ||
"@travetto/registry": "^5.0.12", | ||
"@travetto/schema": "^5.0.12" | ||
"@travetto/config": "^5.0.13", | ||
"@travetto/di": "^5.0.13", | ||
"@travetto/registry": "^5.0.13", | ||
"@travetto/schema": "^5.0.13" | ||
}, | ||
"peerDependencies": { | ||
"@travetto/cli": "^5.0.15", | ||
"@travetto/test": "^5.0.14" | ||
"@travetto/cli": "^5.0.16", | ||
"@travetto/test": "^5.0.15" | ||
}, | ||
@@ -39,0 +39,0 @@ "peerDependenciesMeta": { |
@@ -164,3 +164,3 @@ import assert from 'node:assert'; | ||
})), | ||
e => (e instanceof SubTypeNotSupportedError || e instanceof ExistsError) ? undefined : e | ||
e => e instanceof SubTypeNotSupportedError || e instanceof ExistsError | ||
); | ||
@@ -170,4 +170,4 @@ | ||
() => service.update(Engineer, castTo(Doctor.from({ ...doc }))), | ||
(e: Error) => (e instanceof NotFoundError || e instanceof SubTypeNotSupportedError || e instanceof TypeMismatchError) ? undefined : e); | ||
e => e instanceof NotFoundError || e instanceof SubTypeNotSupportedError || e instanceof TypeMismatchError | ||
); | ||
await timers.setTimeout(15); | ||
@@ -194,3 +194,3 @@ | ||
() => service.delete(Doctor, fire.id), | ||
e => (e instanceof SubTypeNotSupportedError || e instanceof NotFoundError) ? undefined : e | ||
e => e instanceof SubTypeNotSupportedError || e instanceof NotFoundError | ||
); | ||
@@ -209,3 +209,3 @@ | ||
() => service.delete(Firefighter, doc.id), | ||
e => (e instanceof SubTypeNotSupportedError || e instanceof NotFoundError) ? undefined : e | ||
e => e instanceof SubTypeNotSupportedError || e instanceof NotFoundError | ||
); | ||
@@ -212,0 +212,0 @@ } |
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
2517
160355
Updated@travetto/config@^5.0.13
Updated@travetto/di@^5.0.13
Updated@travetto/registry@^5.0.13
Updated@travetto/schema@^5.0.13