We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec9a198 commit a22f40eCopy full SHA for a22f40e
src/models/contacts-changed.model.ts
@@ -2,7 +2,9 @@ export type ContactsChangedData = {
2
integrationName: string;
3
data: {
4
integrationAccountId: string;
5
- type: 'UPDATE' | 'CREATE' | 'DELETE';
+ type: ContactsChangedDataType;
6
contactId: string;
7
}[];
8
};
9
+
10
+export type ContactsChangedDataType = 'UPDATE' | 'CREATE' | 'DELETE';
0 commit comments