-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathupdate-openapi.js
48 lines (41 loc) · 1.49 KB
/
update-openapi.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env node
/**
* This script is used to update the openapi.json files in the client from source definitions
*
* npm usage: npm run openapi <path-to-openapi.yml>
* direct usage: node ./update-openapi.js <default_source> <source>
*/
const { execSync } = require('child_process');
const defaultSrc = process.argv[2];
const overrideSrc = process.argv[3];
const includeEXT = process.argv.includes('--include-ext')
const sourceFile = overrideSrc || defaultSrc;
const OPENAPICMD = 'npx openapicmd';
const OUTPUT_FILE = './src/openapi.json';
const RUNTIME_FILE = './src/openapi-runtime.json';
// get server from default external source
console.log(`===> Reading server URL from ${defaultSrc}...`);
const definitionJSON = execSync(`${OPENAPICMD} read --json ${defaultSrc}`).toString();
const serverURL = JSON.parse(definitionJSON).servers?.[0]?.url;
console.log(`=====>> URL: ${serverURL}`);
// save full openapi.json from source
console.log(`===> Updating openapi.json from ${sourceFile}...`);
execSync(
[
OPENAPICMD,
'read',
includeEXT ? '' : '--exclude-ext x-internal',
`--json ${sourceFile}`,
serverURL ? `--server ${serverURL}` : '',
'>',
OUTPUT_FILE,
].join(' '),
{ stdio: 'inherit' },
);
// store optimized runtime version for client
console.log('===> Generating openapi-runtime.json');
execSync([OPENAPICMD, 'read', `--json ${OUTPUT_FILE}`, '--strip openapi_client_axios', '>', RUNTIME_FILE].join(' '), {
stdio: 'inherit',
});
console.log('===> Done!');
process.exit(0);