@energycap/energycap-billcapture-sdk-angular 1.0.328-develop-20260623-1300 → 1.0.329

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.
@@ -1348,22 +1348,6 @@ class ImportTaskService {
1348
1348
  }
1349
1349
  }));
1350
1350
  }
1351
- /**
1352
- * Get bill tracking details for an import task, including retrieval method and processing partner.
1353
- *
1354
- * @param taskGUID The import task GUID assigned to the partnerFile.
1355
- */
1356
- apiV202606ImportTaskTaskGUIDGet(taskGUID, extraHttpRequestParams, extraHttpRequestHeaders) {
1357
- return this.apiV202606ImportTaskTaskGUIDGetWithHttpInfo(taskGUID, extraHttpRequestParams, extraHttpRequestHeaders)
1358
- .pipe(map((response) => {
1359
- if (response.status === 204) {
1360
- return undefined;
1361
- }
1362
- else {
1363
- return response.body;
1364
- }
1365
- }));
1366
- }
1367
1351
  /**
1368
1352
  * Update import task information in partnerFiles table, including kickout count and kickedOut flag
1369
1353
  *
@@ -1371,7 +1355,7 @@ class ImportTaskService {
1371
1355
  * @param body Import task request with imported and kickout counts
1372
1356
  */
1373
1357
  apiV202603ImportTaskTaskGUIDPutWithHttpInfo(taskGUID, body, extraHttpRequestParams, extraHttpRequestHeaders) {
1374
- const path = this.basePath + '/api/v202603/importTask/${taskGUID}'
1358
+ const path = this.basePath + '/api/v202603/ImportTask/${taskGUID}'
1375
1359
  .replace('${' + 'taskGUID' + '}', String(taskGUID));
1376
1360
  let queryParameters;
1377
1361
  if (extraHttpRequestParams) {
@@ -1419,58 +1403,6 @@ class ImportTaskService {
1419
1403
  };
1420
1404
  return this.http.request(RequestMethod$7.Put, path, requestOptions);
1421
1405
  }
1422
- /**
1423
- * Get bill tracking details for an import task, including retrieval method and processing partner.
1424
- *
1425
- * @param taskGUID The import task GUID assigned to the partnerFile.
1426
- */
1427
- apiV202606ImportTaskTaskGUIDGetWithHttpInfo(taskGUID, extraHttpRequestParams, extraHttpRequestHeaders) {
1428
- const path = this.basePath + '/api/v202606/importTask/${taskGUID}'
1429
- .replace('${' + 'taskGUID' + '}', String(taskGUID));
1430
- let queryParameters;
1431
- if (extraHttpRequestParams) {
1432
- if (typeof extraHttpRequestParams.search === 'string') {
1433
- queryParameters = new HttpParams({ fromString: extraHttpRequestParams.search });
1434
- }
1435
- else {
1436
- queryParameters = new HttpParams({ fromObject: extraHttpRequestParams.search });
1437
- }
1438
- }
1439
- else {
1440
- queryParameters = new HttpParams();
1441
- }
1442
- let headers = new HttpHeaders();
1443
- this.defaultHeaders.keys().forEach(key => {
1444
- headers = headers.set(key, this.defaultHeaders.getAll(key));
1445
- });
1446
- if (extraHttpRequestHeaders) {
1447
- Object.entries(extraHttpRequestHeaders).forEach(([key, value]) => {
1448
- headers = headers.set(key, value);
1449
- });
1450
- }
1451
- // verify required parameter 'taskGUID' is not null or undefined
1452
- if (taskGUID === null || taskGUID === undefined) {
1453
- throw new Error('Required parameter taskGUID was null or undefined when calling apiV202606ImportTaskTaskGUIDGet.');
1454
- }
1455
- // to determine the Accept header
1456
- let produces = [
1457
- 'application/json'
1458
- ];
1459
- if (this.configuration.apiKeys["Authorization"]) {
1460
- headers = headers.set('Authorization', this.configuration.apiKeys["Authorization"]);
1461
- }
1462
- if (this.configuration.apiKeys["ECI-PUBLIC-DASHBOARD-KEY"]) {
1463
- headers = headers.set('ECI-PUBLIC-DASHBOARD-KEY', this.configuration.apiKeys["ECI-PUBLIC-DASHBOARD-KEY"]);
1464
- }
1465
- const consumes = [];
1466
- let requestOptions = {
1467
- headers: headers,
1468
- params: queryParameters,
1469
- withCredentials: this.configuration.withCredentials,
1470
- observe: 'response'
1471
- };
1472
- return this.http.request(RequestMethod$7.Get, path, requestOptions);
1473
- }
1474
1406
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ImportTaskService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1475
1407
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ImportTaskService });
1476
1408
  }
@@ -3023,44 +2955,6 @@ class FileDetailDTO {
3023
2955
  success;
3024
2956
  }
3025
2957
 
3026
- /**
3027
- * BillCapture.API
3028
- * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
3029
- *
3030
- * OpenAPI spec version: 1.0
3031
- *
3032
- *
3033
- * NOTE: This class is auto generated by the swagger code generator program.
3034
- * https://github.com/swagger-api/swagger-codegen.git
3035
- * Do not edit the class manually.
3036
- */
3037
- class ImportTaskDetailDTO {
3038
- /**
3039
- * How the bill was acquired (e.g. \"Customer Upload\", \"Email Delivery\", \"Electronic Transfer\").
3040
- */
3041
- acquisitionMethod;
3042
- /**
3043
- * Display name of the partner that processed this import (e.g. \"Arcadia UC\", \"XBP\").
3044
- */
3045
- processingMethod;
3046
- /**
3047
- * When the file was uploaded to BillCapture (UTC).
3048
- */
3049
- billUploadDate;
3050
- /**
3051
- * When the file was sent to the processing partner (UTC).
3052
- */
3053
- sentToProcessorDate;
3054
- /**
3055
- * When the processed results were received back from the partner (UTC). Null if not yet received.
3056
- */
3057
- receivedFromProcessorDate;
3058
- /**
3059
- * When processing was fully completed and success was sent (UTC). Null if not yet complete.
3060
- */
3061
- processingComplete;
3062
- }
3063
-
3064
2958
  /**
3065
2959
  * BillCapture.API
3066
2960
  * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
@@ -3713,5 +3607,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
3713
3607
  * Generated bundle index. Do not edit.
3714
3608
  */
3715
3609
 
3716
- export { APIFilter, APIS, AccountService, BASE_PATH, COLLECTION_FORMATS, ClientChildDTO, ClientEditDTO, ClientFileChildrenService, ClientResponseDTO, ClientService, Configuration, 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 };
3610
+ export { APIFilter, APIS, AccountService, BASE_PATH, COLLECTION_FORMATS, ClientChildDTO, ClientEditDTO, ClientFileChildrenService, ClientResponseDTO, ClientService, Configuration, DuplicateInfoChildDTO, EnergyCapSdkModule, ExportService, FileDetailDTO, 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 };
3717
3611
  //# sourceMappingURL=energycap-energycap-billcapture-sdk-angular.mjs.map