automation-lib 5.3.38 → 5.3.39
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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -10310,7 +10310,7 @@ interface UpdateUserDto extends Partial<IUser> {
|
|
|
10310
10310
|
user_team?: string;
|
|
10311
10311
|
user_roles?: string[];
|
|
10312
10312
|
}
|
|
10313
|
-
interface FindUserDto extends IFindBaseDto {
|
|
10313
|
+
interface FindUserDto extends IUser, IFindBaseDto {
|
|
10314
10314
|
isLeader: boolean;
|
|
10315
10315
|
departmentOfUser: string[];
|
|
10316
10316
|
teamsOfUser: string[];
|
package/dist/index.d.ts
CHANGED
|
@@ -10310,7 +10310,7 @@ interface UpdateUserDto extends Partial<IUser> {
|
|
|
10310
10310
|
user_team?: string;
|
|
10311
10311
|
user_roles?: string[];
|
|
10312
10312
|
}
|
|
10313
|
-
interface FindUserDto extends IFindBaseDto {
|
|
10313
|
+
interface FindUserDto extends IUser, IFindBaseDto {
|
|
10314
10314
|
isLeader: boolean;
|
|
10315
10315
|
departmentOfUser: string[];
|
|
10316
10316
|
teamsOfUser: string[];
|