@cryptorobot.ai/client 0.0.17 → 0.0.19
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/lib/configuration.d.ts +8 -0
- package/lib/helpers/app.helper.d.ts +4 -0
- package/lib/helpers/logging.helper.d.ts +1 -0
- package/lib/hooks/init-data-folder.d.ts +2 -0
- package/lib/hooks/setup-aws-sdk.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +8 -32
- package/lib/services/exchanges/download/download.schema.d.ts +8 -32
- package/lib/services/exchanges/exchanges.schema.d.ts +8 -32
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +8 -32
- package/lib/services/messages/messages.schema.d.ts +16 -8
- package/lib/services/strategies/strategies.schema.d.ts +40 -40
- package/lib/services/traders/pods/api/api.schema.d.ts +56 -72
- package/lib/services/traders/pods/pods.schema.d.ts +48 -72
- package/lib/services/users/users.schema.d.ts +16 -8
- package/package.json +1 -1
package/lib/configuration.d.ts
CHANGED
|
@@ -148,12 +148,20 @@ export declare const configurationSchema: import("@feathersjs/typebox").TInterse
|
|
|
148
148
|
testData: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
149
149
|
mixpanel: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
150
150
|
telegramClient: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
151
|
+
awsClient: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
151
152
|
telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
152
153
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
153
154
|
apiId: import("@feathersjs/typebox").TAny;
|
|
154
155
|
apiHash: import("@feathersjs/typebox").TAny;
|
|
155
156
|
stringSession: import("@feathersjs/typebox").TAny;
|
|
156
157
|
}>>;
|
|
158
|
+
logs: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
159
|
+
driver: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"awslogs">]>;
|
|
160
|
+
credentials: import("@feathersjs/typebox").TObject<{
|
|
161
|
+
AWS_ACCESS_KEY_ID: import("@feathersjs/typebox").TString<string>;
|
|
162
|
+
AWS_SECRET_ACCESS_KEY: import("@feathersjs/typebox").TString<string>;
|
|
163
|
+
}>;
|
|
164
|
+
}>>;
|
|
157
165
|
}>]>;
|
|
158
166
|
export type ApplicationConfiguration = Static<typeof configurationSchema>;
|
|
159
167
|
export declare const configurationValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
@@ -5,8 +5,12 @@ export declare class AppHelper {
|
|
|
5
5
|
getConfig(): Promise<any>;
|
|
6
6
|
setConfig(params: any): Promise<any>;
|
|
7
7
|
getUserPath(context: HookContext): PathLike;
|
|
8
|
+
getFullUserPath(context: HookContext): PathLike;
|
|
8
9
|
getLogsPath(context: HookContext): PathLike;
|
|
10
|
+
getFullLogsPath(context: HookContext): PathLike;
|
|
9
11
|
getDataDownloadConfigPath(context: HookContext): PathLike;
|
|
10
12
|
getDataDownloadPath(context: HookContext): PathLike;
|
|
13
|
+
checkFolderPermissions(path: PathLike): Promise<boolean>;
|
|
14
|
+
changeFolderPermissions(path: PathLike, mode: string): Promise<boolean>;
|
|
11
15
|
getFolderSize(folderPath: any): Promise<number>;
|
|
12
16
|
}
|
|
@@ -5,4 +5,5 @@ export default class Log {
|
|
|
5
5
|
static error(message: any, context?: any, filename?: any, extra?: any): void;
|
|
6
6
|
static silly(message: any, context?: any, filename?: any, extra?: any): void;
|
|
7
7
|
static verbose(message: any, context?: any, filename?: any, extra?: any): void;
|
|
8
|
+
static container(message: any, context?: any, filename?: any, extra?: any): void;
|
|
8
9
|
}
|
|
@@ -36,10 +36,7 @@ export declare const exchangesBalanceSchema: import("@feathersjs/typebox").TObje
|
|
|
36
36
|
left: import("@feathersjs/typebox").TString<string>;
|
|
37
37
|
right: import("@feathersjs/typebox").TString<string>;
|
|
38
38
|
}>>>;
|
|
39
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
40
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
41
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
42
|
-
}>>>;
|
|
39
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
43
40
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
44
41
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
45
42
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -97,10 +94,7 @@ export declare const exchangesBalanceResolver: import("@feathersjs/schema").Reso
|
|
|
97
94
|
left: string;
|
|
98
95
|
right: string;
|
|
99
96
|
}[] | undefined;
|
|
100
|
-
whitelist?:
|
|
101
|
-
left: string;
|
|
102
|
-
right: string;
|
|
103
|
-
}[] | undefined;
|
|
97
|
+
whitelist?: any[] | undefined;
|
|
104
98
|
ccxt_async_config?: any;
|
|
105
99
|
requiredCredentials?: any;
|
|
106
100
|
uid?: string | undefined;
|
|
@@ -153,10 +147,7 @@ export declare const exchangesBalanceExternalResolver: import("@feathersjs/schem
|
|
|
153
147
|
left: string;
|
|
154
148
|
right: string;
|
|
155
149
|
}[] | undefined;
|
|
156
|
-
whitelist?:
|
|
157
|
-
left: string;
|
|
158
|
-
right: string;
|
|
159
|
-
}[] | undefined;
|
|
150
|
+
whitelist?: any[] | undefined;
|
|
160
151
|
ccxt_async_config?: any;
|
|
161
152
|
requiredCredentials?: any;
|
|
162
153
|
uid?: string | undefined;
|
|
@@ -206,10 +197,7 @@ export declare const exchangesBalanceDataSchema: import("@feathersjs/typebox").T
|
|
|
206
197
|
left: import("@feathersjs/typebox").TString<string>;
|
|
207
198
|
right: import("@feathersjs/typebox").TString<string>;
|
|
208
199
|
}>>>;
|
|
209
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
210
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
211
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
212
|
-
}>>>;
|
|
200
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
213
201
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
214
202
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
215
203
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -267,10 +255,7 @@ export declare const exchangesBalanceDataResolver: import("@feathersjs/schema").
|
|
|
267
255
|
left: string;
|
|
268
256
|
right: string;
|
|
269
257
|
}[] | undefined;
|
|
270
|
-
whitelist?:
|
|
271
|
-
left: string;
|
|
272
|
-
right: string;
|
|
273
|
-
}[] | undefined;
|
|
258
|
+
whitelist?: any[] | undefined;
|
|
274
259
|
ccxt_async_config?: any;
|
|
275
260
|
requiredCredentials?: any;
|
|
276
261
|
uid?: string | undefined;
|
|
@@ -320,10 +305,7 @@ export declare const exchangesBalancePatchSchema: import("@feathersjs/typebox").
|
|
|
320
305
|
left: import("@feathersjs/typebox").TString<string>;
|
|
321
306
|
right: import("@feathersjs/typebox").TString<string>;
|
|
322
307
|
}>>>;
|
|
323
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
324
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
325
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
326
|
-
}>>>;
|
|
308
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
327
309
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
328
310
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
329
311
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -381,10 +363,7 @@ export declare const exchangesBalancePatchResolver: import("@feathersjs/schema")
|
|
|
381
363
|
left: string;
|
|
382
364
|
right: string;
|
|
383
365
|
}[] | undefined;
|
|
384
|
-
whitelist?:
|
|
385
|
-
left: string;
|
|
386
|
-
right: string;
|
|
387
|
-
}[] | undefined;
|
|
366
|
+
whitelist?: any[] | undefined;
|
|
388
367
|
ccxt_async_config?: any;
|
|
389
368
|
requiredCredentials?: any;
|
|
390
369
|
uid?: string | undefined;
|
|
@@ -434,10 +413,7 @@ export declare const exchangesBalanceQueryProperties: import("@feathersjs/typebo
|
|
|
434
413
|
left: import("@feathersjs/typebox").TString<string>;
|
|
435
414
|
right: import("@feathersjs/typebox").TString<string>;
|
|
436
415
|
}>>>;
|
|
437
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
438
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
439
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
440
|
-
}>>>;
|
|
416
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
441
417
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
442
418
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
443
419
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -37,10 +37,7 @@ export declare const exchangesDownloadSchema: import("@feathersjs/typebox").TObj
|
|
|
37
37
|
left: import("@feathersjs/typebox").TString<string>;
|
|
38
38
|
right: import("@feathersjs/typebox").TString<string>;
|
|
39
39
|
}>>>;
|
|
40
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
41
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
42
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
43
|
-
}>>>;
|
|
40
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
44
41
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
45
42
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
46
43
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -117,10 +114,7 @@ export declare const exchangesDownloadResolver: import("@feathersjs/schema").Res
|
|
|
117
114
|
left: string;
|
|
118
115
|
right: string;
|
|
119
116
|
}[] | undefined;
|
|
120
|
-
whitelist?:
|
|
121
|
-
left: string;
|
|
122
|
-
right: string;
|
|
123
|
-
}[] | undefined;
|
|
117
|
+
whitelist?: any[] | undefined;
|
|
124
118
|
ccxt_async_config?: any;
|
|
125
119
|
requiredCredentials?: any;
|
|
126
120
|
uid?: string | undefined;
|
|
@@ -193,10 +187,7 @@ export declare const exchangesDownloadExternalResolver: import("@feathersjs/sche
|
|
|
193
187
|
left: string;
|
|
194
188
|
right: string;
|
|
195
189
|
}[] | undefined;
|
|
196
|
-
whitelist?:
|
|
197
|
-
left: string;
|
|
198
|
-
right: string;
|
|
199
|
-
}[] | undefined;
|
|
190
|
+
whitelist?: any[] | undefined;
|
|
200
191
|
ccxt_async_config?: any;
|
|
201
192
|
requiredCredentials?: any;
|
|
202
193
|
uid?: string | undefined;
|
|
@@ -267,10 +258,7 @@ export declare const exchangesDownloadDataSchema: import("@feathersjs/typebox").
|
|
|
267
258
|
left: import("@feathersjs/typebox").TString<string>;
|
|
268
259
|
right: import("@feathersjs/typebox").TString<string>;
|
|
269
260
|
}>>>;
|
|
270
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
271
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
272
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
273
|
-
}>>>;
|
|
261
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
274
262
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
275
263
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
276
264
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -347,10 +335,7 @@ export declare const exchangesDownloadDataResolver: import("@feathersjs/schema")
|
|
|
347
335
|
left: string;
|
|
348
336
|
right: string;
|
|
349
337
|
}[] | undefined;
|
|
350
|
-
whitelist?:
|
|
351
|
-
left: string;
|
|
352
|
-
right: string;
|
|
353
|
-
}[] | undefined;
|
|
338
|
+
whitelist?: any[] | undefined;
|
|
354
339
|
ccxt_async_config?: any;
|
|
355
340
|
requiredCredentials?: any;
|
|
356
341
|
uid?: string | undefined;
|
|
@@ -421,10 +406,7 @@ export declare const exchangesDownloadPatchSchema: import("@feathersjs/typebox")
|
|
|
421
406
|
left: import("@feathersjs/typebox").TString<string>;
|
|
422
407
|
right: import("@feathersjs/typebox").TString<string>;
|
|
423
408
|
}>>>;
|
|
424
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
425
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
426
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
427
|
-
}>>>;
|
|
409
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
428
410
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
429
411
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
430
412
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -501,10 +483,7 @@ export declare const exchangesDownloadPatchResolver: import("@feathersjs/schema"
|
|
|
501
483
|
left: string;
|
|
502
484
|
right: string;
|
|
503
485
|
}[] | undefined;
|
|
504
|
-
whitelist?:
|
|
505
|
-
left: string;
|
|
506
|
-
right: string;
|
|
507
|
-
}[] | undefined;
|
|
486
|
+
whitelist?: any[] | undefined;
|
|
508
487
|
ccxt_async_config?: any;
|
|
509
488
|
requiredCredentials?: any;
|
|
510
489
|
uid?: string | undefined;
|
|
@@ -575,10 +554,7 @@ export declare const exchangesDownloadQueryProperties: import("@feathersjs/typeb
|
|
|
575
554
|
left: import("@feathersjs/typebox").TString<string>;
|
|
576
555
|
right: import("@feathersjs/typebox").TString<string>;
|
|
577
556
|
}>>>;
|
|
578
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
579
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
580
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
581
|
-
}>>>;
|
|
557
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
582
558
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
583
559
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
584
560
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -33,10 +33,7 @@ export declare const exchangesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
33
33
|
left: import("@feathersjs/typebox").TString<string>;
|
|
34
34
|
right: import("@feathersjs/typebox").TString<string>;
|
|
35
35
|
}>>>;
|
|
36
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
37
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
38
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
39
|
-
}>>>;
|
|
36
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
40
37
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
41
38
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
42
39
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -91,10 +88,7 @@ export declare const exchangesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
91
88
|
left: string;
|
|
92
89
|
right: string;
|
|
93
90
|
}[] | undefined;
|
|
94
|
-
whitelist?:
|
|
95
|
-
left: string;
|
|
96
|
-
right: string;
|
|
97
|
-
}[] | undefined;
|
|
91
|
+
whitelist?: any[] | undefined;
|
|
98
92
|
ccxt_async_config?: any;
|
|
99
93
|
requiredCredentials?: any;
|
|
100
94
|
uid?: string | undefined;
|
|
@@ -142,10 +136,7 @@ export declare const exchangesExternalResolver: import("@feathersjs/schema").Res
|
|
|
142
136
|
left: string;
|
|
143
137
|
right: string;
|
|
144
138
|
}[] | undefined;
|
|
145
|
-
whitelist?:
|
|
146
|
-
left: string;
|
|
147
|
-
right: string;
|
|
148
|
-
}[] | undefined;
|
|
139
|
+
whitelist?: any[] | undefined;
|
|
149
140
|
ccxt_async_config?: any;
|
|
150
141
|
requiredCredentials?: any;
|
|
151
142
|
uid?: string | undefined;
|
|
@@ -188,10 +179,7 @@ export declare const exchangesDataSchema: import("@feathersjs/typebox").TPick<im
|
|
|
188
179
|
left: import("@feathersjs/typebox").TString<string>;
|
|
189
180
|
right: import("@feathersjs/typebox").TString<string>;
|
|
190
181
|
}>>>;
|
|
191
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
192
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
193
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
194
|
-
}>>>;
|
|
182
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
195
183
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
196
184
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
197
185
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -246,10 +234,7 @@ export declare const exchangesDataResolver: import("@feathersjs/schema").Resolve
|
|
|
246
234
|
left: string;
|
|
247
235
|
right: string;
|
|
248
236
|
}[] | undefined;
|
|
249
|
-
whitelist?:
|
|
250
|
-
left: string;
|
|
251
|
-
right: string;
|
|
252
|
-
}[] | undefined;
|
|
237
|
+
whitelist?: any[] | undefined;
|
|
253
238
|
ccxt_async_config?: any;
|
|
254
239
|
requiredCredentials?: any;
|
|
255
240
|
uid?: string | undefined;
|
|
@@ -292,10 +277,7 @@ export declare const exchangesPatchSchema: import("@feathersjs/typebox").TPartia
|
|
|
292
277
|
left: import("@feathersjs/typebox").TString<string>;
|
|
293
278
|
right: import("@feathersjs/typebox").TString<string>;
|
|
294
279
|
}>>>;
|
|
295
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
296
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
297
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
298
|
-
}>>>;
|
|
280
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
299
281
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
300
282
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
301
283
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -350,10 +332,7 @@ export declare const exchangesPatchResolver: import("@feathersjs/schema").Resolv
|
|
|
350
332
|
left: string;
|
|
351
333
|
right: string;
|
|
352
334
|
}[] | undefined;
|
|
353
|
-
whitelist?:
|
|
354
|
-
left: string;
|
|
355
|
-
right: string;
|
|
356
|
-
}[] | undefined;
|
|
335
|
+
whitelist?: any[] | undefined;
|
|
357
336
|
ccxt_async_config?: any;
|
|
358
337
|
requiredCredentials?: any;
|
|
359
338
|
uid?: string | undefined;
|
|
@@ -396,10 +375,7 @@ export declare const exchangesQueryProperties: import("@feathersjs/typebox").TPi
|
|
|
396
375
|
left: import("@feathersjs/typebox").TString<string>;
|
|
397
376
|
right: import("@feathersjs/typebox").TString<string>;
|
|
398
377
|
}>>>;
|
|
399
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
400
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
401
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
402
|
-
}>>>;
|
|
378
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
403
379
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
404
380
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
405
381
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -36,10 +36,7 @@ export declare const exchangesTickerSchema: import("@feathersjs/typebox").TObjec
|
|
|
36
36
|
left: import("@feathersjs/typebox").TString<string>;
|
|
37
37
|
right: import("@feathersjs/typebox").TString<string>;
|
|
38
38
|
}>>>;
|
|
39
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
40
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
41
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
42
|
-
}>>>;
|
|
39
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
43
40
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
44
41
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
45
42
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -102,10 +99,7 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
102
99
|
left: string;
|
|
103
100
|
right: string;
|
|
104
101
|
}[] | undefined;
|
|
105
|
-
whitelist?:
|
|
106
|
-
left: string;
|
|
107
|
-
right: string;
|
|
108
|
-
}[] | undefined;
|
|
102
|
+
whitelist?: any[] | undefined;
|
|
109
103
|
ccxt_async_config?: any;
|
|
110
104
|
requiredCredentials?: any;
|
|
111
105
|
uid?: string | undefined;
|
|
@@ -160,10 +154,7 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
|
|
|
160
154
|
left: string;
|
|
161
155
|
right: string;
|
|
162
156
|
}[] | undefined;
|
|
163
|
-
whitelist?:
|
|
164
|
-
left: string;
|
|
165
|
-
right: string;
|
|
166
|
-
}[] | undefined;
|
|
157
|
+
whitelist?: any[] | undefined;
|
|
167
158
|
ccxt_async_config?: any;
|
|
168
159
|
requiredCredentials?: any;
|
|
169
160
|
uid?: string | undefined;
|
|
@@ -212,10 +203,7 @@ export declare const exchangesTickerDataSchema: import("@feathersjs/typebox").TP
|
|
|
212
203
|
left: import("@feathersjs/typebox").TString<string>;
|
|
213
204
|
right: import("@feathersjs/typebox").TString<string>;
|
|
214
205
|
}>>>;
|
|
215
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
216
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
217
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
218
|
-
}>>>;
|
|
206
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
219
207
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
220
208
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
221
209
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -278,10 +266,7 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
|
|
|
278
266
|
left: string;
|
|
279
267
|
right: string;
|
|
280
268
|
}[] | undefined;
|
|
281
|
-
whitelist?:
|
|
282
|
-
left: string;
|
|
283
|
-
right: string;
|
|
284
|
-
}[] | undefined;
|
|
269
|
+
whitelist?: any[] | undefined;
|
|
285
270
|
ccxt_async_config?: any;
|
|
286
271
|
requiredCredentials?: any;
|
|
287
272
|
uid?: string | undefined;
|
|
@@ -330,10 +315,7 @@ export declare const exchangesTickerPatchSchema: import("@feathersjs/typebox").T
|
|
|
330
315
|
left: import("@feathersjs/typebox").TString<string>;
|
|
331
316
|
right: import("@feathersjs/typebox").TString<string>;
|
|
332
317
|
}>>>;
|
|
333
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
334
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
335
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
336
|
-
}>>>;
|
|
318
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
337
319
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
338
320
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
339
321
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -396,10 +378,7 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
|
|
|
396
378
|
left: string;
|
|
397
379
|
right: string;
|
|
398
380
|
}[] | undefined;
|
|
399
|
-
whitelist?:
|
|
400
|
-
left: string;
|
|
401
|
-
right: string;
|
|
402
|
-
}[] | undefined;
|
|
381
|
+
whitelist?: any[] | undefined;
|
|
403
382
|
ccxt_async_config?: any;
|
|
404
383
|
requiredCredentials?: any;
|
|
405
384
|
uid?: string | undefined;
|
|
@@ -448,10 +427,7 @@ export declare const exchangesTickerQueryProperties: import("@feathersjs/typebox
|
|
|
448
427
|
left: import("@feathersjs/typebox").TString<string>;
|
|
449
428
|
right: import("@feathersjs/typebox").TString<string>;
|
|
450
429
|
}>>>;
|
|
451
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
452
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
453
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
454
|
-
}>>>;
|
|
430
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
455
431
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
456
432
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
457
433
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -41,7 +41,7 @@ export declare const messagesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
41
41
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
42
42
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
43
43
|
verifyExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
44
|
-
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
44
|
+
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
45
45
|
resetToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
46
46
|
resetShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
47
47
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
@@ -49,6 +49,7 @@ export declare const messagesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
49
49
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
50
50
|
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
51
51
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
52
|
+
onboarding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TLiteral<"strategies">, import("@feathersjs/typebox").TLiteral<"traders">, import("@feathersjs/typebox").TLiteral<"telegram">]>>;
|
|
52
53
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
53
54
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
54
55
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -87,12 +88,13 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
87
88
|
verifyTokenShort?: string | null | undefined;
|
|
88
89
|
verifyShortToken?: string | null | undefined;
|
|
89
90
|
verifyExpires?: number | null | undefined;
|
|
90
|
-
verifyChanges?:
|
|
91
|
+
verifyChanges?: any;
|
|
91
92
|
resetToken?: string | null | undefined;
|
|
92
93
|
resetShortToken?: string | null | undefined;
|
|
93
94
|
resetExpires?: number | null | undefined;
|
|
94
95
|
resetAttempts?: number | null | undefined;
|
|
95
96
|
anon?: boolean | undefined;
|
|
97
|
+
onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
|
|
96
98
|
createdAt?: any;
|
|
97
99
|
updatedAt?: any;
|
|
98
100
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -142,12 +144,13 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
142
144
|
verifyTokenShort?: string | null | undefined;
|
|
143
145
|
verifyShortToken?: string | null | undefined;
|
|
144
146
|
verifyExpires?: number | null | undefined;
|
|
145
|
-
verifyChanges?:
|
|
147
|
+
verifyChanges?: any;
|
|
146
148
|
resetToken?: string | null | undefined;
|
|
147
149
|
resetShortToken?: string | null | undefined;
|
|
148
150
|
resetExpires?: number | null | undefined;
|
|
149
151
|
resetAttempts?: number | null | undefined;
|
|
150
152
|
anon?: boolean | undefined;
|
|
153
|
+
onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
|
|
151
154
|
createdAt?: any;
|
|
152
155
|
updatedAt?: any;
|
|
153
156
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -208,7 +211,7 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
|
|
|
208
211
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
209
212
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
210
213
|
verifyExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
211
|
-
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
214
|
+
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
212
215
|
resetToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
213
216
|
resetShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
214
217
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
@@ -216,6 +219,7 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
|
|
|
216
219
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
217
220
|
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
218
221
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
222
|
+
onboarding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TLiteral<"strategies">, import("@feathersjs/typebox").TLiteral<"traders">, import("@feathersjs/typebox").TLiteral<"telegram">]>>;
|
|
219
223
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
220
224
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
221
225
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -254,12 +258,13 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
254
258
|
verifyTokenShort?: string | null | undefined;
|
|
255
259
|
verifyShortToken?: string | null | undefined;
|
|
256
260
|
verifyExpires?: number | null | undefined;
|
|
257
|
-
verifyChanges?:
|
|
261
|
+
verifyChanges?: any;
|
|
258
262
|
resetToken?: string | null | undefined;
|
|
259
263
|
resetShortToken?: string | null | undefined;
|
|
260
264
|
resetExpires?: number | null | undefined;
|
|
261
265
|
resetAttempts?: number | null | undefined;
|
|
262
266
|
anon?: boolean | undefined;
|
|
267
|
+
onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
|
|
263
268
|
createdAt?: any;
|
|
264
269
|
updatedAt?: any;
|
|
265
270
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -320,7 +325,7 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
320
325
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
321
326
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
322
327
|
verifyExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
323
|
-
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
328
|
+
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
324
329
|
resetToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
325
330
|
resetShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
326
331
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
@@ -328,6 +333,7 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
328
333
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
329
334
|
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
330
335
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
336
|
+
onboarding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TLiteral<"strategies">, import("@feathersjs/typebox").TLiteral<"traders">, import("@feathersjs/typebox").TLiteral<"telegram">]>>;
|
|
331
337
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
332
338
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
333
339
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -366,12 +372,13 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
366
372
|
verifyTokenShort?: string | null | undefined;
|
|
367
373
|
verifyShortToken?: string | null | undefined;
|
|
368
374
|
verifyExpires?: number | null | undefined;
|
|
369
|
-
verifyChanges?:
|
|
375
|
+
verifyChanges?: any;
|
|
370
376
|
resetToken?: string | null | undefined;
|
|
371
377
|
resetShortToken?: string | null | undefined;
|
|
372
378
|
resetExpires?: number | null | undefined;
|
|
373
379
|
resetAttempts?: number | null | undefined;
|
|
374
380
|
anon?: boolean | undefined;
|
|
381
|
+
onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
|
|
375
382
|
createdAt?: any;
|
|
376
383
|
updatedAt?: any;
|
|
377
384
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -432,7 +439,7 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
432
439
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
433
440
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
434
441
|
verifyExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
435
|
-
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
442
|
+
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
436
443
|
resetToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
437
444
|
resetShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
438
445
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
@@ -440,6 +447,7 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
440
447
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
441
448
|
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
442
449
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
450
|
+
onboarding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TLiteral<"strategies">, import("@feathersjs/typebox").TLiteral<"traders">, import("@feathersjs/typebox").TLiteral<"telegram">]>>;
|
|
443
451
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
444
452
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
445
453
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|