Skip to content

Commit a22f40e

Browse files
committed
✨ Add ContactsChangedDataType
1 parent ec9a198 commit a22f40e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/models/contacts-changed.model.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ export type ContactsChangedData = {
22
integrationName: string;
33
data: {
44
integrationAccountId: string;
5-
type: 'UPDATE' | 'CREATE' | 'DELETE';
5+
type: ContactsChangedDataType;
66
contactId: string;
77
}[];
88
};
9+
10+
export type ContactsChangedDataType = 'UPDATE' | 'CREATE' | 'DELETE';

0 commit comments

Comments
 (0)