@etainabl/nodejs-sdk 1.3.132 → 1.3.133
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/index.d.cts +23 -7
- package/dist/index.d.ts +23 -7
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1025,26 +1025,42 @@ interface InvoiceValues<DateType = Date | string> {
|
|
|
1025
1025
|
totalWasteCost?: number;
|
|
1026
1026
|
totalDaily?: number;
|
|
1027
1027
|
totalLevy?: number;
|
|
1028
|
-
totalKva?: number;
|
|
1029
1028
|
totalCCL?: number;
|
|
1029
|
+
totalMisc?: number;
|
|
1030
1030
|
totalFeedInTariff?: number;
|
|
1031
1031
|
totalLatePayment?: number;
|
|
1032
|
+
totalKva?: number;
|
|
1032
1033
|
totalUnits?: number;
|
|
1033
1034
|
totalWaterVolume?: number;
|
|
1034
1035
|
totalWasteVolume?: number;
|
|
1036
|
+
capacity?: number;
|
|
1035
1037
|
netTotalCost?: number;
|
|
1036
1038
|
totalTax?: number;
|
|
1037
1039
|
totalCost?: number;
|
|
1038
|
-
meteredConsumption?:
|
|
1039
|
-
correctedConsumption?:
|
|
1040
|
-
correctionFactor?:
|
|
1041
|
-
calorificValue?:
|
|
1042
|
-
readFactor?:
|
|
1043
|
-
capacity?: number;
|
|
1040
|
+
meteredConsumption?: number;
|
|
1041
|
+
correctedConsumption?: number;
|
|
1042
|
+
correctionFactor?: number;
|
|
1043
|
+
calorificValue?: number;
|
|
1044
|
+
readFactor?: number;
|
|
1044
1045
|
sewerageReturnPercentage?: number;
|
|
1045
1046
|
type?: string;
|
|
1046
1047
|
startRead?: string;
|
|
1047
1048
|
endRead?: string;
|
|
1049
|
+
supplierName?: string;
|
|
1050
|
+
supplierVatNumber?: string;
|
|
1051
|
+
recipient?: string;
|
|
1052
|
+
invoiceDueDate?: Date;
|
|
1053
|
+
invoiceStartDate?: Date;
|
|
1054
|
+
invoiceEndDate?: Date;
|
|
1055
|
+
startReadType?: string;
|
|
1056
|
+
endReadType?: string;
|
|
1057
|
+
isFinal?: boolean;
|
|
1058
|
+
units?: string;
|
|
1059
|
+
supplyAddress?: string;
|
|
1060
|
+
contractEndDate?: Date;
|
|
1061
|
+
contractNoticeDate?: Date;
|
|
1062
|
+
invoiceValuesComment?: string;
|
|
1063
|
+
meterValuesComment?: string;
|
|
1048
1064
|
}
|
|
1049
1065
|
interface InvoiceRate {
|
|
1050
1066
|
id: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1025,26 +1025,42 @@ interface InvoiceValues<DateType = Date | string> {
|
|
|
1025
1025
|
totalWasteCost?: number;
|
|
1026
1026
|
totalDaily?: number;
|
|
1027
1027
|
totalLevy?: number;
|
|
1028
|
-
totalKva?: number;
|
|
1029
1028
|
totalCCL?: number;
|
|
1029
|
+
totalMisc?: number;
|
|
1030
1030
|
totalFeedInTariff?: number;
|
|
1031
1031
|
totalLatePayment?: number;
|
|
1032
|
+
totalKva?: number;
|
|
1032
1033
|
totalUnits?: number;
|
|
1033
1034
|
totalWaterVolume?: number;
|
|
1034
1035
|
totalWasteVolume?: number;
|
|
1036
|
+
capacity?: number;
|
|
1035
1037
|
netTotalCost?: number;
|
|
1036
1038
|
totalTax?: number;
|
|
1037
1039
|
totalCost?: number;
|
|
1038
|
-
meteredConsumption?:
|
|
1039
|
-
correctedConsumption?:
|
|
1040
|
-
correctionFactor?:
|
|
1041
|
-
calorificValue?:
|
|
1042
|
-
readFactor?:
|
|
1043
|
-
capacity?: number;
|
|
1040
|
+
meteredConsumption?: number;
|
|
1041
|
+
correctedConsumption?: number;
|
|
1042
|
+
correctionFactor?: number;
|
|
1043
|
+
calorificValue?: number;
|
|
1044
|
+
readFactor?: number;
|
|
1044
1045
|
sewerageReturnPercentage?: number;
|
|
1045
1046
|
type?: string;
|
|
1046
1047
|
startRead?: string;
|
|
1047
1048
|
endRead?: string;
|
|
1049
|
+
supplierName?: string;
|
|
1050
|
+
supplierVatNumber?: string;
|
|
1051
|
+
recipient?: string;
|
|
1052
|
+
invoiceDueDate?: Date;
|
|
1053
|
+
invoiceStartDate?: Date;
|
|
1054
|
+
invoiceEndDate?: Date;
|
|
1055
|
+
startReadType?: string;
|
|
1056
|
+
endReadType?: string;
|
|
1057
|
+
isFinal?: boolean;
|
|
1058
|
+
units?: string;
|
|
1059
|
+
supplyAddress?: string;
|
|
1060
|
+
contractEndDate?: Date;
|
|
1061
|
+
contractNoticeDate?: Date;
|
|
1062
|
+
invoiceValuesComment?: string;
|
|
1063
|
+
meterValuesComment?: string;
|
|
1048
1064
|
}
|
|
1049
1065
|
interface InvoiceRate {
|
|
1050
1066
|
id: string;
|