Skip to content

Commit 9cc5675

Browse files
author
Phrase
committed
1 parent 1d76e15 commit 9cc5675

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/apis/TagsApi.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ export interface TagShowRequest {
4242
projectId: string;
4343
name: string;
4444
xPhraseAppOTP?: string;
45+
omitStatistics?: boolean;
4546
branch?: string;
4647
}
4748

@@ -175,6 +176,10 @@ export class TagsApi extends runtime.BaseAPI {
175176

176177
const queryParameters: any = {};
177178

179+
if (requestParameters.omitStatistics !== undefined) {
180+
queryParameters['omit_statistics'] = requestParameters.omitStatistics;
181+
}
182+
178183
if (requestParameters.branch !== undefined) {
179184
queryParameters['branch'] = requestParameters.branch;
180185
}

0 commit comments

Comments
 (0)