36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
'use strict';
|
|
|
|
const ts = require('../lib/ts.cjs');
|
|
const utils = require('../lib/utils.cjs');
|
|
|
|
function makeApiPathsEnum(pathsObject) {
|
|
const enumKeys = [];
|
|
const enumMetaData = [];
|
|
for (const [url, pathItemObject] of utils.getEntries(pathsObject)) {
|
|
for (const [method, operation] of Object.entries(pathItemObject)) {
|
|
if (!["get", "put", "post", "delete", "options", "head", "patch", "trace"].includes(method)) {
|
|
continue;
|
|
}
|
|
let pathName;
|
|
if (operation.operationId) {
|
|
pathName = operation.operationId;
|
|
} else {
|
|
pathName = (method + url).split("/").map((part) => {
|
|
const capitalised = part.charAt(0).toUpperCase() + part.slice(1);
|
|
return capitalised.replace(/{.*}|:.*|[^a-zA-Z\d_]+/, "");
|
|
}).join("");
|
|
}
|
|
enumKeys.push(url);
|
|
enumMetaData.push({
|
|
name: pathName
|
|
});
|
|
}
|
|
}
|
|
return ts.tsEnum("ApiPaths", enumKeys, enumMetaData, {
|
|
export: true
|
|
});
|
|
}
|
|
|
|
module.exports = makeApiPathsEnum;
|
|
//# sourceMappingURL=paths-enum.cjs.map
|