We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d76e15 commit 9cc5675Copy full SHA for 9cc5675
src/apis/TagsApi.ts
@@ -42,6 +42,7 @@ export interface TagShowRequest {
42
projectId: string;
43
name: string;
44
xPhraseAppOTP?: string;
45
+ omitStatistics?: boolean;
46
branch?: string;
47
}
48
@@ -175,6 +176,10 @@ export class TagsApi extends runtime.BaseAPI {
175
176
177
const queryParameters: any = {};
178
179
+ if (requestParameters.omitStatistics !== undefined) {
180
+ queryParameters['omit_statistics'] = requestParameters.omitStatistics;
181
+ }
182
+
183
if (requestParameters.branch !== undefined) {
184
queryParameters['branch'] = requestParameters.branch;
185
0 commit comments