@demind-inc/core 1.6.39 → 1.6.41
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,5 +1,5 @@
|
|
|
1
|
+
import { DocumentReference } from "@google-cloud/firestore";
|
|
1
2
|
import { TodoAppFrom } from "./TodoTasks";
|
|
2
|
-
import { CalendarTokenInfo } from "./Token";
|
|
3
3
|
export type CalendarType = "google" | "outlook" | "lifestack" | "apple";
|
|
4
4
|
export type CalendarScope = "owner" | "writer" | "reader" | "freeBusyReader";
|
|
5
5
|
export type CalendarEventStatus = "confirmed" | "tentative" | "cancelled";
|
|
@@ -29,7 +29,7 @@ export interface CalendarWebhook {
|
|
|
29
29
|
resourceUri?: string;
|
|
30
30
|
channelId?: string;
|
|
31
31
|
rawJson?: any;
|
|
32
|
-
|
|
32
|
+
tokenRef: DocumentReference;
|
|
33
33
|
}
|
|
34
34
|
export interface CategoryLabels {
|
|
35
35
|
categoryLabelsId: string;
|
package/lib/models/Calendar.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { DocumentReference } from "@google-cloud/firestore";
|
|
2
2
|
import { TodoAppFrom } from "./TodoTasks";
|
|
3
|
-
import { CalendarTokenInfo } from "./Token";
|
|
4
3
|
|
|
5
4
|
export type CalendarType = "google" | "outlook" | "lifestack" | "apple";
|
|
6
5
|
export type CalendarScope = "owner" | "writer" | "reader" | "freeBusyReader";
|
|
@@ -33,7 +32,7 @@ export interface CalendarWebhook {
|
|
|
33
32
|
resourceUri?: string;
|
|
34
33
|
channelId?: string;
|
|
35
34
|
rawJson?: any;
|
|
36
|
-
|
|
35
|
+
tokenRef: DocumentReference;
|
|
37
36
|
}
|
|
38
37
|
|
|
39
38
|
export interface CategoryLabels {
|