@azure/functions
Advanced tools
Comparing version 1.0.1-beta1 to 1.0.1-beta2
{ | ||
"name": "@azure/functions", | ||
"version": "1.0.1-beta1", | ||
"version": "1.0.1-beta2", | ||
"description": "Azure Functions types for Typescript", | ||
@@ -5,0 +5,0 @@ "main": "Interfaces.d.ts", |
@@ -15,5 +15,5 @@ # Type definitions for Azure Functions | ||
```javascript | ||
import { IFunction, IContext, IRequest} from "@azure/functions"; | ||
import { AzureFunction, Context, HttpRequest } from "@azure/functions"; | ||
const index: IFunction = async function (context: IContext, req: IRequest) { | ||
const index: AzureFunction = async function (context: Context, req: HttpRequest) { | ||
context.log('JavaScript HTTP trigger function processed a request.'); | ||
@@ -20,0 +20,0 @@ if (req.query.name || (req.body && req.body.name)) { |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
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
7978
1