law-common 1.2.16 → 1.2.17
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.
|
@@ -2,8 +2,9 @@ import { IApiEntity, IClientEntity, IClientEntityDependent } from "../../entitie
|
|
|
2
2
|
import { IUserApiEntity } from "./user.entity.api";
|
|
3
3
|
export type IClientApiEntity = IApiEntity<IClientEntity>;
|
|
4
4
|
export type IClientApiEntityArray = IClientApiEntity[];
|
|
5
|
+
export type IClientApiEntityDependent = IClientApiEntity & IClientEntityDependent;
|
|
5
6
|
export type IClientEntityGet = {
|
|
6
|
-
clients:
|
|
7
|
+
clients: IClientApiEntityDependent[];
|
|
7
8
|
users: {
|
|
8
9
|
[key: string]: IUserApiEntity;
|
|
9
10
|
};
|