@energycap/energycap-billcapture-sdk-angular 1.0.361 → 1.0.363-develop-20260728-1322
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.
|
@@ -557,6 +557,22 @@ class BillRetrievalService {
|
|
|
557
557
|
}
|
|
558
558
|
return false;
|
|
559
559
|
}
|
|
560
|
+
/**
|
|
561
|
+
*
|
|
562
|
+
*
|
|
563
|
+
* @param id
|
|
564
|
+
*/
|
|
565
|
+
apiV202606BillRetrievalIdCancelPost(id, extraHttpRequestParams, extraHttpRequestHeaders) {
|
|
566
|
+
return this.apiV202606BillRetrievalIdCancelPostWithHttpInfo(id, extraHttpRequestParams, extraHttpRequestHeaders)
|
|
567
|
+
.pipe(map((response) => {
|
|
568
|
+
if (response.status === 204) {
|
|
569
|
+
return undefined;
|
|
570
|
+
}
|
|
571
|
+
else {
|
|
572
|
+
return response.body;
|
|
573
|
+
}
|
|
574
|
+
}));
|
|
575
|
+
}
|
|
560
576
|
/**
|
|
561
577
|
*
|
|
562
578
|
*
|
|
@@ -573,6 +589,58 @@ class BillRetrievalService {
|
|
|
573
589
|
}
|
|
574
590
|
}));
|
|
575
591
|
}
|
|
592
|
+
/**
|
|
593
|
+
*
|
|
594
|
+
*
|
|
595
|
+
* @param id
|
|
596
|
+
*/
|
|
597
|
+
apiV202606BillRetrievalIdCancelPostWithHttpInfo(id, extraHttpRequestParams, extraHttpRequestHeaders) {
|
|
598
|
+
const path = this.basePath + '/api/v202606/BillRetrieval/${id}/cancel'
|
|
599
|
+
.replace('${' + 'id' + '}', String(id));
|
|
600
|
+
let queryParameters;
|
|
601
|
+
if (extraHttpRequestParams) {
|
|
602
|
+
if (typeof extraHttpRequestParams.search === 'string') {
|
|
603
|
+
queryParameters = new HttpParams({ fromString: extraHttpRequestParams.search });
|
|
604
|
+
}
|
|
605
|
+
else {
|
|
606
|
+
queryParameters = new HttpParams({ fromObject: extraHttpRequestParams.search });
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
else {
|
|
610
|
+
queryParameters = new HttpParams();
|
|
611
|
+
}
|
|
612
|
+
let headers = new HttpHeaders();
|
|
613
|
+
this.defaultHeaders.keys().forEach(key => {
|
|
614
|
+
headers = headers.set(key, this.defaultHeaders.getAll(key));
|
|
615
|
+
});
|
|
616
|
+
if (extraHttpRequestHeaders) {
|
|
617
|
+
Object.entries(extraHttpRequestHeaders).forEach(([key, value]) => {
|
|
618
|
+
headers = headers.set(key, value);
|
|
619
|
+
});
|
|
620
|
+
}
|
|
621
|
+
// verify required parameter 'id' is not null or undefined
|
|
622
|
+
if (id === null || id === undefined) {
|
|
623
|
+
throw new Error('Required parameter id was null or undefined when calling apiV202606BillRetrievalIdCancelPost.');
|
|
624
|
+
}
|
|
625
|
+
// to determine the Accept header
|
|
626
|
+
let produces = [
|
|
627
|
+
'application/json'
|
|
628
|
+
];
|
|
629
|
+
if (this.configuration.apiKeys["Authorization"]) {
|
|
630
|
+
headers = headers.set('Authorization', this.configuration.apiKeys["Authorization"]);
|
|
631
|
+
}
|
|
632
|
+
if (this.configuration.apiKeys["ECI-PUBLIC-DASHBOARD-KEY"]) {
|
|
633
|
+
headers = headers.set('ECI-PUBLIC-DASHBOARD-KEY', this.configuration.apiKeys["ECI-PUBLIC-DASHBOARD-KEY"]);
|
|
634
|
+
}
|
|
635
|
+
const consumes = [];
|
|
636
|
+
let requestOptions = {
|
|
637
|
+
headers: headers,
|
|
638
|
+
params: queryParameters,
|
|
639
|
+
withCredentials: this.configuration.withCredentials,
|
|
640
|
+
observe: 'response'
|
|
641
|
+
};
|
|
642
|
+
return this.http.request(RequestMethod$d.Post, path, requestOptions);
|
|
643
|
+
}
|
|
576
644
|
/**
|
|
577
645
|
*
|
|
578
646
|
*
|
|
@@ -3829,6 +3897,25 @@ var PartnerProcessStatus;
|
|
|
3829
3897
|
PartnerProcessStatus[PartnerProcessStatus["NUMBER_4"] = 4] = "NUMBER_4";
|
|
3830
3898
|
})(PartnerProcessStatus || (PartnerProcessStatus = {}));
|
|
3831
3899
|
|
|
3900
|
+
/**
|
|
3901
|
+
* BillCapture.API
|
|
3902
|
+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
3903
|
+
*
|
|
3904
|
+
* OpenAPI spec version: 1.0
|
|
3905
|
+
*
|
|
3906
|
+
*
|
|
3907
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
3908
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
3909
|
+
* Do not edit the class manually.
|
|
3910
|
+
*/
|
|
3911
|
+
class ProblemDetails {
|
|
3912
|
+
type;
|
|
3913
|
+
title;
|
|
3914
|
+
status;
|
|
3915
|
+
detail;
|
|
3916
|
+
instance;
|
|
3917
|
+
}
|
|
3918
|
+
|
|
3832
3919
|
/**
|
|
3833
3920
|
* BillCapture.API
|
|
3834
3921
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
@@ -4424,5 +4511,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
4424
4511
|
* Generated bundle index. Do not edit.
|
|
4425
4512
|
*/
|
|
4426
4513
|
|
|
4427
|
-
export { APIFilter, APIS, AccountService, BASE_PATH, BillRetrievalResponseDTO, BillRetrievalService, BillRetrievalWebhookService, COLLECTION_FORMATS, ClientChildDTO, ClientEditDTO, ClientFileChildrenService, ClientResponseDTO, ClientService, Configuration, CreateBillRetrievalRequestDTO, DuplicateInfoChildDTO, EnergyCapSdkModule, ExportService, FileDetailDTO, ImportTaskDetailDTO, ImportTaskRequestDTO, ImportTaskService, InternalService, MonthlyTransactionStatisticsDTO, OcrResultChildDTO, PartnerChildDTO, PartnerProcessResultDTO, PartnerProcessStatus, PartnerService, ProblemFileActionRequestDTO, ProblemFileActionResponseDTO, ProblemFileHistoryResponseDTO, ProblemFileNewImportChildDTO, ProblemFileResponseDTO, ProblemFileService, ProblemTypeChildDTO, ProblemTypeResponseDTO, ProblemTypeService, TransactionLogResponseDTO, TransactionService, TransactionUsageDTO, TransactionUsageResponseDTO, UploadFileResponseDTO, UploadResponseDTO, UploadService, UtilityManagementSystemUserChildDTO, VersionService, WebCaptureConnectRequestDTO, WebCaptureConnectResponseDTO, WebCaptureReconnectRequestDTO, WebCaptureVendorResponseDTO, WebCaptureVendorService };
|
|
4514
|
+
export { APIFilter, APIS, AccountService, BASE_PATH, BillRetrievalResponseDTO, BillRetrievalService, BillRetrievalWebhookService, COLLECTION_FORMATS, ClientChildDTO, ClientEditDTO, ClientFileChildrenService, ClientResponseDTO, ClientService, Configuration, CreateBillRetrievalRequestDTO, DuplicateInfoChildDTO, EnergyCapSdkModule, ExportService, FileDetailDTO, ImportTaskDetailDTO, ImportTaskRequestDTO, ImportTaskService, InternalService, MonthlyTransactionStatisticsDTO, OcrResultChildDTO, PartnerChildDTO, PartnerProcessResultDTO, PartnerProcessStatus, PartnerService, ProblemDetails, ProblemFileActionRequestDTO, ProblemFileActionResponseDTO, ProblemFileHistoryResponseDTO, ProblemFileNewImportChildDTO, ProblemFileResponseDTO, ProblemFileService, ProblemTypeChildDTO, ProblemTypeResponseDTO, ProblemTypeService, TransactionLogResponseDTO, TransactionService, TransactionUsageDTO, TransactionUsageResponseDTO, UploadFileResponseDTO, UploadResponseDTO, UploadService, UtilityManagementSystemUserChildDTO, VersionService, WebCaptureConnectRequestDTO, WebCaptureConnectResponseDTO, WebCaptureReconnectRequestDTO, WebCaptureVendorResponseDTO, WebCaptureVendorService };
|
|
4428
4515
|
//# sourceMappingURL=energycap-energycap-billcapture-sdk-angular.mjs.map
|