Add 'supporter.*' events to event_definitions

This commit is contained in:
Eric Schultz 2021-02-01 17:16:06 -06:00 committed by Eric Schultz
parent 869f819ba0
commit f6ffa42659

View file

@ -16,5 +16,9 @@ export default interface Supporter extends HoudiniObject {
supporter_addresses: IdType[] | SupporterAddress[];
}
export type SupporterCreated = HoudiniEvent<'supporter_address.created', Supporter>;
export type SupporterUpdated = HoudiniEvent<'supporter_address.updated', Supporter>;
export type SupporterDeleted = HoudiniEvent<'supporter_address.deleted', Supporter>;
export * from './SupporterNote';
export * from './SupporterAddress';