ia-common 1.0.1-beta.48 → 1.0.1-beta.49
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.
- package/build/@enum.d.ts +2 -0
- package/build/@enum.js +2 -0
- package/build/enum/mutual-funds-risk.enum.d.ts +7 -0
- package/build/enum/mutual-funds-risk.enum.js +11 -0
- package/build/enum/mutual-funds-type.enum.d.ts +7 -0
- package/build/enum/mutual-funds-type.enum.js +11 -0
- package/build/interface/api/add-mutual-funds.interface.d.ts +8 -0
- package/build/interface/api/add-mutual-funds.interface.js +2 -0
- package/build/interface/entity/index.d.ts +1 -0
- package/build/interface/entity/index.js +1 -0
- package/build/interface/entity/mutual-funds-entity.interface.d.ts +17 -0
- package/build/interface/entity/mutual-funds-entity.interface.js +2 -0
- package/package.json +1 -1
package/build/@enum.d.ts
CHANGED
|
@@ -9,3 +9,5 @@ export * from "./enum/advice-status.enum";
|
|
|
9
9
|
export * from "./enum/advice-type.enum";
|
|
10
10
|
export * from "./enum/investment-duration-type.enum";
|
|
11
11
|
export * from "./enum/transaction-type.enum";
|
|
12
|
+
export * from "./enum/mutual-funds-risk.enum";
|
|
13
|
+
export * from "./enum/mutual-funds-type.enum";
|
package/build/@enum.js
CHANGED
|
@@ -25,3 +25,5 @@ __exportStar(require("./enum/advice-status.enum"), exports);
|
|
|
25
25
|
__exportStar(require("./enum/advice-type.enum"), exports);
|
|
26
26
|
__exportStar(require("./enum/investment-duration-type.enum"), exports);
|
|
27
27
|
__exportStar(require("./enum/transaction-type.enum"), exports);
|
|
28
|
+
__exportStar(require("./enum/mutual-funds-risk.enum"), exports);
|
|
29
|
+
__exportStar(require("./enum/mutual-funds-type.enum"), exports);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MutualFundsRisk = void 0;
|
|
4
|
+
var MutualFundsRisk;
|
|
5
|
+
(function (MutualFundsRisk) {
|
|
6
|
+
MutualFundsRisk["VERY_HIGH"] = "very_high";
|
|
7
|
+
MutualFundsRisk["HIGH"] = "high";
|
|
8
|
+
MutualFundsRisk["MODERATE"] = "moderate";
|
|
9
|
+
MutualFundsRisk["LOW"] = "low";
|
|
10
|
+
MutualFundsRisk["VERY_LOW"] = "very_low";
|
|
11
|
+
})(MutualFundsRisk || (exports.MutualFundsRisk = MutualFundsRisk = {}));
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MutualFundsType = void 0;
|
|
4
|
+
var MutualFundsType;
|
|
5
|
+
(function (MutualFundsType) {
|
|
6
|
+
MutualFundsType["EQUITY"] = "equity";
|
|
7
|
+
MutualFundsType["DEBT"] = "debt";
|
|
8
|
+
MutualFundsType["HYBRID"] = "hybrid";
|
|
9
|
+
MutualFundsType["SOLUTION_ORIENTED"] = "solutionOriented";
|
|
10
|
+
MutualFundsType["OTHER"] = "other";
|
|
11
|
+
})(MutualFundsType || (exports.MutualFundsType = MutualFundsType = {}));
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { MutualFundsType } from "../../@enum";
|
|
2
|
+
import { IModifyEntity, IMutualFundsEntity, IUploadedMulterFile } from "../../@type";
|
|
3
|
+
export interface IAddMutualFundsResponse extends IModifyEntity<IMutualFundsEntity> {
|
|
4
|
+
}
|
|
5
|
+
export interface IAddMutualFundsRequest {
|
|
6
|
+
mutualFundsType: MutualFundsType;
|
|
7
|
+
mutualFundsFile: IUploadedMulterFile;
|
|
8
|
+
}
|
|
@@ -22,3 +22,4 @@ __exportStar(require("./bank-details-entity.interface"), exports);
|
|
|
22
22
|
__exportStar(require("./pricing-plan-entity.interface"), exports);
|
|
23
23
|
__exportStar(require("./subscription-entity.interface"), exports);
|
|
24
24
|
__exportStar(require("./advice-entity.interface"), exports);
|
|
25
|
+
__exportStar(require("./mutual-funds-entity.interface"), exports);
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { MutualFundsType } from "../../@enum";
|
|
2
|
+
import { IEntityAuditColumn } from "./entity-audit-column.interface";
|
|
3
|
+
export interface IMutualFundsEntity extends IEntityAuditColumn {
|
|
4
|
+
id: number;
|
|
5
|
+
schemeName: string;
|
|
6
|
+
risk: string | null;
|
|
7
|
+
navRegular: number;
|
|
8
|
+
navDirect: number;
|
|
9
|
+
oneYearReturnRegular: number | null;
|
|
10
|
+
oneYearReturnDirect: number | null;
|
|
11
|
+
threeYearReturnRegular: number | null;
|
|
12
|
+
threeYearReturnDirect: number | null;
|
|
13
|
+
fiveYearReturnRegular: number | null;
|
|
14
|
+
fiveYearReturnDirect: number | null;
|
|
15
|
+
dailyAUM: number;
|
|
16
|
+
type: MutualFundsType;
|
|
17
|
+
}
|