grapp-common-se 0.6.237 → 0.6.239

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.
@@ -14,6 +14,12 @@ export interface Client {
14
14
  messageEmail?: messageEmailByIntitution;
15
15
  whatsappQuantity?: number;
16
16
  whatsappTotal?: number;
17
+ EpsIntegration?: {
18
+ Eps: {
19
+ nit: string;
20
+ }[];
21
+ };
22
+ clientName?: string;
17
23
  }
18
24
  export interface messageEmailByIntitution {
19
25
  messageExecutor?: string;
@@ -1,11 +1,11 @@
1
1
  import { CUPS } from '../clinics/CUPS';
2
- import { Resource, Timestamp } from '3a-common';
3
2
  import { Patient, User } from '../users';
4
3
  import { CIE10 } from '../clinics/CIE10';
5
4
  import { InnerFile } from '../fileSystem';
6
5
  import { Users } from '..';
7
6
  import { Contract, RequestReduced, Speciality } from './request';
8
7
  import { UserType } from '../users/user';
8
+ import { Resource, Timestamp } from '3a-common';
9
9
  export interface Order extends Resource {
10
10
  _id?: string;
11
11
  file?: string[] | (File | InnerFile)[];
@@ -51,7 +51,7 @@ export interface Order extends Resource {
51
51
  orderContract?: Contract;
52
52
  justifyTransfer?: string;
53
53
  paymentByCustomer?: boolean;
54
- offered?: Boolean;
54
+ offered?: boolean;
55
55
  originNit?: any;
56
56
  prescribingDoctor?: PrescribingDoctor;
57
57
  speciality?: Speciality;
@@ -83,6 +83,7 @@ export interface Order extends Resource {
83
83
  doctorAssingDate?: Timestamp;
84
84
  LastAssistantModified?: LastAssistantModified;
85
85
  otherObservations?: string;
86
+ dateAssingsExecutors?: number;
86
87
  }
87
88
  export declare enum ExecutorActivateStates {
88
89
  REQUEST = 0,
@@ -367,6 +367,14 @@ export interface Contract {
367
367
  flagMonthlyTop?: Boolean;
368
368
  flagEstimatedTop?: Boolean;
369
369
  flagExecutedTop?: Boolean;
370
+ index?: number;
371
+ topAlertPercentEstimated?: number | string;
372
+ estimatedCurrencyP?: number | string;
373
+ topAlertPercentExecuted?: number | string;
374
+ executedCurrencyP?: number | string;
375
+ costControl?: boolean;
376
+ monthlyCurrencyP?: number | string;
377
+ weeklyCurrencyP?: number | string;
370
378
  }
371
379
  export interface epsGroup {
372
380
  id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "grapp-common-se",
3
- "version": "0.6.237",
3
+ "version": "0.6.239",
4
4
  "description": "Interfaces for GRAPP project",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {