|
@ -874,7 +874,6 @@ export const contactToCsvLine = (contact: Contact): string => { |
|
|
*/ |
|
|
*/ |
|
|
export interface TableExportData { |
|
|
export interface TableExportData { |
|
|
tableName: string; |
|
|
tableName: string; |
|
|
inbound: boolean; |
|
|
|
|
|
rows: Array<Record<string, unknown>>; |
|
|
rows: Array<Record<string, unknown>>; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -912,7 +911,6 @@ export const contactsToExportJson = (contacts: Contact[]): DatabaseExport => { |
|
|
data: { |
|
|
data: { |
|
|
data: [{ |
|
|
data: [{ |
|
|
tableName: "contacts", |
|
|
tableName: "contacts", |
|
|
inbound: true, |
|
|
|
|
|
rows |
|
|
rows |
|
|
}] |
|
|
}] |
|
|
} |
|
|
} |
|
|