@energycap/energycap-sdk-angular 8.2507.6220-develop-20250711-1624 → 8.2507.6222
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/api/bill.service.d.ts +26 -0
- package/api/spanClasspropertyinfoPermissionPermissionsBillsAndBatchesEditspan.service.d.ts +26 -0
- package/esm2022/api/bill.service.mjs +83 -1
- package/esm2022/api/spanClasspropertyinfoPermissionPermissionsBillsAndBatchesEditspan.service.mjs +83 -1
- package/fesm2022/energycap-energycap-sdk-angular.mjs +164 -0
- package/fesm2022/energycap-energycap-sdk-angular.mjs.map +1 -1
- package/package.json +1 -1
package/api/bill.service.d.ts
CHANGED
|
@@ -549,6 +549,19 @@ export declare class BillService {
|
|
|
549
549
|
}, extraHttpRequestHeaders?: {
|
|
550
550
|
[header: string]: string | string[];
|
|
551
551
|
}): Observable<MoveBillsDestination>;
|
|
552
|
+
/**
|
|
553
|
+
* Moves the set of bills to the specified batch The bills being moved should be in an open or closed batch The specified batch should be an open batch The specified batch should belong to the current user
|
|
554
|
+
*
|
|
555
|
+
* @param batchId Batch to move to
|
|
556
|
+
* @param body List of bills to be moved to the new batch
|
|
557
|
+
*/
|
|
558
|
+
moveBatch(batchId: number, body?: string, extraHttpRequestParams?: {
|
|
559
|
+
search: string | {
|
|
560
|
+
[param: string]: string | string[];
|
|
561
|
+
};
|
|
562
|
+
}, extraHttpRequestHeaders?: {
|
|
563
|
+
[header: string]: string | string[];
|
|
564
|
+
}): Observable<UpdateResult>;
|
|
552
565
|
/**
|
|
553
566
|
* Moves the list of given bills to the specified destination account and meters. Each source Meter will be matched with a corresponding destination Meter based on commodity.
|
|
554
567
|
*
|
|
@@ -1126,6 +1139,19 @@ export declare class BillService {
|
|
|
1126
1139
|
}, extraHttpRequestHeaders?: {
|
|
1127
1140
|
[header: string]: string | string[];
|
|
1128
1141
|
}): Observable<HttpResponse<MoveBillsDestination>>;
|
|
1142
|
+
/**
|
|
1143
|
+
* Moves the set of bills to the specified batch The bills being moved should be in an open or closed batch The specified batch should be an open batch The specified batch should belong to the current user
|
|
1144
|
+
*
|
|
1145
|
+
* @param batchId Batch to move to
|
|
1146
|
+
* @param body List of bills to be moved to the new batch
|
|
1147
|
+
*/
|
|
1148
|
+
moveBatchWithHttpInfo(batchId: number, body?: string, extraHttpRequestParams?: {
|
|
1149
|
+
search: string | {
|
|
1150
|
+
[param: string]: string | string[];
|
|
1151
|
+
};
|
|
1152
|
+
}, extraHttpRequestHeaders?: {
|
|
1153
|
+
[header: string]: string | string[];
|
|
1154
|
+
}): Observable<HttpResponse<UpdateResult>>;
|
|
1129
1155
|
/**
|
|
1130
1156
|
* Moves the list of given bills to the specified destination account and meters. Each source Meter will be matched with a corresponding destination Meter based on commodity.
|
|
1131
1157
|
*
|
|
@@ -254,6 +254,19 @@ export declare class SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesEd
|
|
|
254
254
|
}, extraHttpRequestHeaders?: {
|
|
255
255
|
[header: string]: string | string[];
|
|
256
256
|
}): Observable<UpdateResult>;
|
|
257
|
+
/**
|
|
258
|
+
* Moves the set of bills to the specified batch The bills being moved should be in an open or closed batch The specified batch should be an open batch The specified batch should belong to the current user
|
|
259
|
+
*
|
|
260
|
+
* @param batchId Batch to move to
|
|
261
|
+
* @param body List of bills to be moved to the new batch
|
|
262
|
+
*/
|
|
263
|
+
moveBatch(batchId: number, body?: string, extraHttpRequestParams?: {
|
|
264
|
+
search: string | {
|
|
265
|
+
[param: string]: string | string[];
|
|
266
|
+
};
|
|
267
|
+
}, extraHttpRequestHeaders?: {
|
|
268
|
+
[header: string]: string | string[];
|
|
269
|
+
}): Observable<UpdateResult>;
|
|
257
270
|
/**
|
|
258
271
|
* Fires a custom bill action. Custom bill actions are setup as webhooks
|
|
259
272
|
*
|
|
@@ -581,6 +594,19 @@ export declare class SpanClasspropertyinfoPermissionPermissionsBillsAndBatchesEd
|
|
|
581
594
|
}, extraHttpRequestHeaders?: {
|
|
582
595
|
[header: string]: string | string[];
|
|
583
596
|
}): Observable<HttpResponse<UpdateResult>>;
|
|
597
|
+
/**
|
|
598
|
+
* Moves the set of bills to the specified batch The bills being moved should be in an open or closed batch The specified batch should be an open batch The specified batch should belong to the current user
|
|
599
|
+
*
|
|
600
|
+
* @param batchId Batch to move to
|
|
601
|
+
* @param body List of bills to be moved to the new batch
|
|
602
|
+
*/
|
|
603
|
+
moveBatchWithHttpInfo(batchId: number, body?: string, extraHttpRequestParams?: {
|
|
604
|
+
search: string | {
|
|
605
|
+
[param: string]: string | string[];
|
|
606
|
+
};
|
|
607
|
+
}, extraHttpRequestHeaders?: {
|
|
608
|
+
[header: string]: string | string[];
|
|
609
|
+
}): Observable<HttpResponse<UpdateResult>>;
|
|
584
610
|
/**
|
|
585
611
|
* Fires a custom bill action. Custom bill actions are setup as webhooks
|
|
586
612
|
*
|