shared-ritm 1.3.54 → 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.
@@ -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.54",
3
+ "version": "1.3.55",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -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 = {