Skip to content

Commit

Permalink
forgot to fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
CXwudi committed Jan 27, 2023
1 parent 7722ae7 commit 08a4604
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/main/java/mikufan/cx/vocadbapiclient/api/UserApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import mikufan.cx.vocadbapiclient.model.EntryType;
import java.time.LocalDateTime;
import mikufan.cx.vocadbapiclient.model.LogicalGrouping;
import mikufan.cx.vocadbapiclient.model.MediaType;
import mikufan.cx.vocadbapiclient.model.NameMatchMode;
import mikufan.cx.vocadbapiclient.model.PVServices;
import mikufan.cx.vocadbapiclient.model.PurchaseStatus;
Expand Down Expand Up @@ -147,7 +146,7 @@ public ResponseEntity<AlbumForUserForApiContract> apiUsersCurrentAlbumCollection
* @return String
* @throws RestClientException if an error occurs while attempting to invoke the API
*/
public String apiUsersCurrentAlbumsAlbumIdPost(Integer albumId, PurchaseStatus collectionStatus, MediaType mediaType, Integer rating) throws RestClientException {
public String apiUsersCurrentAlbumsAlbumIdPost(Integer albumId, PurchaseStatus collectionStatus, mikufan.cx.vocadbapiclient.model.MediaType mediaType, Integer rating) throws RestClientException {
return apiUsersCurrentAlbumsAlbumIdPostWithHttpInfo(albumId, collectionStatus, mediaType, rating).getBody();
}

Expand All @@ -162,7 +161,7 @@ public String apiUsersCurrentAlbumsAlbumIdPost(Integer albumId, PurchaseStatus c
* @return ResponseEntity&lt;String&gt;
* @throws RestClientException if an error occurs while attempting to invoke the API
*/
public ResponseEntity<String> apiUsersCurrentAlbumsAlbumIdPostWithHttpInfo(Integer albumId, PurchaseStatus collectionStatus, MediaType mediaType, Integer rating) throws RestClientException {
public ResponseEntity<String> apiUsersCurrentAlbumsAlbumIdPostWithHttpInfo(Integer albumId, PurchaseStatus collectionStatus, mikufan.cx.vocadbapiclient.model.MediaType mediaType, Integer rating) throws RestClientException {
Object localVarPostBody = null;

// verify the required parameter 'albumId' is set
Expand Down Expand Up @@ -680,7 +679,7 @@ public ResponseEntity<AlbumForUserForApiContract> apiUsersIdAlbumCollectionStatu
* @return AlbumForUserForApiContractPartialFindResult
* @throws RestClientException if an error occurs while attempting to invoke the API
*/
public AlbumForUserForApiContractPartialFindResult apiUsersIdAlbumsGet(Integer id, String query, Integer tagId, String tag, Integer artistId, PurchaseStatuses purchaseStatuses, Integer releaseEventId, DiscType albumTypes, List<AdvancedSearchFilterParams> advancedFilters, Integer start, Integer maxResults, Boolean getTotalCount, AlbumSortRule sort, NameMatchMode nameMatchMode, AlbumOptionalFields fields, ContentLanguagePreference lang, MediaType mediaType) throws RestClientException {
public AlbumForUserForApiContractPartialFindResult apiUsersIdAlbumsGet(Integer id, String query, Integer tagId, String tag, Integer artistId, PurchaseStatuses purchaseStatuses, Integer releaseEventId, DiscType albumTypes, List<AdvancedSearchFilterParams> advancedFilters, Integer start, Integer maxResults, Boolean getTotalCount, AlbumSortRule sort, NameMatchMode nameMatchMode, AlbumOptionalFields fields, ContentLanguagePreference lang, mikufan.cx.vocadbapiclient.model.MediaType mediaType) throws RestClientException {
return apiUsersIdAlbumsGetWithHttpInfo(id, query, tagId, tag, artistId, purchaseStatuses, releaseEventId, albumTypes, advancedFilters, start, maxResults, getTotalCount, sort, nameMatchMode, fields, lang, mediaType).getBody();
}

Expand Down Expand Up @@ -708,7 +707,7 @@ public AlbumForUserForApiContractPartialFindResult apiUsersIdAlbumsGet(Integer i
* @return ResponseEntity&lt;AlbumForUserForApiContractPartialFindResult&gt;
* @throws RestClientException if an error occurs while attempting to invoke the API
*/
public ResponseEntity<AlbumForUserForApiContractPartialFindResult> apiUsersIdAlbumsGetWithHttpInfo(Integer id, String query, Integer tagId, String tag, Integer artistId, PurchaseStatuses purchaseStatuses, Integer releaseEventId, DiscType albumTypes, List<AdvancedSearchFilterParams> advancedFilters, Integer start, Integer maxResults, Boolean getTotalCount, AlbumSortRule sort, NameMatchMode nameMatchMode, AlbumOptionalFields fields, ContentLanguagePreference lang, MediaType mediaType) throws RestClientException {
public ResponseEntity<AlbumForUserForApiContractPartialFindResult> apiUsersIdAlbumsGetWithHttpInfo(Integer id, String query, Integer tagId, String tag, Integer artistId, PurchaseStatuses purchaseStatuses, Integer releaseEventId, DiscType albumTypes, List<AdvancedSearchFilterParams> advancedFilters, Integer start, Integer maxResults, Boolean getTotalCount, AlbumSortRule sort, NameMatchMode nameMatchMode, AlbumOptionalFields fields, ContentLanguagePreference lang, mikufan.cx.vocadbapiclient.model.MediaType mediaType) throws RestClientException {
Object localVarPostBody = null;

// verify the required parameter 'id' is set
Expand Down

0 comments on commit 08a4604

Please sign in to comment.