@demind-inc/core 1.1.82 → 1.1.84

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 { TodoIntegrationType } from "./TodoIntegrations";
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: TodoIntegrationType;
68
+ from: TodoAppFrom;
69
69
  }
70
70
  export interface CalendarEventMetrics {
71
71
  energy?: EnergyFeedbackType;
@@ -0,0 +1,5 @@
1
+ export interface CalendlyIntegration {
2
+ calendlyIntegrationId: string;
3
+ originalScheduleLink: string;
4
+ authUserId: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -24,6 +24,7 @@ export interface User {
24
24
  todoTasksBoardIds?: string[];
25
25
  preferenceId?: string;
26
26
  onboarding?: OnboardingStatus;
27
+ calendlyIntegrationId?: string;
27
28
  tokens?: UserTokens;
28
29
  }
29
30
  export interface UserTokens {
@@ -7,3 +7,4 @@ export * from "./Token";
7
7
  export * from "./TodoIntegrations";
8
8
  export * from "./TodoTasks";
9
9
  export * from "./Preference";
10
+ export * from "./CalendlyIntegrations";
@@ -23,3 +23,4 @@ __exportStar(require("./Token"), exports);
23
23
  __exportStar(require("./TodoIntegrations"), exports);
24
24
  __exportStar(require("./TodoTasks"), exports);
25
25
  __exportStar(require("./Preference"), exports);
26
+ __exportStar(require("./CalendlyIntegrations"), exports);
@@ -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: TodoIntegrationType;
92
+ from: TodoAppFrom;
92
93
  }
93
94
 
94
95
  export interface CalendarEventMetrics {
@@ -0,0 +1,5 @@
1
+ export interface CalendlyIntegration {
2
+ calendlyIntegrationId: string;
3
+ originalScheduleLink: string;
4
+ authUserId: string;
5
+ }
@@ -25,6 +25,7 @@ export interface User {
25
25
  todoTasksBoardIds?: string[];
26
26
  preferenceId?: string;
27
27
  onboarding?: OnboardingStatus;
28
+ calendlyIntegrationId?: string;
28
29
  tokens?: UserTokens; // Deprecated
29
30
  }
30
31
 
@@ -7,3 +7,4 @@ export * from "./Token";
7
7
  export * from "./TodoIntegrations";
8
8
  export * from "./TodoTasks";
9
9
  export * from "./Preference";
10
+ export * from "./CalendlyIntegrations";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.1.82",
3
+ "version": "1.1.84",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {