@monarkmarkets/api-client 1.1.102 → 1.1.104

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/dist/Client.d.ts CHANGED
@@ -820,8 +820,6 @@ export declare class CreateInvestorSubscription implements ICreateInvestorSubscr
820
820
  investorId: string;
821
821
  /** Describes the amount, in dollars, an Investor intends to invest into an SPV. */
822
822
  amountReservedDollars: number;
823
- /** Describes how many underlying shares in the pre-IPO company are associated with this InvestorSubscription. This must be a whole number of shares. */
824
- amountReservedShares: number;
825
823
  constructor(data?: ICreateInvestorSubscription);
826
824
  init(_data?: any): void;
827
825
  static fromJS(data: any): CreateInvestorSubscription;
@@ -834,8 +832,6 @@ export interface ICreateInvestorSubscription {
834
832
  investorId: string;
835
833
  /** Describes the amount, in dollars, an Investor intends to invest into an SPV. */
836
834
  amountReservedDollars: number;
837
- /** Describes how many underlying shares in the pre-IPO company are associated with this InvestorSubscription. This must be a whole number of shares. */
838
- amountReservedShares: number;
839
835
  }
840
836
  /** Create the Questionnaire answer. */
841
837
  export declare class CreateQuestionnaireAnswer implements ICreateQuestionnaireAnswer {
@@ -4088,8 +4084,6 @@ export declare class UpdateInvestorSubscription implements IUpdateInvestorSubscr
4088
4084
  investorId: string;
4089
4085
  /** Describes the amount, in dollars, an Investor intends to invest into an SPV. */
4090
4086
  amountReservedDollars: number;
4091
- /** Describes how many underlying shares in the pre-IPO company are associated with this InvestorSubscription. This must be a whole number of shares. */
4092
- amountReservedShares: number;
4093
4087
  /** ID of the InvestorSubscription to edit. */
4094
4088
  id: string;
4095
4089
  constructor(data?: IUpdateInvestorSubscription);
@@ -4104,8 +4098,6 @@ export interface IUpdateInvestorSubscription {
4104
4098
  investorId: string;
4105
4099
  /** Describes the amount, in dollars, an Investor intends to invest into an SPV. */
4106
4100
  amountReservedDollars: number;
4107
- /** Describes how many underlying shares in the pre-IPO company are associated with this InvestorSubscription. This must be a whole number of shares. */
4108
- amountReservedShares: number;
4109
4101
  /** ID of the InvestorSubscription to edit. */
4110
4102
  id: string;
4111
4103
  }
package/dist/Client.js CHANGED
@@ -4769,7 +4769,6 @@ export class CreateInvestorSubscription {
4769
4769
  this.preIPOCompanySPVId = _data["preIPOCompanySPVId"];
4770
4770
  this.investorId = _data["investorId"];
4771
4771
  this.amountReservedDollars = _data["amountReservedDollars"];
4772
- this.amountReservedShares = _data["amountReservedShares"];
4773
4772
  }
4774
4773
  }
4775
4774
  static fromJS(data) {
@@ -4783,7 +4782,6 @@ export class CreateInvestorSubscription {
4783
4782
  data["preIPOCompanySPVId"] = this.preIPOCompanySPVId;
4784
4783
  data["investorId"] = this.investorId;
4785
4784
  data["amountReservedDollars"] = this.amountReservedDollars;
4786
- data["amountReservedShares"] = this.amountReservedShares;
4787
4785
  return data;
4788
4786
  }
4789
4787
  }
@@ -8087,7 +8085,6 @@ export class UpdateInvestorSubscription {
8087
8085
  this.preIPOCompanySPVId = _data["preIPOCompanySPVId"];
8088
8086
  this.investorId = _data["investorId"];
8089
8087
  this.amountReservedDollars = _data["amountReservedDollars"];
8090
- this.amountReservedShares = _data["amountReservedShares"];
8091
8088
  this.id = _data["id"];
8092
8089
  }
8093
8090
  }
@@ -8102,7 +8099,6 @@ export class UpdateInvestorSubscription {
8102
8099
  data["preIPOCompanySPVId"] = this.preIPOCompanySPVId;
8103
8100
  data["investorId"] = this.investorId;
8104
8101
  data["amountReservedDollars"] = this.amountReservedDollars;
8105
- data["amountReservedShares"] = this.amountReservedShares;
8106
8102
  data["id"] = this.id;
8107
8103
  return data;
8108
8104
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monarkmarkets/api-client",
3
- "version": "1.1.102",
3
+ "version": "1.1.104",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",