@energycap/energycap-billcapture-sdk-angular 1.0.346-develop-20260709-1952 → 1.0.348-develop-20260713-1256

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.
@@ -1332,7 +1332,7 @@ class ImportTaskService {
1332
1332
  return false;
1333
1333
  }
1334
1334
  /**
1335
- * Update import task information in partnerFiles table, including kickout count and kickedOut flag
1335
+ * Update import task information in partnerFiles table, including kickout count and kickedOut flag. Called by EUM's kickout resolution API, which runs in a user context (EncJwt).
1336
1336
  *
1337
1337
  * @param taskGUID The GUID of the master task to update (i.e., the task GUID that was originated by the BillCapture import).
1338
1338
  * @param body Import task request with imported and kickout counts
@@ -1349,12 +1349,13 @@ class ImportTaskService {
1349
1349
  }));
1350
1350
  }
1351
1351
  /**
1352
- * Get bill tracking details for an import task, including retrieval method and processing partner.
1352
+ * Get bill tracking details for an import task, including retrieval method and processing partner. Called by EUM's Hangfire background job (no user context available), hence Internal/Basic auth.
1353
1353
  *
1354
1354
  * @param taskGUID The import task GUID assigned to the partnerFile.
1355
+ * @param datasource The datasource name identifying the EnergyCAP organization.
1355
1356
  */
1356
- apiV202606ImportTaskTaskGUIDGet(taskGUID, extraHttpRequestParams, extraHttpRequestHeaders) {
1357
- return this.apiV202606ImportTaskTaskGUIDGetWithHttpInfo(taskGUID, extraHttpRequestParams, extraHttpRequestHeaders)
1357
+ apiV202606ImportTaskTaskGUIDGet(taskGUID, datasource, extraHttpRequestParams, extraHttpRequestHeaders) {
1358
+ return this.apiV202606ImportTaskTaskGUIDGetWithHttpInfo(taskGUID, datasource, extraHttpRequestParams, extraHttpRequestHeaders)
1358
1359
  .pipe(map((response) => {
1359
1360
  if (response.status === 204) {
1360
1361
  return undefined;
@@ -1365,7 +1366,7 @@ class ImportTaskService {
1365
1366
  }));
1366
1367
  }
1367
1368
  /**
1368
- * Update import task information in partnerFiles table, including kickout count and kickedOut flag
1369
+ * Update import task information in partnerFiles table, including kickout count and kickedOut flag. Called by EUM's kickout resolution API, which runs in a user context (EncJwt).
1369
1370
  *
1370
1371
  * @param taskGUID The GUID of the master task to update (i.e., the task GUID that was originated by the BillCapture import).
1371
1372
  * @param body Import task request with imported and kickout counts
@@ -1420,11 +1421,12 @@ class ImportTaskService {
1420
1421
  return this.http.request(RequestMethod$7.Put, path, requestOptions);
1421
1422
  }
1422
1423
  /**
1423
- * Get bill tracking details for an import task, including retrieval method and processing partner.
1424
+ * Get bill tracking details for an import task, including retrieval method and processing partner. Called by EUM's Hangfire background job (no user context available), hence Internal/Basic auth.
1424
1425
  *
1425
1426
  * @param taskGUID The import task GUID assigned to the partnerFile.
1427
+ * @param datasource The datasource name identifying the EnergyCAP organization.
1426
1428
  */
1427
- apiV202606ImportTaskTaskGUIDGetWithHttpInfo(taskGUID, extraHttpRequestParams, extraHttpRequestHeaders) {
1429
+ apiV202606ImportTaskTaskGUIDGetWithHttpInfo(taskGUID, datasource, extraHttpRequestParams, extraHttpRequestHeaders) {
1428
1430
  const path = this.basePath + '/api/v202606/importTask/${taskGUID}'
1429
1431
  .replace('${' + 'taskGUID' + '}', String(taskGUID));
1430
1432
  let queryParameters;
@@ -1452,6 +1454,9 @@ class ImportTaskService {
1452
1454
  if (taskGUID === null || taskGUID === undefined) {
1453
1455
  throw new Error('Required parameter taskGUID was null or undefined when calling apiV202606ImportTaskTaskGUIDGet.');
1454
1456
  }
1457
+ if (datasource !== undefined) {
1458
+ queryParameters = queryParameters.set('datasource', datasource);
1459
+ }
1455
1460
  // to determine the Accept header
1456
1461
  let produces = [
1457
1462
  'application/json'