@demind-inc/core 1.6.75 → 1.6.77

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
@@ -65,6 +65,7 @@ exports.AVAILABLE_TODO_INTEGRATIONS_TYPE = [
65
65
  "trello",
66
66
  "todoist",
67
67
  "ticktick",
68
+ "github",
68
69
  ];
69
70
  exports.ALL_TODO_INTEGRATIONS_TYPE = [
70
71
  "trello",
@@ -103,7 +103,7 @@ export interface Subscription {
103
103
  discountId: string;
104
104
  };
105
105
  }
106
- export type SubscriptionRecurring = "MONTHLY" | "ANNUAL" | "WEEKLY";
106
+ export type SubscriptionRecurring = "MONTHLY" | "ANNUAL" | "WEEKLY" | "LIFETIME";
107
107
  export interface GrantSubscription {
108
108
  productId: string;
109
109
  purchaseDate?: string;
package/lib/constants.ts CHANGED
@@ -73,6 +73,7 @@ export const AVAILABLE_TODO_INTEGRATIONS_TYPE: TodoIntegrationType[] = [
73
73
  "trello",
74
74
  "todoist",
75
75
  "ticktick",
76
+ "github",
76
77
  ];
77
78
  export const ALL_TODO_INTEGRATIONS_TYPE: TodoIntegrationType[] = [
78
79
  "trello",
@@ -114,7 +114,11 @@ export interface Subscription {
114
114
  };
115
115
  }
116
116
 
117
- export type SubscriptionRecurring = "MONTHLY" | "ANNUAL" | "WEEKLY";
117
+ export type SubscriptionRecurring =
118
+ | "MONTHLY"
119
+ | "ANNUAL"
120
+ | "WEEKLY"
121
+ | "LIFETIME";
118
122
 
119
123
  export interface GrantSubscription {
120
124
  productId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.6.75",
3
+ "version": "1.6.77",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {