shared-ritm 1.2.154 → 1.3.0

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.
@@ -94,11 +94,16 @@ export type Api_Tasks_Position_Assigned_User_Dto = {
94
94
  id: string;
95
95
  full_name: string;
96
96
  };
97
+ export type Api_Tasks_Brigade_Simple_Dto = {
98
+ id: string;
99
+ name: string;
100
+ };
97
101
  export type Api_Tasks_Position_Assigned_Dto = {
98
- has_personnel_intersection: boolean;
102
+ has_personnel_intersection?: boolean;
99
103
  id?: number;
100
104
  user?: Api_Tasks_Position_Assigned_User_Dto | null;
101
105
  position?: Api_Tasks_Position_Dto;
106
+ brigades?: Api_Tasks_Brigade_Simple_Dto[];
102
107
  };
103
108
  export type Api_Tasks_Teams_Dto = {
104
109
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shared-ritm",
3
- "version": "1.2.154",
3
+ "version": "1.3.0",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -105,11 +105,17 @@ export type Api_Tasks_Position_Assigned_User_Dto = {
105
105
  full_name: string
106
106
  }
107
107
 
108
+ export type Api_Tasks_Brigade_Simple_Dto = {
109
+ id: string
110
+ name: string
111
+ }
112
+
108
113
  export type Api_Tasks_Position_Assigned_Dto = {
109
- has_personnel_intersection: boolean
114
+ has_personnel_intersection?: boolean
110
115
  id?: number
111
116
  user?: Api_Tasks_Position_Assigned_User_Dto | null
112
117
  position?: Api_Tasks_Position_Dto
118
+ brigades?: Api_Tasks_Brigade_Simple_Dto[]
113
119
  }
114
120
 
115
121
  export type Api_Tasks_Teams_Dto = {