@monarkmarkets/api-client 1.3.43 → 1.3.44

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
@@ -4089,12 +4089,6 @@ export declare class LayeredSPV implements ILayeredSPV {
4089
4089
  gpName: string;
4090
4090
  /** Describes the fund structure, such as "3(c)(1)" or "3(c)(7)." This field is not nullable. */
4091
4091
  fundStructure?: LayeredSPVFundStructure;
4092
- /** The total number of shares issued by the Layered SPV. This number may be used to calculate the 10% threshold for triggering a look-through provision. */
4093
- spvOutstandingShareCount?: number;
4094
- /** Describes the size, in number of shares in the Layered SPV, of the position involved in this transaction. */
4095
- lpStakeShareCount?: number;
4096
- /** Describes the portion of the whole SPV represented by the LP stake being sold. This number can be found by dividing: SPVOutstandingShareCount / LPStakeShareCount. This number, represented as a percentage, may be used to determine whether or not the 10% lookthrough provision should be triggered. */
4097
- lpStakePercentage?: number;
4098
4092
  constructor(data?: ILayeredSPV);
4099
4093
  init(_data?: any): void;
4100
4094
  static fromJS(data: any): LayeredSPV;
@@ -4111,12 +4105,6 @@ export interface ILayeredSPV {
4111
4105
  gpName: string;
4112
4106
  /** Describes the fund structure, such as "3(c)(1)" or "3(c)(7)." This field is not nullable. */
4113
4107
  fundStructure?: LayeredSPVFundStructure;
4114
- /** The total number of shares issued by the Layered SPV. This number may be used to calculate the 10% threshold for triggering a look-through provision. */
4115
- spvOutstandingShareCount?: number;
4116
- /** Describes the size, in number of shares in the Layered SPV, of the position involved in this transaction. */
4117
- lpStakeShareCount?: number;
4118
- /** Describes the portion of the whole SPV represented by the LP stake being sold. This number can be found by dividing: SPVOutstandingShareCount / LPStakeShareCount. This number, represented as a percentage, may be used to determine whether or not the 10% lookthrough provision should be triggered. */
4119
- lpStakePercentage?: number;
4120
4108
  }
4121
4109
  /** Represents a public listing on a stock exchange. */
4122
4110
  export declare class Listing implements IListing {
package/dist/Client.js CHANGED
@@ -12360,9 +12360,6 @@ export class LayeredSPV {
12360
12360
  this.carriedInterest = _data["carriedInterest"];
12361
12361
  this.gpName = _data["gpName"];
12362
12362
  this.fundStructure = _data["fundStructure"];
12363
- this.spvOutstandingShareCount = _data["spvOutstandingShareCount"];
12364
- this.lpStakeShareCount = _data["lpStakeShareCount"];
12365
- this.lpStakePercentage = _data["lpStakePercentage"];
12366
12363
  }
12367
12364
  }
12368
12365
  static fromJS(data) {
@@ -12378,9 +12375,6 @@ export class LayeredSPV {
12378
12375
  data["carriedInterest"] = this.carriedInterest;
12379
12376
  data["gpName"] = this.gpName;
12380
12377
  data["fundStructure"] = this.fundStructure;
12381
- data["spvOutstandingShareCount"] = this.spvOutstandingShareCount;
12382
- data["lpStakeShareCount"] = this.lpStakeShareCount;
12383
- data["lpStakePercentage"] = this.lpStakePercentage;
12384
12378
  return data;
12385
12379
  }
12386
12380
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monarkmarkets/api-client",
3
- "version": "1.3.43",
3
+ "version": "1.3.44",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",