@ordercloud/oc-codegen
Version:
OpenAPI codegen tool built for the OrderCloud API
78 lines (77 loc) • 2.86 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
var _ = __importStar(require("lodash"));
/**
* grab bag of small helpers used throughout
*/
/**
* @ignore
* not part of public api, don't include in generated docs
*/
var Utility = /** @class */ (function () {
function Utility() {
}
Utility.prototype.getType = function (ref) {
if (!ref) {
return null;
}
return ref.replace('#/components/schemas/', '');
};
Utility.prototype.isPrimitive = function (type) {
if (!type) {
return true;
}
var primitives = ['string', 'integer', 'number', 'boolean'];
return primitives.includes(type);
};
Utility.prototype.isComplexType = function (type) {
return !this.isPrimitive(type);
};
Utility.prototype.isCustomType = function (type) {
if (!type) {
return false;
}
return !['string', 'integer', 'number', 'boolean', 'object'].includes(type);
};
Utility.prototype.makePascalCase = function (input) {
return input
.split(' ')
.map(function (word) { return word.charAt(0).toUpperCase() + word.substr(1).toLowerCase(); })
.join('');
};
Utility.prototype.makeCamelCase = function (input) {
return input
.replace(/\s(.)/g, function ($1) { return $1.toUpperCase(); })
.replace(/\s/g, '')
.replace(/^(.)/, function ($1) { return $1.toLowerCase(); });
};
Utility.prototype.resolveReference = function (ref, spec) {
var getPath = ref.slice(2).replace(/\//g, '.');
return _.get(spec, getPath);
};
return Utility;
}());
exports.default = new Utility();