Skip to content

Commit

Permalink
update gen
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Aug 17, 2023
1 parent 726b301 commit 285b4d2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/RepositoryTag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export class RepositoryTag extends TagAbstract {
* @throws {MessageException}
* @throws {ClientException}
*/
public async getAll(user: string, document: string, status?: number, startIndex?: number, count?: number, search?: string): Promise<RepositoryCollection> {
public async getAll(user: string, document: string, startIndex?: number, count?: number, search?: string): Promise<RepositoryCollection> {
const url = this.parser.url('/document/:user/:document/repository', {
'user': user,
'document': document,
Expand All @@ -163,7 +163,6 @@ export class RepositoryTag extends TagAbstract {
url: url,
method: 'GET',
params: this.parser.query({
'status': status,
'startIndex': startIndex,
'count': count,
'search': search,
Expand Down

0 comments on commit 285b4d2

Please sign in to comment.