You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "The input file or URL to the OpenAPI 3 specification, JSON or YAML, local file or URL",
15
+
"type": "string"
16
+
},
17
+
"output": {
18
+
"description": "Where generated files will be written to. Defaults to 'src/app/api'.",
19
+
"type": "string",
20
+
"default": "src/app/api"
21
+
},
22
+
"prefix": {
23
+
"description": "A prefix to the generated global classes, such as `Configuration` and `Module`. Defaults to 'Api', so the default generated files are `ApiConfiguration` and `ApiModule`.",
24
+
"type": "string",
25
+
"default": "Api"
26
+
},
27
+
"defaultTag": {
28
+
"description": "Tag name assumed for operations without tags. Defaults to the value of 'prefix', which defaults to 'Api'.",
29
+
"type": "string"
30
+
},
31
+
"includeTags": {
32
+
"description": "When specified, filters the generated services, including only those corresponding to this list of tags.",
33
+
"type": "array",
34
+
"items": {
35
+
"type": "string"
36
+
}
37
+
},
38
+
"excludeTags": {
39
+
"description": "When specified, filters the generated services, excluding any service corresponding to this list of tags.",
40
+
"type": "array",
41
+
"items": {
42
+
"type": "string"
43
+
}
44
+
},
45
+
"ignoreUnusedModels": {
46
+
"description": "Indicates whether or not to ignore model files that are not referenced by any operation. Defaults to true.",
47
+
"type": "boolean",
48
+
"default": "true"
49
+
},
50
+
"removeStaleFiles": {
51
+
"description": "Indicates whether or not to remove any files in the output folder that were not generated by ng-swagger-gen. Defaults to true.",
52
+
"type": "boolean",
53
+
"default": "true"
54
+
},
55
+
"modelIndex": {
56
+
"description": "File name file that exports all models. Set to false to skip. Defaults to `models.ts`.",
57
+
"default": "models.ts",
58
+
"anyOf": [
59
+
{
60
+
"type": "string"
61
+
},
62
+
{
63
+
"type": "boolean"
64
+
}
65
+
]
66
+
},
67
+
"serviceIndex": {
68
+
"description": "File file that exports all services. Set to false to skip. Defaults to `services.ts`.",
69
+
"default": "services.ts",
70
+
"anyOf": [
71
+
{
72
+
"type": "string"
73
+
},
74
+
{
75
+
"type": "boolean"
76
+
}
77
+
]
78
+
},
79
+
"servicePrefix": {
80
+
"description": "Prefix for generated service classes. Defaults to empty.",
81
+
"type": "string",
82
+
"default": ""
83
+
},
84
+
"serviceSuffix": {
85
+
"description": "Suffix for generated service classes. Defaults to `Service`.",
86
+
"type": "string",
87
+
"default": "Service"
88
+
},
89
+
"modelPrefix": {
90
+
"description": "Prefix for generated model classes. Defaults to empty.",
91
+
"type": "string",
92
+
"default": ""
93
+
},
94
+
"modelSuffix": {
95
+
"description": "Suffix for generated model classes. Defaults to empty.",
96
+
"type": "string",
97
+
"default": ""
98
+
},
99
+
"apiModule": {
100
+
"description": "Indicates whether or not to generate the Angular module which provides all services. Defaults to true.",
101
+
"type": "boolean",
102
+
"default": "true"
103
+
},
104
+
"templates": {
105
+
"description": "Custom templates directory. Any `.mustache` files here will be used instead of the corresponding default.",
0 commit comments