forked from acacode/swagger-typescript-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
784 lines (722 loc) · 19.9 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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
import type { MonoSchemaParser } from "./src/schema-parser/mono-schema-parser";
type HttpClientType = "axios" | "fetch";
interface GenerateApiParamsBase {
/**
* default 'api.ts'
*/
name?: string;
/**
* name of the main exported class
*/
apiClassName?: string;
/**
* path to folder where will be located the created api module.
*
* may set to `false` to skip writing content to disk. in this case,
* you may access the `files` on the return value.
*/
output?: string | false;
/**
* path to folder containing templates (default: ./src/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?: HttpClientType;
/**
* 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;
/**
* unwrap the data item from the response
*/
unwrapResponseData?: boolean;
/**
* sort data contracts in alphabetical order
*/
sortTypes?: boolean;
/**
* sort routes in alphabetical order
*/
sortRoutes?: 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;
/**
* extract request body type to data contract
*/
extractRequestBody?: boolean;
/**
* extract response body type to data contract
*/
extractResponseBody?: boolean;
/**
* extract response error type to data contract
*/
extractResponseError?: boolean;
/**
* prettier configuration
*/
prettier?: object;
/**
* Output only errors to console (default: false)
*/
silent?: boolean;
/**
* default type for empty response schema (default: "void")
*/
defaultResponseType?: string;
/**
* Ability to send HttpClient instance to Api constructor
*/
singleHttpClient?: boolean;
cleanOutput?: boolean;
enumNamesAsValues?: boolean;
hooks?: Partial<Hooks>;
/**
* extra templates
*/
extraTemplates?: { name: string; path: string }[];
/**
* fix up small errors in the swagger source definition
*/
patch?: boolean;
/**
* authorization token
*/
authorizationToken?: string;
/**
* generate readonly properties (default: false)
*/
addReadonly?: boolean;
primitiveTypeConstructs?: (
struct: PrimitiveTypeStruct,
) => Partial<PrimitiveTypeStruct>;
codeGenConstructs?: (struct: CodeGenConstruct) => Partial<CodeGenConstruct>;
/** extract all enums from nested types\interfaces to `enum` construction */
extractEnums?: boolean;
/** prefix string value needed to fix invalid type names (default: 'Type') */
fixInvalidTypeNamePrefix?: string;
/** prefix string value needed to fix invalid enum keys (default: 'Value') */
fixInvalidEnumKeyPrefix?: string;
/** prefix string value for enum keys */
enumKeyPrefix?: string;
/** suffix string value for enum keys */
enumKeySuffix?: string;
/** prefix string value for type names */
typePrefix?: string;
/** suffix string value for type names */
typeSuffix?: string;
/** extra configuration for extracting type names operations */
extractingOptions?: Partial<ExtractingOptions>;
/** configuration for fetching swagger schema requests */
requestOptions?: null | Partial<RequestInit>;
/** ts compiler configuration object (for --to-js option) */
compilerTsConfig?: Record<string, any>;
/**
* custom ts->* translator
* do not use constructor args, it can break functionality of this property, just send class reference
*
* @example
* ```ts
* const { Translator } = require("swagger-typescript-api/src/translators/translator");
*
* class MyTranslator extends Translator {
*
* translate({ fileName, fileExtension, fileContent }) {
* this.codeFormatter.format()
* this.config.
* this.logger.
*
* return [
* {
* fileName,
* fileExtension,
* fileContent,
* }
* ]
* }
* }
* ```
*/
customTranslator?: new () => typeof import("./src/translators/translator").Translator;
/** fallback name for enum key resolver */
enumKeyResolverName?: string;
/** fallback name for type name resolver */
typeNameResolverName?: string;
/** fallback name for specific arg name resolver */
specificArgNameResolverName?: string;
schemaParsers?: {
complexOneOf?: MonoSchemaParser;
complexAllOf?: MonoSchemaParser;
complexAnyOf?: MonoSchemaParser;
complexNot?: MonoSchemaParser;
enum?: MonoSchemaParser;
object?: MonoSchemaParser;
complex?: MonoSchemaParser;
primitive?: MonoSchemaParser;
discriminator?: MonoSchemaParser;
array?: MonoSchemaParser;
};
}
type CodeGenConstruct = {
Keyword: {
Number: string;
String: string;
Boolean: string;
Any: string;
Void: string;
Unknown: string;
Null: string;
Undefined: string;
Object: string;
File: string;
Date: string;
Type: string;
Enum: string;
Interface: string;
Array: string;
Record: string;
Intersection: string;
Union: string;
};
CodeGenKeyword: {
UtilRequiredKeys: string;
};
ArrayType: (content: any) => string;
StringValue: (content: any) => string;
BooleanValue: (content: any) => string;
NumberValue: (content: any) => string;
NullValue: (content: any) => string;
UnionType: (content: any) => string;
ExpressionGroup: (content: any) => string;
IntersectionType: (content: any) => string;
RecordType: (content: any) => string;
TypeField: (content: any) => string;
InterfaceDynamicField: (content: any) => string;
EnumField: (content: any) => string;
EnumFieldsWrapper: (content: any) => string;
ObjectWrapper: (content: any) => string;
MultilineComment: (content: any) => string;
TypeWithGeneric: (content: any) => string;
};
type PrimitiveTypeStructValue =
| string
| ((
schema: Record<string, any>,
parser: import("./src/schema-parser/schema-parser").SchemaParser,
) => string);
type PrimitiveTypeStruct = Record<
"integer" | "number" | "boolean" | "object" | "file" | "string" | "array",
| string
| ({ $default: PrimitiveTypeStructValue } & Record<
string,
PrimitiveTypeStructValue
>)
>;
interface GenerateApiParamsFromPath extends GenerateApiParamsBase {
/**
* path to swagger schema
*/
input: string;
}
interface GenerateApiParamsFromUrl extends GenerateApiParamsBase {
/**
* url to swagger schema
*/
url: string;
}
interface GenerateApiParamsFromSpecLiteral extends GenerateApiParamsBase {
/**
* swagger schema JSON
*/
spec: import("swagger-schema-official").Spec;
}
export type GenerateApiParams =
| GenerateApiParamsFromPath
| GenerateApiParamsFromUrl
| GenerateApiParamsFromSpecLiteral;
type BuildRouteParam = {
/** {bar} */
$match: string;
name: string;
required: boolean;
type: "string";
description: string;
schema: {
type: string;
};
in: "path" | "query";
};
type BuildRoutePath = {
/** /foo/{bar}/baz */
originalRoute: string;
/** /foo/${bar}/baz */
route: string;
pathParams: BuildRouteParam[];
queryParams: BuildRouteParam[];
};
export interface Hooks {
/** calls before parse\process route path */
onPreBuildRoutePath: (routePath: string) => string | void;
/** calls after parse\process route path */
onBuildRoutePath: (data: BuildRoutePath) => BuildRoutePath | void;
/** calls before insert path param name into string path interpolation */
onInsertPathParam: (
paramName: string,
index: number,
arr: BuildRouteParam[],
resultRoute: string,
) => string | void;
/** calls after parse schema component */
onCreateComponent: (component: SchemaComponent) => SchemaComponent | void;
/** calls before parse any kind of schema */
onPreParseSchema: (
originalSchema: any,
typeName: string,
schemaType: string,
) => any;
/** 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,
codeGenProcess: import("./src/code-gen-process").CodeGenProcess,
) => 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,
schemaType?: "type-name" | "enum-key",
) => string | void;
/** customize name of route (operationId), you can do it with using onCreateRouteName too */
onFormatRouteName?: (
routeInfo: RawRouteInfo,
templateRouteName: string,
) => string | void;
}
export type 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: "schemas" | "paths";
typeData: ParsedSchema<
SchemaTypeObjectContent | SchemaTypeEnumContent | SchemaTypePrimitiveContent
> | null;
}
export enum RequestContentKind {
JSON = "JSON",
URL_ENCODED = "URL_ENCODED",
FORM_DATA = "FORM_DATA",
IMAGE = "IMAGE",
OTHER = "OTHER",
TEXT = "TEXT",
}
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;
type ExtractingOptions = {
requestBodySuffix: string[];
responseBodySuffix: string[];
responseErrorSuffix: string[];
requestParamsSuffix: string[];
enumSuffix: string[];
discriminatorMappingSuffix: string[];
discriminatorAbstractPrefix: string[];
requestBodyNameResolver: (
name: string,
reservedNames: string,
) => string | undefined;
responseBodyNameResolver: (
name: string,
reservedNames: string,
) => string | undefined;
responseErrorNameResolver: (
name: string,
reservedNames: string,
) => string | undefined;
requestParamsNameResolver: (
name: string,
reservedNames: string,
) => string | undefined;
enumNameResolver: (name: string, reservedNames: string) => string | undefined;
discriminatorMappingNameResolver: (
name: string,
reservedNames: string,
) => string | undefined;
discriminatorAbstractResolver: (
name: string,
reservedNames: string,
) => string | undefined;
};
export interface GenerateApiConfiguration {
apiConfig: {
baseUrl: string;
title: string;
version: string;
description: string[];
hasDescription: boolean;
};
config: {
input: string;
output: string;
url: string;
spec: any;
fileName: string;
templatePaths: {
/** `templates/base` */
base: string;
/** `templates/default` */
default: string;
/** `templates/modular` */
modular: string;
/** usage path if `--templates` option is not set */
original: string;
/** custom path to templates (`--templates`) */
custom: string | null;
};
authorizationToken?: string;
generateResponses: boolean;
defaultResponseAsSuccess: boolean;
generateRouteTypes: boolean;
generateClient: boolean;
generateUnionEnums: boolean;
swaggerSchema: object;
originalSchema: object;
componentsMap: Record<string, SchemaComponent>;
convertedFromSwagger2: boolean;
moduleNameIndex: number;
moduleNameFirstTag: boolean;
extraTemplates: { name: string; path: string }[];
disableStrictSSL: boolean;
disableProxy: boolean;
extractRequestParams: boolean;
unwrapResponseData: boolean;
sortTypes: boolean;
sortRoutes: boolean;
singleHttpClient: boolean;
typePrefix: string;
typeSuffix: string;
enumKeyPrefix: string;
enumKeySuffix: string;
patch: boolean;
cleanOutput: boolean;
debug: boolean;
anotherArrayType: boolean;
extractRequestBody: boolean;
httpClientType: "axios" | "fetch";
addReadonly: boolean;
extractResponseBody: boolean;
extractResponseError: boolean;
extractEnums: boolean;
fixInvalidTypeNamePrefix: string;
fixInvalidEnumKeyPrefix: string;
defaultResponseType: string;
toJS: boolean;
disableThrowOnError: boolean;
silent: boolean;
hooks: Hooks;
enumNamesAsValues: boolean;
version: string;
compilerTsConfig: Record<string, any>;
enumKeyResolverName: string;
typeNameResolverName: string;
specificArgNameResolverName: string;
/** do not use constructor args, it can break functionality of this property, just send class reference */
customTranslator?: new (
...args: never[]
) => typeof import("./src/translators/translator").Translator;
internalTemplateOptions: {
addUtilRequiredKeysType: boolean;
};
componentTypeNameResolver: typeof import("./src/component-type-name-resolver").ComponentTypeNameResolver;
fileNames: {
dataContracts: string;
routeTypes: string;
httpClient: string;
outOfModuleApi: string;
};
templatesToRender: {
api: string;
dataContracts: string;
httpClient: string;
routeTypes: string;
routeName: string;
dataContractJsDoc: string;
interfaceDataContract: string;
typeDataContract: string;
enumDataContract: string;
objectFieldJsDoc: string;
};
routeNameDuplicatesMap: Map<string, string>;
apiClassName: string;
requestOptions?: RequestInit;
extractingOptions: ExtractingOptions;
};
modelTypes: ModelType[];
hasFormDataRoutes: boolean;
hasSecurityRoutes: boolean;
hasQueryRoutes: boolean;
generateResponses: boolean;
routes: {
outOfModule: ParsedRoute[];
combined?: {
moduleName: string;
routes: ParsedRoute[];
}[];
};
requestOptions?: null | Partial<RequestInit>;
utils: {
formatDescription: (description: string, inline?: boolean) => string;
internalCase: (value: string) => string;
/** @deprecated */
classNameCase: (value: string) => string;
pascalCase: (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;
};
}
type FileInfo = {
/** @example myFilename */
fileName: string;
/** @example .d.ts */
fileExtension: string;
/** content of the file */
fileContent: string;
};
export interface GenerateApiOutput {
configuration: GenerateApiConfiguration;
files: FileInfo[];
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) => Promise<string>;
}
export declare function generateApi(
params: GenerateApiParams,
): Promise<GenerateApiOutput>;
export interface GenerateTemplatesParams {
cleanOutput?: boolean;
output?: string;
httpClientType?: HttpClientType;
modular?: boolean;
silent?: boolean;
}
export interface GenerateTemplatesOutput
extends Pick<GenerateApiOutput, "files" | "createFile"> {}
export declare function generateTemplates(
params: GenerateTemplatesParams,
): Promise<GenerateTemplatesOutput>;