@misalon/common 1.0.11 → 1.0.12
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,5 @@
|
|
1
1
|
import { Subjects } from "./subjects";
|
2
|
+
import { ServiceCategory } from "./type/service-category";
|
2
3
|
export interface AppointmentCreatedEvent {
|
3
4
|
subject: Subjects.AppointmentCreated;
|
4
5
|
data: {
|
@@ -8,6 +9,7 @@ export interface AppointmentCreatedEvent {
|
|
8
9
|
name: string;
|
9
10
|
price: number;
|
10
11
|
duration: number;
|
12
|
+
category: ServiceCategory;
|
11
13
|
};
|
12
14
|
userId: string;
|
13
15
|
date: string;
|