From 2ec8300dabdc625096e1d527e235c600380d576f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=A7=D0=B8=D0=BA=D0=B0=D0=BB=D0=BA=D0=B8=D0=BD?= Date: Wed, 23 Sep 2020 12:07:52 +0300 Subject: [PATCH] union entities intefraces --- src/core/types/Entities/index.ts | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/src/core/types/Entities/index.ts b/src/core/types/Entities/index.ts index 468d015..7036580 100644 --- a/src/core/types/Entities/index.ts +++ b/src/core/types/Entities/index.ts @@ -112,4 +112,21 @@ export interface IEvoContact extends IBaseOption { fullname?: string; } -export type TEntity = IAccount & ILead & IOpportunity & IQuote; +export type TEntity = IAccount & + ILead & + IOpportunity & + IQuote & + ITransactionCurrency & + IEvoClientType & + IEvoClientRisk & + IEvoBaseproduct & + IEvoLeasingObjectType & + IEvoBrand & + IEvoModel & + IEvoEquipment & + IEvoRewardCondition & + IEvoGPSBrand & + IEvoGPSModel & + IEvoRegion & + IEvoTown & + IEvoContact;