@demind-inc/core 1.6.50 → 1.6.52

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.
@@ -66,6 +66,9 @@ export interface TaskItemAdditionalParamsGithub {
66
66
  title: string;
67
67
  };
68
68
  }
69
+ export interface TaskItemAdditionalParamsTodoist {
70
+ v2Id: string;
71
+ }
69
72
  export interface TaskItem {
70
73
  taskId: string;
71
74
  originalTaskId: string;
@@ -95,6 +98,7 @@ export interface TaskItem {
95
98
  priority?: TaskPriority;
96
99
  additionalParams?: {
97
100
  github?: TaskItemAdditionalParamsGithub;
101
+ todoist?: TaskItemAdditionalParamsTodoist;
98
102
  [key: string]: any;
99
103
  };
100
104
  }
@@ -101,7 +101,7 @@ export interface Subscription {
101
101
  discountId: string;
102
102
  };
103
103
  }
104
- export type SubscriptionRecurring = "MONTHLY" | "ANNUAL";
104
+ export type SubscriptionRecurring = "MONTHLY" | "ANNUAL" | "WEEKLy";
105
105
  export interface GrantSubscription {
106
106
  productId: string;
107
107
  purchaseDate?: string;
@@ -75,6 +75,10 @@ export interface TaskItemAdditionalParamsGithub {
75
75
  };
76
76
  }
77
77
 
78
+ export interface TaskItemAdditionalParamsTodoist {
79
+ v2Id: string;
80
+ }
81
+
78
82
  export interface TaskItem {
79
83
  taskId: string;
80
84
  originalTaskId: string;
@@ -104,6 +108,7 @@ export interface TaskItem {
104
108
  priority?: TaskPriority;
105
109
  additionalParams?: {
106
110
  github?: TaskItemAdditionalParamsGithub;
111
+ todoist?: TaskItemAdditionalParamsTodoist;
107
112
  [key: string]: any;
108
113
  };
109
114
  }
@@ -112,7 +112,7 @@ export interface Subscription {
112
112
  };
113
113
  }
114
114
 
115
- export type SubscriptionRecurring = "MONTHLY" | "ANNUAL";
115
+ export type SubscriptionRecurring = "MONTHLY" | "ANNUAL" | "WEEKLy";
116
116
 
117
117
  export interface GrantSubscription {
118
118
  productId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.6.50",
3
+ "version": "1.6.52",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {