shared-ritm 1.3.81 → 1.3.82

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.
@@ -44,6 +44,7 @@ export type Api_Search_User = {
44
44
  photos: Api_Search_User_Photos[];
45
45
  archiveHistory: Api_User_Archive_History_Item[];
46
46
  has_brigades?: boolean;
47
+ has_video_analytics_photo?: boolean;
47
48
  };
48
49
  export type Api_Search_Instruments = {
49
50
  id: string;
@@ -74,6 +74,7 @@ export type Api_User = {
74
74
  password_change_available_at: string;
75
75
  password_change_due_at: string;
76
76
  password_last_changed_at: string;
77
+ has_video_analytics_photo?: boolean;
77
78
  };
78
79
  export type Api_User_Change_Password_Payload = {
79
80
  email: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shared-ritm",
3
- "version": "1.3.81",
3
+ "version": "1.3.82",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -50,6 +50,7 @@ export type Api_Search_User = {
50
50
  photos: Api_Search_User_Photos[]
51
51
  archiveHistory: Api_User_Archive_History_Item[]
52
52
  has_brigades?: boolean
53
+ has_video_analytics_photo?: boolean
53
54
  }
54
55
 
55
56
  export type Api_Search_Instruments = {
@@ -77,6 +77,7 @@ export type Api_User = {
77
77
  password_change_available_at: string
78
78
  password_change_due_at: string
79
79
  password_last_changed_at: string
80
+ has_video_analytics_photo?: boolean
80
81
  }
81
82
 
82
83
  export type Api_User_Change_Password_Payload = {