build(frontend): regenerate API types for Person changes
Person type now includes displayName (readonly, required), title, personType (required enum), and firstName is optional. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -952,14 +952,18 @@ export interface components {
|
|||||||
Person: {
|
Person: {
|
||||||
/** Format: uuid */
|
/** Format: uuid */
|
||||||
id: string;
|
id: string;
|
||||||
firstName: string;
|
title?: string;
|
||||||
|
firstName?: string;
|
||||||
lastName: string;
|
lastName: string;
|
||||||
|
/** @enum {string} */
|
||||||
|
personType: "PERSON" | "INSTITUTION" | "GROUP" | "UNKNOWN" | "SKIP";
|
||||||
alias?: string;
|
alias?: string;
|
||||||
notes?: string;
|
notes?: string;
|
||||||
/** Format: int32 */
|
/** Format: int32 */
|
||||||
birthYear?: number;
|
birthYear?: number;
|
||||||
/** Format: int32 */
|
/** Format: int32 */
|
||||||
deathYear?: number;
|
deathYear?: number;
|
||||||
|
readonly displayName: string;
|
||||||
};
|
};
|
||||||
DocumentUpdateDTO: {
|
DocumentUpdateDTO: {
|
||||||
title?: string;
|
title?: string;
|
||||||
@@ -1047,19 +1051,18 @@ export interface components {
|
|||||||
newPassword?: string;
|
newPassword?: string;
|
||||||
};
|
};
|
||||||
PersonNameAliasDTO: {
|
PersonNameAliasDTO: {
|
||||||
lastName?: string;
|
lastName: string;
|
||||||
firstName?: string;
|
firstName?: string;
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type?: "BIRTH" | "WIDOWED" | "DIVORCED" | "OTHER";
|
type: "BIRTH" | "WIDOWED" | "DIVORCED" | "MAIDEN_NAME" | "OTHER";
|
||||||
};
|
};
|
||||||
PersonNameAlias: {
|
PersonNameAlias: {
|
||||||
/** Format: uuid */
|
/** Format: uuid */
|
||||||
id: string;
|
id: string;
|
||||||
person?: components["schemas"]["Person"];
|
|
||||||
lastName: string;
|
lastName: string;
|
||||||
firstName?: string;
|
firstName?: string;
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
type: "BIRTH" | "WIDOWED" | "DIVORCED" | "OTHER";
|
type: "BIRTH" | "WIDOWED" | "DIVORCED" | "MAIDEN_NAME" | "OTHER";
|
||||||
/** Format: int32 */
|
/** Format: int32 */
|
||||||
sortOrder: number;
|
sortOrder: number;
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
@@ -1228,10 +1231,10 @@ export interface components {
|
|||||||
/** Format: int32 */
|
/** Format: int32 */
|
||||||
number?: number;
|
number?: number;
|
||||||
sort?: components["schemas"]["SortObject"];
|
sort?: components["schemas"]["SortObject"];
|
||||||
/** Format: int32 */
|
|
||||||
numberOfElements?: number;
|
|
||||||
first?: boolean;
|
first?: boolean;
|
||||||
last?: boolean;
|
last?: boolean;
|
||||||
|
/** Format: int32 */
|
||||||
|
numberOfElements?: number;
|
||||||
empty?: boolean;
|
empty?: boolean;
|
||||||
};
|
};
|
||||||
PageableObject: {
|
PageableObject: {
|
||||||
|
|||||||
Reference in New Issue
Block a user