@monarkmarkets/api-client 1.3.44 → 1.3.46
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 +4 -0
- package/dist/Client.js +2 -0
- package/package.json +1 -1
package/dist/Client.d.ts
CHANGED
|
@@ -6850,6 +6850,8 @@ export declare class RegisteredFund implements IRegisteredFund {
|
|
|
6850
6850
|
taxReporting?: string | undefined;
|
|
6851
6851
|
/** Optional tax form designation. */
|
|
6852
6852
|
taxForm?: string | undefined;
|
|
6853
|
+
/** Optional minimum account balance requirement. */
|
|
6854
|
+
minimumAccountBalance?: string | undefined;
|
|
6853
6855
|
/** The fund advisor for this registered fund. */
|
|
6854
6856
|
fundManager?: FundManager | undefined;
|
|
6855
6857
|
/** Associated share classes for the fund. */
|
|
@@ -6927,6 +6929,8 @@ export interface IRegisteredFund {
|
|
|
6927
6929
|
taxReporting?: string | undefined;
|
|
6928
6930
|
/** Optional tax form designation. */
|
|
6929
6931
|
taxForm?: string | undefined;
|
|
6932
|
+
/** Optional minimum account balance requirement. */
|
|
6933
|
+
minimumAccountBalance?: string | undefined;
|
|
6930
6934
|
/** The fund advisor for this registered fund. */
|
|
6931
6935
|
fundManager?: FundManager | undefined;
|
|
6932
6936
|
/** Associated share classes for the fund. */
|
package/dist/Client.js
CHANGED
|
@@ -15546,6 +15546,7 @@ export class RegisteredFund {
|
|
|
15546
15546
|
this.nonUSInvestor = _data["nonUSInvestor"];
|
|
15547
15547
|
this.taxReporting = _data["taxReporting"];
|
|
15548
15548
|
this.taxForm = _data["taxForm"];
|
|
15549
|
+
this.minimumAccountBalance = _data["minimumAccountBalance"];
|
|
15549
15550
|
this.fundManager = _data["fundManager"] ? FundManager.fromJS(_data["fundManager"]) : undefined;
|
|
15550
15551
|
if (Array.isArray(_data["shareClasses"])) {
|
|
15551
15552
|
this.shareClasses = [];
|
|
@@ -15603,6 +15604,7 @@ export class RegisteredFund {
|
|
|
15603
15604
|
data["nonUSInvestor"] = this.nonUSInvestor;
|
|
15604
15605
|
data["taxReporting"] = this.taxReporting;
|
|
15605
15606
|
data["taxForm"] = this.taxForm;
|
|
15607
|
+
data["minimumAccountBalance"] = this.minimumAccountBalance;
|
|
15606
15608
|
data["fundManager"] = this.fundManager ? this.fundManager.toJSON() : undefined;
|
|
15607
15609
|
if (Array.isArray(this.shareClasses)) {
|
|
15608
15610
|
data["shareClasses"] = [];
|