ia-common 1.0.1-beta.188 → 1.0.1-beta.189

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
@@ -26,3 +26,4 @@ export * from "./enum/buy-back-type.enum";
26
26
  export * from "./enum/nfo-advice-transaction-type.enum";
27
27
  export * from "./enum/advisor-user-mapping-type.enum";
28
28
  export * from "./enum/mutual-fund-status.enum";
29
+ export * from "./enum/nfo-advice-status.enum";
package/build/@enum.js CHANGED
@@ -42,3 +42,4 @@ __exportStar(require("./enum/buy-back-type.enum"), exports);
42
42
  __exportStar(require("./enum/nfo-advice-transaction-type.enum"), exports);
43
43
  __exportStar(require("./enum/advisor-user-mapping-type.enum"), exports);
44
44
  __exportStar(require("./enum/mutual-fund-status.enum"), exports);
45
+ __exportStar(require("./enum/nfo-advice-status.enum"), exports);
@@ -0,0 +1,6 @@
1
+ export declare enum NFOAdviceStatus {
2
+ IN_REVIEW = "in_review",
3
+ ACTIVE = "active",
4
+ REJECTED = "rejected",
5
+ EXPIRED = "expired"
6
+ }
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.NFOAdviceStatus = void 0;
4
+ var NFOAdviceStatus;
5
+ (function (NFOAdviceStatus) {
6
+ NFOAdviceStatus["IN_REVIEW"] = "in_review";
7
+ NFOAdviceStatus["ACTIVE"] = "active";
8
+ NFOAdviceStatus["REJECTED"] = "rejected";
9
+ NFOAdviceStatus["EXPIRED"] = "expired";
10
+ })(NFOAdviceStatus || (exports.NFOAdviceStatus = NFOAdviceStatus = {}));
@@ -1,4 +1,4 @@
1
- import { MutualFundAdviceDuration, NFOAdviceTransactionType } from "../../@enum";
1
+ import { MutualFundAdviceDuration, NFOAdviceStatus, NFOAdviceTransactionType } from "../../@enum";
2
2
  import { IEntityAuditColumn } from "./entity-audit-column.interface";
3
3
  export interface INFOAdviceEntity extends IEntityAuditColumn {
4
4
  id: number;
@@ -13,4 +13,5 @@ export interface INFOAdviceEntity extends IEntityAuditColumn {
13
13
  noteDocumentUrl: string | null;
14
14
  videoUrl: string | null;
15
15
  voiceUrl: string | null;
16
+ status: NFOAdviceStatus;
16
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ia-common",
3
- "version": "1.0.1-beta.188",
3
+ "version": "1.0.1-beta.189",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",