Skip to content

Commit

Permalink
Merge pull request #92 from regulaforensics/7ca3c2db
Browse files Browse the repository at this point in the history
update
  • Loading branch information
GubinAlexander authored Feb 13, 2024
2 parents 43ccf55 + 671e181 commit 428e6a3
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ models/operation-log.ts
models/output-image-params.ts
models/page.ts
models/person-all-of.ts
models/person-created-response.ts
models/person-fields.ts
models/person-with-images-all-of.ts
models/person-with-images.ts
Expand Down
2 changes: 0 additions & 2 deletions src/api/search-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
// @ts-ignore
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
// @ts-ignore
import { PersonCreatedResponse } from '../models';
// @ts-ignore
import { SearchBadParams } from '../models';
// @ts-ignore
import { SearchRequest } from '../models';
Expand Down
1 change: 0 additions & 1 deletion src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export * from './output-image-params';
export * from './page';
export * from './person';
export * from './person-all-of';
export * from './person-created-response';
export * from './person-fields';
export * from './person-with-images';
export * from './person-with-images-all-of';
Expand Down
40 changes: 38 additions & 2 deletions src/models/search-result.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,52 @@ import { SearchPerson } from './search-person';
*/
export interface SearchResult {
/**
* Search result code.
* Result code. It is returned only with response 200.
* @type {number}
* @memberof SearchResult
*/
'code'?: number;
/**
* Person data.
* Array of Person images. It is returned only with response 200.
* @type {Array<SearchPerson>}
* @memberof SearchResult
*/
'persons'?: Array<SearchPerson>;
/**
* Person ID. The list of persons is sorted by decreasing ID value.
* @type {string}
* @memberof SearchResult
*/
'id'?: string | null;
/**
* Person creation date.
* @type {string}
* @memberof SearchResult
*/
'createdAt'?: string | null;
/**
* Person update date.
* @type {string}
* @memberof SearchResult
*/
'updatedAt'?: string | null;
/**
* List of groups this person belongs to.
* @type {Array<string>}
* @memberof SearchResult
*/
'groups'?: Array<string> | null;
/**
* Person name.
* @type {string}
* @memberof SearchResult
*/
'name'?: string | null;
/**
* A free-form object containing person\'s extended attributes. Available when a person is being created
* @type {{ [key: string]: object; }}
* @memberof SearchResult
*/
'metadata'?: { [key: string]: object; } | null;
}

0 comments on commit 428e6a3

Please sign in to comment.