robbyson-frontend-library 1.0.29 → 1.0.30
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/package.json
CHANGED
|
@@ -33,6 +33,9 @@ export interface IHandleBreadCrumbTreeDTO {
|
|
|
33
33
|
}
|
|
34
34
|
export interface IHandleSearchTreeDTO {
|
|
35
35
|
text: string;
|
|
36
|
+
limit?: number;
|
|
37
|
+
groups?: string[]
|
|
38
|
+
excludeIdentifications?: string[];
|
|
36
39
|
}
|
|
37
40
|
|
|
38
41
|
export interface IGetDataTreeServiceDTO {
|
|
@@ -135,8 +138,14 @@ export interface IHandleSearchUser {
|
|
|
135
138
|
materialized_path?: string;
|
|
136
139
|
uniqueId?: string;
|
|
137
140
|
identification?: string;
|
|
141
|
+
group?: string;
|
|
138
142
|
id?: number;
|
|
139
143
|
}
|
|
144
|
+
|
|
145
|
+
export interface IMembersBroadcast extends Omit<IHandleSearchUser, 'identification' | 'group'> {
|
|
146
|
+
identification: string;
|
|
147
|
+
group: string;
|
|
148
|
+
}
|
|
140
149
|
export interface IInsertSimulationTreeDTO {
|
|
141
150
|
body: {
|
|
142
151
|
user_id?: number;
|