@monarkmarkets/api-client 1.3.3 → 1.3.4

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.
Files changed (2) hide show
  1. package/dist/Client.d.ts +20 -20
  2. package/package.json +1 -1
package/dist/Client.d.ts CHANGED
@@ -2275,15 +2275,15 @@ export declare class EvergreenFund implements IEvergreenFund {
2275
2275
  /** Official name of the Evergreen Fund */
2276
2276
  fundName: string | undefined;
2277
2277
  /** Manager of the Evergreen Fund */
2278
- manager: string | undefined;
2278
+ manager?: string | undefined;
2279
2279
  /** Year of inception for the Evergreen Fund */
2280
- inception?: number;
2280
+ inception?: number | undefined;
2281
2281
  /** Deal type focus of the Evergreen Fund */
2282
2282
  dealTypeFocus?: string | undefined;
2283
2283
  /** Strategy focus of the Evergreen Fund */
2284
2284
  strategyFocus?: string | undefined;
2285
2285
  /** Management fee charged by the Evergreen Fund */
2286
- managementFee?: number;
2286
+ managementFee?: number | undefined;
2287
2287
  /** Type of the Evergreen Fund */
2288
2288
  fundType?: string | undefined;
2289
2289
  /** Registration status of the Evergreen Fund */
@@ -2304,15 +2304,15 @@ export interface IEvergreenFund {
2304
2304
  /** Official name of the Evergreen Fund */
2305
2305
  fundName: string | undefined;
2306
2306
  /** Manager of the Evergreen Fund */
2307
- manager: string | undefined;
2307
+ manager?: string | undefined;
2308
2308
  /** Year of inception for the Evergreen Fund */
2309
- inception?: number;
2309
+ inception?: number | undefined;
2310
2310
  /** Deal type focus of the Evergreen Fund */
2311
2311
  dealTypeFocus?: string | undefined;
2312
2312
  /** Strategy focus of the Evergreen Fund */
2313
2313
  strategyFocus?: string | undefined;
2314
2314
  /** Management fee charged by the Evergreen Fund */
2315
- managementFee?: number;
2315
+ managementFee?: number | undefined;
2316
2316
  /** Type of the Evergreen Fund */
2317
2317
  fundType?: string | undefined;
2318
2318
  /** Registration status of the Evergreen Fund */
@@ -2397,9 +2397,9 @@ export declare class EvergreenReturns implements IEvergreenReturns {
2397
2397
  /** Name of the fund */
2398
2398
  fundName: string | undefined;
2399
2399
  /** Returns since inception (as percentage) */
2400
- sinceInception?: number;
2400
+ sinceInception?: number | undefined;
2401
2401
  /** One year returns (as percentage) */
2402
- oneYear?: number;
2402
+ oneYear?: number | undefined;
2403
2403
  constructor(data?: IEvergreenReturns);
2404
2404
  init(_data?: any): void;
2405
2405
  static fromJS(data: any): EvergreenReturns;
@@ -2414,9 +2414,9 @@ export interface IEvergreenReturns {
2414
2414
  /** Name of the fund */
2415
2415
  fundName: string | undefined;
2416
2416
  /** Returns since inception (as percentage) */
2417
- sinceInception?: number;
2417
+ sinceInception?: number | undefined;
2418
2418
  /** One year returns (as percentage) */
2419
- oneYear?: number;
2419
+ oneYear?: number | undefined;
2420
2420
  }
2421
2421
  export declare class EvergreenReturnsApiResponse implements IEvergreenReturnsApiResponse {
2422
2422
  items?: EvergreenReturns[] | undefined;
@@ -2441,15 +2441,15 @@ export declare class EvergreenShareClasses implements IEvergreenShareClasses {
2441
2441
  /** Share class ticker symbol */
2442
2442
  shareClassTicker: string | undefined;
2443
2443
  /** Minimum initial investment size */
2444
- minInvestmentSize?: number;
2444
+ minInvestmentSize?: number | undefined;
2445
2445
  /** Minimum subsequent investment amount */
2446
- minSubsequentInvestment?: number;
2446
+ minSubsequentInvestment?: number | undefined;
2447
2447
  /** Sales load percentage or amount */
2448
- salesLoad?: number;
2448
+ salesLoad?: number | undefined;
2449
2449
  /** Distribution and servicing fee (12b-1 fee) */
2450
- distributionAndServicingFee?: number;
2450
+ distributionAndServicingFee?: number | undefined;
2451
2451
  /** Early repurchase or redemption fee */
2452
- earlyRepurchaseOrRedemptionFee?: number;
2452
+ earlyRepurchaseOrRedemptionFee?: number | undefined;
2453
2453
  /** Status of the share class (e.g., Active, Inactive, Closed) */
2454
2454
  status: string | undefined;
2455
2455
  constructor(data?: IEvergreenShareClasses);
@@ -2468,15 +2468,15 @@ export interface IEvergreenShareClasses {
2468
2468
  /** Share class ticker symbol */
2469
2469
  shareClassTicker: string | undefined;
2470
2470
  /** Minimum initial investment size */
2471
- minInvestmentSize?: number;
2471
+ minInvestmentSize?: number | undefined;
2472
2472
  /** Minimum subsequent investment amount */
2473
- minSubsequentInvestment?: number;
2473
+ minSubsequentInvestment?: number | undefined;
2474
2474
  /** Sales load percentage or amount */
2475
- salesLoad?: number;
2475
+ salesLoad?: number | undefined;
2476
2476
  /** Distribution and servicing fee (12b-1 fee) */
2477
- distributionAndServicingFee?: number;
2477
+ distributionAndServicingFee?: number | undefined;
2478
2478
  /** Early repurchase or redemption fee */
2479
- earlyRepurchaseOrRedemptionFee?: number;
2479
+ earlyRepurchaseOrRedemptionFee?: number | undefined;
2480
2480
  /** Status of the share class (e.g., Active, Inactive, Closed) */
2481
2481
  status: string | undefined;
2482
2482
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monarkmarkets/api-client",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",