ia-common 1.0.1-beta.162 → 1.0.1-beta.164

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
@@ -22,3 +22,4 @@ export * from "./enum/ipo-listing-exchange.enum";
22
22
  export * from "./enum/split-and-bonus-stock-order.enum";
23
23
  export * from "./enum/kafka-topics.enum";
24
24
  export * from "./enum/corporate-actions-status.enum";
25
+ export * from "./enum/buy-back-type.enum";
package/build/@enum.js CHANGED
@@ -38,3 +38,4 @@ __exportStar(require("./enum/ipo-listing-exchange.enum"), exports);
38
38
  __exportStar(require("./enum/split-and-bonus-stock-order.enum"), exports);
39
39
  __exportStar(require("./enum/kafka-topics.enum"), exports);
40
40
  __exportStar(require("./enum/corporate-actions-status.enum"), exports);
41
+ __exportStar(require("./enum/buy-back-type.enum"), exports);
@@ -0,0 +1,4 @@
1
+ export declare enum BuyBackType {
2
+ OFF_MARKET = "off_market",
3
+ ON_MARKET = "on_market"
4
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BuyBackType = void 0;
4
+ var BuyBackType;
5
+ (function (BuyBackType) {
6
+ BuyBackType["OFF_MARKET"] = "off_market";
7
+ BuyBackType["ON_MARKET"] = "on_market";
8
+ })(BuyBackType || (exports.BuyBackType = BuyBackType = {}));
@@ -1,6 +1,8 @@
1
+ import { BuyBackType } from "../../@enum";
1
2
  import { IBaseCorporateActionsData } from "../api";
2
3
  export interface IBuyBackCorporateAction extends IBaseCorporateActionsData {
3
4
  priceRange: string;
4
5
  startDate: number;
5
6
  endDate: number;
7
+ buyBackType: BuyBackType;
6
8
  }
@@ -1,4 +1,4 @@
1
- import { CorporateActionsStatus, CorporateActionsType } from "../@enum";
1
+ import { BuyBackType, CorporateActionsStatus, CorporateActionsType } from "../@enum";
2
2
  import { IBuyBackCorporateAction, ICorporateActionsEntity, ICorporateEntityOmitData } from "../@type";
3
3
  export declare class BuyBackCorporateActionModel implements IBuyBackCorporateAction, ICorporateEntityOmitData {
4
4
  priceRange: string;
@@ -8,6 +8,7 @@ export declare class BuyBackCorporateActionModel implements IBuyBackCorporateAct
8
8
  recordDate: number;
9
9
  type: CorporateActionsType;
10
10
  status: CorporateActionsStatus;
11
+ buyBackType: BuyBackType;
11
12
  id: number;
12
13
  createdOn: Date;
13
14
  updatedOn: Date;
@@ -25,7 +25,7 @@ var RightIssueCorporateActionModel = /** @class */ (function () {
25
25
  price: this.price,
26
26
  startDate: this.startDate,
27
27
  endDate: this.endDate,
28
- rationInWord: this.ratioInWord,
28
+ ratioInWord: this.ratioInWord,
29
29
  }) });
30
30
  return corporateActionEntity;
31
31
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ia-common",
3
- "version": "1.0.1-beta.162",
3
+ "version": "1.0.1-beta.164",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",