Skip to content

Commit

Permalink
Deploying from phrase/openapi@b8121547
Browse files Browse the repository at this point in the history
  • Loading branch information
Phrase committed Sep 3, 2024
1 parent 935b33b commit 6601373
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/apis/TagsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export interface TagsListRequest {
xPhraseAppOTP?: string;
page?: number;
perPage?: number;
excludeSystemTags?: boolean;
branch?: string;
}

Expand Down Expand Up @@ -229,6 +230,10 @@ export class TagsApi extends runtime.BaseAPI {
queryParameters['per_page'] = requestParameters.perPage;
}

if (requestParameters.excludeSystemTags !== undefined) {
queryParameters['exclude_system_tags'] = requestParameters.excludeSystemTags;
}

if (requestParameters.branch !== undefined) {
queryParameters['branch'] = requestParameters.branch;
}
Expand Down

0 comments on commit 6601373

Please sign in to comment.