@etainabl/nodejs-sdk 1.2.47 → 1.2.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 +22 -1
- package/dist/index.d.ts +22 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -539,6 +539,27 @@ interface Reading {
|
|
|
539
539
|
userSub?: string;
|
|
540
540
|
}
|
|
541
541
|
|
|
542
|
+
type ReportSource = 'assetGroup' | 'asset' | 'account' | 'accountsByRegister';
|
|
543
|
+
interface ReportSourceIdItem {
|
|
544
|
+
_id: string;
|
|
545
|
+
type: ReportSource;
|
|
546
|
+
}
|
|
547
|
+
interface ReportMetadata {
|
|
548
|
+
type: string;
|
|
549
|
+
format: string;
|
|
550
|
+
source: ReportSource;
|
|
551
|
+
startDate?: string;
|
|
552
|
+
endDate?: string;
|
|
553
|
+
subType: string;
|
|
554
|
+
granularity?: string;
|
|
555
|
+
sourceIds?: ReportSourceIdItem[];
|
|
556
|
+
schema?: [string];
|
|
557
|
+
rawUnits?: boolean;
|
|
558
|
+
dayNightSplit: boolean;
|
|
559
|
+
consumptionSource?: 'reading' | 'invoice' | 'combined' | 'hh' | 'reading-hh';
|
|
560
|
+
showSimulated?: boolean;
|
|
561
|
+
chartOptions?: any;
|
|
562
|
+
}
|
|
542
563
|
interface Report {
|
|
543
564
|
_id: string;
|
|
544
565
|
type: 'dynamic' | 'spreadsheet' | 'table' | 'pdf';
|
|
@@ -548,7 +569,7 @@ interface Report {
|
|
|
548
569
|
status: 'preparing' | 'ready';
|
|
549
570
|
scheduled?: boolean;
|
|
550
571
|
version?: number;
|
|
551
|
-
metadata?:
|
|
572
|
+
metadata?: ReportMetadata;
|
|
552
573
|
data?: Record<string, any>;
|
|
553
574
|
requestedAt: Date;
|
|
554
575
|
availableAt?: Date;
|
package/dist/index.d.ts
CHANGED
|
@@ -539,6 +539,27 @@ interface Reading {
|
|
|
539
539
|
userSub?: string;
|
|
540
540
|
}
|
|
541
541
|
|
|
542
|
+
type ReportSource = 'assetGroup' | 'asset' | 'account' | 'accountsByRegister';
|
|
543
|
+
interface ReportSourceIdItem {
|
|
544
|
+
_id: string;
|
|
545
|
+
type: ReportSource;
|
|
546
|
+
}
|
|
547
|
+
interface ReportMetadata {
|
|
548
|
+
type: string;
|
|
549
|
+
format: string;
|
|
550
|
+
source: ReportSource;
|
|
551
|
+
startDate?: string;
|
|
552
|
+
endDate?: string;
|
|
553
|
+
subType: string;
|
|
554
|
+
granularity?: string;
|
|
555
|
+
sourceIds?: ReportSourceIdItem[];
|
|
556
|
+
schema?: [string];
|
|
557
|
+
rawUnits?: boolean;
|
|
558
|
+
dayNightSplit: boolean;
|
|
559
|
+
consumptionSource?: 'reading' | 'invoice' | 'combined' | 'hh' | 'reading-hh';
|
|
560
|
+
showSimulated?: boolean;
|
|
561
|
+
chartOptions?: any;
|
|
562
|
+
}
|
|
542
563
|
interface Report {
|
|
543
564
|
_id: string;
|
|
544
565
|
type: 'dynamic' | 'spreadsheet' | 'table' | 'pdf';
|
|
@@ -548,7 +569,7 @@ interface Report {
|
|
|
548
569
|
status: 'preparing' | 'ready';
|
|
549
570
|
scheduled?: boolean;
|
|
550
571
|
version?: number;
|
|
551
|
-
metadata?:
|
|
572
|
+
metadata?: ReportMetadata;
|
|
552
573
|
data?: Record<string, any>;
|
|
553
574
|
requestedAt: Date;
|
|
554
575
|
availableAt?: Date;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etainabl/nodejs-sdk",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.49",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/esm/index.mjs",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
".": {
|
|
10
10
|
"import": {
|
|
11
11
|
"types": "./dist/index.d.ts",
|
|
12
|
-
"default": "./dist/index.
|
|
12
|
+
"default": "./dist/esm/index.js"
|
|
13
13
|
},
|
|
14
14
|
"require": {
|
|
15
15
|
"types": "./dist/index.d.ts",
|