@mitreka/coreflow-types 0.0.15 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/user.ts +1 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mitreka/coreflow-types",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "description": "CoreFlow Types Definition",
5
5
  "author": {
6
6
  "name": "Riyan Widiyanto",
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, 'is_active' | keyof RelationEntity> & {
138
- is_active: boolean | string;
139
- }
135
+ Omit<UserRoleEntity, keyof RelationEntity>;
140
136
 
141
137
  export interface UserRoleCreate {
142
138
  user_id: string;