forked from acacode/swagger-typescript-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
396 lines (365 loc) · 10 KB
/
index.d.ts
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
interface GenerateApiParams {
/**
* path to swagger schema
*/
input: string;
/**
* url to swagger schema
*/
url: string;
/**
* swagger schema JSON
*/
spec: import("swagger-schema-official").Spec;
/**
* default 'api.ts'
*/
name?: string;
/**
* path to folder where will been located the created api module
*/
output?: string;
/**
* path to folder containing templates (default: ./scr/templates)
*/
templates?: string;
/**
* generate all "enum" types as union types (T1 | T2 | TN) (default: false)
*/
generateUnionEnums?: boolean;
/**
* generate type definitions for API routes (default: false)
*/
generateRouteTypes?: boolean;
/**
* do not generate an API class
*/
generateClient?: boolean;
/**
* generated http client type
*/
httpClientType?: "axios" | "fetch";
/**
* use "default" response status code as success response too.
* some swagger schemas use "default" response status code as success response type by default.
*/
defaultResponseAsSuccess?: boolean;
/**
* generate additional information about request responses
* also add typings for bad responses
*/
generateResponses?: boolean;
/**
* generate js api module with declaration file (default: false)
*/
toJS?: boolean;
/**
* determines which path index should be used for routes separation
*/
moduleNameIndex?: number;
/**
* users operation's first tag for route separation
*/
moduleNameFirstTag?: boolean;
/**
* disabled SSL check
*/
disableStrictSSL?: boolean;
/**
* disabled Proxy
*/
disableProxy?: boolean;
/**
* generate separated files for http client, data contracts, and routes (default: false)
*/
modular?: boolean;
/**
* extract request params to data contract (Also combine path params and query params into one object)
*/
extractRequestParams?: boolean;
/**
* prettier configuration
*/
prettier?: object;
/**
* Output only errors to console (default: false)
*/
silent?: boolean;
/**
* default type for empty response schema (default: "void")
*/
defaultResponseType?: boolean;
/**
* Ability to send HttpClient instance to Api constructor
*/
singleHttpClient?: boolean;
cleanOutput?: boolean;
enumNamesAsValues?: boolean;
hooks?: Partial<Hooks>;
/**
* extra templates
*/
extraTemplates?: { name: string; path: string }[];
}
export interface Hooks {
/** calls after parse schema component */
onCreateComponent: (component: SchemaComponent) => SchemaComponent | void;
/** calls after parse any kind of schema */
onParseSchema: (originalSchema: any, parsedSchema: any) => any | void;
/** calls after parse route (return type: customized route (ParsedRoute), nothing change (void), false (ignore this route)) */
onCreateRoute: (routeData: ParsedRoute) => ParsedRoute | void | false;
/** Start point of work this tool (after fetching schema) */
onInit?: <C extends GenerateApiConfiguration["config"]>(configuration: C) => C | void;
/** customize configuration object before sending it to ETA templates */
onPrepareConfig?: <C extends GenerateApiConfiguration>(currentConfiguration: C) => C | void;
/** customize route name as you need */
onCreateRouteName?: (
routeNameInfo: RouteNameInfo,
rawRouteInfo: RawRouteInfo,
) => RouteNameInfo | void;
/** customize request params (path params, query params) */
onCreateRequestParams?: (
rawType: SchemaComponent["rawTypeData"],
) => SchemaComponent["rawTypeData"] | void;
/** customize name of model type */
onFormatTypeName?: (typeName: string, rawTypeName?: string) => string | void;
/** customize name of route (operationId), you can do it with using onCreateRouteName too */
onFormatRouteName?: (routeInfo: RawRouteInfo, templateRouteName: string) => string | void;
}
export interface RouteNameRouteInfo {}
export type RouteNameInfo = {
usage: string;
original: string;
duplicate: boolean;
};
export type SchemaTypePrimitiveContent = {
$parsedSchema: boolean;
schemaType: string;
type: string;
typeIdentifier: string;
name?: any;
description: string;
content: string;
};
export type SchemaTypeObjectContent = {
$$raw: {
type: string;
required: boolean;
$parsed: SchemaTypePrimitiveContent;
};
isRequired: boolean;
field: string;
}[];
export type SchemaTypeEnumContent = {
key: string;
type: string;
value: string;
};
export interface ParsedSchema<C> {
$parsedSchema: boolean;
schemaType: string;
type: string;
typeIdentifier: string;
name: string;
description?: string;
allFieldsAreOptional?: boolean;
content: C;
}
export interface PathArgInfo {
name: string;
optional: boolean;
type: string;
description?: string;
}
export interface SchemaComponent {
$ref: string;
typeName: string;
rawTypeData?: {
type: string;
required?: string[];
properties?: Record<
string,
{
name?: string;
type: string;
required: boolean;
$parsed?: SchemaTypePrimitiveContent;
}
>;
discriminator?: {
propertyName?: string;
};
$parsed: ParsedSchema<
SchemaTypeObjectContent | SchemaTypeEnumContent | SchemaTypePrimitiveContent
>;
};
componentName: string;
typeData: ParsedSchema<
SchemaTypeObjectContent | SchemaTypeEnumContent | SchemaTypePrimitiveContent
> | null;
}
export enum RequestContentKind {
JSON = "JSON",
URL_ENCODED = "URL_ENCODED",
FORM_DATA = "FORM_DATA",
IMAGE = "IMAGE",
OTHER = "OTHER",
}
export interface RequestResponseInfo {
contentTypes: string[];
contentKind: RequestContentKind;
type: string;
description: string;
status: string | number;
isSuccess: boolean;
}
export type RawRouteInfo = {
operationId: string;
method: string;
route: string;
moduleName: string;
responsesTypes: RequestResponseInfo[];
description?: string;
tags?: string[];
summary?: string;
responses?: import("swagger-schema-official").Spec["responses"];
produces?: string[];
requestBody?: object;
consumes?: string[];
};
export interface ParsedRoute {
id: string;
jsDocLines: string;
namespace: string;
request: Request;
response: Response;
routeName: RouteNameInfo;
raw: RawRouteInfo;
}
export type ModelType = {
typeIdentifier: string;
name: string;
rawContent: string;
description: string;
content: string;
};
export enum SCHEMA_TYPES {
ARRAY = "array",
OBJECT = "object",
ENUM = "enum",
REF = "$ref",
PRIMITIVE = "primitive",
COMPLEX = "complex",
COMPLEX_ONE_OF = "oneOf",
COMPLEX_ANY_OF = "anyOf",
COMPLEX_ALL_OF = "allOf",
COMPLEX_NOT = "not",
COMPLEX_UNKNOWN = "__unknown",
}
type MAIN_SCHEMA_TYPES = SCHEMA_TYPES.PRIMITIVE | SCHEMA_TYPES.OBJECT | SCHEMA_TYPES.ENUM;
export interface GenerateApiConfiguration {
apiConfig: {
baseUrl: string;
title: string;
version: string;
description: string[];
hasDescription: boolean;
};
config: {
generateResponses: boolean;
defaultResponseAsSuccess: boolean;
generateRouteTypes: boolean;
generateClient: boolean;
generateUnionEnums: boolean;
swaggerSchema: object;
originalSchema: object;
componentsMap: Record<string, SchemaComponent>;
convertedFromSwagger2: boolean;
moduleNameIndex: number;
moduleNameFirstTag: boolean;
disableStrictSSL: boolean;
disableProxy: boolean;
extractRequestParams: boolean;
fileNames: {
dataContracts: string;
routeTypes: string;
httpClient: string;
outOfModuleApi: string;
};
templatesToRender: {
api: string;
dataContracts: string;
httpClient: string;
routeTypes: string;
routeName: string;
};
routeNameDuplicatesMap: Map<string, string>;
};
modelTypes: ModelType[];
rawModelTypes: SchemaComponent[];
hasFormDataRoutes: boolean;
hasSecurityRoutes: boolean;
hasQueryRoutes: boolean;
generateResponses: boolean;
routes: {
outOfModule: ParsedRoute[];
combined?: {
moduleName: string;
routes: ParsedRoute[];
}[];
};
utils: {
formatDescription: (description: string, inline?: boolean) => string;
internalCase: (value: string) => string;
classNameCase: (value: string) => string;
getInlineParseContent: (
rawTypeData: SchemaComponent["rawTypeData"],
typeName?: string,
) => string;
getParseContent: (rawTypeData: SchemaComponent["rawTypeData"], typeName?: string) => ModelType;
getComponentByRef: (ref: string) => SchemaComponent;
parseSchema: (
rawSchema: string | SchemaComponent["rawTypeData"],
typeName?: string,
formattersMap?: Record<MAIN_SCHEMA_TYPES, (content: ModelType) => string>,
) => ModelType;
formatters: Record<
MAIN_SCHEMA_TYPES,
(content: string | object | string[] | object[]) => string
>;
inlineExtraFormatters: Record<
Exclude<MAIN_SCHEMA_TYPES, SCHEMA_TYPES.PRIMITIVE>,
(schema: ModelType) => string
>;
formatModelName: (name: string) => string;
fmtToJSDocLine: (line: string, params?: { eol?: boolean }) => string;
_: import("lodash").LoDashStatic;
require: (path: string) => unknown;
};
}
export interface GenerateApiOutput {
configuration: GenerateApiConfiguration;
files: { name: string; content: string; declaration: { name: string; content: string } | null }[];
createFile: (params: {
path: string;
fileName: string;
content: string;
withPrefix?: boolean;
}) => void;
renderTemplate: (
templateContent: string,
data: Record<string, unknown>,
etaOptions?: import("eta/dist/types/config").PartialConfig,
) => string;
getTemplate: (params: { fileName?: string; name?: string; path?: string }) => string;
formatTSContent: (content: string) => string;
}
export declare function generateApi(
params: Omit<GenerateApiParams, "url" | "spec">,
): Promise<GenerateApiOutput>;
export declare function generateApi(
params: Omit<GenerateApiParams, "input" | "spec">,
): Promise<GenerateApiOutput>;
export declare function generateApi(
params: Omit<GenerateApiParams, "input" | "url">,
): Promise<GenerateApiOutput>;