ia-common 1.0.1-beta.197 → 1.0.1-beta.199
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.
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { NFOAdviceTransactionType } from "../../@enum";
|
|
2
2
|
import { INFOAdviceEntity } from "../entity";
|
|
3
3
|
import { IFiles } from "./create-bank-details.interface";
|
|
4
4
|
export interface ICreateNFOAdviceRequest {
|
|
5
5
|
transactionType: NFOAdviceTransactionType;
|
|
6
|
-
investmentDuration: MutualFundAdviceDuration;
|
|
7
|
-
startDate: number;
|
|
8
|
-
endDate: number;
|
|
9
6
|
rationale?: string;
|
|
10
7
|
noteDocument?: string;
|
|
11
8
|
videoDocument?: string;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { NFOAdviceStatus, NFOAdviceTransactionType } from "../../@enum";
|
|
2
|
+
import { INFOAdviceEntity } from "../entity";
|
|
2
3
|
import { IFiles } from "./create-bank-details.interface";
|
|
3
|
-
export interface
|
|
4
|
+
export interface IUpdateNFOAdviceRequest {
|
|
4
5
|
transactionType?: NFOAdviceTransactionType;
|
|
5
|
-
investmentDuration?: MutualFundAdviceDuration;
|
|
6
|
-
startDate?: number;
|
|
7
|
-
endDate?: number;
|
|
8
6
|
status: NFOAdviceStatus;
|
|
9
7
|
rationale?: string;
|
|
10
8
|
noteDocument?: string;
|
|
@@ -12,3 +10,5 @@ export interface IUpdateNFOAdviceDto {
|
|
|
12
10
|
voiceDocument?: string;
|
|
13
11
|
files: IFiles[];
|
|
14
12
|
}
|
|
13
|
+
export interface IUpdateNFOAdviceResponse extends INFOAdviceEntity {
|
|
14
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { NFOAdviceStatus, NFOAdviceTransactionType } from "../../@enum";
|
|
2
2
|
import { IEntityAuditColumn } from "./entity-audit-column.interface";
|
|
3
3
|
export interface INFOAdviceEntity extends IEntityAuditColumn {
|
|
4
4
|
id: number;
|
|
@@ -6,9 +6,6 @@ export interface INFOAdviceEntity extends IEntityAuditColumn {
|
|
|
6
6
|
mutualFundName: string;
|
|
7
7
|
advisorOrgId: number;
|
|
8
8
|
transactionType: NFOAdviceTransactionType;
|
|
9
|
-
investmentDuration: MutualFundAdviceDuration;
|
|
10
|
-
startDate: number;
|
|
11
|
-
endDate: number;
|
|
12
9
|
rationale: string | null;
|
|
13
10
|
noteDocumentUrl: string | null;
|
|
14
11
|
videoUrl: string | null;
|