@mitreka/coreflow-types 0.0.14 → 0.0.16
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/cryptor.ts +3 -1
- package/package.json +1 -1
- package/user.ts +1 -5
package/cryptor.ts
CHANGED
package/package.json
CHANGED
package/user.ts
CHANGED
|
@@ -126,17 +126,13 @@ export type UserMeta = {
|
|
|
126
126
|
|
|
127
127
|
export interface UserRoleEntity extends RelationEntity {
|
|
128
128
|
id: string;
|
|
129
|
-
company_id: string;
|
|
130
129
|
user_id: string;
|
|
131
130
|
role_id: string;
|
|
132
|
-
is_active: boolean;
|
|
133
131
|
}
|
|
134
132
|
|
|
135
133
|
export type UserRole = Omit<UserRoleEntity, 'id' | keyof RelationEntity>;
|
|
136
134
|
export type UserRoleRequest = QueryFilters & RelationEntityFilters &
|
|
137
|
-
Omit<UserRoleEntity,
|
|
138
|
-
is_active: boolean | string;
|
|
139
|
-
}
|
|
135
|
+
Omit<UserRoleEntity, keyof RelationEntity>;
|
|
140
136
|
|
|
141
137
|
export interface UserRoleCreate {
|
|
142
138
|
user_id: string;
|