Skip to content

Commit

Permalink
refactor: rename person count dto
Browse files Browse the repository at this point in the history
  • Loading branch information
martabal committed Jul 15, 2023
1 parent c7626f4 commit 8870bf9
Show file tree
Hide file tree
Showing 19 changed files with 128 additions and 126 deletions.
54 changes: 27 additions & 27 deletions cli/src/api/open-api/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1789,6 +1789,31 @@ export interface OAuthConfigResponseDto {
*/
'autoLaunch'?: boolean;
}
/**
*
* @export
* @interface PersonCountResponseDto
*/
export interface PersonCountResponseDto {
/**
*
* @type {number}
* @memberof PersonCountResponseDto
*/
'hidden': number;
/**
*
* @type {number}
* @memberof PersonCountResponseDto
*/
'visible': number;
/**
*
* @type {number}
* @memberof PersonCountResponseDto
*/
'total': number;
}
/**
*
* @export
Expand Down Expand Up @@ -2417,31 +2442,6 @@ export interface SmartInfoResponseDto {
*/
'objects'?: Array<string> | null;
}
/**
*
* @export
* @interface StatResponseDto
*/
export interface StatResponseDto {
/**
*
* @type {number}
* @memberof StatResponseDto
*/
'hidden': number;
/**
*
* @type {number}
* @memberof StatResponseDto
*/
'visible': number;
/**
*
* @type {number}
* @memberof StatResponseDto
*/
'total': number;
}
/**
*
* @export
Expand Down Expand Up @@ -9040,7 +9040,7 @@ export const PersonApiFp = function(configuration?: Configuration) {
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async getPersonCount(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StatResponseDto>> {
async getPersonCount(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PersonCountResponseDto>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.getPersonCount(options);
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
Expand Down Expand Up @@ -9118,7 +9118,7 @@ export const PersonApiFactory = function (configuration?: Configuration, basePat
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getPersonCount(options?: AxiosRequestConfig): AxiosPromise<StatResponseDto> {
getPersonCount(options?: AxiosRequestConfig): AxiosPromise<PersonCountResponseDto> {
return localVarFp.getPersonCount(options).then((request) => request(axios, basePath));
},
/**
Expand Down
6 changes: 3 additions & 3 deletions mobile/openapi/.openapi-generator/FILES

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mobile/openapi/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions mobile/openapi/doc/PersonApi.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mobile/openapi/lib/api.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions mobile/openapi/lib/api/person_api.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions mobile/openapi/lib/api_client.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mobile/openapi/test/person_api_test.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8870bf9

Please sign in to comment.