forked from hapi-swagger/hapi-swagger
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.d.ts
More file actions
511 lines (425 loc) · 13.6 KB
/
index.d.ts
File metadata and controls
511 lines (425 loc) · 13.6 KB
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
import { AuthSettings, Plugin } from '@hapi/hapi';
declare module '@hapi/hapi' {
// https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/hapi__hapi/index.d.ts#L97
interface PluginSpecificConfiguration {
'hapi-swagger'?: {
/**
* How payload parameters are displayed `json` or `form`
* @default 'json'
*/
payloadType?: string;
/**
* Collection of example responses for each HTTP statuses
*/
responses?: object;
/**
* The mime types consumed
* @default ['application/json']
*/
consumes?: string[];
/**
* The mime types produced
* @default ['application/json']
*/
produces?: string[];
/**
* The order in which endpoints are displayed, works with `options.sortEndpoints === ordered`
*/
order?: number;
/**
* Whether a endpoint has been deprecated.
* @default false
*/
deprecated?: boolean;
/**
* Any property or object with a key starting with `x-*` is included in the swagger definition (similar to `x-*` options in the `info` object).
*/
[key: string]: any;
};
}
}
declare namespace hapiswagger {
type AuthOptions = object;
type ExpandedType = 'none' | 'list' | 'full';
type SortTagsType = 'alpha' | 'unsorted';
type SortEndpointsType = 'alpha' | 'method' | 'ordered' | 'unsorted';
type UiCompleteScriptObjectType = {
src: string;
};
type UiCompleteScriptType = string | UiCompleteScriptObjectType;
type ScopesType = {
[scope: string]: string | any;
};
type SecuritySchemeType = {
/**
* The authorization URL to be used for this flow. This SHOULD be in the form of a URL. REQUIRED for `type` "oauth2", and `flow` "implicit" or "accessCode"
*/
authorizationUrl?: string;
/**
* A short description for security scheme.
*/
description?: string;
/**
* The flow used by the OAuth2 security scheme. Valid values are "implicit", "password", "application" or "accessCode". REQUIRED for `type` "oauth2"
*/
flow?: string;
/**
* The location of the API key. Valid values are "query" or "header". REQUIRED for `type` "apiKey"
*/
in?: string;
/**
* The name of the header or query parameter to be used. REQUIRED for `type` "apiKey"
*/
name?: string;
/**
* The available scopes for the OAuth2 security scheme. REQUIRED for `type` "oauth2"
*/
scopes?: ScopesType;
/**
* The token URL to be used for this flow. This SHOULD be in the form of a URL. REQUIRED for `type` "oauth2", and `flow` "password", "application", or "accessCode"
*/
tokenUrl?: string;
/**
* The type of the security scheme. Valid values are "basic", "apiKey" or "oauth2"
*/
type: string;
/**
* Any property or object with a key starting with `x-*` is included in the Swagger definition (similar to `x-*` options in the `info` object)
*/
[key: string]: any;
};
/**
* Lists the required security schemes to execute this operation. The object can have multiple security schemes declared in it which are all required (that is, there is a logical AND between the schemes)
*
* The name used for each property MUST correspond to a security scheme declared in the {@link RegisterOptions.securityDefinitions}
*
* If the security scheme is of `type` "oauth2", then the value is a list of scope names required for the execution. For other security scheme types, the array MUST be empty
*/
type SecurityRequirementsType = {
[securityDefinitionName: string]: string[];
};
interface LicenseOptions {
/**
* The name of the license used for the API
*/
name: string;
/**
* The URL to the license used by the API. MUST be formatted as a URL
*/
url: string;
}
interface ContactOptions {
/**
* A contact name for the API
*/
name?: string;
/**
* A URL pointing to the contact information. MUST be formatted as a URL
*/
url?: string;
/**
* A email address of the contact person/organization. MUST be formatted as an email address.
*/
email?: string;
/**
* Metadata about the license that describes how the API can be used.
*/
license?: LicenseOptions;
}
interface InfoOptions {
/**
* The title of the application
*/
title: string;
/**
* The version number of the API
* @default '0.0.1'
*/
version?: string;
/**
* A short description of the application
*/
description?: string;
/**
* A URL to the Terms of Service of the API
*/
termsOfService?: string;
/**
* Owner and license information about API.
*/
contact?: ContactOptions;
/**
* Any property or object with a key starting with 'x-*' is included as such in the `info` section of the object returned by the JSON endpoint. This allows custom properties to be defined as options and copied as such.
*/
[key: string]: any;
}
interface ExternalDocumentation {
/**
* A short description of the target documentation. GFM syntax can be used for rich text representation.
*/
description?: string;
/**
* The URL for the target documentation. Value MUST be in the format of a URL.
*/
string: string;
}
interface TagOptions {
/**
* The name of the tag.
*/
name: string;
/**
* A short description for the tag. GFM syntax can be used for rich text representation.
*/
description?: string;
externalDocs?: ExternalDocumentation;
}
interface RegisterOptions {
/**
* The transfer protocol of the API ie `['http']` (used only with OAS v2)
*/
schemes?: string[];
/**
* The host (name or IP) serving the API including port if any i.e. `localhost:8080` (used only with OAS v2)
*/
host?: string;
/**
* An array of OpenAPI 3.0 server objects (used only with OAS v3)
*/
servers?: {
url: string;
description?: string;
variables?: Record<string, { enum?: string[]; default: string; description: string }>;
}[];
/**
* Defines security strategy to use for plugin resources
* @default false
*/
auth?: string | boolean | AuthOptions;
/**
* Whether the swagger.json routes is severed with cors support
* @default false
*/
cors?: boolean;
/**
* The path of JSON endpoint that describes the API
* @default '/swagger.json'
*/
jsonPath?: string;
/**
* The path for the controller that serves the JSON that describes the API.If jsonPath is specified and this parameter is not, it will take jsonPath value.Useful when behind a reverse proxy
* @default '/swagger.json'
*/
jsonRoutePath?: string;
/**
* The base path from where the API starts i.e. `/v2/` (note, needs to start with `/`)
* @default '/'
*/
basePath?: string;
/**
* Selects what segment of the URL path is used to group endpoints
* @default: 1
*/
pathPrefixSize?: number;
/**
* Metadata about the API endpoints
*/
info: InfoOptions;
/**
* Allows adding meta data to a single tag that is used by the Operation Object. It is not mandatory to have a Tag Object per tag used there.
*/
tags?: TagOptions[];
/** Allows filtering the routes included into Swagger docs by tag or function
* @default 'api'
*
* @example
* ```
* (tags) => !tags.includes('private')
* ```
*/
routeTag?: string | ((tags: string[]) => boolean);
/**
* How to create grouping of endpoints value either `path` or `tags`
* @default 'path'
*/
grouping?: string;
/**
* A function used to determine which tags should be used for grouping (when `grouping` is set to `tags`)
*
* @remarks
* @link https://swagger.io/specification/#tagObject
*
*
* @param tag - String used to group API endpoint
* @returns True or false
*
* @example
* ```
* (tag) => tag !== 'api'
* ```
*/
tagsGroupingFilter?(tag: string): boolean;
/**
* A function used to format authentication details such as entity or scopes
*
* @param authSettings Hapi object containing the authentication settings
*/
authAccessFormatter?(authSettings: AuthSettings['access']): string | undefined | null;
/**
* How payload parameters are displayed 'json' or 'form'
* @default 'json'
*/
payloadType?: string;
/**
* Add hapi tags to internal hapi-swagger routes
* @default []
*/
documentationRouteTags?: string | string[];
/**
* Add hapi plugins option to internal hapi-swagger routes
* @default []
*/
documentationRoutePlugins?: object;
/**
* The mime types consumed
*
* @default: 'application/json'
*/
consumes?: string[];
/**
* The mime types produced
*
* @default 'application/json'
*/
produces?: string[];
/**
* Adds JOI data that cannot be use directly by swagger as metadata
*
* @default true;
*/
xProperties?: boolean;
/**
* Reuse of definition models to save space.
* Even if two routes have the same definition, but labels are not set, the plugin assumes that it is a different
* definition, the same if one definition has a label and another does not.
* To really reuse the definition model you need to keep the definition and labels the same.
* @default: true
*/
reuseDefinitions?: boolean;
/**
* Wildcard methods. Are used as custom methods for the route when the method is set to '*'
* @default: ['GET', 'POST', 'PUT', 'PATCH', 'DELETE']
*/
wildcardMethods?: string[];
/**
* The swagger version to use.
* @default: 'v2'
*/
OAS?: 'v2' | 'v3.0';
/**
* Dynamic naming convention. `default` or `useLabel`
*
* @default 'default'
*/
definitionPrefix?: string;
/**
* Dereferences JSON output
*
* @default: false
*/
deReference?: boolean;
/**
* Validates the JSON output against swagger specification
*
* @default false
*/
debug?: boolean;
// TODO: remove below line after adding all option typings to this file
/**
* Any property or object with a key starting with 'x-*' is included as such in the `info` section of the object returned by the JSON endpoint. This allows custom properties to be defined as options and copied as such.
*/
[key: string]: any;
//FIXME: https://github.com/swagger-api/swagger-ui/blob/master/docs/usage/oauth2.md
/**
* Oauth configurations for swagger ui.
*/
oauthOptions?: any;
/**
* Add files that support SwaggerUI. Only removes files if `documentationPage` is also set to false
* @default: true
*/
swaggerUI?: boolean;
/**
* The path of to all the SwaggerUI resources
* @default: '/swaggerui/'
*/
swaggerUIPath?: string;
/**
* The path to all the SwaggerUI assets endpoints.
* If swaggerUIPath is specified and this parameter is not, it will take swaggerUIPath value. Useful when behind a reverse proxy
* @default: '/swaggerui/'
*/
routesBasePath?: string;
/**
* Add documentation page
* @default true
*/
documentationPage?: boolean;
/**
* The path of the documentation page
* @default '/documentation'
*/
documentationPath?: string;
/**
* The directory path used by `hapi-swagger` and `@hapi/vision` to resolve and load the templates to render `swagger-ui` interface. The directory must contain `index.html` and `debug.html` templates
* @default: './templates'
*/
templates?: string;
/**
* Controls the default expansion setting for the operations and tags. It can be 'list' (expands only the tags), 'full' (expands the tags and operations) or 'none' (expands nothing).
*
* @default 'list'
*/
expanded?: ExpandedType;
/**
* Sort method for `tags` i.e. groups in UI. Values include `alpha`, `unsorted`.
* @default: 'alpha'
*/
sortTags?: SortTagsType;
/**
* Sort method for endpoints in UI. Values include `alpha`, `method`, `ordered`, `unsorted`.
* @default: 'alpha'
*/
sortEndpoints?: SortEndpointsType;
/**
* A JavaScript string injected into the HTML, called when UI loads.
* @default: null
*/
uiCompleteScript?: UiCompleteScriptType;
/**
* An object of options to be passed to Swagger UI.
* @default {}
*/
uiOptions?: object;
/**
* Sets the external validating URL Can switch off by setting to `null`
* @default 'https://online.swagger.io/validator'
*/
validatorUrl?: string;
/**
* Controls whether the "Try it out" section should be enabled by default
* @default false
*/
tryItOutEnabled?: boolean;
/**
* A declaration of the security schemes available to be used in the specification. This does not enforce the security schemes on the operations and only serves to provide the relevant details for each scheme
*/
securityDefinitions?: { [name: string]: SecuritySchemeType };
/**
* A declaration of which security schemes are applied for the API as a whole. The list of values describes alternative security schemes that can be used (that is, there is a logical OR between the security requirements)
*/
security?: [SecurityRequirementsType];
}
}
declare const hapiswagger: Plugin<hapiswagger.RegisterOptions>;
export = hapiswagger;