Import normalizer: offline tool to normalize the raw archive spreadsheets #663
@@ -1636,6 +1636,7 @@ export interface components {
|
|||||||
/** Format: uuid */
|
/** Format: uuid */
|
||||||
parentId?: string;
|
parentId?: string;
|
||||||
color?: string;
|
color?: string;
|
||||||
|
sourceRef?: string;
|
||||||
};
|
};
|
||||||
PersonUpdateDTO: {
|
PersonUpdateDTO: {
|
||||||
/** @enum {string} */
|
/** @enum {string} */
|
||||||
@@ -1665,12 +1666,21 @@ export interface components {
|
|||||||
/** Format: int32 */
|
/** Format: int32 */
|
||||||
deathYear?: number;
|
deathYear?: number;
|
||||||
familyMember: boolean;
|
familyMember: boolean;
|
||||||
|
sourceRef?: string;
|
||||||
|
provisional: boolean;
|
||||||
readonly displayName: string;
|
readonly displayName: string;
|
||||||
};
|
};
|
||||||
DocumentUpdateDTO: {
|
DocumentUpdateDTO: {
|
||||||
title?: string;
|
title?: string;
|
||||||
/** Format: date */
|
/** Format: date */
|
||||||
documentDate?: string;
|
documentDate?: string;
|
||||||
|
/** @enum {string} */
|
||||||
|
metaDatePrecision?: "DAY" | "MONTH" | "SEASON" | "YEAR" | "RANGE" | "APPROX" | "UNKNOWN";
|
||||||
|
/** Format: date */
|
||||||
|
metaDateEnd?: string;
|
||||||
|
metaDateRaw?: string;
|
||||||
|
senderText?: string;
|
||||||
|
receiverText?: string;
|
||||||
location?: string;
|
location?: string;
|
||||||
documentLocation?: string;
|
documentLocation?: string;
|
||||||
archiveBox?: string;
|
archiveBox?: string;
|
||||||
@@ -1704,6 +1714,13 @@ export interface components {
|
|||||||
status: "PLACEHOLDER" | "UPLOADED" | "TRANSCRIBED" | "REVIEWED" | "ARCHIVED";
|
status: "PLACEHOLDER" | "UPLOADED" | "TRANSCRIBED" | "REVIEWED" | "ARCHIVED";
|
||||||
/** Format: date */
|
/** Format: date */
|
||||||
documentDate?: string;
|
documentDate?: string;
|
||||||
|
/** @enum {string} */
|
||||||
|
metaDatePrecision: "DAY" | "MONTH" | "SEASON" | "YEAR" | "RANGE" | "APPROX" | "UNKNOWN";
|
||||||
|
/** Format: date */
|
||||||
|
metaDateEnd?: string;
|
||||||
|
metaDateRaw?: string;
|
||||||
|
senderText?: string;
|
||||||
|
receiverText?: string;
|
||||||
location?: string;
|
location?: string;
|
||||||
documentLocation?: string;
|
documentLocation?: string;
|
||||||
archiveBox?: string;
|
archiveBox?: string;
|
||||||
@@ -2024,6 +2041,10 @@ export interface components {
|
|||||||
receiverIds?: string[];
|
receiverIds?: string[];
|
||||||
/** Format: date */
|
/** Format: date */
|
||||||
documentDate?: string;
|
documentDate?: string;
|
||||||
|
/** @enum {string} */
|
||||||
|
metaDatePrecision?: "DAY" | "MONTH" | "SEASON" | "YEAR" | "RANGE" | "APPROX" | "UNKNOWN";
|
||||||
|
/** Format: date */
|
||||||
|
metaDateEnd?: string;
|
||||||
location?: string;
|
location?: string;
|
||||||
tagNames?: string[];
|
tagNames?: string[];
|
||||||
metadataComplete?: boolean;
|
metadataComplete?: boolean;
|
||||||
@@ -2221,6 +2242,7 @@ export interface components {
|
|||||||
notes?: string;
|
notes?: string;
|
||||||
personType?: string;
|
personType?: string;
|
||||||
familyMember?: boolean;
|
familyMember?: boolean;
|
||||||
|
provisional?: boolean;
|
||||||
};
|
};
|
||||||
InferredRelationshipWithPersonDTO: {
|
InferredRelationshipWithPersonDTO: {
|
||||||
person: components["schemas"]["PersonNodeDTO"];
|
person: components["schemas"]["PersonNodeDTO"];
|
||||||
@@ -2396,6 +2418,10 @@ export interface components {
|
|||||||
thumbnailUrl?: string;
|
thumbnailUrl?: string;
|
||||||
/** Format: date */
|
/** Format: date */
|
||||||
documentDate?: string;
|
documentDate?: string;
|
||||||
|
/** @enum {string} */
|
||||||
|
metaDatePrecision: "DAY" | "MONTH" | "SEASON" | "YEAR" | "RANGE" | "APPROX" | "UNKNOWN";
|
||||||
|
/** Format: date */
|
||||||
|
metaDateEnd?: string;
|
||||||
sender?: components["schemas"]["Person"];
|
sender?: components["schemas"]["Person"];
|
||||||
receivers: components["schemas"]["Person"][];
|
receivers: components["schemas"]["Person"][];
|
||||||
tags: components["schemas"]["Tag"][];
|
tags: components["schemas"]["Tag"][];
|
||||||
|
|||||||
Reference in New Issue
Block a user