grapp-common-se 0.6.258 → 0.6.260
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 +2 -0
- package/dist/users/patient.d.ts +10 -0
- package/package.json +1 -1
package/dist/orders/order.d.ts
CHANGED
|
@@ -94,6 +94,8 @@ export interface Order extends Resource {
|
|
|
94
94
|
transferStatus?: TransferStatus;
|
|
95
95
|
userModified?: string;
|
|
96
96
|
userModifiedLogs?: Array<UserReduced>;
|
|
97
|
+
weeklyFrecuency?: number;
|
|
98
|
+
monthlyFrecuency?: number;
|
|
97
99
|
}
|
|
98
100
|
export declare enum ExecutorActivateStates {
|
|
99
101
|
REQUEST = 0,
|
package/dist/users/patient.d.ts
CHANGED
|
@@ -30,6 +30,10 @@ export interface Patient extends User {
|
|
|
30
30
|
* Eps
|
|
31
31
|
*/
|
|
32
32
|
eps?: Orders.Eps;
|
|
33
|
+
/**
|
|
34
|
+
* Pais de nacionalidad
|
|
35
|
+
*/
|
|
36
|
+
nationality?: Country;
|
|
33
37
|
/**
|
|
34
38
|
* Si es creado por importacion masiva o por el aplicativo
|
|
35
39
|
*/
|
|
@@ -53,6 +57,12 @@ export interface ChangeTraceability {
|
|
|
53
57
|
attributes: AttributeChangedPatient;
|
|
54
58
|
justify?: string;
|
|
55
59
|
}
|
|
60
|
+
export interface Country {
|
|
61
|
+
Codigo?: string;
|
|
62
|
+
Nombre?: string;
|
|
63
|
+
Extra_II?: string;
|
|
64
|
+
Extra_III?: string;
|
|
65
|
+
}
|
|
56
66
|
export interface AttributeChangedPatient {
|
|
57
67
|
[key: string]: ValueChange;
|
|
58
68
|
}
|