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

@types/serverless

Package Overview
Dependencies
Maintainers
1
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/serverless - npm Package Compare versions

Comparing version 1.72.2 to 1.72.3

4

serverless/package.json
{
"name": "@types/serverless",
"version": "1.72.2",
"version": "1.72.3",
"description": "TypeScript definitions for serverless",

@@ -42,4 +42,4 @@ "license": "MIT",

"dependencies": {},
"typesPublisherContentHash": "74bdd2aeb424ed0815b9a15278ebdf1819efa3889783ec2450a84dffcf2ffeb4",
"typesPublisherContentHash": "854461953eea1ebe940fefa24c599bb259e418818b1aa4141d3ed4acd7872374",
"typeScriptVersion": "3.0"
}

@@ -268,8 +268,29 @@ import Serverless = require('../../../index');

interface HttpCors {
origins?: string | string[];
headers?: string | string[];
allowCredentials?: boolean;
maxAge?: number;
cacheControl?: string;
}
interface HttpRequestParametersValidation {
querystrings?: { [key: string]: boolean };
headers?: { [key: string]: boolean };
paths?: { [key: string]: boolean };
}
interface HttpRequestValidation {
parameters?: HttpRequestParametersValidation;
schema?: { [key: string]: string };
}
interface Http {
path: string;
method: string;
cors?: boolean;
cors?: boolean | HttpCors;
private?: boolean;
async?: boolean;
authorizer?: HttpAuthorizer;
request?: HttpRequestValidation;
}

@@ -276,0 +297,0 @@

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Thu, 11 Jun 2020 18:28:40 GMT
* Last updated: Mon, 22 Jun 2020 07:10:37 GMT
* Dependencies: none

@@ -14,0 +14,0 @@ * Global values: none

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