Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
samples
  • Loading branch information
davidgamero committed Jan 20, 2022
commit 36762824bccc78ea3d215446bec2ca0d22f5684b
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export abstract class AbstractObjectStoreApi {
* Returns pet inventories by status
* @param param the request object
*/
public abstract getInventory(param: req.StoreApiGetInventoryRequest = {}, options?: Configuration): Promise<{ [key: string]: number; }>;
public abstract getInventory(param: req.StoreApiGetInventoryRequest, options?: Configuration): Promise<{ [key: string]: number; }>;

/**
* For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
Expand Down Expand Up @@ -139,7 +139,7 @@ export abstract class AbstractObjectUserApi {
* Logs out current logged in user session
* @param param the request object
*/
public abstract logoutUser(param: req.UserApiLogoutUserRequest = {}, options?: Configuration): Promise<void>;
public abstract logoutUser(param: req.UserApiLogoutUserRequest, options?: Configuration): Promise<void>;

/**
* This can only be done by the logged in user.
Expand Down