@tagsamurai/fats-api-services 1.0.0-alpha.64 → 1.0.0-alpha.65
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
package/src/dto/user.dto.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import { TableParams } from '../types/dataTable.type';
|
|
|
2
2
|
import { FetchOptionResponse, FetchResponse } from '../types/fetchResponse.type';
|
|
3
3
|
import { MultiSelectOption } from '../types/options.type';
|
|
4
4
|
import { RolePermission } from './role.dto';
|
|
5
|
-
import { Group } from '../types/group.type';
|
|
6
5
|
export interface CreateUserDTO {
|
|
7
6
|
firstName: string;
|
|
8
7
|
lastName: string;
|
|
@@ -161,7 +160,6 @@ export interface SetActiveBulkUserDTO {
|
|
|
161
160
|
export interface PutAssignGroupRole {
|
|
162
161
|
groups: {
|
|
163
162
|
groupKey?: number;
|
|
164
|
-
group?: Group;
|
|
165
163
|
permissions: RolePermission;
|
|
166
164
|
}[];
|
|
167
165
|
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { Group } from './group.type';
|
|
2
2
|
export type UserTransactionRole = {
|
|
3
|
+
_id: string;
|
|
3
4
|
group: Group[];
|
|
4
5
|
isActive: boolean;
|
|
5
6
|
updatedAt: Date | string;
|
|
6
7
|
transactionType: string;
|
|
7
8
|
roleType: string;
|
|
9
|
+
isNotApprovalRole?: boolean;
|
|
8
10
|
transactionGroupAttribute: string;
|
|
9
11
|
};
|