@mitreka/coreflow-types 0.0.20 → 0.0.22
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/coreflow.ts +1 -1
- package/imager.ts +8 -0
- package/index.ts +1 -0
- package/package.json +1 -1
- package/user.ts +1 -1
package/coreflow.ts
CHANGED
package/imager.ts
ADDED
package/index.ts
CHANGED
package/package.json
CHANGED
package/user.ts
CHANGED
|
@@ -62,7 +62,7 @@ export interface UserEntity extends BaseEntity {
|
|
|
62
62
|
|
|
63
63
|
export type User = Omit<UserEntity, 'id' | keyof BaseEntity>;
|
|
64
64
|
export type UserRequest = QueryFilters & BaseEntityFilters &
|
|
65
|
-
Omit<
|
|
65
|
+
Omit<UserEntity, 'password' | 'meta' | keyof BaseEntity>;
|
|
66
66
|
|
|
67
67
|
export interface UserCompanyEntity extends RelationEntity {
|
|
68
68
|
id: string;
|