@demind-inc/core 1.1.81 → 1.1.83
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { TodoAppFrom } from "./TodoTasks";
|
|
2
2
|
export type CalendarType = "google" | "outlook";
|
|
3
3
|
export type CalendarScope = "owner" | "writer" | "reader" | "freeBusyReader";
|
|
4
4
|
export type CalendarEventStatus = "confirmed" | "tentative" | "cancelled";
|
|
@@ -65,7 +65,7 @@ export type CalendarEventAttendeeResponseStatus = "needsAction" | "declined" | "
|
|
|
65
65
|
export interface CalendarTaskFrom {
|
|
66
66
|
boardId: string;
|
|
67
67
|
taskId: string;
|
|
68
|
-
from:
|
|
68
|
+
from: TodoAppFrom;
|
|
69
69
|
}
|
|
70
70
|
export interface CalendarEventMetrics {
|
|
71
71
|
energy?: EnergyFeedbackType;
|
package/dist/models/Token.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export interface TokenInfo {
|
|
|
14
14
|
nextSyncToken?: string;
|
|
15
15
|
}
|
|
16
16
|
export interface CalendarTokenInfo extends TokenInfo {
|
|
17
|
-
calendarRootEmail
|
|
17
|
+
calendarRootEmail?: string;
|
|
18
18
|
generatedClientType?: GeneratedClientType;
|
|
19
19
|
}
|
|
20
20
|
export type GeneratedClientType = "web" | "mobile";
|
package/lib/models/Calendar.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TodoIntegrationType } from "./TodoIntegrations";
|
|
2
|
+
import { TodoAppFrom } from "./TodoTasks";
|
|
2
3
|
|
|
3
4
|
export type CalendarType = "google" | "outlook";
|
|
4
5
|
export type CalendarScope = "owner" | "writer" | "reader" | "freeBusyReader";
|
|
@@ -88,7 +89,7 @@ export type CalendarEventAttendeeResponseStatus =
|
|
|
88
89
|
export interface CalendarTaskFrom {
|
|
89
90
|
boardId: string;
|
|
90
91
|
taskId: string;
|
|
91
|
-
from:
|
|
92
|
+
from: TodoAppFrom;
|
|
92
93
|
}
|
|
93
94
|
|
|
94
95
|
export interface CalendarEventMetrics {
|
package/lib/models/Token.ts
CHANGED