Skip to content

Commit

Permalink
Deploying from phrase/openapi@2906a2cd
Browse files Browse the repository at this point in the history
  • Loading branch information
Phrase committed Apr 20, 2021
1 parent eada987 commit 6a5ebcf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/apis/LocalesApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export interface LocalesListRequest {
xPhraseAppOTP?: string;
page?: number;
perPage?: number;
sortBy?: string;
branch?: string;
}

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

if (requestParameters.sortBy !== undefined) {
queryParameters['sort_by'] = requestParameters.sortBy;
}

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

0 comments on commit 6a5ebcf

Please sign in to comment.