@cryptorobot.ai/client 0.0.37 → 0.0.39
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/src/client.js +4 -1
- package/lib/src/services/exchanges/balance/balance.schema.d.ts +16 -16
- package/lib/src/services/exchanges/download/download.schema.d.ts +58 -17
- package/lib/src/services/exchanges/download/webhooks/webhooks.schema.d.ts +4 -4
- package/lib/src/services/exchanges/exchanges.schema.d.ts +100 -100
- package/lib/src/services/exchanges/ohlcv/ohlcv.class.d.ts +19 -0
- package/lib/src/services/exchanges/ohlcv/ohlcv.d.ts +11 -0
- package/lib/src/services/exchanges/ohlcv/ohlcv.schema.d.ts +507 -0
- package/lib/src/services/exchanges/ohlcv/ohlcv.shared.d.ts +13 -0
- package/lib/src/services/exchanges/ohlcv/ohlcv.shared.js +13 -0
- package/lib/src/services/exchanges/ticker/ticker.schema.d.ts +68 -68
- package/lib/src/services/messages/messages.schema.d.ts +64 -32
- package/lib/src/services/strategies/backtest/backtest.schema.d.ts +127 -60
- package/lib/src/services/strategies/backtest/results/results.schema.d.ts +8 -8
- package/lib/src/services/strategies/hyperopt/hyperopt.schema.d.ts +4 -4
- package/lib/src/services/strategies/indicators/indicators.schema.d.ts +4 -4
- package/lib/src/services/strategies/indicators/talib/talib.class.d.ts +11 -0
- package/lib/src/services/strategies/indicators/talib/talib.d.ts +11 -0
- package/lib/src/services/strategies/indicators/talib/talib.schema.d.ts +443 -0
- package/lib/src/services/strategies/indicators/talib/talib.shared.d.ts +13 -0
- package/lib/src/services/strategies/indicators/talib/talib.shared.js +13 -0
- package/lib/src/services/strategies/strategies.schema.d.ts +28 -28
- package/lib/src/services/strategies/templates/templates.schema.d.ts +4 -4
- package/lib/src/services/traders/pods/api/api.schema.d.ts +380 -290
- package/lib/src/services/traders/pods/pods.schema.d.ts +310 -310
- package/lib/src/services/traders/traders.schema.d.ts +138 -138
- package/lib/src/services/users/users.class.d.ts +178 -3
- package/lib/src/services/users/users.schema.d.ts +123 -85
- package/lib/src/services/users/users.shared.d.ts +4 -3
- package/lib/src/services/users/users.shared.js +1 -1
- package/package.json +2 -35
- package/readme.md +2 -51
- package/README.md +0 -4
|
@@ -72,13 +72,10 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
72
72
|
apiKey?: string | null | undefined;
|
|
73
73
|
token?: string | undefined;
|
|
74
74
|
secret?: string | null | undefined;
|
|
75
|
+
error?: any;
|
|
75
76
|
_id?: string | {} | undefined;
|
|
76
|
-
avatar?: any;
|
|
77
77
|
createdAt?: any;
|
|
78
78
|
updatedAt?: any;
|
|
79
|
-
error?: any;
|
|
80
|
-
login?: string | undefined;
|
|
81
|
-
userId?: string | {} | undefined;
|
|
82
79
|
connected?: boolean | undefined;
|
|
83
80
|
downloaded?: {
|
|
84
81
|
updatedAt: any;
|
|
@@ -101,6 +98,7 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
101
98
|
} | undefined;
|
|
102
99
|
tags?: any;
|
|
103
100
|
background?: any;
|
|
101
|
+
avatar?: any;
|
|
104
102
|
blacklist?: {
|
|
105
103
|
left: string;
|
|
106
104
|
right: string;
|
|
@@ -113,9 +111,11 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
113
111
|
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
114
112
|
requiredCredentials?: any;
|
|
115
113
|
uid?: string | undefined;
|
|
114
|
+
login?: string | undefined;
|
|
116
115
|
twofa?: string | undefined;
|
|
117
116
|
privateKey?: string | undefined;
|
|
118
117
|
walletAddress?: string | undefined;
|
|
118
|
+
userId?: string | {} | undefined;
|
|
119
119
|
__v?: any;
|
|
120
120
|
} | undefined;
|
|
121
121
|
symbol: string;
|
|
@@ -131,13 +131,10 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
|
|
|
131
131
|
apiKey?: string | null | undefined;
|
|
132
132
|
token?: string | undefined;
|
|
133
133
|
secret?: string | null | undefined;
|
|
134
|
+
error?: any;
|
|
134
135
|
_id?: string | {} | undefined;
|
|
135
|
-
avatar?: any;
|
|
136
136
|
createdAt?: any;
|
|
137
137
|
updatedAt?: any;
|
|
138
|
-
error?: any;
|
|
139
|
-
login?: string | undefined;
|
|
140
|
-
userId?: string | {} | undefined;
|
|
141
138
|
connected?: boolean | undefined;
|
|
142
139
|
downloaded?: {
|
|
143
140
|
updatedAt: any;
|
|
@@ -160,6 +157,7 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
|
|
|
160
157
|
} | undefined;
|
|
161
158
|
tags?: any;
|
|
162
159
|
background?: any;
|
|
160
|
+
avatar?: any;
|
|
163
161
|
blacklist?: {
|
|
164
162
|
left: string;
|
|
165
163
|
right: string;
|
|
@@ -172,9 +170,11 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
|
|
|
172
170
|
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
173
171
|
requiredCredentials?: any;
|
|
174
172
|
uid?: string | undefined;
|
|
173
|
+
login?: string | undefined;
|
|
175
174
|
twofa?: string | undefined;
|
|
176
175
|
privateKey?: string | undefined;
|
|
177
176
|
walletAddress?: string | undefined;
|
|
177
|
+
userId?: string | {} | undefined;
|
|
178
178
|
__v?: any;
|
|
179
179
|
} | undefined;
|
|
180
180
|
symbol: string;
|
|
@@ -251,13 +251,10 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
|
|
|
251
251
|
apiKey?: string | null | undefined;
|
|
252
252
|
token?: string | undefined;
|
|
253
253
|
secret?: string | null | undefined;
|
|
254
|
+
error?: any;
|
|
254
255
|
_id?: string | {} | undefined;
|
|
255
|
-
avatar?: any;
|
|
256
256
|
createdAt?: any;
|
|
257
257
|
updatedAt?: any;
|
|
258
|
-
error?: any;
|
|
259
|
-
login?: string | undefined;
|
|
260
|
-
userId?: string | {} | undefined;
|
|
261
258
|
connected?: boolean | undefined;
|
|
262
259
|
downloaded?: {
|
|
263
260
|
updatedAt: any;
|
|
@@ -280,6 +277,7 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
|
|
|
280
277
|
} | undefined;
|
|
281
278
|
tags?: any;
|
|
282
279
|
background?: any;
|
|
280
|
+
avatar?: any;
|
|
283
281
|
blacklist?: {
|
|
284
282
|
left: string;
|
|
285
283
|
right: string;
|
|
@@ -292,9 +290,11 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
|
|
|
292
290
|
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
293
291
|
requiredCredentials?: any;
|
|
294
292
|
uid?: string | undefined;
|
|
293
|
+
login?: string | undefined;
|
|
295
294
|
twofa?: string | undefined;
|
|
296
295
|
privateKey?: string | undefined;
|
|
297
296
|
walletAddress?: string | undefined;
|
|
297
|
+
userId?: string | {} | undefined;
|
|
298
298
|
__v?: any;
|
|
299
299
|
} | undefined;
|
|
300
300
|
symbol: string;
|
|
@@ -371,13 +371,10 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
|
|
|
371
371
|
apiKey?: string | null | undefined;
|
|
372
372
|
token?: string | undefined;
|
|
373
373
|
secret?: string | null | undefined;
|
|
374
|
+
error?: any;
|
|
374
375
|
_id?: string | {} | undefined;
|
|
375
|
-
avatar?: any;
|
|
376
376
|
createdAt?: any;
|
|
377
377
|
updatedAt?: any;
|
|
378
|
-
error?: any;
|
|
379
|
-
login?: string | undefined;
|
|
380
|
-
userId?: string | {} | undefined;
|
|
381
378
|
connected?: boolean | undefined;
|
|
382
379
|
downloaded?: {
|
|
383
380
|
updatedAt: any;
|
|
@@ -400,6 +397,7 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
|
|
|
400
397
|
} | undefined;
|
|
401
398
|
tags?: any;
|
|
402
399
|
background?: any;
|
|
400
|
+
avatar?: any;
|
|
403
401
|
blacklist?: {
|
|
404
402
|
left: string;
|
|
405
403
|
right: string;
|
|
@@ -412,9 +410,11 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
|
|
|
412
410
|
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
413
411
|
requiredCredentials?: any;
|
|
414
412
|
uid?: string | undefined;
|
|
413
|
+
login?: string | undefined;
|
|
415
414
|
twofa?: string | undefined;
|
|
416
415
|
privateKey?: string | undefined;
|
|
417
416
|
walletAddress?: string | undefined;
|
|
417
|
+
userId?: string | {} | undefined;
|
|
418
418
|
__v?: any;
|
|
419
419
|
} | undefined;
|
|
420
420
|
symbol: string;
|
|
@@ -484,12 +484,12 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
484
484
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
485
485
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
486
486
|
symbol: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
487
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
488
487
|
timestamp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
488
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
489
489
|
exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
490
490
|
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
491
491
|
}>;
|
|
492
|
-
$select: import("@feathersjs/typebox").TUnsafe<("symbol" | "
|
|
492
|
+
$select: import("@feathersjs/typebox").TUnsafe<("symbol" | "timestamp" | "_id" | "exchange" | "exchangeId")[]>;
|
|
493
493
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
494
494
|
symbol: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
495
495
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
@@ -502,17 +502,6 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
502
502
|
}>, import("@feathersjs/typebox").TObject<{
|
|
503
503
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
504
504
|
} | undefined>]>>]>>;
|
|
505
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
506
|
-
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
507
|
-
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
508
|
-
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
509
|
-
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
510
|
-
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
511
|
-
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
512
|
-
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
513
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
514
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
515
|
-
} | undefined>]>>]>>;
|
|
516
505
|
timestamp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
517
506
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
518
507
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -524,6 +513,17 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
524
513
|
}>, import("@feathersjs/typebox").TObject<{
|
|
525
514
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
526
515
|
} | undefined>]>>]>>;
|
|
516
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
517
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
518
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
519
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
520
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
521
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
522
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
523
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
524
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
525
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
526
|
+
} | undefined>]>>]>>;
|
|
527
527
|
exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
528
528
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
529
529
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -559,17 +559,6 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
559
559
|
}>, import("@feathersjs/typebox").TObject<{
|
|
560
560
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
561
561
|
} | undefined>]>>]>>;
|
|
562
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
563
|
-
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
564
|
-
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
565
|
-
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
566
|
-
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
567
|
-
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
568
|
-
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
569
|
-
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
570
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
571
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
572
|
-
} | undefined>]>>]>>;
|
|
573
562
|
timestamp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
574
563
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
575
564
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -581,6 +570,17 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
581
570
|
}>, import("@feathersjs/typebox").TObject<{
|
|
582
571
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
583
572
|
} | undefined>]>>]>>;
|
|
573
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
574
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
575
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
576
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
577
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
578
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
579
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
580
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
581
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
582
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
583
|
+
} | undefined>]>>]>>;
|
|
584
584
|
exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
585
585
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
586
586
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -617,17 +617,6 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
617
617
|
}>, import("@feathersjs/typebox").TObject<{
|
|
618
618
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
619
619
|
} | undefined>]>>]>>;
|
|
620
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
621
|
-
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
622
|
-
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
623
|
-
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
624
|
-
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
625
|
-
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
626
|
-
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
627
|
-
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
628
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
629
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
630
|
-
} | undefined>]>>]>>;
|
|
631
620
|
timestamp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
632
621
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
633
622
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -639,6 +628,17 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
639
628
|
}>, import("@feathersjs/typebox").TObject<{
|
|
640
629
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
641
630
|
} | undefined>]>>]>>;
|
|
631
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
632
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
633
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
634
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
635
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
636
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
637
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
638
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
639
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
640
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
641
|
+
} | undefined>]>>]>>;
|
|
642
642
|
exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
643
643
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
644
644
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -674,17 +674,6 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
674
674
|
}>, import("@feathersjs/typebox").TObject<{
|
|
675
675
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
676
676
|
} | undefined>]>>]>>;
|
|
677
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
678
|
-
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
679
|
-
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
680
|
-
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
681
|
-
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
682
|
-
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
683
|
-
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
684
|
-
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
685
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
686
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
687
|
-
} | undefined>]>>]>>;
|
|
688
677
|
timestamp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
689
678
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
690
679
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -696,6 +685,17 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
696
685
|
}>, import("@feathersjs/typebox").TObject<{
|
|
697
686
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
698
687
|
} | undefined>]>>]>>;
|
|
688
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
689
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
690
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
691
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
692
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
693
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
694
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
695
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
696
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
697
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
698
|
+
} | undefined>]>>]>>;
|
|
699
699
|
exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
700
700
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
701
701
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -726,12 +726,12 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
726
726
|
$skip: number;
|
|
727
727
|
$sort: {
|
|
728
728
|
symbol?: number | undefined;
|
|
729
|
-
_id?: number | undefined;
|
|
730
729
|
timestamp?: number | undefined;
|
|
730
|
+
_id?: number | undefined;
|
|
731
731
|
exchange?: number | undefined;
|
|
732
732
|
exchangeId?: number | undefined;
|
|
733
733
|
};
|
|
734
|
-
$select: ("symbol" | "
|
|
734
|
+
$select: ("symbol" | "timestamp" | "_id" | "exchange" | "exchangeId")[];
|
|
735
735
|
$and: ({
|
|
736
736
|
symbol?: string | Partial<{
|
|
737
737
|
$gt: string;
|
|
@@ -742,6 +742,7 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
742
742
|
$in: string | string[];
|
|
743
743
|
$nin: string | string[];
|
|
744
744
|
} & {}> | undefined;
|
|
745
|
+
timestamp?: any;
|
|
745
746
|
_id?: string | {} | Partial<{
|
|
746
747
|
$gt: string | {};
|
|
747
748
|
$gte: string | {};
|
|
@@ -751,7 +752,6 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
751
752
|
$in: string | {} | (string | {})[];
|
|
752
753
|
$nin: string | {} | (string | {})[];
|
|
753
754
|
} & {}> | undefined;
|
|
754
|
-
timestamp?: any;
|
|
755
755
|
exchange?: string | Partial<{
|
|
756
756
|
$gt?: string | undefined;
|
|
757
757
|
$gte?: string | undefined;
|
|
@@ -773,6 +773,7 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
773
773
|
$in: string | string[];
|
|
774
774
|
$nin: string | string[];
|
|
775
775
|
} & {}> | undefined;
|
|
776
|
+
timestamp?: any;
|
|
776
777
|
_id?: string | {} | Partial<{
|
|
777
778
|
$gt: string | {};
|
|
778
779
|
$gte: string | {};
|
|
@@ -782,7 +783,6 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
782
783
|
$in: string | {} | (string | {})[];
|
|
783
784
|
$nin: string | {} | (string | {})[];
|
|
784
785
|
} & {}> | undefined;
|
|
785
|
-
timestamp?: any;
|
|
786
786
|
exchange?: string | Partial<{
|
|
787
787
|
$gt?: string | undefined;
|
|
788
788
|
$gte?: string | undefined;
|
|
@@ -805,6 +805,7 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
805
805
|
$in: string | string[];
|
|
806
806
|
$nin: string | string[];
|
|
807
807
|
} & {}> | undefined;
|
|
808
|
+
timestamp?: any;
|
|
808
809
|
_id?: string | {} | Partial<{
|
|
809
810
|
$gt: string | {};
|
|
810
811
|
$gte: string | {};
|
|
@@ -814,7 +815,6 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
814
815
|
$in: string | {} | (string | {})[];
|
|
815
816
|
$nin: string | {} | (string | {})[];
|
|
816
817
|
} & {}> | undefined;
|
|
817
|
-
timestamp?: any;
|
|
818
818
|
exchange?: string | Partial<{
|
|
819
819
|
$gt?: string | undefined;
|
|
820
820
|
$gte?: string | undefined;
|
|
@@ -836,6 +836,7 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
836
836
|
$in: string | string[];
|
|
837
837
|
$nin: string | string[];
|
|
838
838
|
} & {}> | undefined;
|
|
839
|
+
timestamp?: any;
|
|
839
840
|
_id?: string | {} | Partial<{
|
|
840
841
|
$gt: string | {};
|
|
841
842
|
$gte: string | {};
|
|
@@ -845,7 +846,6 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
845
846
|
$in: string | {} | (string | {})[];
|
|
846
847
|
$nin: string | {} | (string | {})[];
|
|
847
848
|
} & {}> | undefined;
|
|
848
|
-
timestamp?: any;
|
|
849
849
|
exchange?: string | Partial<{
|
|
850
850
|
$gt?: string | undefined;
|
|
851
851
|
$gte?: string | undefined;
|
|
@@ -66,8 +66,12 @@ export declare const messagesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
66
66
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
67
67
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
68
68
|
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
69
|
-
bootstrap: import("@feathersjs/typebox").
|
|
70
|
-
|
|
69
|
+
bootstrap: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
70
|
+
strategy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
71
|
+
traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
72
|
+
strategies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
73
|
+
}>>;
|
|
74
|
+
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<"exchanges">]>>;
|
|
71
75
|
contactId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
72
76
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
73
77
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -97,9 +101,11 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
97
101
|
} | undefined;
|
|
98
102
|
stripe?: any;
|
|
99
103
|
_id?: string | {} | undefined;
|
|
104
|
+
createdAt?: any;
|
|
105
|
+
updatedAt?: any;
|
|
106
|
+
avatar?: string | undefined;
|
|
100
107
|
googleId?: any;
|
|
101
108
|
appleId?: any;
|
|
102
|
-
avatar?: string | undefined;
|
|
103
109
|
title?: string | null | undefined;
|
|
104
110
|
company?: string | null | undefined;
|
|
105
111
|
language?: string | undefined;
|
|
@@ -135,21 +141,23 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
135
141
|
resetExpires?: number | null | undefined;
|
|
136
142
|
resetAttempts?: number | null | undefined;
|
|
137
143
|
anon?: boolean | undefined;
|
|
138
|
-
|
|
144
|
+
bootstrap?: {
|
|
145
|
+
traders?: any;
|
|
146
|
+
strategies?: any;
|
|
147
|
+
strategy?: any;
|
|
148
|
+
} | undefined;
|
|
149
|
+
onboarding?: "traders" | "strategies" | "exchanges" | null | undefined;
|
|
139
150
|
contactId?: string | undefined;
|
|
140
|
-
createdAt?: any;
|
|
141
|
-
updatedAt?: any;
|
|
142
151
|
skipEmailVerification?: boolean | undefined;
|
|
143
152
|
email: string;
|
|
144
153
|
name: string;
|
|
145
154
|
agreements: boolean;
|
|
146
|
-
bootstrap: any;
|
|
147
155
|
} | undefined;
|
|
148
156
|
image?: string | undefined;
|
|
149
157
|
link?: string | undefined;
|
|
150
|
-
avatar?: string | undefined;
|
|
151
158
|
createdAt?: any;
|
|
152
159
|
updatedAt?: any;
|
|
160
|
+
avatar?: string | undefined;
|
|
153
161
|
userId?: string | undefined;
|
|
154
162
|
useRouter?: boolean | undefined;
|
|
155
163
|
read?: boolean | undefined;
|
|
@@ -174,9 +182,11 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
174
182
|
} | undefined;
|
|
175
183
|
stripe?: any;
|
|
176
184
|
_id?: string | {} | undefined;
|
|
185
|
+
createdAt?: any;
|
|
186
|
+
updatedAt?: any;
|
|
187
|
+
avatar?: string | undefined;
|
|
177
188
|
googleId?: any;
|
|
178
189
|
appleId?: any;
|
|
179
|
-
avatar?: string | undefined;
|
|
180
190
|
title?: string | null | undefined;
|
|
181
191
|
company?: string | null | undefined;
|
|
182
192
|
language?: string | undefined;
|
|
@@ -212,21 +222,23 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
212
222
|
resetExpires?: number | null | undefined;
|
|
213
223
|
resetAttempts?: number | null | undefined;
|
|
214
224
|
anon?: boolean | undefined;
|
|
215
|
-
|
|
225
|
+
bootstrap?: {
|
|
226
|
+
traders?: any;
|
|
227
|
+
strategies?: any;
|
|
228
|
+
strategy?: any;
|
|
229
|
+
} | undefined;
|
|
230
|
+
onboarding?: "traders" | "strategies" | "exchanges" | null | undefined;
|
|
216
231
|
contactId?: string | undefined;
|
|
217
|
-
createdAt?: any;
|
|
218
|
-
updatedAt?: any;
|
|
219
232
|
skipEmailVerification?: boolean | undefined;
|
|
220
233
|
email: string;
|
|
221
234
|
name: string;
|
|
222
235
|
agreements: boolean;
|
|
223
|
-
bootstrap: any;
|
|
224
236
|
} | undefined;
|
|
225
237
|
image?: string | undefined;
|
|
226
238
|
link?: string | undefined;
|
|
227
|
-
avatar?: string | undefined;
|
|
228
239
|
createdAt?: any;
|
|
229
240
|
updatedAt?: any;
|
|
241
|
+
avatar?: string | undefined;
|
|
230
242
|
userId?: string | undefined;
|
|
231
243
|
useRouter?: boolean | undefined;
|
|
232
244
|
read?: boolean | undefined;
|
|
@@ -299,8 +311,12 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
|
|
|
299
311
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
300
312
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
301
313
|
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
302
|
-
bootstrap: import("@feathersjs/typebox").
|
|
303
|
-
|
|
314
|
+
bootstrap: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
315
|
+
strategy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
316
|
+
traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
317
|
+
strategies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
318
|
+
}>>;
|
|
319
|
+
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<"exchanges">]>>;
|
|
304
320
|
contactId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
305
321
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
306
322
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -330,9 +346,11 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
330
346
|
} | undefined;
|
|
331
347
|
stripe?: any;
|
|
332
348
|
_id?: string | {} | undefined;
|
|
349
|
+
createdAt?: any;
|
|
350
|
+
updatedAt?: any;
|
|
351
|
+
avatar?: string | undefined;
|
|
333
352
|
googleId?: any;
|
|
334
353
|
appleId?: any;
|
|
335
|
-
avatar?: string | undefined;
|
|
336
354
|
title?: string | null | undefined;
|
|
337
355
|
company?: string | null | undefined;
|
|
338
356
|
language?: string | undefined;
|
|
@@ -368,21 +386,23 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
368
386
|
resetExpires?: number | null | undefined;
|
|
369
387
|
resetAttempts?: number | null | undefined;
|
|
370
388
|
anon?: boolean | undefined;
|
|
371
|
-
|
|
389
|
+
bootstrap?: {
|
|
390
|
+
traders?: any;
|
|
391
|
+
strategies?: any;
|
|
392
|
+
strategy?: any;
|
|
393
|
+
} | undefined;
|
|
394
|
+
onboarding?: "traders" | "strategies" | "exchanges" | null | undefined;
|
|
372
395
|
contactId?: string | undefined;
|
|
373
|
-
createdAt?: any;
|
|
374
|
-
updatedAt?: any;
|
|
375
396
|
skipEmailVerification?: boolean | undefined;
|
|
376
397
|
email: string;
|
|
377
398
|
name: string;
|
|
378
399
|
agreements: boolean;
|
|
379
|
-
bootstrap: any;
|
|
380
400
|
} | undefined;
|
|
381
401
|
image?: string | undefined;
|
|
382
402
|
link?: string | undefined;
|
|
383
|
-
avatar?: string | undefined;
|
|
384
403
|
createdAt?: any;
|
|
385
404
|
updatedAt?: any;
|
|
405
|
+
avatar?: string | undefined;
|
|
386
406
|
userId?: string | undefined;
|
|
387
407
|
useRouter?: boolean | undefined;
|
|
388
408
|
read?: boolean | undefined;
|
|
@@ -455,8 +475,12 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
455
475
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
456
476
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
457
477
|
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
458
|
-
bootstrap: import("@feathersjs/typebox").
|
|
459
|
-
|
|
478
|
+
bootstrap: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
479
|
+
strategy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
480
|
+
traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
481
|
+
strategies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
482
|
+
}>>;
|
|
483
|
+
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<"exchanges">]>>;
|
|
460
484
|
contactId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
461
485
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
462
486
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -486,9 +510,11 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
486
510
|
} | undefined;
|
|
487
511
|
stripe?: any;
|
|
488
512
|
_id?: string | {} | undefined;
|
|
513
|
+
createdAt?: any;
|
|
514
|
+
updatedAt?: any;
|
|
515
|
+
avatar?: string | undefined;
|
|
489
516
|
googleId?: any;
|
|
490
517
|
appleId?: any;
|
|
491
|
-
avatar?: string | undefined;
|
|
492
518
|
title?: string | null | undefined;
|
|
493
519
|
company?: string | null | undefined;
|
|
494
520
|
language?: string | undefined;
|
|
@@ -524,21 +550,23 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
524
550
|
resetExpires?: number | null | undefined;
|
|
525
551
|
resetAttempts?: number | null | undefined;
|
|
526
552
|
anon?: boolean | undefined;
|
|
527
|
-
|
|
553
|
+
bootstrap?: {
|
|
554
|
+
traders?: any;
|
|
555
|
+
strategies?: any;
|
|
556
|
+
strategy?: any;
|
|
557
|
+
} | undefined;
|
|
558
|
+
onboarding?: "traders" | "strategies" | "exchanges" | null | undefined;
|
|
528
559
|
contactId?: string | undefined;
|
|
529
|
-
createdAt?: any;
|
|
530
|
-
updatedAt?: any;
|
|
531
560
|
skipEmailVerification?: boolean | undefined;
|
|
532
561
|
email: string;
|
|
533
562
|
name: string;
|
|
534
563
|
agreements: boolean;
|
|
535
|
-
bootstrap: any;
|
|
536
564
|
} | undefined;
|
|
537
565
|
image?: string | undefined;
|
|
538
566
|
link?: string | undefined;
|
|
539
|
-
avatar?: string | undefined;
|
|
540
567
|
createdAt?: any;
|
|
541
568
|
updatedAt?: any;
|
|
569
|
+
avatar?: string | undefined;
|
|
542
570
|
userId?: string | undefined;
|
|
543
571
|
useRouter?: boolean | undefined;
|
|
544
572
|
read?: boolean | undefined;
|
|
@@ -611,8 +639,12 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
611
639
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
612
640
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
613
641
|
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
614
|
-
bootstrap: import("@feathersjs/typebox").
|
|
615
|
-
|
|
642
|
+
bootstrap: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
643
|
+
strategy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
644
|
+
traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
645
|
+
strategies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
646
|
+
}>>;
|
|
647
|
+
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<"exchanges">]>>;
|
|
616
648
|
contactId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
617
649
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
618
650
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|