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.4 to 5.0.5

14

package.json
{
"name": "@travetto/model",
"version": "5.0.4",
"version": "5.0.5",
"description": "Datastore abstraction for core operations.",

@@ -29,10 +29,10 @@ "keywords": [

"dependencies": {
"@travetto/config": "^5.0.4",
"@travetto/di": "^5.0.4",
"@travetto/registry": "^5.0.4",
"@travetto/schema": "^5.0.4"
"@travetto/config": "^5.0.5",
"@travetto/di": "^5.0.5",
"@travetto/registry": "^5.0.5",
"@travetto/schema": "^5.0.5"
},
"peerDependencies": {
"@travetto/cli": "^5.0.4",
"@travetto/test": "^5.0.4"
"@travetto/cli": "^5.0.5",
"@travetto/test": "^5.0.5"
},

@@ -39,0 +39,0 @@ "peerDependenciesMeta": {

@@ -7,5 +7,5 @@ import { Class, AppError } from '@travetto/runtime';

export class NotFoundError extends AppError {
constructor(cls: Class | string, id: string) {
super(`${typeof cls === 'string' ? cls : cls.name} with id ${id} not found`, 'notfound');
constructor(cls: Class | string, id: string, details?: unknown) {
super(`${typeof cls === 'string' ? cls : cls.name} with id ${id} not found`, 'notfound', details);
}
}
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