@demind-inc/core 1.4.46 → 1.4.47
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.
package/dist/constants.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DocumentReference } from "@google-cloud/firestore";
|
|
2
|
-
export type TodoIntegrationType = "trello" | "todoist" | "ticktick" | "notion";
|
|
2
|
+
export type TodoIntegrationType = "trello" | "todoist" | "ticktick" | "notion" | "apple_reminder";
|
|
3
3
|
export interface TodoIntegration {
|
|
4
4
|
todoIntegrationId: string;
|
|
5
5
|
source: TodoIntegrationType;
|
package/lib/constants.ts
CHANGED
|
@@ -61,10 +61,12 @@ export const AVAILABLE_TODO_INTEGRATIONS_TYPE: TodoIntegrationType[] = [
|
|
|
61
61
|
"trello",
|
|
62
62
|
"todoist",
|
|
63
63
|
"ticktick",
|
|
64
|
+
"apple_reminder",
|
|
64
65
|
];
|
|
65
66
|
export const ALL_TODO_INTEGRATIONS_TYPE: TodoIntegrationType[] = [
|
|
66
67
|
"trello",
|
|
67
68
|
"todoist",
|
|
68
69
|
"ticktick",
|
|
70
|
+
"apple_reminder",
|
|
69
71
|
"notion",
|
|
70
72
|
];
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { DocumentReference } from "@google-cloud/firestore";
|
|
2
2
|
|
|
3
|
-
export type TodoIntegrationType =
|
|
3
|
+
export type TodoIntegrationType =
|
|
4
|
+
| "trello"
|
|
5
|
+
| "todoist"
|
|
6
|
+
| "ticktick"
|
|
7
|
+
| "notion"
|
|
8
|
+
| "apple_reminder";
|
|
4
9
|
|
|
5
10
|
export interface TodoIntegration {
|
|
6
11
|
todoIntegrationId: string;
|