@trapi/swagger 0.3.4 → 0.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +0 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/specification/v2/index.d.ts +2 -23
- package/dist/specification/v2/index.d.ts.map +1 -1
- package/dist/specification/v2/index.js +17 -383
- package/dist/specification/v2/index.js.map +1 -1
- package/dist/specification/v2/module.d.ts +24 -0
- package/dist/specification/v2/module.d.ts.map +1 -0
- package/dist/specification/v2/module.js +389 -0
- package/dist/specification/v2/module.js.map +1 -0
- package/dist/specification/v3/index.d.ts +2 -24
- package/dist/specification/v3/index.d.ts.map +1 -1
- package/dist/specification/v3/index.js +17 -369
- package/dist/specification/v3/index.js.map +1 -1
- package/dist/specification/v3/module.d.ts +25 -0
- package/dist/specification/v3/module.d.ts.map +1 -0
- package/dist/specification/v3/module.js +377 -0
- package/dist/specification/v3/module.js.map +1 -0
- package/dist/utils/index.d.ts +0 -1
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +0 -1
- package/dist/utils/index.js.map +1 -1
- package/package.json +11 -13
- package/dist/config/index.d.ts +0 -2
- package/dist/config/index.d.ts.map +0 -1
- package/dist/config/index.js +0 -24
- package/dist/config/index.js.map +0 -1
- package/dist/config/utils/index.d.ts +0 -2
- package/dist/config/utils/index.d.ts.map +0 -1
- package/dist/config/utils/index.js +0 -24
- package/dist/config/utils/index.js.map +0 -1
- package/dist/config/utils/validator.d.ts +0 -5
- package/dist/config/utils/validator.d.ts.map +0 -1
- package/dist/config/utils/validator.js +0 -85
- package/dist/config/utils/validator.js.map +0 -1
- package/dist/utils/yup.d.ts +0 -5
- package/dist/utils/yup.d.ts.map +0 -1
- package/dist/utils/yup.js +0 -17
- package/dist/utils/yup.js.map +0 -1
|
@@ -0,0 +1,389 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/*
|
|
3
|
+
* Copyright (c) 2021.
|
|
4
|
+
* Author Peter Placzek (tada5hi)
|
|
5
|
+
* For the full copyright and license information,
|
|
6
|
+
* view the LICENSE file that was distributed with this source code.
|
|
7
|
+
*/
|
|
8
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
+
exports.Version2SpecGenerator = void 0;
|
|
10
|
+
const decorator_1 = require("@trapi/decorator");
|
|
11
|
+
const smob_1 = require("smob");
|
|
12
|
+
const path_1 = require("path");
|
|
13
|
+
const url_1 = require("url");
|
|
14
|
+
const utils_1 = require("../../utils");
|
|
15
|
+
const abstract_1 = require("../abstract");
|
|
16
|
+
class Version2SpecGenerator extends abstract_1.AbstractSpecGenerator {
|
|
17
|
+
getSwaggerSpec() {
|
|
18
|
+
return this.build();
|
|
19
|
+
}
|
|
20
|
+
build() {
|
|
21
|
+
if (typeof this.spec !== 'undefined') {
|
|
22
|
+
return this.spec;
|
|
23
|
+
}
|
|
24
|
+
let spec = {
|
|
25
|
+
basePath: this.config.basePath,
|
|
26
|
+
definitions: this.buildDefinitions(),
|
|
27
|
+
info: this.buildInfo(),
|
|
28
|
+
paths: this.buildPaths(),
|
|
29
|
+
swagger: '2.0',
|
|
30
|
+
};
|
|
31
|
+
spec.securityDefinitions = this.config.securityDefinitions ?
|
|
32
|
+
Version2SpecGenerator.translateSecurityDefinitions(this.config.securityDefinitions) :
|
|
33
|
+
{};
|
|
34
|
+
if (this.config.consumes) {
|
|
35
|
+
spec.consumes = this.config.consumes;
|
|
36
|
+
}
|
|
37
|
+
if (this.config.produces) {
|
|
38
|
+
spec.produces = this.config.produces;
|
|
39
|
+
}
|
|
40
|
+
if (this.config.host) {
|
|
41
|
+
const url = new url_1.URL(this.config.host);
|
|
42
|
+
let host = (url.host + url.pathname).replace(/([^:]\/)\/+/g, '$1');
|
|
43
|
+
host = host.substr(-1, 1) === '/' ? host.substr(0, host.length - 1) : host;
|
|
44
|
+
spec.host = host;
|
|
45
|
+
}
|
|
46
|
+
if (this.config.specificationExtra) {
|
|
47
|
+
spec = (0, smob_1.merge)(spec, this.config.specificationExtra);
|
|
48
|
+
}
|
|
49
|
+
this.spec = spec;
|
|
50
|
+
return spec;
|
|
51
|
+
}
|
|
52
|
+
static translateSecurityDefinitions(securityDefinitions) {
|
|
53
|
+
const definitions = {};
|
|
54
|
+
// tslint:disable-next-line:forin
|
|
55
|
+
const keys = Object.keys(securityDefinitions);
|
|
56
|
+
for (let i = 0; i < keys.length; i++) {
|
|
57
|
+
const securityDefinition = securityDefinitions[keys[i]];
|
|
58
|
+
switch (securityDefinition.type) {
|
|
59
|
+
case 'http':
|
|
60
|
+
if (securityDefinition.schema === 'basic') {
|
|
61
|
+
definitions[keys[i]] = {
|
|
62
|
+
type: 'basic',
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
break;
|
|
66
|
+
case 'apiKey':
|
|
67
|
+
definitions[keys[i]] = securityDefinition;
|
|
68
|
+
break;
|
|
69
|
+
case 'oauth2':
|
|
70
|
+
if (securityDefinition.flows.implicit) {
|
|
71
|
+
definitions[`${keys[i]}Implicit`] = {
|
|
72
|
+
type: 'oauth2',
|
|
73
|
+
flow: 'implicit',
|
|
74
|
+
authorizationUrl: securityDefinition.flows.implicit.authorizationUrl,
|
|
75
|
+
scopes: securityDefinition.flows.implicit.scopes,
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
if (securityDefinition.flows.password) {
|
|
79
|
+
definitions[`${keys[i]}Implicit`] = {
|
|
80
|
+
type: 'oauth2',
|
|
81
|
+
flow: 'password',
|
|
82
|
+
tokenUrl: securityDefinition.flows.password.tokenUrl,
|
|
83
|
+
scopes: securityDefinition.flows.password.scopes,
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
if (securityDefinition.flows.authorizationCode) {
|
|
87
|
+
definitions[`${keys[i]}AccessCode`] = {
|
|
88
|
+
type: 'oauth2',
|
|
89
|
+
flow: 'accessCode',
|
|
90
|
+
tokenUrl: securityDefinition.flows.authorizationCode.tokenUrl,
|
|
91
|
+
authorizationUrl: securityDefinition.flows.authorizationCode.authorizationUrl,
|
|
92
|
+
scopes: securityDefinition.flows.authorizationCode.scopes,
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
if (securityDefinition.flows.clientCredentials) {
|
|
96
|
+
definitions[`${keys[i]}Application`] = {
|
|
97
|
+
type: 'oauth2',
|
|
98
|
+
flow: 'application',
|
|
99
|
+
tokenUrl: securityDefinition.flows.clientCredentials.tokenUrl,
|
|
100
|
+
scopes: securityDefinition.flows.clientCredentials.scopes,
|
|
101
|
+
};
|
|
102
|
+
}
|
|
103
|
+
break;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
return definitions;
|
|
107
|
+
}
|
|
108
|
+
/*
|
|
109
|
+
Definitions ( + utils)
|
|
110
|
+
*/
|
|
111
|
+
buildDefinitions() {
|
|
112
|
+
const definitions = {};
|
|
113
|
+
Object.keys(this.metadata.referenceTypes).map((typeName) => {
|
|
114
|
+
const referenceType = this.metadata.referenceTypes[typeName];
|
|
115
|
+
// const key : string = referenceType.typeName.replace('_', '');
|
|
116
|
+
if ((0, decorator_1.isRefObjectType)(referenceType)) {
|
|
117
|
+
const required = referenceType.properties
|
|
118
|
+
.filter((p) => p.required).map((p) => p.name);
|
|
119
|
+
definitions[referenceType.refName] = {
|
|
120
|
+
description: referenceType.description,
|
|
121
|
+
properties: this.buildProperties(referenceType.properties),
|
|
122
|
+
required: required && required.length > 0 ? Array.from(new Set(required)) : undefined,
|
|
123
|
+
type: 'object',
|
|
124
|
+
};
|
|
125
|
+
if (referenceType.additionalProperties) {
|
|
126
|
+
definitions[referenceType.refName].additionalProperties = true;
|
|
127
|
+
}
|
|
128
|
+
if (referenceType.example) {
|
|
129
|
+
definitions[referenceType.refName].example = referenceType.example;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
else if ((0, decorator_1.isRefEnumType)(referenceType)) {
|
|
133
|
+
definitions[referenceType.refName] = {
|
|
134
|
+
description: referenceType.description,
|
|
135
|
+
enum: referenceType.members,
|
|
136
|
+
type: this.decideEnumType(referenceType.members, referenceType.refName),
|
|
137
|
+
};
|
|
138
|
+
if (referenceType.memberNames !== undefined && referenceType.members.length === referenceType.memberNames.length) {
|
|
139
|
+
definitions[referenceType.refName]['x-enum-varnames'] = referenceType.memberNames;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
else if ((0, decorator_1.isRefAliasType)(referenceType)) {
|
|
143
|
+
const swaggerType = this.getSwaggerType(referenceType.type);
|
|
144
|
+
const format = referenceType.format;
|
|
145
|
+
const validators = Object.keys(referenceType.validators)
|
|
146
|
+
.filter((key) => !key.startsWith('is') && key !== 'minDate' && key !== 'maxDate')
|
|
147
|
+
.reduce((acc, key) => (Object.assign(Object.assign({}, acc), { [key]: referenceType.validators[key].value })), {});
|
|
148
|
+
definitions[referenceType.refName] = Object.assign(Object.assign(Object.assign({}, swaggerType), { default: referenceType.default || swaggerType.default, example: referenceType.example, format: format || swaggerType.format, description: referenceType.description }), validators);
|
|
149
|
+
}
|
|
150
|
+
return typeName;
|
|
151
|
+
});
|
|
152
|
+
return definitions;
|
|
153
|
+
}
|
|
154
|
+
decideEnumType(anEnum, nameOfEnum) {
|
|
155
|
+
const typesUsedInEnum = this.determineTypesUsedInEnum(anEnum);
|
|
156
|
+
const badEnumErrorMessage = () => {
|
|
157
|
+
const valuesDelimited = Array.from(typesUsedInEnum).join(',');
|
|
158
|
+
return `Enums can only have string or number values, but enum ${nameOfEnum} had ${valuesDelimited}`;
|
|
159
|
+
};
|
|
160
|
+
let enumTypeForSwagger = 'string';
|
|
161
|
+
if (typesUsedInEnum.has('string') && typesUsedInEnum.size === 1) {
|
|
162
|
+
enumTypeForSwagger = 'string';
|
|
163
|
+
}
|
|
164
|
+
else if (typesUsedInEnum.has('number') && typesUsedInEnum.size === 1) {
|
|
165
|
+
enumTypeForSwagger = 'number';
|
|
166
|
+
}
|
|
167
|
+
else if (typesUsedInEnum.size === 2 && typesUsedInEnum.has('number') && typesUsedInEnum.has('string')) {
|
|
168
|
+
enumTypeForSwagger = 'string';
|
|
169
|
+
}
|
|
170
|
+
else {
|
|
171
|
+
throw new Error(badEnumErrorMessage());
|
|
172
|
+
}
|
|
173
|
+
return enumTypeForSwagger;
|
|
174
|
+
}
|
|
175
|
+
/*
|
|
176
|
+
Path & Parameter ( + utils)
|
|
177
|
+
*/
|
|
178
|
+
buildPaths() {
|
|
179
|
+
const paths = {};
|
|
180
|
+
const unique = (input) => [...new Set(input)];
|
|
181
|
+
this.metadata.controllers.forEach((controller) => {
|
|
182
|
+
controller.methods.forEach((method) => {
|
|
183
|
+
let fullPath = path_1.posix.join('/', (controller.path ? controller.path : ''), method.path);
|
|
184
|
+
fullPath = (0, utils_1.normalizePathParameters)(fullPath);
|
|
185
|
+
paths[fullPath] = paths[fullPath] || {};
|
|
186
|
+
method.consumes = unique([...controller.consumes, ...method.consumes]);
|
|
187
|
+
method.produces = unique([...controller.produces, ...method.produces]);
|
|
188
|
+
method.tags = unique([...controller.tags, ...method.tags]);
|
|
189
|
+
method.security = method.security || controller.security;
|
|
190
|
+
// todo: unique for objects
|
|
191
|
+
method.responses = unique([...controller.responses, ...method.responses]);
|
|
192
|
+
const pathObject = paths[fullPath];
|
|
193
|
+
pathObject[method.method] = this.buildPathMethod(controller.name, method);
|
|
194
|
+
});
|
|
195
|
+
});
|
|
196
|
+
return paths;
|
|
197
|
+
}
|
|
198
|
+
buildPathMethod(controllerName, method) {
|
|
199
|
+
const pathMethod = this.buildOperation(method);
|
|
200
|
+
pathMethod.description = method.description;
|
|
201
|
+
if (method.summary) {
|
|
202
|
+
pathMethod.summary = method.summary;
|
|
203
|
+
}
|
|
204
|
+
if (method.deprecated) {
|
|
205
|
+
pathMethod.deprecated = method.deprecated;
|
|
206
|
+
}
|
|
207
|
+
if (method.tags.length) {
|
|
208
|
+
pathMethod.tags = method.tags;
|
|
209
|
+
}
|
|
210
|
+
if (method.security) {
|
|
211
|
+
pathMethod.security = method.security.map((s) => ({
|
|
212
|
+
[s.name]: s.scopes || [],
|
|
213
|
+
}));
|
|
214
|
+
}
|
|
215
|
+
this.handleMethodConsumes(method, pathMethod);
|
|
216
|
+
pathMethod.parameters = method.parameters
|
|
217
|
+
.filter((p) => (p.in !== 'param'))
|
|
218
|
+
.map((p) => this.buildParameter(p));
|
|
219
|
+
method.parameters
|
|
220
|
+
.filter((p) => (p.in === 'param'))
|
|
221
|
+
.forEach((p) => {
|
|
222
|
+
pathMethod.parameters.push(this.buildParameter({
|
|
223
|
+
description: p.description,
|
|
224
|
+
in: 'query',
|
|
225
|
+
name: p.name,
|
|
226
|
+
parameterName: p.parameterName,
|
|
227
|
+
required: false,
|
|
228
|
+
type: p.type,
|
|
229
|
+
}));
|
|
230
|
+
pathMethod.parameters.push(this.buildParameter({
|
|
231
|
+
description: p.description,
|
|
232
|
+
in: 'formData',
|
|
233
|
+
name: p.name,
|
|
234
|
+
parameterName: p.parameterName,
|
|
235
|
+
required: false,
|
|
236
|
+
type: p.type,
|
|
237
|
+
}));
|
|
238
|
+
});
|
|
239
|
+
if (pathMethod.parameters.filter((p) => p.in === 'body').length > 1) {
|
|
240
|
+
throw new Error('Only one body parameter allowed per controller method.');
|
|
241
|
+
}
|
|
242
|
+
return pathMethod;
|
|
243
|
+
}
|
|
244
|
+
buildParameter(parameter) {
|
|
245
|
+
const swaggerParameter = {
|
|
246
|
+
description: parameter.description,
|
|
247
|
+
in: parameter.in,
|
|
248
|
+
name: parameter.name,
|
|
249
|
+
required: parameter.required,
|
|
250
|
+
};
|
|
251
|
+
const parameterType = this.getSwaggerType(parameter.type);
|
|
252
|
+
if (((0, utils_1.hasOwnProperty)(parameterType, '$ref') && parameterType.$ref) || parameter.in === 'body') {
|
|
253
|
+
swaggerParameter.schema = parameterType;
|
|
254
|
+
}
|
|
255
|
+
else {
|
|
256
|
+
swaggerParameter.type = parameterType.type;
|
|
257
|
+
if (parameterType.items) {
|
|
258
|
+
swaggerParameter.items = parameterType.items;
|
|
259
|
+
if (parameter.collectionFormat || this.config.collectionFormat) {
|
|
260
|
+
swaggerParameter.collectionFormat = parameter.collectionFormat || this.config.collectionFormat;
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
if (parameterType.format) {
|
|
265
|
+
swaggerParameter.format = parameterType.format;
|
|
266
|
+
}
|
|
267
|
+
if (parameter.default !== undefined) {
|
|
268
|
+
swaggerParameter.default = parameter.default;
|
|
269
|
+
}
|
|
270
|
+
if (parameterType.enum) {
|
|
271
|
+
swaggerParameter.enum = parameterType.enum;
|
|
272
|
+
}
|
|
273
|
+
return swaggerParameter;
|
|
274
|
+
}
|
|
275
|
+
handleMethodConsumes(method, pathMethod) {
|
|
276
|
+
if (method.consumes.length) {
|
|
277
|
+
pathMethod.consumes = method.consumes;
|
|
278
|
+
}
|
|
279
|
+
if ((!pathMethod.consumes || !pathMethod.consumes.length)) {
|
|
280
|
+
if (method.parameters.some((p) => (p.in === 'formData' && p.type.typeName === 'file'))) {
|
|
281
|
+
pathMethod.consumes = pathMethod.consumes || [];
|
|
282
|
+
pathMethod.consumes.push('multipart/form-data');
|
|
283
|
+
}
|
|
284
|
+
else if (this.hasFormParams(method)) {
|
|
285
|
+
pathMethod.consumes = pathMethod.consumes || [];
|
|
286
|
+
pathMethod.consumes.push('application/x-www-form-urlencoded');
|
|
287
|
+
}
|
|
288
|
+
else if (this.supportsBodyParameters(method.method)) {
|
|
289
|
+
pathMethod.consumes = pathMethod.consumes || [];
|
|
290
|
+
pathMethod.consumes.push('application/json');
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
hasFormParams(method) {
|
|
295
|
+
return method.parameters.find((p) => (p.in === 'formData'));
|
|
296
|
+
}
|
|
297
|
+
supportsBodyParameters(method) {
|
|
298
|
+
return ['post', 'put', 'patch'].some((m) => m === method);
|
|
299
|
+
}
|
|
300
|
+
/*
|
|
301
|
+
Swagger Type ( + utils)
|
|
302
|
+
*/
|
|
303
|
+
getSwaggerTypeForEnumType(enumType) {
|
|
304
|
+
const types = this.determineTypesUsedInEnum(enumType.members);
|
|
305
|
+
if (types.size === 1) {
|
|
306
|
+
const type = types.values().next().value;
|
|
307
|
+
const nullable = !!enumType.members.includes(null);
|
|
308
|
+
return { type, enum: enumType.members.map((member) => (member === null ? null : String(member))), 'x-nullable': nullable };
|
|
309
|
+
}
|
|
310
|
+
const valuesDelimited = Array.from(types).join(',');
|
|
311
|
+
throw new Error(`Enums can only have string or number values, but enum had ${valuesDelimited}`);
|
|
312
|
+
}
|
|
313
|
+
getSwaggerTypeForIntersectionType(type) {
|
|
314
|
+
// tslint:disable-next-line:no-shadowed-variable
|
|
315
|
+
const properties = type.members.reduce((acc, type) => {
|
|
316
|
+
if (type.typeName === 'refObject') {
|
|
317
|
+
let refType = type;
|
|
318
|
+
refType = this.metadata.referenceTypes[refType.refName];
|
|
319
|
+
const props = refType &&
|
|
320
|
+
refType.properties &&
|
|
321
|
+
refType.properties.reduce((pAcc, prop) => (Object.assign(Object.assign({}, pAcc), { [prop.name]: this.getSwaggerType(prop.type) })), {});
|
|
322
|
+
return Object.assign(Object.assign({}, acc), props);
|
|
323
|
+
}
|
|
324
|
+
return Object.assign({}, acc);
|
|
325
|
+
}, {});
|
|
326
|
+
return { type: 'object', properties };
|
|
327
|
+
}
|
|
328
|
+
getSwaggerTypeForReferenceType(referenceType) {
|
|
329
|
+
return { $ref: `#/definitions/${referenceType.refName}` };
|
|
330
|
+
}
|
|
331
|
+
buildProperties(properties) {
|
|
332
|
+
const swaggerProperties = {};
|
|
333
|
+
properties.forEach((property) => {
|
|
334
|
+
const swaggerType = this.getSwaggerType(property.type);
|
|
335
|
+
if (!(0, utils_1.hasOwnProperty)(swaggerType, '$ref') || !swaggerType.$ref) {
|
|
336
|
+
swaggerType.description = property.description;
|
|
337
|
+
}
|
|
338
|
+
swaggerProperties[property.name] = swaggerType;
|
|
339
|
+
});
|
|
340
|
+
return swaggerProperties;
|
|
341
|
+
}
|
|
342
|
+
buildOperation(method) {
|
|
343
|
+
const operation = {
|
|
344
|
+
operationId: this.getOperationId(method.name),
|
|
345
|
+
produces: [],
|
|
346
|
+
responses: {},
|
|
347
|
+
};
|
|
348
|
+
const methodReturnTypes = new Set();
|
|
349
|
+
method.responses.forEach((res) => {
|
|
350
|
+
operation.responses[res.status] = {
|
|
351
|
+
description: res.description,
|
|
352
|
+
};
|
|
353
|
+
if (res.schema) {
|
|
354
|
+
const swaggerType = this.getSwaggerType(res.schema);
|
|
355
|
+
if (swaggerType.type !== 'void') {
|
|
356
|
+
operation.responses[res.status].schema = swaggerType;
|
|
357
|
+
}
|
|
358
|
+
methodReturnTypes.add(this.getMimeType(swaggerType));
|
|
359
|
+
}
|
|
360
|
+
if (res.examples) {
|
|
361
|
+
operation.responses[res.status].examples = { 'application/json': res.examples };
|
|
362
|
+
}
|
|
363
|
+
});
|
|
364
|
+
this.handleMethodProduces(method, operation, methodReturnTypes);
|
|
365
|
+
return operation;
|
|
366
|
+
}
|
|
367
|
+
getMimeType(swaggerType) {
|
|
368
|
+
if (swaggerType.$ref ||
|
|
369
|
+
swaggerType.type === 'array' ||
|
|
370
|
+
swaggerType.type === 'object') {
|
|
371
|
+
return 'application/json';
|
|
372
|
+
}
|
|
373
|
+
if (swaggerType.type === 'string' &&
|
|
374
|
+
swaggerType.format === 'binary') {
|
|
375
|
+
return 'application/octet-stream';
|
|
376
|
+
}
|
|
377
|
+
return 'text/html';
|
|
378
|
+
}
|
|
379
|
+
handleMethodProduces(method, operation, methodReturnTypes) {
|
|
380
|
+
if (method.produces.length) {
|
|
381
|
+
operation.produces = method.produces;
|
|
382
|
+
}
|
|
383
|
+
else if (methodReturnTypes && methodReturnTypes.size > 0) {
|
|
384
|
+
operation.produces = Array.from(methodReturnTypes);
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
exports.Version2SpecGenerator = Version2SpecGenerator;
|
|
389
|
+
//# sourceMappingURL=module.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"module.js","sourceRoot":"","sources":["../../../src/specification/v2/module.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,25 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import { SpecificationV3 } from './type';
|
|
4
|
-
import { AbstractSpecGenerator } from '../abstract';
|
|
5
|
-
export declare class Version3SpecGenerator extends AbstractSpecGenerator<SpecificationV3.Spec, SpecificationV3.Schema> {
|
|
6
|
-
getSwaggerSpec(): SpecificationV3.Spec;
|
|
7
|
-
build(): SpecificationV3.Spec;
|
|
8
|
-
private buildComponents;
|
|
9
|
-
private static translateSecurityDefinitions;
|
|
10
|
-
private buildPaths;
|
|
11
|
-
private buildMethod;
|
|
12
|
-
private buildRequestBodyWithFormData;
|
|
13
|
-
private buildRequestBody;
|
|
14
|
-
private buildMediaType;
|
|
15
|
-
protected buildOperation(controllerName: string, method: Method): SpecificationV3.Operation;
|
|
16
|
-
private buildParameter;
|
|
17
|
-
private buildFromParameterExamples;
|
|
18
|
-
private buildServers;
|
|
19
|
-
private buildSchema;
|
|
20
|
-
protected getSwaggerTypeForIntersectionType(type: IntersectionType): SpecificationV3.Schema;
|
|
21
|
-
protected buildProperties<T>(properties: ResolverProperty[]): Record<string, SpecificationV3.Schema>;
|
|
22
|
-
protected getSwaggerTypeForEnumType(enumType: EnumType): SpecificationV3.Schema;
|
|
23
|
-
protected getSwaggerTypeForReferenceType(referenceType: ReferenceType): SpecificationV3.Schema;
|
|
24
|
-
}
|
|
1
|
+
export * from './module';
|
|
2
|
+
export * from './type';
|
|
25
3
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/specification/v3/index.ts"],"names":[],"mappings":"AAOA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/specification/v3/index.ts"],"names":[],"mappings":"AAOA,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC"}
|