shared-ritm 1.3.53 → 1.3.55

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.
@@ -64,6 +64,15 @@ export type Api_Auth_User = {
64
64
  roles: Api_Auth_User_Role[];
65
65
  security_warnings: any[];
66
66
  teams: Api_Auth_User_Team[];
67
+ avatar: null;
68
+ change_password: null;
69
+ created_at: string;
70
+ deleted_at: null;
71
+ face_recognition_id: null;
72
+ password_change_available_at: string;
73
+ password_change_due_at: string;
74
+ password_last_changed_at: string;
75
+ updated_at: string;
67
76
  };
68
77
  export type Api_Auth_Login = {
69
78
  token: string;
@@ -71,6 +71,9 @@ export type Api_User = {
71
71
  id: string;
72
72
  name: string;
73
73
  }[];
74
+ password_change_available_at: string;
75
+ password_change_due_at: string;
76
+ password_last_changed_at: string;
74
77
  };
75
78
  export type Api_User_Create = {
76
79
  last_name?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shared-ritm",
3
- "version": "1.3.53",
3
+ "version": "1.3.55",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -72,6 +72,15 @@ export type Api_Auth_User = {
72
72
  roles: Api_Auth_User_Role[]
73
73
  security_warnings: any[]
74
74
  teams: Api_Auth_User_Team[]
75
+ avatar: null
76
+ change_password: null
77
+ created_at: string
78
+ deleted_at: null
79
+ face_recognition_id: null
80
+ password_change_available_at: string
81
+ password_change_due_at: string
82
+ password_last_changed_at: string
83
+ updated_at: string
75
84
  }
76
85
 
77
86
  export type Api_Auth_Login = {
@@ -74,6 +74,9 @@ export type Api_User = {
74
74
  positions: Api_Search_User_Positions[]
75
75
  warehouses?: Partial<Api_User_Warehouse>[]
76
76
  brigades: { id: string; name: string }[]
77
+ password_change_available_at: string
78
+ password_change_due_at: string
79
+ password_last_changed_at: string
77
80
  }
78
81
 
79
82
  export type Api_User_Create = {