@demind-inc/core 1.1.83 → 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.
@@ -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);
@@ -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.83",
3
+ "version": "1.1.84",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {