Rename ContactType to EmbeddedContactType

This commit is contained in:
Fedor Indutny
2021-08-19 18:56:39 -07:00
committed by GitHub
parent 017a0fa807
commit fe040a2873
16 changed files with 46 additions and 42 deletions

View File

@@ -4,7 +4,7 @@
/* eslint-disable camelcase */
import { AttachmentType } from './Attachment';
import { ContactType } from './Contact';
import { EmbeddedContactType } from './EmbeddedContact';
import { IndexableBoolean, IndexablePresence } from './IndexedDB';
export type Message = (
@@ -110,7 +110,7 @@ type MessageSchemaVersion5 = Partial<
type MessageSchemaVersion6 = Partial<
Readonly<{
contact: Array<ContactType>;
contact: Array<EmbeddedContactType>;
}>
>;