@@ -38,7 +38,6 @@ export interface PetApiInterface {
38
38
* @summary Add a new pet to the store
39
39
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
40
40
* @throws {HttpError }
41
- * @memberof PetApi
42
41
*/
43
42
addPet ( params : {
44
43
petDto ?: PetDto ;
@@ -49,7 +48,6 @@ export interface PetApiInterface {
49
48
* @summary Deletes a pet
50
49
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
51
50
* @throws {HttpError }
52
- * @memberof PetApi
53
51
*/
54
52
deletePet ( params : {
55
53
pathParams : { petId : number } ;
@@ -61,29 +59,26 @@ export interface PetApiInterface {
61
59
* @summary Finds Pets by status
62
60
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
63
61
* @throws {HttpError }
64
- * @memberof PetApi
65
62
*/
66
63
findPetsByStatus ( params : {
67
- queryParams ?: { status ?: Array < "available" | "pending" | "sold" > , } ;
64
+ queryParams ?: { status ?: Array < "available" | "pending" | "sold" > , } ;
68
65
security : petstore_auth ;
69
66
} ) : Promise < Array < PetDto > > ;
70
67
/**
71
68
*
72
69
* @summary Finds Pets by tags
73
70
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
74
71
* @throws {HttpError }
75
- * @memberof PetApi
76
72
*/
77
73
findPetsByTags ( params : {
78
- queryParams ?: { tags ?: Array < string > , } ;
74
+ queryParams ?: { tags ?: Array < string > , } ;
79
75
security : petstore_auth ;
80
76
} ) : Promise < Array < PetDto > > ;
81
77
/**
82
78
*
83
79
* @summary Find pet by ID
84
80
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
85
81
* @throws {HttpError }
86
- * @memberof PetApi
87
82
*/
88
83
getPetById ( params : {
89
84
pathParams : { petId : number } ;
@@ -94,7 +89,6 @@ export interface PetApiInterface {
94
89
* @summary Update an existing pet
95
90
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
96
91
* @throws {HttpError }
97
- * @memberof PetApi
98
92
*/
99
93
updatePet ( params : {
100
94
petDto ?: PetDto ;
@@ -105,7 +99,6 @@ export interface PetApiInterface {
105
99
* @summary Updates a pet in the store with form data
106
100
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
107
101
* @throws {HttpError }
108
- * @memberof PetApi
109
102
*/
110
103
updatePetWithForm ( params : {
111
104
pathParams : { petId : string } ;
@@ -117,7 +110,6 @@ export interface PetApiInterface {
117
110
* @summary uploads an image
118
111
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
119
112
* @throws {HttpError }
120
- * @memberof PetApi
121
113
*/
122
114
uploadFile ( params : {
123
115
pathParams : { petId : number } ;
@@ -309,7 +301,6 @@ export interface StoreApiInterface {
309
301
* @summary Delete purchase order by ID
310
302
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
311
303
* @throws {HttpError }
312
- * @memberof StoreApi
313
304
*/
314
305
deleteOrder ( params : {
315
306
pathParams : { orderId : string } ;
@@ -318,7 +309,6 @@ export interface StoreApiInterface {
318
309
*
319
310
* @summary Returns pet inventories by status
320
311
* @throws {HttpError }
321
- * @memberof StoreApi
322
312
*/
323
313
getInventory ( params : {
324
314
security : api_key ;
@@ -328,7 +318,6 @@ export interface StoreApiInterface {
328
318
* @summary Find purchase order by ID
329
319
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
330
320
* @throws {HttpError }
331
- * @memberof StoreApi
332
321
*/
333
322
getOrderById ( params : {
334
323
pathParams : { orderId : string } ;
@@ -338,7 +327,6 @@ export interface StoreApiInterface {
338
327
* @summary Place an order for a pet
339
328
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
340
329
* @throws {HttpError }
341
- * @memberof StoreApi
342
330
*/
343
331
placeOrder ( params : {
344
332
orderDto ?: OrderDto ;
@@ -425,7 +413,6 @@ export interface UserApiInterface {
425
413
* @summary Create user
426
414
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
427
415
* @throws {HttpError }
428
- * @memberof UserApi
429
416
*/
430
417
createUser ( params : {
431
418
userDto ?: UserDto ;
@@ -435,7 +422,6 @@ export interface UserApiInterface {
435
422
* @summary Creates list of users with given input array
436
423
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
437
424
* @throws {HttpError }
438
- * @memberof UserApi
439
425
*/
440
426
createUsersWithArrayInput ( params : {
441
427
userDto ?: Array < UserDto > ;
@@ -445,7 +431,6 @@ export interface UserApiInterface {
445
431
* @summary Creates list of users with given input array
446
432
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
447
433
* @throws {HttpError }
448
- * @memberof UserApi
449
434
*/
450
435
createUsersWithListInput ( params : {
451
436
userDto ?: Array < UserDto > ;
@@ -455,7 +440,6 @@ export interface UserApiInterface {
455
440
* @summary Delete user
456
441
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
457
442
* @throws {HttpError }
458
- * @memberof UserApi
459
443
*/
460
444
deleteUser ( params : {
461
445
pathParams : { username : string } ;
@@ -465,7 +449,6 @@ export interface UserApiInterface {
465
449
* @summary Get user by user name
466
450
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
467
451
* @throws {HttpError }
468
- * @memberof UserApi
469
452
*/
470
453
getUserByName ( params : {
471
454
pathParams : { username : string } ;
@@ -475,24 +458,21 @@ export interface UserApiInterface {
475
458
* @summary Logs user into the system
476
459
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
477
460
* @throws {HttpError }
478
- * @memberof UserApi
479
461
*/
480
462
loginUser ( params : {
481
- queryParams ?: { username ?: string , password ?: string , } ;
463
+ queryParams ?: { username ?: string , password ?: string , } ;
482
464
} ) : Promise < string > ;
483
465
/**
484
466
*
485
467
* @summary Logs out current logged in user session
486
468
* @throws {HttpError }
487
- * @memberof UserApi
488
469
*/
489
470
logoutUser ( ) : Promise < void > ;
490
471
/**
491
472
*
492
473
* @summary Updated user
493
474
* @param {* } [params] Request parameters, including pathParams, queryParams (including bodyParams) and http options.
494
475
* @throws {HttpError }
495
- * @memberof UserApi
496
476
*/
497
477
updateUser ( params : {
498
478
pathParams : { username : string } ;
0 commit comments