@r2wa-org/eden 0.0.57 → 0.0.59
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/src/asset/user/dto.schemas.d.ts +9 -83
- package/dist/src/asset/user/router.d.ts +60 -66
- package/dist/src/asset/user/service.d.ts +41 -41
- package/dist/src/asset-price/errors/index.d.ts +1 -0
- package/dist/src/asset-price/errors/locales/zh.d.ts +1 -0
- package/dist/src/asset-price/user/dto.schemas.d.ts +7 -3
- package/dist/src/asset-price/user/router.d.ts +43 -2
- package/dist/src/asset-price/user/service.d.ts +13 -1
- package/dist/src/index.d.ts +381 -179
- package/dist/src/ledger-account/user/dto.schemas.d.ts +39 -193
- package/dist/src/ledger-account/user/router.d.ts +43 -42
- package/dist/src/ledger-account/user/service.d.ts +41 -41
- package/dist/src/ledger-account-type/user/router.d.ts +48 -0
- package/dist/src/ledger-account-type/user/service.d.ts +25 -0
- package/dist/src/portfolio/index.d.ts +2 -0
- package/dist/src/portfolio/internal/index.d.ts +1 -0
- package/dist/src/portfolio/internal/service.d.ts +5 -0
- package/dist/src/portfolio/user/dto.schemas.d.ts +352 -0
- package/dist/src/portfolio/user/index.d.ts +3 -0
- package/dist/src/portfolio/user/router.d.ts +659 -0
- package/dist/src/portfolio/user/service.d.ts +143 -0
- package/dist/src/wallet/user/dto.schemas.d.ts +4 -66
- package/dist/src/wallet/user/router.d.ts +1 -62
- package/dist/src/wallet/user/service.d.ts +3 -39
- package/package.json +1 -1
|
@@ -0,0 +1,352 @@
|
|
|
1
|
+
export declare const portfolioOverviewQuerySchema: import("@sinclair/typebox").TObject<{
|
|
2
|
+
quoteAsset: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
3
|
+
}>;
|
|
4
|
+
export type PortfolioOverviewQueryType = typeof portfolioOverviewQuerySchema.static;
|
|
5
|
+
export declare const portfolioOverviewWalletViewItemSchema: import("@sinclair/typebox").TObject<{
|
|
6
|
+
id: import("@sinclair/typebox").TString;
|
|
7
|
+
name: import("@sinclair/typebox").TString;
|
|
8
|
+
isActive: import("@sinclair/typebox").TBoolean;
|
|
9
|
+
walletTypeId: import("@sinclair/typebox").TString;
|
|
10
|
+
isPrimary: import("@sinclair/typebox").TBoolean;
|
|
11
|
+
}>;
|
|
12
|
+
export type PortfolioOverviewWalletViewItemType = typeof portfolioOverviewWalletViewItemSchema.static;
|
|
13
|
+
export declare const portfolioOverviewAccountTypeViewItemSchema: import("@sinclair/typebox").TObject<{
|
|
14
|
+
key: import("@sinclair/typebox").TString;
|
|
15
|
+
id: import("@sinclair/typebox").TString;
|
|
16
|
+
name: import("@sinclair/typebox").TString;
|
|
17
|
+
accountCount: import("@sinclair/typebox").TNumber;
|
|
18
|
+
totalValuation: import("@sinclair/typebox").TString;
|
|
19
|
+
}>;
|
|
20
|
+
export type PortfolioOverviewAccountTypeViewItemType = typeof portfolioOverviewAccountTypeViewItemSchema.static;
|
|
21
|
+
export declare const portfolioOverviewAssetViewItemSchema: import("@sinclair/typebox").TObject<{
|
|
22
|
+
id: import("@sinclair/typebox").TString;
|
|
23
|
+
name: import("@sinclair/typebox").TString;
|
|
24
|
+
code: import("@sinclair/typebox").TString;
|
|
25
|
+
iconUrl: import("@sinclair/typebox").TString;
|
|
26
|
+
totalValuation: import("@sinclair/typebox").TString;
|
|
27
|
+
quantity: import("@sinclair/typebox").TString;
|
|
28
|
+
}>;
|
|
29
|
+
export type PortfolioOverviewAssetViewItemType = typeof portfolioOverviewAssetViewItemSchema.static;
|
|
30
|
+
export declare const portfolioOverviewResponseSchema: import("@sinclair/typebox").TObject<{
|
|
31
|
+
quoteAsset: import("@sinclair/typebox").TString;
|
|
32
|
+
overview: import("@sinclair/typebox").TObject<{
|
|
33
|
+
totalValuation: import("@sinclair/typebox").TString;
|
|
34
|
+
}>;
|
|
35
|
+
walletView: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
36
|
+
id: import("@sinclair/typebox").TString;
|
|
37
|
+
name: import("@sinclair/typebox").TString;
|
|
38
|
+
isActive: import("@sinclair/typebox").TBoolean;
|
|
39
|
+
walletTypeId: import("@sinclair/typebox").TString;
|
|
40
|
+
isPrimary: import("@sinclair/typebox").TBoolean;
|
|
41
|
+
}>>;
|
|
42
|
+
accountTypeView: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
43
|
+
key: import("@sinclair/typebox").TString;
|
|
44
|
+
id: import("@sinclair/typebox").TString;
|
|
45
|
+
name: import("@sinclair/typebox").TString;
|
|
46
|
+
accountCount: import("@sinclair/typebox").TNumber;
|
|
47
|
+
totalValuation: import("@sinclair/typebox").TString;
|
|
48
|
+
}>>;
|
|
49
|
+
assetView: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
50
|
+
id: import("@sinclair/typebox").TString;
|
|
51
|
+
name: import("@sinclair/typebox").TString;
|
|
52
|
+
code: import("@sinclair/typebox").TString;
|
|
53
|
+
iconUrl: import("@sinclair/typebox").TString;
|
|
54
|
+
totalValuation: import("@sinclair/typebox").TString;
|
|
55
|
+
quantity: import("@sinclair/typebox").TString;
|
|
56
|
+
}>>;
|
|
57
|
+
}>;
|
|
58
|
+
export type PortfolioOverviewResponseType = typeof portfolioOverviewResponseSchema.static;
|
|
59
|
+
export declare const portfolioAccountTypeOverviewParamsSchema: import("@sinclair/typebox").TObject<{
|
|
60
|
+
accountTypeKey: import("@sinclair/typebox").TString;
|
|
61
|
+
}>;
|
|
62
|
+
export type PortfolioAccountTypeOverviewParamsType = typeof portfolioAccountTypeOverviewParamsSchema.static;
|
|
63
|
+
export declare const portfolioAssetOverviewParamsSchema: import("@sinclair/typebox").TObject<{
|
|
64
|
+
assetId: import("@sinclair/typebox").TString;
|
|
65
|
+
}>;
|
|
66
|
+
export type PortfolioAssetOverviewParamsType = typeof portfolioAssetOverviewParamsSchema.static;
|
|
67
|
+
export declare const portfolioAssetOverviewQuerySchema: import("@sinclair/typebox").TObject<{
|
|
68
|
+
quoteAsset: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
69
|
+
days: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TInteger>;
|
|
70
|
+
accountTypeKey: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
71
|
+
}>;
|
|
72
|
+
export type PortfolioAssetOverviewQueryType = typeof portfolioAssetOverviewQuerySchema.static;
|
|
73
|
+
export declare const portfolioAssetOverviewCurveItemSchema: import("@sinclair/typebox").TObject<{
|
|
74
|
+
at: import("@sinclair/typebox").TDate;
|
|
75
|
+
value: import("@sinclair/typebox").TString;
|
|
76
|
+
}>;
|
|
77
|
+
export type PortfolioAssetOverviewCurveItemType = typeof portfolioAssetOverviewCurveItemSchema.static;
|
|
78
|
+
export declare const portfolioAssetOverviewAccountDistributionItemSchema: import("@sinclair/typebox").TObject<{
|
|
79
|
+
ledgerAccountId: import("@sinclair/typebox").TString;
|
|
80
|
+
ledgerAccountTypeId: import("@sinclair/typebox").TString;
|
|
81
|
+
ledgerAccountTypeKey: import("@sinclair/typebox").TString;
|
|
82
|
+
ledgerAccountTypeName: import("@sinclair/typebox").TString;
|
|
83
|
+
quantity: import("@sinclair/typebox").TString;
|
|
84
|
+
valuation: import("@sinclair/typebox").TString;
|
|
85
|
+
proportion: import("@sinclair/typebox").TString;
|
|
86
|
+
}>;
|
|
87
|
+
export type PortfolioAssetOverviewAccountDistributionItemType = typeof portfolioAssetOverviewAccountDistributionItemSchema.static;
|
|
88
|
+
export declare const portfolioAssetOverviewResponseSchema: import("@sinclair/typebox").TObject<{
|
|
89
|
+
quoteAsset: import("@sinclair/typebox").TString;
|
|
90
|
+
asset: import("@sinclair/typebox").TObject<{
|
|
91
|
+
symbol: import("@sinclair/typebox").TString;
|
|
92
|
+
id: import("@sinclair/typebox").TString;
|
|
93
|
+
name: import("@sinclair/typebox").TString;
|
|
94
|
+
code: import("@sinclair/typebox").TString;
|
|
95
|
+
iconUrl: import("@sinclair/typebox").TString;
|
|
96
|
+
category: import("@sinclair/typebox").TEnum<{
|
|
97
|
+
FIAT: "FIAT";
|
|
98
|
+
CRYPTO: "CRYPTO";
|
|
99
|
+
POINT: "POINT";
|
|
100
|
+
RWA: "RWA";
|
|
101
|
+
}>;
|
|
102
|
+
isActive: import("@sinclair/typebox").TBoolean;
|
|
103
|
+
precision: import("@sinclair/typebox").TInteger;
|
|
104
|
+
}>;
|
|
105
|
+
quantity: import("@sinclair/typebox").TString;
|
|
106
|
+
totalValuation: import("@sinclair/typebox").TString;
|
|
107
|
+
curve: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
108
|
+
at: import("@sinclair/typebox").TDate;
|
|
109
|
+
value: import("@sinclair/typebox").TString;
|
|
110
|
+
}>>;
|
|
111
|
+
accountDistribution: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
112
|
+
ledgerAccountId: import("@sinclair/typebox").TString;
|
|
113
|
+
ledgerAccountTypeId: import("@sinclair/typebox").TString;
|
|
114
|
+
ledgerAccountTypeKey: import("@sinclair/typebox").TString;
|
|
115
|
+
ledgerAccountTypeName: import("@sinclair/typebox").TString;
|
|
116
|
+
quantity: import("@sinclair/typebox").TString;
|
|
117
|
+
valuation: import("@sinclair/typebox").TString;
|
|
118
|
+
proportion: import("@sinclair/typebox").TString;
|
|
119
|
+
}>>;
|
|
120
|
+
}>;
|
|
121
|
+
export type PortfolioAssetOverviewResponseType = typeof portfolioAssetOverviewResponseSchema.static;
|
|
122
|
+
export declare const portfolioLedgerAccountOverviewParamsSchema: import("@sinclair/typebox").TObject<{
|
|
123
|
+
id: import("@sinclair/typebox").TString;
|
|
124
|
+
}>;
|
|
125
|
+
export type PortfolioLedgerAccountOverviewParamsType = typeof portfolioLedgerAccountOverviewParamsSchema.static;
|
|
126
|
+
export declare const portfolioLedgerAccountOverviewQuerySchema: import("@sinclair/typebox").TObject<{
|
|
127
|
+
quoteAsset: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
128
|
+
}>;
|
|
129
|
+
export type PortfolioLedgerAccountOverviewQueryType = typeof portfolioLedgerAccountOverviewQuerySchema.static;
|
|
130
|
+
export declare const portfolioLedgerAccountOverviewResponseSchema: import("@sinclair/typebox").TObject<{
|
|
131
|
+
quoteAsset: import("@sinclair/typebox").TString;
|
|
132
|
+
overview: import("@sinclair/typebox").TObject<{
|
|
133
|
+
totalValuation: import("@sinclair/typebox").TString;
|
|
134
|
+
}>;
|
|
135
|
+
ledgerAccount: import("drizzle-typebox").BuildSchema<"select", {
|
|
136
|
+
createdAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
137
|
+
name: "created_at";
|
|
138
|
+
tableName: "ledger_account";
|
|
139
|
+
dataType: "date";
|
|
140
|
+
columnType: "PgTimestamp";
|
|
141
|
+
data: Date;
|
|
142
|
+
driverParam: string;
|
|
143
|
+
notNull: true;
|
|
144
|
+
hasDefault: true;
|
|
145
|
+
isPrimaryKey: false;
|
|
146
|
+
isAutoincrement: false;
|
|
147
|
+
hasRuntimeDefault: false;
|
|
148
|
+
enumValues: undefined;
|
|
149
|
+
baseColumn: never;
|
|
150
|
+
identity: undefined;
|
|
151
|
+
generated: undefined;
|
|
152
|
+
}, {}, {}>;
|
|
153
|
+
updatedAt: import("drizzle-orm/pg-core").PgColumn<{
|
|
154
|
+
name: "updated_at";
|
|
155
|
+
tableName: "ledger_account";
|
|
156
|
+
dataType: "date";
|
|
157
|
+
columnType: "PgTimestamp";
|
|
158
|
+
data: Date;
|
|
159
|
+
driverParam: string;
|
|
160
|
+
notNull: true;
|
|
161
|
+
hasDefault: true;
|
|
162
|
+
isPrimaryKey: false;
|
|
163
|
+
isAutoincrement: false;
|
|
164
|
+
hasRuntimeDefault: false;
|
|
165
|
+
enumValues: undefined;
|
|
166
|
+
baseColumn: never;
|
|
167
|
+
identity: undefined;
|
|
168
|
+
generated: undefined;
|
|
169
|
+
}, {}, {}>;
|
|
170
|
+
id: import("drizzle-orm/pg-core").PgColumn<{
|
|
171
|
+
name: "id";
|
|
172
|
+
tableName: "ledger_account";
|
|
173
|
+
dataType: "string";
|
|
174
|
+
columnType: "PgUUID";
|
|
175
|
+
data: string;
|
|
176
|
+
driverParam: string;
|
|
177
|
+
notNull: true;
|
|
178
|
+
hasDefault: true;
|
|
179
|
+
isPrimaryKey: true;
|
|
180
|
+
isAutoincrement: false;
|
|
181
|
+
hasRuntimeDefault: false;
|
|
182
|
+
enumValues: undefined;
|
|
183
|
+
baseColumn: never;
|
|
184
|
+
identity: undefined;
|
|
185
|
+
generated: undefined;
|
|
186
|
+
}, {}, {}>;
|
|
187
|
+
userId: import("drizzle-orm/pg-core").PgColumn<{
|
|
188
|
+
name: "user_id";
|
|
189
|
+
tableName: "ledger_account";
|
|
190
|
+
dataType: "string";
|
|
191
|
+
columnType: "PgText";
|
|
192
|
+
data: string;
|
|
193
|
+
driverParam: string;
|
|
194
|
+
notNull: true;
|
|
195
|
+
hasDefault: false;
|
|
196
|
+
isPrimaryKey: false;
|
|
197
|
+
isAutoincrement: false;
|
|
198
|
+
hasRuntimeDefault: false;
|
|
199
|
+
enumValues: [string, ...string[]];
|
|
200
|
+
baseColumn: never;
|
|
201
|
+
identity: undefined;
|
|
202
|
+
generated: undefined;
|
|
203
|
+
}, {}, {}>;
|
|
204
|
+
assetId: import("drizzle-orm/pg-core").PgColumn<{
|
|
205
|
+
name: "asset_id";
|
|
206
|
+
tableName: "ledger_account";
|
|
207
|
+
dataType: "string";
|
|
208
|
+
columnType: "PgUUID";
|
|
209
|
+
data: string;
|
|
210
|
+
driverParam: string;
|
|
211
|
+
notNull: true;
|
|
212
|
+
hasDefault: false;
|
|
213
|
+
isPrimaryKey: false;
|
|
214
|
+
isAutoincrement: false;
|
|
215
|
+
hasRuntimeDefault: false;
|
|
216
|
+
enumValues: undefined;
|
|
217
|
+
baseColumn: never;
|
|
218
|
+
identity: undefined;
|
|
219
|
+
generated: undefined;
|
|
220
|
+
}, {}, {}>;
|
|
221
|
+
ledgerAccountTypeId: import("drizzle-orm/pg-core").PgColumn<{
|
|
222
|
+
name: "ledger_account_type_id";
|
|
223
|
+
tableName: "ledger_account";
|
|
224
|
+
dataType: "string";
|
|
225
|
+
columnType: "PgUUID";
|
|
226
|
+
data: string;
|
|
227
|
+
driverParam: string;
|
|
228
|
+
notNull: true;
|
|
229
|
+
hasDefault: false;
|
|
230
|
+
isPrimaryKey: false;
|
|
231
|
+
isAutoincrement: false;
|
|
232
|
+
hasRuntimeDefault: false;
|
|
233
|
+
enumValues: undefined;
|
|
234
|
+
baseColumn: never;
|
|
235
|
+
identity: undefined;
|
|
236
|
+
generated: undefined;
|
|
237
|
+
}, {}, {}>;
|
|
238
|
+
available: import("drizzle-orm/pg-core").PgColumn<{
|
|
239
|
+
name: "available";
|
|
240
|
+
tableName: "ledger_account";
|
|
241
|
+
dataType: "string";
|
|
242
|
+
columnType: "PgNumeric";
|
|
243
|
+
data: string;
|
|
244
|
+
driverParam: string;
|
|
245
|
+
notNull: true;
|
|
246
|
+
hasDefault: true;
|
|
247
|
+
isPrimaryKey: false;
|
|
248
|
+
isAutoincrement: false;
|
|
249
|
+
hasRuntimeDefault: false;
|
|
250
|
+
enumValues: undefined;
|
|
251
|
+
baseColumn: never;
|
|
252
|
+
identity: undefined;
|
|
253
|
+
generated: undefined;
|
|
254
|
+
}, {}, {}>;
|
|
255
|
+
locked: import("drizzle-orm/pg-core").PgColumn<{
|
|
256
|
+
name: "locked";
|
|
257
|
+
tableName: "ledger_account";
|
|
258
|
+
dataType: "string";
|
|
259
|
+
columnType: "PgNumeric";
|
|
260
|
+
data: string;
|
|
261
|
+
driverParam: string;
|
|
262
|
+
notNull: true;
|
|
263
|
+
hasDefault: true;
|
|
264
|
+
isPrimaryKey: false;
|
|
265
|
+
isAutoincrement: false;
|
|
266
|
+
hasRuntimeDefault: false;
|
|
267
|
+
enumValues: undefined;
|
|
268
|
+
baseColumn: never;
|
|
269
|
+
identity: undefined;
|
|
270
|
+
generated: undefined;
|
|
271
|
+
}, {}, {}>;
|
|
272
|
+
version: import("drizzle-orm/pg-core").PgColumn<{
|
|
273
|
+
name: "version";
|
|
274
|
+
tableName: "ledger_account";
|
|
275
|
+
dataType: "number";
|
|
276
|
+
columnType: "PgInteger";
|
|
277
|
+
data: number;
|
|
278
|
+
driverParam: string | number;
|
|
279
|
+
notNull: true;
|
|
280
|
+
hasDefault: true;
|
|
281
|
+
isPrimaryKey: false;
|
|
282
|
+
isAutoincrement: false;
|
|
283
|
+
hasRuntimeDefault: false;
|
|
284
|
+
enumValues: undefined;
|
|
285
|
+
baseColumn: never;
|
|
286
|
+
identity: undefined;
|
|
287
|
+
generated: undefined;
|
|
288
|
+
}, {}, {}>;
|
|
289
|
+
status: import("drizzle-orm/pg-core").PgColumn<{
|
|
290
|
+
name: "status";
|
|
291
|
+
tableName: "ledger_account";
|
|
292
|
+
dataType: "string";
|
|
293
|
+
columnType: "PgEnumColumn";
|
|
294
|
+
data: "active" | "frozen" | "disabled";
|
|
295
|
+
driverParam: string;
|
|
296
|
+
notNull: true;
|
|
297
|
+
hasDefault: true;
|
|
298
|
+
isPrimaryKey: false;
|
|
299
|
+
isAutoincrement: false;
|
|
300
|
+
hasRuntimeDefault: false;
|
|
301
|
+
enumValues: ["active", "frozen", "disabled"];
|
|
302
|
+
baseColumn: never;
|
|
303
|
+
identity: undefined;
|
|
304
|
+
generated: undefined;
|
|
305
|
+
}, {}, {}>;
|
|
306
|
+
}, undefined>;
|
|
307
|
+
ledgerAccountType: import("@sinclair/typebox").TObject<{
|
|
308
|
+
key: import("@sinclair/typebox").TString;
|
|
309
|
+
id: import("@sinclair/typebox").TString;
|
|
310
|
+
name: import("@sinclair/typebox").TString;
|
|
311
|
+
description: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>;
|
|
312
|
+
}>;
|
|
313
|
+
}>;
|
|
314
|
+
export type PortfolioLedgerAccountOverviewResponseType = typeof portfolioLedgerAccountOverviewResponseSchema.static;
|
|
315
|
+
export declare const portfolioAccountTypeOverviewResponseSchema: import("@sinclair/typebox").TObject<{
|
|
316
|
+
quoteAsset: import("@sinclair/typebox").TString;
|
|
317
|
+
overview: import("@sinclair/typebox").TObject<{
|
|
318
|
+
totalValuation: import("@sinclair/typebox").TString;
|
|
319
|
+
}>;
|
|
320
|
+
accountType: import("@sinclair/typebox").TObject<{
|
|
321
|
+
id: import("@sinclair/typebox").TString;
|
|
322
|
+
name: import("@sinclair/typebox").TString;
|
|
323
|
+
key: import("@sinclair/typebox").TString;
|
|
324
|
+
}>;
|
|
325
|
+
accounts: import("@sinclair/typebox").TArray<import("@sinclair/typebox").TObject<{
|
|
326
|
+
id: import("@sinclair/typebox").TString;
|
|
327
|
+
userId: import("@sinclair/typebox").TString;
|
|
328
|
+
status: import("@sinclair/typebox").TEnum<{
|
|
329
|
+
active: "active";
|
|
330
|
+
frozen: "frozen";
|
|
331
|
+
disabled: "disabled";
|
|
332
|
+
}>;
|
|
333
|
+
assetId: import("@sinclair/typebox").TString;
|
|
334
|
+
ledgerAccountTypeId: import("@sinclair/typebox").TString;
|
|
335
|
+
available: import("@sinclair/typebox").TString;
|
|
336
|
+
locked: import("@sinclair/typebox").TString;
|
|
337
|
+
asset: import("@sinclair/typebox").TObject<{
|
|
338
|
+
id: import("@sinclair/typebox").TString;
|
|
339
|
+
name: import("@sinclair/typebox").TString;
|
|
340
|
+
code: import("@sinclair/typebox").TString;
|
|
341
|
+
iconUrl: import("@sinclair/typebox").TString;
|
|
342
|
+
}>;
|
|
343
|
+
totalValuation: import("@sinclair/typebox").TString;
|
|
344
|
+
quantity: import("@sinclair/typebox").TString;
|
|
345
|
+
accountType: import("@sinclair/typebox").TObject<{
|
|
346
|
+
id: import("@sinclair/typebox").TString;
|
|
347
|
+
name: import("@sinclair/typebox").TString;
|
|
348
|
+
key: import("@sinclair/typebox").TString;
|
|
349
|
+
}>;
|
|
350
|
+
}>>;
|
|
351
|
+
}>;
|
|
352
|
+
export type PortfolioAccountTypeOverviewResponseType = typeof portfolioAccountTypeOverviewResponseSchema.static;
|