File tree Expand file tree Collapse file tree 3 files changed +32
-1
lines changed Expand file tree Collapse file tree 3 files changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -18,15 +18,28 @@ Common configuration for the API client generators.
18
18
19
19
- [ document] ( index.CommonOpenApiClientGeneratorConfig.md#document )
20
20
- [ outputDirPath] ( index.CommonOpenApiClientGeneratorConfig.md#outputdirpath )
21
+ - [ postprocess] ( index.CommonOpenApiClientGeneratorConfig.md#postprocess )
21
22
22
23
## Properties
23
24
24
25
### document
25
26
26
27
• ** document** : [ ` CommonOpenApiClientGeneratorConfigDocument ` ] ( index.CommonOpenApiClientGeneratorConfigDocument.md )
27
28
29
+ Configuration for the OpenAPI document.
30
+
28
31
___
29
32
30
33
### outputDirPath
31
34
32
35
• ** outputDirPath** : ` string `
36
+
37
+ Output directory for the generated client files.
38
+
39
+ ___
40
+
41
+ ### postprocess
42
+
43
+ • ` Optional ` ** postprocess** : ` CommonOpenApiClientGeneratorConfigPostprocess `
44
+
45
+ Configuration for the generated client files.
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ Configuration for generating an OpenAPI client.
25
25
- [ models] ( openapi_client.OpenApiClientGeneratorConfig.md#models )
26
26
- [ operations] ( openapi_client.OpenApiClientGeneratorConfig.md#operations )
27
27
- [ outputDirPath] ( openapi_client.OpenApiClientGeneratorConfig.md#outputdirpath )
28
+ - [ postprocess] ( openapi_client.OpenApiClientGeneratorConfig.md#postprocess )
28
29
- [ services] ( openapi_client.OpenApiClientGeneratorConfig.md#services )
29
30
- [ type] ( openapi_client.OpenApiClientGeneratorConfig.md#type )
30
31
- [ validation] ( openapi_client.OpenApiClientGeneratorConfig.md#validation )
74
75
75
76
• ** document** : [ ` CommonOpenApiClientGeneratorConfigDocument ` ] ( index.CommonOpenApiClientGeneratorConfigDocument.md )
76
77
78
+ Configuration for the OpenAPI document.
79
+
77
80
#### Inherited from
78
81
79
82
[ CommonOpenApiClientGeneratorConfig] ( index.CommonOpenApiClientGeneratorConfig.md ) .[ document] ( index.CommonOpenApiClientGeneratorConfig.md#document )
@@ -108,12 +111,26 @@ ___
108
111
109
112
• ** outputDirPath** : ` string `
110
113
114
+ Output directory for the generated client files.
115
+
111
116
#### Inherited from
112
117
113
118
[ CommonOpenApiClientGeneratorConfig] ( index.CommonOpenApiClientGeneratorConfig.md ) .[ outputDirPath] ( index.CommonOpenApiClientGeneratorConfig.md#outputdirpath )
114
119
115
120
___
116
121
122
+ ### postprocess
123
+
124
+ • ` Optional ` ** postprocess** : ` CommonOpenApiClientGeneratorConfigPostprocess `
125
+
126
+ Configuration for the generated client files.
127
+
128
+ #### Inherited from
129
+
130
+ [ CommonOpenApiClientGeneratorConfig] ( index.CommonOpenApiClientGeneratorConfig.md ) .[ postprocess] ( index.CommonOpenApiClientGeneratorConfig.md#postprocess )
131
+
132
+ ___
133
+
117
134
### services
118
135
119
136
• ` Optional ` ** services** : `` false `` \| [ ` OpenApiClientGeneratorConfigServices ` ] ( openapi_client.OpenApiClientGeneratorConfigServices.md )
Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ export type {
9
9
OpenApiDocumentPatchTags ,
10
10
CommonOpenApiClientGeneratorConfigDocumentPatch ,
11
11
OpenApiDocumentPatchAllSchemas ,
12
- OpenApiDocumentPatchDocument
12
+ OpenApiDocumentPatchDocument ,
13
+ CommonOpenApiClientGeneratorConfigPostprocess
13
14
} from './schema-to-typescript/config' ;
14
15
export type { JsDocBlockTag , JsDocBlock } from './utils/jsdoc' ;
15
16
export type { FilenameFormat , EntityNameCase } from './utils/string-utils' ;
You can’t perform that action at this time.
0 commit comments