@monarkmarkets/api-client 1.3.16 → 1.3.17

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
@@ -1908,7 +1908,9 @@ export interface ICreateIndicationOfInterest {
1908
1908
  /** CreateIndicationOfInterestV2 represents the v2 request to create a generic IOI supporting multiple asset types. */
1909
1909
  export declare class CreateIndicationOfInterestV2 implements ICreateIndicationOfInterestV2 {
1910
1910
  /** Represents the unique ID, provided by Monark, associated with the Investor submitting an IOI, investing in an SPV, or taking any action in the secondary market. */
1911
- investorId?: string;
1911
+ investorId?: string | undefined;
1912
+ /** Represents the unique ID, provided by Monark, associated with the Financial Advisor submitting an IOI on behalf of their clients. */
1913
+ advisorId?: string | undefined;
1912
1914
  /** The unique ID of the target asset (company, fund, etc.) that the IoI request is for. */
1913
1915
  targetId?: string;
1914
1916
  /** The asset type of the target being invested in (PreIPOCompany, PrivateCompany, etc.) */
@@ -1927,7 +1929,9 @@ export declare class CreateIndicationOfInterestV2 implements ICreateIndicationOf
1927
1929
  /** CreateIndicationOfInterestV2 represents the v2 request to create a generic IOI supporting multiple asset types. */
1928
1930
  export interface ICreateIndicationOfInterestV2 {
1929
1931
  /** Represents the unique ID, provided by Monark, associated with the Investor submitting an IOI, investing in an SPV, or taking any action in the secondary market. */
1930
- investorId?: string;
1932
+ investorId?: string | undefined;
1933
+ /** Represents the unique ID, provided by Monark, associated with the Financial Advisor submitting an IOI on behalf of their clients. */
1934
+ advisorId?: string | undefined;
1931
1935
  /** The unique ID of the target asset (company, fund, etc.) that the IoI request is for. */
1932
1936
  targetId?: string;
1933
1937
  /** The asset type of the target being invested in (PreIPOCompany, PrivateCompany, etc.) */
@@ -3154,7 +3158,9 @@ export declare class IndicationOfInterestV2 implements IIndicationOfInterestV2 {
3154
3158
  /** Unique ID associated with an IOI. */
3155
3159
  id?: string;
3156
3160
  /** Represents the unique ID, provided by Monark, associated with the Investor submitting an IOI, investing in an SPV, or taking any action in the secondary market. */
3157
- investorId?: string;
3161
+ investorId?: string | undefined;
3162
+ /** Represents the unique ID, provided by Monark, associated with the Financial Advisor submitting an IOI on behalf of their clients. */
3163
+ advisorId?: string | undefined;
3158
3164
  /** The unique ID of the target asset (company, fund, etc.) that the IoI request is for. */
3159
3165
  targetId?: string;
3160
3166
  /** The asset type of the target being invested in (PreIPOCompany, PrivateCompany, etc.) */
@@ -3187,7 +3193,9 @@ export interface IIndicationOfInterestV2 {
3187
3193
  /** Unique ID associated with an IOI. */
3188
3194
  id?: string;
3189
3195
  /** Represents the unique ID, provided by Monark, associated with the Investor submitting an IOI, investing in an SPV, or taking any action in the secondary market. */
3190
- investorId?: string;
3196
+ investorId?: string | undefined;
3197
+ /** Represents the unique ID, provided by Monark, associated with the Financial Advisor submitting an IOI on behalf of their clients. */
3198
+ advisorId?: string | undefined;
3191
3199
  /** The unique ID of the target asset (company, fund, etc.) that the IoI request is for. */
3192
3200
  targetId?: string;
3193
3201
  /** The asset type of the target being invested in (PreIPOCompany, PrivateCompany, etc.) */
package/dist/Client.js CHANGED
@@ -9021,6 +9021,7 @@ export class CreateIndicationOfInterestV2 {
9021
9021
  init(_data) {
9022
9022
  if (_data) {
9023
9023
  this.investorId = _data["investorId"];
9024
+ this.advisorId = _data["advisorId"];
9024
9025
  this.targetId = _data["targetId"];
9025
9026
  this.targetAssetType = _data["targetAssetType"];
9026
9027
  this.numberOfClients = _data["numberOfClients"];
@@ -9037,6 +9038,7 @@ export class CreateIndicationOfInterestV2 {
9037
9038
  toJSON(data) {
9038
9039
  data = typeof data === 'object' ? data : {};
9039
9040
  data["investorId"] = this.investorId;
9041
+ data["advisorId"] = this.advisorId;
9040
9042
  data["targetId"] = this.targetId;
9041
9043
  data["targetAssetType"] = this.targetAssetType;
9042
9044
  data["numberOfClients"] = this.numberOfClients;
@@ -10615,6 +10617,7 @@ export class IndicationOfInterestV2 {
10615
10617
  if (_data) {
10616
10618
  this.id = _data["id"];
10617
10619
  this.investorId = _data["investorId"];
10620
+ this.advisorId = _data["advisorId"];
10618
10621
  this.targetId = _data["targetId"];
10619
10622
  this.targetAssetType = _data["targetAssetType"];
10620
10623
  this.numberOfClients = _data["numberOfClients"];
@@ -10638,6 +10641,7 @@ export class IndicationOfInterestV2 {
10638
10641
  data = typeof data === 'object' ? data : {};
10639
10642
  data["id"] = this.id;
10640
10643
  data["investorId"] = this.investorId;
10644
+ data["advisorId"] = this.advisorId;
10641
10645
  data["targetId"] = this.targetId;
10642
10646
  data["targetAssetType"] = this.targetAssetType;
10643
10647
  data["numberOfClients"] = this.numberOfClients;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monarkmarkets/api-client",
3
- "version": "1.3.16",
3
+ "version": "1.3.17",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",