@demind-inc/core 1.5.69 → 1.5.71

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.
@@ -54,6 +54,7 @@ export interface TaskItem {
54
54
  childOrder?: number;
55
55
  rawJson?: any;
56
56
  sortIndex?: number;
57
+ subTasks?: TaskItem[];
57
58
  }
58
59
  export interface TaskCategorySet {
59
60
  id: string;
@@ -82,7 +82,7 @@ export interface Subscription {
82
82
  discountId: string;
83
83
  };
84
84
  }
85
- export type SubscriptionRecurring = "MONTHLY" | "ANNUAL" | "LIFETIME";
85
+ export type SubscriptionRecurring = "MONTHLY" | "ANNUAL";
86
86
  export interface GrantSubscription {
87
87
  productId: string;
88
88
  purchaseDate?: string;
@@ -59,6 +59,7 @@ export interface TaskItem {
59
59
  childOrder?: number;
60
60
  rawJson?: any;
61
61
  sortIndex?: number;
62
+ subTasks?: TaskItem[];
62
63
  }
63
64
 
64
65
  export interface TaskCategorySet {
@@ -90,7 +90,7 @@ export interface Subscription {
90
90
  };
91
91
  }
92
92
 
93
- export type SubscriptionRecurring = "MONTHLY" | "ANNUAL" | "LIFETIME";
93
+ export type SubscriptionRecurring = "MONTHLY" | "ANNUAL";
94
94
 
95
95
  export interface GrantSubscription {
96
96
  productId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demind-inc/core",
3
- "version": "1.5.69",
3
+ "version": "1.5.71",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {