ia-common 1.1.1-beta.24 → 1.1.1-beta.25
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.
|
@@ -3,7 +3,7 @@ export type IMutualFundAdviceDtoExclude = "schemeName" | "navRegular" | "navDire
|
|
|
3
3
|
export interface IMutualFundAdviceDtoInclude {
|
|
4
4
|
mutualFundId: number;
|
|
5
5
|
}
|
|
6
|
-
export interface
|
|
6
|
+
export interface IMutualFundAdviceCreateDto extends IEntityCreateDto<Omit<EnumEntityType<EntityEnum.MUTUAL_FUND_ADVICE>, IMutualFundAdviceDtoExclude>>, IMutualFundAdviceDtoInclude {
|
|
7
7
|
noteDocument?: string;
|
|
8
8
|
videoDocument?: string;
|
|
9
9
|
voiceDocument?: string;
|
|
@@ -113,7 +113,6 @@ export declare function getPropertyFilterByPermissionFn<T extends EntityEnum>(pe
|
|
|
113
113
|
* - For objects, duplicates are based on **reference equality**, not deep equality.
|
|
114
114
|
*/
|
|
115
115
|
export declare function getDuplicates<T>(arr: T[]): T[];
|
|
116
|
-
export declare function getConsoleLog<T extends Record<string, any>>(entity: T, propertyName: keyof T): void;
|
|
117
116
|
/**
|
|
118
117
|
* Derives permission group from permission name.
|
|
119
118
|
*
|
|
@@ -9,7 +9,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
9
9
|
});
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.derivePermissionGroup = exports.
|
|
12
|
+
exports.derivePermissionGroup = exports.getDuplicates = exports.getPropertyFilterByPermissionFn = exports.groupByOneToOneFunction = exports.deepMerge = exports.toDateFromEpoch = exports.groupByFunction = exports.transformDate = exports.getStringValues = exports.getTodayISTEpoch = void 0;
|
|
13
13
|
const _enum_1 = require("../@enum");
|
|
14
14
|
const _type_1 = require("../@type");
|
|
15
15
|
const model_1 = require("../model");
|
|
@@ -224,10 +224,6 @@ function getDuplicates(arr) {
|
|
|
224
224
|
return duplicates;
|
|
225
225
|
}
|
|
226
226
|
exports.getDuplicates = getDuplicates;
|
|
227
|
-
function getConsoleLog(entity, propertyName) {
|
|
228
|
-
console.log(propertyName, entity[propertyName]);
|
|
229
|
-
}
|
|
230
|
-
exports.getConsoleLog = getConsoleLog;
|
|
231
227
|
/**
|
|
232
228
|
* Derives permission group from permission name.
|
|
233
229
|
*
|