azure-functions-ts-essentials
Advanced tools
Comparing version 1.2.0 to 1.3.0
@@ -0,1 +1,9 @@ | ||
var ErrorType; | ||
(function (ErrorType) { | ||
ErrorType["Missing"] = "missing"; | ||
ErrorType["MissingField"] = "missing_field"; | ||
ErrorType["Invalid"] = "invalid"; | ||
ErrorType["AlreadyExists"] = "already_exists"; | ||
})(ErrorType || (ErrorType = {})); | ||
var HttpMethod; | ||
@@ -65,3 +73,3 @@ (function (HttpMethod) { | ||
export { HttpMethod, HttpStatusCode }; | ||
export { ErrorType, HttpMethod, HttpStatusCode }; | ||
//# sourceMappingURL=azure-functions-ts-essentials.es5.js.map |
@@ -0,1 +1,9 @@ | ||
var ErrorType; | ||
(function (ErrorType) { | ||
ErrorType["Missing"] = "missing"; | ||
ErrorType["MissingField"] = "missing_field"; | ||
ErrorType["Invalid"] = "invalid"; | ||
ErrorType["AlreadyExists"] = "already_exists"; | ||
})(ErrorType || (ErrorType = {})); | ||
var HttpMethod; | ||
@@ -65,3 +73,3 @@ (function (HttpMethod) { | ||
export { HttpMethod, HttpStatusCode }; | ||
export { ErrorType, HttpMethod, HttpStatusCode }; | ||
//# sourceMappingURL=azure-functions-ts-essentials.js.map |
@@ -7,2 +7,9 @@ (function (global, factory) { | ||
(function (ErrorType) { | ||
ErrorType["Missing"] = "missing"; | ||
ErrorType["MissingField"] = "missing_field"; | ||
ErrorType["Invalid"] = "invalid"; | ||
ErrorType["AlreadyExists"] = "already_exists"; | ||
})(exports.ErrorType || (exports.ErrorType = {})); | ||
(function (HttpMethod) { | ||
@@ -9,0 +16,0 @@ HttpMethod["Get"] = "GET"; |
@@ -1,2 +0,2 @@ | ||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t(e.azureFunctionsTsEssentials=e.azureFunctionsTsEssentials||{})}(this,function(e){"use strict";!function(e){e.Get="GET",e.Post="POST",e.Delete="DELETE",e.Head="HEAD",e.Patch="PATCH",e.Put="PUT",e.Options="OPTIONS",e.Trace="TRACE"}(e.HttpMethod||(e.HttpMethod={})),function(e){e[e.Continue=100]="Continue",e[e.SwitchingProtocols=101]="SwitchingProtocols",e[e.OK=200]="OK",e[e.Created=201]="Created",e[e.Accepted=202]="Accepted",e[e.NonAuthoritativeInformation=203]="NonAuthoritativeInformation",e[e.NoContent=204]="NoContent",e[e.ResetContent=205]="ResetContent",e[e.PartialContent=206]="PartialContent",e[e.MultipleChoices=300]="MultipleChoices",e[e.Ambiguous=300]="Ambiguous",e[e.MovedPermanently=301]="MovedPermanently",e[e.Moved=301]="Moved",e[e.Found=302]="Found",e[e.Redirect=302]="Redirect",e[e.SeeOther=303]="SeeOther",e[e.RedirectMethod=303]="RedirectMethod",e[e.NotModified=304]="NotModified",e[e.UseProxy=305]="UseProxy",e[e.Unused=306]="Unused",e[e.TemporaryRedirect=307]="TemporaryRedirect",e[e.RedirectKeepVerb=307]="RedirectKeepVerb",e[e.BadRequest=400]="BadRequest",e[e.Unauthorized=401]="Unauthorized",e[e.PaymentRequired=402]="PaymentRequired",e[e.Forbidden=403]="Forbidden",e[e.NotFound=404]="NotFound",e[e.MethodNotAllowed=405]="MethodNotAllowed",e[e.NotAcceptable=406]="NotAcceptable",e[e.ProxyAuthenticationRequired=407]="ProxyAuthenticationRequired",e[e.RequestTimeout=408]="RequestTimeout",e[e.Conflict=409]="Conflict",e[e.Gone=410]="Gone",e[e.LengthRequired=411]="LengthRequired",e[e.PreconditionFailed=412]="PreconditionFailed",e[e.RequestEntityTooLarge=413]="RequestEntityTooLarge",e[e.RequestUriTooLong=414]="RequestUriTooLong",e[e.UnsupportedMediaType=415]="UnsupportedMediaType",e[e.RequestedRangeNotSatisfiable=416]="RequestedRangeNotSatisfiable",e[e.ExpectationFailed=417]="ExpectationFailed",e[e.UnprocessableEntity=422]="UnprocessableEntity",e[e.UpgradeRequired=426]="UpgradeRequired",e[e.InternalServerError=500]="InternalServerError",e[e.NotImplemented=501]="NotImplemented",e[e.BadGateway=502]="BadGateway",e[e.ServiceUnavailable=503]="ServiceUnavailable",e[e.GatewayTimeout=504]="GatewayTimeout",e[e.HttpVersionNotSupported=505]="HttpVersionNotSupported"}(e.HttpStatusCode||(e.HttpStatusCode={})),Object.defineProperty(e,"__esModule",{value:!0})}); | ||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t(e.azureFunctionsTsEssentials=e.azureFunctionsTsEssentials||{})}(this,function(e){"use strict";!function(e){e.Missing="missing",e.MissingField="missing_field",e.Invalid="invalid",e.AlreadyExists="already_exists"}(e.ErrorType||(e.ErrorType={})),function(e){e.Get="GET",e.Post="POST",e.Delete="DELETE",e.Head="HEAD",e.Patch="PATCH",e.Put="PUT",e.Options="OPTIONS",e.Trace="TRACE"}(e.HttpMethod||(e.HttpMethod={})),function(e){e[e.Continue=100]="Continue",e[e.SwitchingProtocols=101]="SwitchingProtocols",e[e.OK=200]="OK",e[e.Created=201]="Created",e[e.Accepted=202]="Accepted",e[e.NonAuthoritativeInformation=203]="NonAuthoritativeInformation",e[e.NoContent=204]="NoContent",e[e.ResetContent=205]="ResetContent",e[e.PartialContent=206]="PartialContent",e[e.MultipleChoices=300]="MultipleChoices",e[e.Ambiguous=300]="Ambiguous",e[e.MovedPermanently=301]="MovedPermanently",e[e.Moved=301]="Moved",e[e.Found=302]="Found",e[e.Redirect=302]="Redirect",e[e.SeeOther=303]="SeeOther",e[e.RedirectMethod=303]="RedirectMethod",e[e.NotModified=304]="NotModified",e[e.UseProxy=305]="UseProxy",e[e.Unused=306]="Unused",e[e.TemporaryRedirect=307]="TemporaryRedirect",e[e.RedirectKeepVerb=307]="RedirectKeepVerb",e[e.BadRequest=400]="BadRequest",e[e.Unauthorized=401]="Unauthorized",e[e.PaymentRequired=402]="PaymentRequired",e[e.Forbidden=403]="Forbidden",e[e.NotFound=404]="NotFound",e[e.MethodNotAllowed=405]="MethodNotAllowed",e[e.NotAcceptable=406]="NotAcceptable",e[e.ProxyAuthenticationRequired=407]="ProxyAuthenticationRequired",e[e.RequestTimeout=408]="RequestTimeout",e[e.Conflict=409]="Conflict",e[e.Gone=410]="Gone",e[e.LengthRequired=411]="LengthRequired",e[e.PreconditionFailed=412]="PreconditionFailed",e[e.RequestEntityTooLarge=413]="RequestEntityTooLarge",e[e.RequestUriTooLong=414]="RequestUriTooLong",e[e.UnsupportedMediaType=415]="UnsupportedMediaType",e[e.RequestedRangeNotSatisfiable=416]="RequestedRangeNotSatisfiable",e[e.ExpectationFailed=417]="ExpectationFailed",e[e.UnprocessableEntity=422]="UnprocessableEntity",e[e.UpgradeRequired=426]="UpgradeRequired",e[e.InternalServerError=500]="InternalServerError",e[e.NotImplemented=501]="NotImplemented",e[e.BadGateway=502]="BadGateway",e[e.ServiceUnavailable=503]="ServiceUnavailable",e[e.GatewayTimeout=504]="GatewayTimeout",e[e.HttpVersionNotSupported=505]="HttpVersionNotSupported"}(e.HttpStatusCode||(e.HttpStatusCode={})),Object.defineProperty(e,"__esModule",{value:!0})}); | ||
//# sourceMappingURL=azure-functions-ts-essentials.umd.min.js.map |
export { Context } from './models/context'; | ||
export { ErrorType } from './models/error-type'; | ||
export { HttpMethod } from './models/http-method'; | ||
@@ -3,0 +4,0 @@ export { HttpRequest } from './models/http-request'; |
{ | ||
"name": "azure-functions-ts-essentials", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "Essential interfaces and tools for backend development on Azure Functions with TypeScript", | ||
@@ -37,4 +37,4 @@ "repository": { | ||
"devDependencies": { | ||
"@types/jest": "~21.1.2", | ||
"@types/node": "~8.0.32", | ||
"@types/jest": "~21.1.3", | ||
"@types/node": "~8.0.41", | ||
"rimraf": "~2.6.2", | ||
@@ -51,3 +51,3 @@ "ts-node": "~3.3.0", | ||
"jest-junit-reporter": "~1.1.0", | ||
"ts-jest": "~21.1.0", | ||
"ts-jest": "~21.1.3", | ||
"standard-version": "~4.2.0", | ||
@@ -54,0 +54,0 @@ "tslint": "~5.7.0", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
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
74851
18
358