From f07a4133e5564ffd9200752eb6736f0ec1f2d7e0 Mon Sep 17 00:00:00 2001 From: Kevin Date: Mon, 16 Jun 2025 16:44:47 -0300 Subject: [PATCH] resolve okr exclusion error --- .../modules/key-result/key-result.provider.ts | 56 ++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/src/core/modules/key-result/key-result.provider.ts b/src/core/modules/key-result/key-result.provider.ts index 835d3dfa..8c5995eb 100644 --- a/src/core/modules/key-result/key-result.provider.ts +++ b/src/core/modules/key-result/key-result.provider.ts @@ -1,6 +1,6 @@ import { Injectable } from '@nestjs/common' import { uniqBy, pickBy, omitBy, identity, isEmpty, maxBy, flatten, keyBy, uniq } from 'lodash' -import { Any, Brackets, DeleteResult, FindConditions, In, Raw } from 'typeorm' +import { Any, Brackets, DeleteResult, EntityManager, FindConditions, In, Raw } from 'typeorm' import { ConfidenceTagAdapter } from '@adapters/confidence-tag/confidence-tag.adapters' import { CONFIDENCE_TAG_THRESHOLDS } from '@adapters/confidence-tag/confidence-tag.constants' @@ -65,6 +65,7 @@ export class KeyResultProvider extends CoreEntityProvider