UNPKG

@kenniy/event-contracts

Version:

Shared event schemas and stream definitions for 8Medical microservices architecture

21 lines 1.12 kB
export * from './registration'; export { RegistrationEvents } from './registration'; export declare const UserServiceEvents: { readonly CUSTOMER_REGISTERED: "user.customer.registered"; readonly BUSINESS_REGISTERED: "user.business.registered"; readonly AGENT_INVITED: "user.agent.invited"; readonly AGENT_ACCEPTED: "user.agent.accepted"; readonly AGENT_REJECTED: "user.agent.rejected"; readonly CUSTOMER_LOGGED_IN: "user.customer.logged_in"; readonly BUSINESS_LOGGED_IN: "user.business.logged_in"; readonly PASSWORD_RESET_REQUESTED: "user.password.reset_requested"; readonly PASSWORD_CHANGED: "user.password.changed"; readonly EMAIL_VERIFIED: "user.email.verified"; readonly PHONE_VERIFIED: "user.phone.verified"; readonly BUSINESS_VERIFIED: "user.business.verified"; readonly BUSINESS_REJECTED: "user.business.rejected"; readonly PROFILE_UPDATED: "user.profile.updated"; readonly PREFERENCES_UPDATED: "user.preferences.updated"; }; export type UserServiceEventType = typeof UserServiceEvents[keyof typeof UserServiceEvents]; //# sourceMappingURL=index.d.ts.map