@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 CHANGED
@@ -698,7 +698,7 @@ interface Log<IDType = ObjectId | string> {
698
698
  }
699
699
 
700
700
  interface Reading<IDType = ObjectId | string> {
701
- _id: string;
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?: IDType;
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: string;
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?: IDType;
709
+ rateId?: string;
710
710
  contractRateType?: string;
711
711
  invoiceBatchId?: string;
712
712
  batchId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etainabl/nodejs-sdk",
3
- "version": "1.3.47",
3
+ "version": "1.3.49",
4
4
  "type": "module",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.mjs",