Browse Source

🛠️ Improve Node.js script in docs to generate TypeScript clients (#11293)

pull/11295/head
Alejandra 1 year ago
committed by GitHub
parent
commit
aff139ee90
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 53
      docs_src/generate_clients/tutorial004.js

53
docs_src/generate_clients/tutorial004.js

@ -1,29 +1,36 @@
import * as fs from "fs"; import * as fs from 'fs'
const filePath = "./openapi.json"; async function modifyOpenAPIFile(filePath) {
try {
const data = await fs.promises.readFile(filePath)
const openapiContent = JSON.parse(data)
fs.readFile(filePath, (err, data) => { const paths = openapiContent.paths
const openapiContent = JSON.parse(data); for (const pathKey of Object.keys(paths)) {
if (err) throw err; const pathData = paths[pathKey]
for (const method of Object.keys(pathData)) {
const paths = openapiContent.paths; const operation = pathData[method]
Object.keys(paths).forEach((pathKey) => {
const pathData = paths[pathKey];
Object.keys(pathData).forEach((method) => {
const operation = pathData[method];
if (operation.tags && operation.tags.length > 0) { if (operation.tags && operation.tags.length > 0) {
const tag = operation.tags[0]; const tag = operation.tags[0]
const operationId = operation.operationId; const operationId = operation.operationId
const toRemove = `${tag}-`; const toRemove = `${tag}-`
if (operationId.startsWith(toRemove)) { if (operationId.startsWith(toRemove)) {
const newOperationId = operationId.substring(toRemove.length); const newOperationId = operationId.substring(toRemove.length)
operation.operationId = newOperationId; operation.operationId = newOperationId
}
}
} }
} }
});
}); await fs.promises.writeFile(
fs.writeFile(filePath, JSON.stringify(openapiContent, null, 2), (err) => { filePath,
if (err) throw err; JSON.stringify(openapiContent, null, 2),
}); )
}); console.log('File successfully modified')
} catch (err) {
console.error('Error:', err)
}
}
const filePath = './openapi.json'
modifyOpenAPIFile(filePath)

Loading…
Cancel
Save