@monarkmarkets/api-client 1.3.5 → 1.3.6
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 +3 -3
package/dist/Client.d.ts
CHANGED
|
@@ -6136,6 +6136,8 @@ export declare class RegisteredFund implements IRegisteredFund {
|
|
|
6136
6136
|
id: string;
|
|
6137
6137
|
/** ID of underlying fund advisor */
|
|
6138
6138
|
fundAdvisorId?: string | undefined;
|
|
6139
|
+
/** ID of the Partner associated with a registered fund. */
|
|
6140
|
+
partnerId?: string | undefined;
|
|
6139
6141
|
/** Official name of Registered Fund */
|
|
6140
6142
|
name: string | undefined;
|
|
6141
6143
|
/** Fund's website */
|
|
@@ -6203,6 +6205,8 @@ export interface IRegisteredFund {
|
|
|
6203
6205
|
id: string;
|
|
6204
6206
|
/** ID of underlying fund advisor */
|
|
6205
6207
|
fundAdvisorId?: string | undefined;
|
|
6208
|
+
/** ID of the Partner associated with a registered fund. */
|
|
6209
|
+
partnerId?: string | undefined;
|
|
6206
6210
|
/** Official name of Registered Fund */
|
|
6207
6211
|
name: string | undefined;
|
|
6208
6212
|
/** Fund's website */
|
package/dist/Client.js
CHANGED
|
@@ -13309,6 +13309,7 @@ export class RegisteredFund {
|
|
|
13309
13309
|
if (_data) {
|
|
13310
13310
|
this.id = _data["id"];
|
|
13311
13311
|
this.fundAdvisorId = _data["fundAdvisorId"];
|
|
13312
|
+
this.partnerId = _data["partnerId"];
|
|
13312
13313
|
this.name = _data["name"];
|
|
13313
13314
|
this.website = _data["website"];
|
|
13314
13315
|
this.symbol = _data["symbol"];
|
|
@@ -13361,6 +13362,7 @@ export class RegisteredFund {
|
|
|
13361
13362
|
data = typeof data === 'object' ? data : {};
|
|
13362
13363
|
data["id"] = this.id;
|
|
13363
13364
|
data["fundAdvisorId"] = this.fundAdvisorId;
|
|
13365
|
+
data["partnerId"] = this.partnerId;
|
|
13364
13366
|
data["name"] = this.name;
|
|
13365
13367
|
data["website"] = this.website;
|
|
13366
13368
|
data["symbol"] = this.symbol;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monarkmarkets/api-client",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.6",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"nswag": "npm run update-version && nswag run nswag.json"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"typescript": "
|
|
27
|
+
"typescript": "5.9.3"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"nswag": "14.
|
|
30
|
+
"nswag": "14.6.1"
|
|
31
31
|
}
|
|
32
32
|
}
|