-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenapitools.json
More file actions
37 lines (37 loc) · 1.1 KB
/
openapitools.json
File metadata and controls
37 lines (37 loc) · 1.1 KB
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
{
"$schema": "./node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "7.12.0",
"generators": {
"typescript-axios": {
"generatorName": "typescript-axios",
"output": "./src",
"inputSpec": "https://js.monei.com/api/v1/openapi.json",
"removeOperationIdPrefix": true,
"additionalProperties": {
"supportsES6": true,
"generateAliasAsModel": true,
"enumPropertyNaming": "UPPERCASE",
"withSeparateModelsAndApi": true,
"apiPackage": "api",
"modelPackage": "model"
}
},
"typescript-axios-local": {
"generatorName": "typescript-axios",
"output": "./src",
"inputSpec": "./openapi.json",
"removeOperationIdPrefix": true,
"additionalProperties": {
"supportsES6": true,
"generateAliasAsModel": true,
"enumPropertyNaming": "UPPERCASE",
"withSeparateModelsAndApi": true,
"apiPackage": "api",
"modelPackage": "model"
}
}
}
}
}