@demind-inc/core 1.1.60 → 1.1.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -45,8 +45,10 @@ export interface CalendarEvent {
|
|
|
45
45
|
export interface CalendarEventAttendee {
|
|
46
46
|
email: string;
|
|
47
47
|
displayName?: string;
|
|
48
|
-
|
|
48
|
+
organizer?: boolean;
|
|
49
|
+
responseStatus: CalendarEventAttendeeResponseStatus;
|
|
49
50
|
}
|
|
51
|
+
export type CalendarEventAttendeeResponseStatus = "needsAction" | "declined" | "tentative" | "accepted";
|
|
50
52
|
export interface CalendarTaskFrom {
|
|
51
53
|
boardId: string;
|
|
52
54
|
taskId: string;
|
package/lib/models/Calendar.ts
CHANGED
|
@@ -49,9 +49,16 @@ export interface CalendarEvent {
|
|
|
49
49
|
export interface CalendarEventAttendee {
|
|
50
50
|
email: string;
|
|
51
51
|
displayName?: string;
|
|
52
|
-
|
|
52
|
+
organizer?: boolean;
|
|
53
|
+
responseStatus: CalendarEventAttendeeResponseStatus;
|
|
53
54
|
}
|
|
54
55
|
|
|
56
|
+
export type CalendarEventAttendeeResponseStatus =
|
|
57
|
+
| "needsAction"
|
|
58
|
+
| "declined"
|
|
59
|
+
| "tentative"
|
|
60
|
+
| "accepted";
|
|
61
|
+
|
|
55
62
|
export interface CalendarTaskFrom {
|
|
56
63
|
boardId: string;
|
|
57
64
|
taskId: string;
|