@etainabl/nodejs-sdk 1.3.47 → 1.3.49
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -698,7 +698,7 @@ interface Log<IDType = ObjectId | string> {
|
|
|
698
698
|
}
|
|
699
699
|
|
|
700
700
|
interface Reading<IDType = ObjectId | string> {
|
|
701
|
-
_id:
|
|
701
|
+
_id: IDType;
|
|
702
702
|
submittedAt: Date;
|
|
703
703
|
value: number;
|
|
704
704
|
units: ETNUnit;
|
|
@@ -706,7 +706,7 @@ interface Reading<IDType = ObjectId | string> {
|
|
|
706
706
|
invoiceStartRead?: number;
|
|
707
707
|
source: string;
|
|
708
708
|
invoiceId?: IDType;
|
|
709
|
-
rateId?:
|
|
709
|
+
rateId?: string;
|
|
710
710
|
contractRateType?: string;
|
|
711
711
|
invoiceBatchId?: string;
|
|
712
712
|
batchId?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -698,7 +698,7 @@ interface Log<IDType = ObjectId | string> {
|
|
|
698
698
|
}
|
|
699
699
|
|
|
700
700
|
interface Reading<IDType = ObjectId | string> {
|
|
701
|
-
_id:
|
|
701
|
+
_id: IDType;
|
|
702
702
|
submittedAt: Date;
|
|
703
703
|
value: number;
|
|
704
704
|
units: ETNUnit;
|
|
@@ -706,7 +706,7 @@ interface Reading<IDType = ObjectId | string> {
|
|
|
706
706
|
invoiceStartRead?: number;
|
|
707
707
|
source: string;
|
|
708
708
|
invoiceId?: IDType;
|
|
709
|
-
rateId?:
|
|
709
|
+
rateId?: string;
|
|
710
710
|
contractRateType?: string;
|
|
711
711
|
invoiceBatchId?: string;
|
|
712
712
|
batchId?: string;
|