@manyos/smileconnect-api 1.43.1 → 1.44.0
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.
|
@@ -483,7 +483,7 @@ function getTicketConfigByTicketType(ticketType) {
|
|
|
483
483
|
function getCIData(instanceId) {
|
|
484
484
|
log.debug('Search for CI', instanceId);
|
|
485
485
|
//get only CIs with recon
|
|
486
|
-
const query = `'InstanceId'="${instanceId}" AND 'ReconciliationIdentity' != $NULL$ AND 'ReconciliationIdentity' != "0"`;
|
|
486
|
+
const query = `('InstanceId'="${instanceId}" OR ('ReconciliationIdentity' = "${instanceId}" AND 'DatasetId' = "BMC.ASSET")) AND 'ReconciliationIdentity' != $NULL$ AND 'ReconciliationIdentity' != "0"`;
|
|
487
487
|
const form = CONSTANTS.FORM_CMDB_CI_BASE;
|
|
488
488
|
return utilCache.get(form + ':' + query, function () {
|
|
489
489
|
return new Promise((resolve, reject) => {
|
package/docs/releases.md
CHANGED