@@ -193,35 +193,35 @@ export declare class PetApi {
193
193
setDefaultAuthentication ( auth : Authentication ) : void ;
194
194
setApiKey ( key : PetApiApiKeys , value : string ) : void ;
195
195
accessToken : string ;
196
- addPet ( body : Pet ) : Promise < {
196
+ addPet ( body : Pet , options ?: any ) : Promise < {
197
197
response : http . ClientResponse ;
198
198
body ?: any ;
199
199
} > ;
200
- deletePet ( petId : number , apiKey ?: string ) : Promise < {
200
+ deletePet ( petId : number , apiKey ?: string , options ?: any ) : Promise < {
201
201
response : http . ClientResponse ;
202
202
body ?: any ;
203
203
} > ;
204
- findPetsByStatus ( status : Array < 'available' | 'pending' | 'sold' > ) : Promise < {
204
+ findPetsByStatus ( status : Array < 'available' | 'pending' | 'sold' > , options ?: any ) : Promise < {
205
205
response : http . ClientResponse ;
206
206
body : Array < Pet > ;
207
207
} > ;
208
- findPetsByTags ( tags : Array < string > ) : Promise < {
208
+ findPetsByTags ( tags : Array < string > , options ?: any ) : Promise < {
209
209
response : http . ClientResponse ;
210
210
body : Array < Pet > ;
211
211
} > ;
212
- getPetById ( petId : number ) : Promise < {
212
+ getPetById ( petId : number , options ?: any ) : Promise < {
213
213
response : http . ClientResponse ;
214
214
body : Pet ;
215
215
} > ;
216
- updatePet ( body : Pet ) : Promise < {
216
+ updatePet ( body : Pet , options ?: any ) : Promise < {
217
217
response : http . ClientResponse ;
218
218
body ?: any ;
219
219
} > ;
220
- updatePetWithForm ( petId : number , name ?: string , status ?: string ) : Promise < {
220
+ updatePetWithForm ( petId : number , name ?: string , status ?: string , options ?: any ) : Promise < {
221
221
response : http . ClientResponse ;
222
222
body ?: any ;
223
223
} > ;
224
- uploadFile ( petId : number , additionalMetadata ?: string , file ?: Buffer ) : Promise < {
224
+ uploadFile ( petId : number , additionalMetadata ?: string , file ?: Buffer , options ?: any ) : Promise < {
225
225
response : http . ClientResponse ;
226
226
body : ApiResponse ;
227
227
} > ;
@@ -244,21 +244,21 @@ export declare class StoreApi {
244
244
setDefaultAuthentication ( auth : Authentication ) : void ;
245
245
setApiKey ( key : StoreApiApiKeys , value : string ) : void ;
246
246
accessToken : string ;
247
- deleteOrder ( orderId : string ) : Promise < {
247
+ deleteOrder ( orderId : string , options ?: any ) : Promise < {
248
248
response : http . ClientResponse ;
249
249
body ?: any ;
250
250
} > ;
251
- getInventory ( ) : Promise < {
251
+ getInventory ( options ?: any ) : Promise < {
252
252
response : http . ClientResponse ;
253
253
body : {
254
254
[ key : string ] : number ;
255
255
} ;
256
256
} > ;
257
- getOrderById ( orderId : number ) : Promise < {
257
+ getOrderById ( orderId : number , options ?: any ) : Promise < {
258
258
response : http . ClientResponse ;
259
259
body : Order ;
260
260
} > ;
261
- placeOrder ( body : Order ) : Promise < {
261
+ placeOrder ( body : Order , options ?: any ) : Promise < {
262
262
response : http . ClientResponse ;
263
263
body : Order ;
264
264
} > ;
@@ -281,35 +281,35 @@ export declare class UserApi {
281
281
setDefaultAuthentication ( auth : Authentication ) : void ;
282
282
setApiKey ( key : UserApiApiKeys , value : string ) : void ;
283
283
accessToken : string ;
284
- createUser ( body : User ) : Promise < {
284
+ createUser ( body : User , options ?: any ) : Promise < {
285
285
response : http . ClientResponse ;
286
286
body ?: any ;
287
287
} > ;
288
- createUsersWithArrayInput ( body : Array < User > ) : Promise < {
288
+ createUsersWithArrayInput ( body : Array < User > , options ?: any ) : Promise < {
289
289
response : http . ClientResponse ;
290
290
body ?: any ;
291
291
} > ;
292
- createUsersWithListInput ( body : Array < User > ) : Promise < {
292
+ createUsersWithListInput ( body : Array < User > , options ?: any ) : Promise < {
293
293
response : http . ClientResponse ;
294
294
body ?: any ;
295
295
} > ;
296
- deleteUser ( username : string ) : Promise < {
296
+ deleteUser ( username : string , options ?: any ) : Promise < {
297
297
response : http . ClientResponse ;
298
298
body ?: any ;
299
299
} > ;
300
- getUserByName ( username : string ) : Promise < {
300
+ getUserByName ( username : string , options ?: any ) : Promise < {
301
301
response : http . ClientResponse ;
302
302
body : User ;
303
303
} > ;
304
- loginUser ( username : string , password : string ) : Promise < {
304
+ loginUser ( username : string , password : string , options ?: any ) : Promise < {
305
305
response : http . ClientResponse ;
306
306
body : string ;
307
307
} > ;
308
- logoutUser ( ) : Promise < {
308
+ logoutUser ( options ?: any ) : Promise < {
309
309
response : http . ClientResponse ;
310
310
body ?: any ;
311
311
} > ;
312
- updateUser ( username : string , body : User ) : Promise < {
312
+ updateUser ( username : string , body : User , options ?: any ) : Promise < {
313
313
response : http . ClientResponse ;
314
314
body ?: any ;
315
315
} > ;
0 commit comments