grapp-common-se 0.6.47 → 0.6.50
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/dist/orders/order.d.ts +1 -6
- package/dist/users/patient.d.ts +1 -2
- package/dist/users/user.d.ts +5 -1
- package/dist/users/user.js +4 -0
- package/package.json +1 -1
package/dist/orders/order.d.ts
CHANGED
|
@@ -119,16 +119,11 @@ export interface ContractTech {
|
|
|
119
119
|
epsId: string;
|
|
120
120
|
buyCost: number;
|
|
121
121
|
contractId: string;
|
|
122
|
-
createdAt
|
|
122
|
+
createdAt: number;
|
|
123
123
|
frecuency: number;
|
|
124
124
|
frecuencyAlert: number;
|
|
125
125
|
sellPrice: number;
|
|
126
126
|
state: boolean;
|
|
127
127
|
techName: string;
|
|
128
128
|
technologyCode: number;
|
|
129
|
-
monthlyFrecuency?: number;
|
|
130
|
-
weeklyFrecuency?: number;
|
|
131
|
-
createdBy?: string;
|
|
132
|
-
lastModifiedAt?: number;
|
|
133
|
-
lastModifiedBy?: string;
|
|
134
129
|
}
|
package/dist/users/patient.d.ts
CHANGED
|
@@ -41,7 +41,7 @@ export interface Patient extends User {
|
|
|
41
41
|
* Trazabilidad de cambios
|
|
42
42
|
*/
|
|
43
43
|
changesTraceability?: ChangeTraceability[];
|
|
44
|
-
messagePatientLog?: string
|
|
44
|
+
messagePatientLog?: string;
|
|
45
45
|
}
|
|
46
46
|
export interface ChangeTraceability {
|
|
47
47
|
modifiedBy: User;
|
|
@@ -63,5 +63,4 @@ export interface PatientLog {
|
|
|
63
63
|
patientID?: string;
|
|
64
64
|
createdAt?: number;
|
|
65
65
|
createBy?: {};
|
|
66
|
-
changeCamp?: {};
|
|
67
66
|
}
|
package/dist/users/user.d.ts
CHANGED
package/dist/users/user.js
CHANGED
|
@@ -17,6 +17,10 @@ var IDType;
|
|
|
17
17
|
IDType["CN"] = "CN";
|
|
18
18
|
IDType["DE"] = "DE";
|
|
19
19
|
IDType["SC"] = "SC";
|
|
20
|
+
IDType["PIP"] = "PIP";
|
|
21
|
+
IDType["PTP"] = "PTP";
|
|
22
|
+
IDType["PPT"] = "PPT";
|
|
23
|
+
IDType["PIP_TT"] = "PIP-TT";
|
|
20
24
|
})(IDType = exports.IDType || (exports.IDType = {}));
|
|
21
25
|
var UserType;
|
|
22
26
|
(function (UserType) {
|