Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@travetto/model

Package Overview
Dependencies
Maintainers
0
Versions
371
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/model - npm Package Compare versions

Comparing version 5.0.13 to 5.0.14

14

package.json
{
"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 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc