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: {
|
||||
/** Format: uuid */
|
||||
id: string;
|
||||
firstName: string;
|
||||
title?: string;
|
||||
firstName?: string;
|
||||
lastName: string;
|
||||
/** @enum {string} */
|
||||
personType: "PERSON" | "INSTITUTION" | "GROUP" | "UNKNOWN" | "SKIP";
|
||||
alias?: string;
|
||||
notes?: string;
|
||||
/** Format: int32 */
|
||||
birthYear?: number;
|
||||
/** Format: int32 */
|
||||
deathYear?: number;
|
||||
readonly displayName: string;
|
||||
};
|
||||
DocumentUpdateDTO: {
|
||||
title?: string;
|
||||
@@ -1047,19 +1051,18 @@ export interface components {
|
||||
newPassword?: string;
|
||||
};
|
||||
PersonNameAliasDTO: {
|
||||
lastName?: string;
|
||||
lastName: string;
|
||||
firstName?: string;
|
||||
/** @enum {string} */
|
||||
type?: "BIRTH" | "WIDOWED" | "DIVORCED" | "OTHER";
|
||||
type: "BIRTH" | "WIDOWED" | "DIVORCED" | "MAIDEN_NAME" | "OTHER";
|
||||
};
|
||||
PersonNameAlias: {
|
||||
/** Format: uuid */
|
||||
id: string;
|
||||
person?: components["schemas"]["Person"];
|
||||
lastName: string;
|
||||
firstName?: string;
|
||||
/** @enum {string} */
|
||||
type: "BIRTH" | "WIDOWED" | "DIVORCED" | "OTHER";
|
||||
type: "BIRTH" | "WIDOWED" | "DIVORCED" | "MAIDEN_NAME" | "OTHER";
|
||||
/** Format: int32 */
|
||||
sortOrder: number;
|
||||
/** Format: date-time */
|
||||
@@ -1228,10 +1231,10 @@ export interface components {
|
||||
/** Format: int32 */
|
||||
number?: number;
|
||||
sort?: components["schemas"]["SortObject"];
|
||||
/** Format: int32 */
|
||||
numberOfElements?: number;
|
||||
first?: boolean;
|
||||
last?: boolean;
|
||||
/** Format: int32 */
|
||||
numberOfElements?: number;
|
||||
empty?: boolean;
|
||||
};
|
||||
PageableObject: {
|
||||
|
||||
Reference in New Issue
Block a user