conjure-api
Advanced tools
Comparing version 4.0.3 to 4.0.4
@@ -0,1 +1,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
function isHeader(obj) { | ||
@@ -28,3 +30,3 @@ return (obj.type === "header"); | ||
} | ||
export var IAuthType = { | ||
exports.IAuthType = { | ||
isHeader: isHeader, | ||
@@ -31,0 +33,0 @@ header: header, |
@@ -1,2 +0,4 @@ | ||
export var ErrorCode; | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var ErrorCode; | ||
(function (ErrorCode) { | ||
@@ -13,2 +15,2 @@ ErrorCode["PERMISSION_DENIED"] = "PERMISSION_DENIED"; | ||
ErrorCode["CUSTOM_SERVER"] = "CUSTOM_SERVER"; | ||
})(ErrorCode || (ErrorCode = {})); | ||
})(ErrorCode = exports.ErrorCode || (exports.ErrorCode = {})); |
@@ -1,2 +0,4 @@ | ||
export var HttpMethod; | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var HttpMethod; | ||
(function (HttpMethod) { | ||
@@ -7,2 +9,2 @@ HttpMethod["GET"] = "GET"; | ||
HttpMethod["DELETE"] = "DELETE"; | ||
})(HttpMethod || (HttpMethod = {})); | ||
})(HttpMethod = exports.HttpMethod || (exports.HttpMethod = {})); |
@@ -1,7 +0,12 @@ | ||
export * from "./authType"; | ||
export * from "./errorCode"; | ||
export * from "./httpMethod"; | ||
export * from "./parameterType"; | ||
export * from "./primitiveType"; | ||
export * from "./type"; | ||
export * from "./typeDefinition"; | ||
"use strict"; | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./authType")); | ||
__export(require("./errorCode")); | ||
__export(require("./httpMethod")); | ||
__export(require("./parameterType")); | ||
__export(require("./primitiveType")); | ||
__export(require("./type")); | ||
__export(require("./typeDefinition")); |
@@ -0,1 +1,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
function isBody(obj) { | ||
@@ -52,3 +54,3 @@ return (obj.type === "body"); | ||
} | ||
export var IParameterType = { | ||
exports.IParameterType = { | ||
isBody: isBody, | ||
@@ -55,0 +57,0 @@ body: body, |
@@ -1,2 +0,4 @@ | ||
export var PrimitiveType; | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var PrimitiveType; | ||
(function (PrimitiveType) { | ||
@@ -14,2 +16,2 @@ PrimitiveType["STRING"] = "STRING"; | ||
PrimitiveType["BEARERTOKEN"] = "BEARERTOKEN"; | ||
})(PrimitiveType || (PrimitiveType = {})); | ||
})(PrimitiveType = exports.PrimitiveType || (exports.PrimitiveType = {})); |
@@ -0,1 +1,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
function isPrimitive(obj) { | ||
@@ -88,3 +90,3 @@ return (obj.type === "primitive"); | ||
} | ||
export var IType = { | ||
exports.IType = { | ||
isPrimitive: isPrimitive, | ||
@@ -91,0 +93,0 @@ primitive: primitive, |
@@ -0,1 +1,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
function isAlias(obj) { | ||
@@ -52,3 +54,3 @@ return (obj.type === "alias"); | ||
} | ||
export var ITypeDefinition = { | ||
exports.ITypeDefinition = { | ||
isAlias: isAlias, | ||
@@ -55,0 +57,0 @@ alias: alias, |
@@ -1,1 +0,6 @@ | ||
export * from "./conjure-spec"; | ||
"use strict"; | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./conjure-spec")); |
{ | ||
"name": "conjure-api", | ||
"version": "4.0.3", | ||
"version": "4.0.4", | ||
"main": "index.js", | ||
@@ -5,0 +5,0 @@ "types": "index.d.ts", |
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
24197
791