ia-common 1.0.1-beta.86 → 1.0.1-beta.87

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
@@ -14,3 +14,4 @@ export * from "./enum/mutual-funds-type.enum";
14
14
  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
+ export * from "./enum/ipo-listing-platform.enum";
package/build/@enum.js CHANGED
@@ -30,3 +30,4 @@ __exportStar(require("./enum/mutual-funds-type.enum"), exports);
30
30
  __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
+ __exportStar(require("./enum/ipo-listing-platform.enum"), exports);
@@ -0,0 +1,5 @@
1
+ export declare enum IPOListingPlatform {
2
+ NSE = "nse",
3
+ BSE = "bse",
4
+ SME = "sme"
5
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IPOListingPlatform = void 0;
4
+ var IPOListingPlatform;
5
+ (function (IPOListingPlatform) {
6
+ IPOListingPlatform["NSE"] = "nse";
7
+ IPOListingPlatform["BSE"] = "bse";
8
+ IPOListingPlatform["SME"] = "sme";
9
+ })(IPOListingPlatform || (exports.IPOListingPlatform = IPOListingPlatform = {}));
@@ -0,0 +1,13 @@
1
+ import { IPOListingPlatform } from "../../@enum";
2
+ import { IIpoEntity } from "../entity/ipo-entity.interface";
3
+ import { IModifyEntity } from "../modify-entity.interface";
4
+ export interface IAddIPOResponse extends IModifyEntity<IIpoEntity> {
5
+ }
6
+ export interface IAddIPORequest {
7
+ companyName: string;
8
+ issueStartDate: number;
9
+ issueEndDate: number;
10
+ priceBand: string;
11
+ listingAt: IPOListingPlatform;
12
+ lotSize: number;
13
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -27,3 +27,4 @@ export * from "./create-client.interface";
27
27
  export * from "./get-user-entities-by-advisor-id-type.interface";
28
28
  export * from "./create-mutual-fund-advice.interface";
29
29
  export * from "./advisor-user-mapping-entity.interface";
30
+ export * from "./add-ipo.interface";
@@ -43,3 +43,4 @@ __exportStar(require("./create-client.interface"), exports);
43
43
  __exportStar(require("./get-user-entities-by-advisor-id-type.interface"), exports);
44
44
  __exportStar(require("./create-mutual-fund-advice.interface"), exports);
45
45
  __exportStar(require("./advisor-user-mapping-entity.interface"), exports);
46
+ __exportStar(require("./add-ipo.interface"), exports);
@@ -0,0 +1,11 @@
1
+ import { IPOListingPlatform } from "../../@enum";
2
+ import { IEntityAuditColumn } from "./entity-audit-column.interface";
3
+ export interface IIpoEntity extends IEntityAuditColumn {
4
+ id: number;
5
+ companyName: string;
6
+ issueStartDate: number;
7
+ issueEndDate: number;
8
+ priceBand: string;
9
+ listingAt: IPOListingPlatform;
10
+ lotSize: number;
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ia-common",
3
- "version": "1.0.1-beta.86",
3
+ "version": "1.0.1-beta.87",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",