@energycap/energycap-billcapture-sdk-angular 1.0.329 → 1.0.331-develop-20260625-2100

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,6 +1348,22 @@ 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
+ }
1351
1367
  /**
1352
1368
  * Update import task information in partnerFiles table, including kickout count and kickedOut flag
1353
1369
  *
@@ -1355,7 +1371,7 @@ class ImportTaskService {
1355
1371
  * @param body Import task request with imported and kickout counts
1356
1372
  */
1357
1373
  apiV202603ImportTaskTaskGUIDPutWithHttpInfo(taskGUID, body, extraHttpRequestParams, extraHttpRequestHeaders) {
1358
- const path = this.basePath + '/api/v202603/ImportTask/${taskGUID}'
1374
+ const path = this.basePath + '/api/v202603/importTask/${taskGUID}'
1359
1375
  .replace('${' + 'taskGUID' + '}', String(taskGUID));
1360
1376
  let queryParameters;
1361
1377
  if (extraHttpRequestParams) {
@@ -1403,6 +1419,58 @@ class ImportTaskService {
1403
1419
  };
1404
1420
  return this.http.request(RequestMethod$7.Put, path, requestOptions);
1405
1421
  }
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
+ }
1406
1474
  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 });
1407
1475
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ImportTaskService });
1408
1476
  }
@@ -2955,6 +3023,44 @@ class FileDetailDTO {
2955
3023
  success;
2956
3024
  }
2957
3025
 
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
+
2958
3064
  /**
2959
3065
  * BillCapture.API
2960
3066
  * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
@@ -3607,5 +3713,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
3607
3713
  * Generated bundle index. Do not edit.
3608
3714
  */
3609
3715
 
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 };
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 };
3611
3717
  //# sourceMappingURL=energycap-energycap-billcapture-sdk-angular.mjs.map