Store source metadata for imported documents (#6136)
This commit is contained in:
@@ -600,6 +600,7 @@
|
||||
"Search documents": "Search documents",
|
||||
"No documents found for your filters.": "No documents found for your filters.",
|
||||
"You’ve not got any drafts at the moment.": "You’ve not got any drafts at the moment.",
|
||||
"Payment Required": "Payment Required",
|
||||
"Not Found": "Not Found",
|
||||
"We were unable to find the page you’re looking for. Go to the <2>homepage</2>?": "We were unable to find the page you’re looking for. Go to the <2>homepage</2>?",
|
||||
"Offline": "Offline",
|
||||
|
||||
@@ -123,6 +123,17 @@ export enum UserPreference {
|
||||
|
||||
export type UserPreferences = { [key in UserPreference]?: boolean };
|
||||
|
||||
export type SourceMetadata = {
|
||||
/** The original source file name. */
|
||||
fileName?: string;
|
||||
/** The original source mime type. */
|
||||
mimeType?: string;
|
||||
/** An ID in the external source. */
|
||||
externalId?: string;
|
||||
/** Whether the item was created through a trial license. */
|
||||
trial?: boolean;
|
||||
};
|
||||
|
||||
export type CustomTheme = {
|
||||
accent: string;
|
||||
accentText: string;
|
||||
|
||||
Reference in New Issue
Block a user