grapp-common-se 0.6.31 → 0.6.39
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/request.d.ts
CHANGED
|
@@ -310,6 +310,15 @@ export interface Contract {
|
|
|
310
310
|
code?: string;
|
|
311
311
|
tag?: string;
|
|
312
312
|
active?: boolean;
|
|
313
|
+
topContractMoney?: number;
|
|
314
|
+
initialDate?: Timestamp;
|
|
315
|
+
finalDate?: Timestamp;
|
|
316
|
+
monthlyCheck?: boolean;
|
|
317
|
+
topMonthly?: number;
|
|
318
|
+
monthlyAlertPercent?: number;
|
|
319
|
+
weeklyCheck?: boolean;
|
|
320
|
+
topWeekly?: number;
|
|
321
|
+
weeklyAlertPercent?: number;
|
|
313
322
|
}
|
|
314
323
|
export interface epsGroup {
|
|
315
324
|
id?: string;
|
package/dist/users/patient.d.ts
CHANGED
package/dist/users/user.d.ts
CHANGED
|
@@ -25,10 +25,12 @@ export declare enum IDType {
|
|
|
25
25
|
PA = "PA",
|
|
26
26
|
CD = "CD",
|
|
27
27
|
PR = "PR",
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
NV = "NV"
|
|
28
|
+
PE = "PE",
|
|
29
|
+
AS = "AS",
|
|
30
|
+
MS = "MS",
|
|
31
|
+
NV = "NV",
|
|
32
|
+
DE = "DE",
|
|
33
|
+
SC = "SC"
|
|
32
34
|
}
|
|
33
35
|
export declare enum UserType {
|
|
34
36
|
COORDINATOR = 0,
|
package/dist/users/user.js
CHANGED
|
@@ -11,10 +11,12 @@ var IDType;
|
|
|
11
11
|
IDType["PA"] = "PA";
|
|
12
12
|
IDType["CD"] = "CD";
|
|
13
13
|
IDType["PR"] = "PR";
|
|
14
|
-
IDType["
|
|
15
|
-
IDType["
|
|
16
|
-
IDType["
|
|
14
|
+
IDType["PE"] = "PE";
|
|
15
|
+
IDType["AS"] = "AS";
|
|
16
|
+
IDType["MS"] = "MS";
|
|
17
17
|
IDType["NV"] = "NV";
|
|
18
|
+
IDType["DE"] = "DE";
|
|
19
|
+
IDType["SC"] = "SC";
|
|
18
20
|
})(IDType = exports.IDType || (exports.IDType = {}));
|
|
19
21
|
var UserType;
|
|
20
22
|
(function (UserType) {
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "grapp-common-se",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.39",
|
|
4
4
|
"description": "Interfaces for GRAPP project",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"prepublishOnly": "npm run build",
|
|
8
|
-
"build": "tsc --skipLibCheck",
|
|
8
|
+
"build": "rm -rf dist && tsc --skipLibCheck",
|
|
9
9
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [],
|