@hy-capital/api-habit-tracker-types 1.0.93 → 1.0.94

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/user.d.ts CHANGED
@@ -9,6 +9,7 @@ export interface BaseUser {
9
9
  daily_progress_notification: string | null;
10
10
  selected_topic_type: TopicType | null;
11
11
  has_seen_onboarding_videos: boolean;
12
+ revenue_cat_app_user_id: string | null;
12
13
  }
13
14
  export interface DbUser extends BaseUser, IdAndTimeStamps {
14
15
  }
@@ -23,5 +24,6 @@ export interface UpdateUserRequest {
23
24
  daily_progress_notification?: string;
24
25
  selected_topic_type?: TopicType;
25
26
  has_seen_onboarding_videos?: boolean;
27
+ revenue_cat_app_user_id?: string;
26
28
  }
27
29
  export declare const defaultDailyProgressNotificationTime = "20:10";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hy-capital/api-habit-tracker-types",
3
- "version": "1.0.93",
3
+ "version": "1.0.94",
4
4
  "main": "dist/index.js",
5
5
  "license": "MIT",
6
6
  "types": "dist/index.d.ts",
package/src/user.ts CHANGED
@@ -10,6 +10,7 @@ export interface BaseUser {
10
10
  daily_progress_notification: string | null;
11
11
  selected_topic_type: TopicType | null;
12
12
  has_seen_onboarding_videos: boolean;
13
+ revenue_cat_app_user_id: string | null;
13
14
  }
14
15
 
15
16
  export interface DbUser extends BaseUser, IdAndTimeStamps {}
@@ -27,6 +28,7 @@ export interface UpdateUserRequest {
27
28
  daily_progress_notification?: string;
28
29
  selected_topic_type?: TopicType;
29
30
  has_seen_onboarding_videos?: boolean;
31
+ revenue_cat_app_user_id?: string;
30
32
  }
31
33
 
32
34
  export const defaultDailyProgressNotificationTime = '20:10';