ia-common 1.0.1-beta.92 → 1.0.1-beta.93

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 CHANGED
@@ -15,3 +15,4 @@ export * from "./enum/owner-operation-type.enum";
15
15
  export * from "./enum/mutual-fund-advice-duration.enum";
16
16
  export * from "./enum/mutual-fund-advice-type.enum";
17
17
  export * from "./enum/ipo-listing-platform.enum";
18
+ export * from "./enum/ipo-advice-transaction-type.enum";
package/build/@enum.js CHANGED
@@ -31,3 +31,4 @@ __exportStar(require("./enum/owner-operation-type.enum"), exports);
31
31
  __exportStar(require("./enum/mutual-fund-advice-duration.enum"), exports);
32
32
  __exportStar(require("./enum/mutual-fund-advice-type.enum"), exports);
33
33
  __exportStar(require("./enum/ipo-listing-platform.enum"), exports);
34
+ __exportStar(require("./enum/ipo-advice-transaction-type.enum"), exports);
@@ -0,0 +1,4 @@
1
+ export declare enum IpoAdviceTransactionType {
2
+ SUBSCRIBE = "subscribe",
3
+ AVOID = "avoid"
4
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IpoAdviceTransactionType = void 0;
4
+ var IpoAdviceTransactionType;
5
+ (function (IpoAdviceTransactionType) {
6
+ IpoAdviceTransactionType["SUBSCRIBE"] = "subscribe";
7
+ IpoAdviceTransactionType["AVOID"] = "avoid";
8
+ })(IpoAdviceTransactionType || (exports.IpoAdviceTransactionType = IpoAdviceTransactionType = {}));
@@ -0,0 +1,13 @@
1
+ import { IpoAdviceTransactionType } from "../../@enum";
2
+ import { IIpoAdviceEntity } from "../entity/ipo-advice-entity.interface";
3
+ import { IModifyEntity } from "../modify-entity.interface";
4
+ import { IFiles } from "./create-bank-details.interface";
5
+ export interface ICreateIpoAdviceRequest {
6
+ transactionType: IpoAdviceTransactionType;
7
+ noteDocument?: string;
8
+ videoDocument?: string;
9
+ voiceDocument?: string;
10
+ files: IFiles[];
11
+ }
12
+ export interface ICreateIpoAdviceResponse extends IModifyEntity<IIpoAdviceEntity> {
13
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -29,3 +29,4 @@ export * from "./create-mutual-fund-advice.interface";
29
29
  export * from "./advisor-user-mapping-entity.interface";
30
30
  export * from "./add-ipo.interface";
31
31
  export * from "./get-ipo-by-issue-end-date.interface";
32
+ export * from "./create-ipo-advice.interface";
@@ -45,3 +45,4 @@ __exportStar(require("./create-mutual-fund-advice.interface"), exports);
45
45
  __exportStar(require("./advisor-user-mapping-entity.interface"), exports);
46
46
  __exportStar(require("./add-ipo.interface"), exports);
47
47
  __exportStar(require("./get-ipo-by-issue-end-date.interface"), exports);
48
+ __exportStar(require("./create-ipo-advice.interface"), exports);
@@ -0,0 +1,15 @@
1
+ import { IPOListingPlatform, IpoAdviceTransactionType } from "../../@enum";
2
+ import { IEntityAuditColumn } from "./entity-audit-column.interface";
3
+ export interface IIpoAdviceEntity extends IEntityAuditColumn {
4
+ id: number;
5
+ companyName: string;
6
+ issueStartDate: number;
7
+ issueEndDate: number;
8
+ priceBand: string;
9
+ listingAt: IPOListingPlatform;
10
+ lotSize: number;
11
+ transactionType: IpoAdviceTransactionType;
12
+ noteDocumentUrl: string | null;
13
+ videoUrl: string | null;
14
+ voiceUrl: string | null;
15
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -4,7 +4,7 @@ export interface IMutualFundsEntity extends IEntityAuditColumn {
4
4
  id: number;
5
5
  schemeName: string;
6
6
  risk: string | null;
7
- navRegular: number;
7
+ navRegular: number | null;
8
8
  navDirect: number | null;
9
9
  oneYearReturnRegular: number | null;
10
10
  oneYearReturnDirect: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ia-common",
3
- "version": "1.0.1-beta.92",
3
+ "version": "1.0.1-beta.93",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",