New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@kaluza/mock-server

Package Overview
Dependencies
Maintainers
2
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kaluza/mock-server - npm Package Compare versions

Comparing version 0.8.1 to 0.8.2

14

dist/mockserver.d.ts

@@ -6,5 +6,17 @@ import { RequestHandler } from 'express';

}
interface EndpointRecord {
declare enum Method {
GET = "GET",
POST = "POST",
PATCH = "PATCH",
PUT = "PUT",
DELETE = "DELETE"
}
export interface EndpointRecord {
calls: Array<CallRecord>;
}
export interface Endpoint {
method: Method;
record: EndpointRecord;
handler: RequestHandler;
}
export interface CallRecord {

@@ -11,0 +23,0 @@ params: any;

2

package.json
{
"name": "@kaluza/mock-server",
"version": "0.8.1",
"version": "0.8.2",
"main": "dist/mockserver.js",

@@ -5,0 +5,0 @@ "types": "dist/mockserver.d.ts",

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