@icure/be-fhc-api 0.6.8 → 0.6.10
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/model/InvoiceItem.d.ts
CHANGED
|
@@ -52,7 +52,7 @@ export declare namespace InvoiceItem {
|
|
|
52
52
|
SecondPrestationOfDay: DerogationMaxNumberEnum;
|
|
53
53
|
ThirdAndNextPrestationOfDay: DerogationMaxNumberEnum;
|
|
54
54
|
};
|
|
55
|
-
type PercentNormEnum = "None" | "SurgicalAid1" | "SurgicalAid2" | "ReducedFee" | "Ah1n1" | "HalfPriceSecondAct" | "InvoiceException" | "ForInformation" | "PseudoCodeProthesis";
|
|
55
|
+
type PercentNormEnum = "None" | "SurgicalAid1" | "SurgicalAid2" | "ReducedFee" | "Ah1n1" | "HalfPriceSecondAct" | "InvoiceException" | "ForInformation" | "PseudoCodeProthesis" | "SurgicalSameField";
|
|
56
56
|
const PercentNormEnum: {
|
|
57
57
|
None: PercentNormEnum;
|
|
58
58
|
SurgicalAid1: PercentNormEnum;
|
|
@@ -63,6 +63,7 @@ export declare namespace InvoiceItem {
|
|
|
63
63
|
InvoiceException: PercentNormEnum;
|
|
64
64
|
ForInformation: PercentNormEnum;
|
|
65
65
|
PseudoCodeProthesis: PercentNormEnum;
|
|
66
|
+
SurgicalSameField: PercentNormEnum;
|
|
66
67
|
};
|
|
67
68
|
type PrescriberNormEnum = "None" | "OnePrescriber" | "SelfPrescriber" | "AddedCode" | "OnePrescriberSubstituted" | "ManyPrescribersSubstituted" | "ManyPrescribers";
|
|
68
69
|
const PrescriberNormEnum: {
|
package/model/InvoiceItem.js
CHANGED
|
@@ -24,7 +24,8 @@ exports.InvoiceItem = InvoiceItem;
|
|
|
24
24
|
HalfPriceSecondAct: "HalfPriceSecondAct",
|
|
25
25
|
InvoiceException: "InvoiceException",
|
|
26
26
|
ForInformation: "ForInformation",
|
|
27
|
-
PseudoCodeProthesis: "PseudoCodeProthesis"
|
|
27
|
+
PseudoCodeProthesis: "PseudoCodeProthesis",
|
|
28
|
+
SurgicalSameField: "SurgicalSameField",
|
|
28
29
|
};
|
|
29
30
|
InvoiceItem.PrescriberNormEnum = {
|
|
30
31
|
None: "None",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@icure/be-fhc-api",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.10",
|
|
4
4
|
"description": "Typescript version of Freehealth Connector standalone API client",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"lodash": "^4.17.20"
|
|
9
9
|
},
|
|
10
10
|
"peerDependencies": {
|
|
11
|
-
"@icure/api": ">=8.4.8 <8.
|
|
11
|
+
"@icure/api": ">=8.4.8 <8.6.0"
|
|
12
12
|
},
|
|
13
13
|
"author": "Taktik sa",
|
|
14
14
|
"license": "MIT",
|
|
@@ -273,7 +273,11 @@ function getPercentNorm(norm) {
|
|
|
273
273
|
? models_1.InvoiceItem.PercentNormEnum.InvoiceException
|
|
274
274
|
: norm === 7
|
|
275
275
|
? models_1.InvoiceItem.PercentNormEnum.ForInformation
|
|
276
|
-
:
|
|
276
|
+
: norm === 8
|
|
277
|
+
? models_1.InvoiceItem.PercentNormEnum.SurgicalSameField
|
|
278
|
+
: norm === 9
|
|
279
|
+
? models_1.InvoiceItem.PercentNormEnum.PseudoCodeProthesis
|
|
280
|
+
: models_1.InvoiceItem.PercentNormEnum.None;
|
|
277
281
|
}
|
|
278
282
|
function getSideCode(code) {
|
|
279
283
|
return code === 0
|