@cryptorobot.ai/client 0.0.18 → 0.0.25
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/client.d.ts +38 -36
- package/lib/client.js +6 -12
- package/lib/configuration.d.ts +20 -1
- package/lib/firebase-push-notification.d.ts +1 -0
- package/lib/helpers/backtest.helper.d.ts +53 -4
- package/lib/helpers/ccxt.helper.d.ts +75 -0
- package/lib/helpers/deployments.helper.d.ts +72 -0
- package/lib/helpers/funnel.helper.d.ts +17 -0
- package/lib/helpers/hyperopt.helper.d.ts +14 -0
- package/lib/helpers/push-notification.helper.d.ts +7 -0
- package/lib/helpers/queue.helper.d.ts +8 -0
- package/lib/helpers/sqlite3.helper.d.ts +6 -0
- package/lib/helpers/sqs.helper.d.ts +7 -0
- package/lib/helpers/subscription.helper.d.ts +48 -0
- package/lib/helpers/telegram.helper.d.ts +26 -1
- package/lib/helpers/trader.helper.d.ts +26 -0
- package/lib/hooks/application/setup-config-preparation.d.ts +1 -1
- package/lib/hooks/application/setup-info.d.ts +1 -1
- package/lib/hooks/application/setup-load-indicators.d.ts +1 -1
- package/lib/hooks/application/setup-load-strategy-templates.d.ts +1 -1
- package/lib/hooks/aws-prepare-batch-job.d.ts +2 -0
- package/lib/hooks/backtest-copy-candles-from-user-data.d.ts +1 -1
- package/lib/hooks/{backtest-generate-and-start.d.ts → backtest-generate-and-queue.d.ts} +1 -1
- package/lib/hooks/backtest-generate-config.d.ts +6 -0
- package/lib/hooks/backtest-generate-exchange-config.d.ts +6 -0
- package/lib/hooks/backtest-get-results.d.ts +12 -0
- package/lib/hooks/file-generate-config-hyperopt.d.ts +2 -0
- package/lib/hooks/setup-ensure-image.d.ts +3 -0
- package/lib/hooks/setup-firebase.d.ts +2 -0
- package/lib/hooks/setup-homepage.d.ts +3 -0
- package/lib/hooks/setup-mautic.d.ts +3 -0
- package/lib/hooks/setup-mixpanel.d.ts +3 -0
- package/lib/hooks/setup-prepare-maildev-while-in-test-env.d.ts +1 -1
- package/lib/hooks/setup-queues.d.ts +1 -1
- package/lib/hooks/sqlite-reset-database.d.ts +2 -0
- package/lib/hooks/traders/pods-process-worker.d.ts +5 -0
- package/lib/sentry.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +56 -56
- package/lib/services/exchanges/download/download.schema.d.ts +60 -60
- package/lib/services/exchanges/download/webhooks/webhooks.schema.d.ts +84 -84
- package/lib/services/exchanges/exchanges.schema.d.ts +198 -198
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +110 -110
- package/lib/services/homepage/homepage.class.d.ts +15 -0
- package/lib/services/homepage/homepage.d.ts +10 -0
- package/lib/services/homepage/homepage.schema.d.ts +237 -0
- package/lib/services/homepage/homepage.shared.d.ts +4 -0
- package/lib/services/homepage/homepage.shared.js +6 -0
- package/lib/services/markets/markets.schema.d.ts +112 -112
- package/lib/services/messages/messages.schema.d.ts +136 -64
- package/lib/services/strategies/ai/ai.schema.d.ts +32 -32
- package/lib/services/strategies/backtest/backtest.schema.d.ts +394 -84
- package/lib/services/strategies/backtest/results/results.class.d.ts +1 -1
- package/lib/services/strategies/backtest/results/results.schema.d.ts +454 -156
- package/lib/services/strategies/hyperopt/hyperopt.class.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +375 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.d.ts +13 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.js +13 -0
- package/lib/services/strategies/indicators/indicators.schema.d.ts +40 -40
- package/lib/services/strategies/strategies.schema.d.ts +329 -247
- package/lib/services/strategies/templates/templates.schema.d.ts +41 -41
- package/lib/services/stripe/charges/charges.d.ts +1 -1
- package/lib/services/stripe/customers/customers.d.ts +1 -1
- package/lib/services/stripe/customers/paymentintent/paymentintent.d.ts +1 -1
- package/lib/services/stripe/customers/paymentmethods/paymentmethods.d.ts +1 -1
- package/lib/services/stripe/products/products.d.ts +1 -1
- package/lib/services/traders/pods/api/api.class.d.ts +1 -1
- package/lib/services/traders/pods/api/api.schema.d.ts +527 -519
- package/lib/services/traders/pods/events/events.schema.d.ts +375 -111
- package/lib/services/traders/pods/pods.schema.d.ts +384 -384
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +76 -76
- package/lib/services/traders/traders.class.d.ts +7 -1
- package/lib/services/traders/traders.d.ts +1 -0
- package/lib/services/traders/traders.schema.d.ts +852 -380
- package/lib/services/users/users.class.d.ts +1 -1
- package/lib/services/users/users.schema.d.ts +158 -52
- package/package.json +9 -2
- package/lib/hooks/bootstrap-user-telegram.d.ts +0 -2
|
@@ -59,21 +59,20 @@ export declare const exchangesTickerSchema: import("@feathersjs/typebox").TObjec
|
|
|
59
59
|
export type ExchangesTicker = Static<typeof exchangesTickerSchema>;
|
|
60
60
|
export declare const exchangesTickerValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
61
61
|
export declare const exchangesTickerResolver: import("@feathersjs/schema").Resolver<{
|
|
62
|
-
exchangeId?: any;
|
|
63
|
-
exchange?: string | undefined;
|
|
64
62
|
timestamp?: any;
|
|
63
|
+
exchange?: string | undefined;
|
|
64
|
+
exchangeId?: any;
|
|
65
65
|
exchangeData?: {
|
|
66
66
|
password?: string | undefined;
|
|
67
67
|
name?: any;
|
|
68
68
|
apiKey?: string | undefined;
|
|
69
|
+
token?: string | undefined;
|
|
69
70
|
secret?: string | undefined;
|
|
70
71
|
avatar?: any;
|
|
71
72
|
createdAt?: any;
|
|
72
73
|
updatedAt?: any;
|
|
73
|
-
|
|
74
|
-
which?: string | undefined;
|
|
74
|
+
login?: string | undefined;
|
|
75
75
|
connected?: boolean | undefined;
|
|
76
|
-
token?: string | undefined;
|
|
77
76
|
downloaded?: {
|
|
78
77
|
updatedAt: any;
|
|
79
78
|
size: string;
|
|
@@ -101,12 +100,13 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
101
100
|
}[] | undefined;
|
|
102
101
|
whitelist?: any[] | undefined;
|
|
103
102
|
ccxt_async_config?: any;
|
|
103
|
+
which?: string | undefined;
|
|
104
104
|
requiredCredentials?: any;
|
|
105
105
|
uid?: string | undefined;
|
|
106
|
-
login?: string | undefined;
|
|
107
106
|
twofa?: string | undefined;
|
|
108
107
|
privateKey?: string | undefined;
|
|
109
108
|
walletAddress?: string | undefined;
|
|
109
|
+
userId?: string | {} | undefined;
|
|
110
110
|
__v?: any;
|
|
111
111
|
_id: string | {};
|
|
112
112
|
} | undefined;
|
|
@@ -114,21 +114,20 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
114
114
|
_id: string | {};
|
|
115
115
|
}, HookContext<ExchangesTickerService<import("./ticker.class").ExchangesTickerParams>>>;
|
|
116
116
|
export declare const exchangesTickerExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
117
|
-
exchangeId?: any;
|
|
118
|
-
exchange?: string | undefined;
|
|
119
117
|
timestamp?: any;
|
|
118
|
+
exchange?: string | undefined;
|
|
119
|
+
exchangeId?: any;
|
|
120
120
|
exchangeData?: {
|
|
121
121
|
password?: string | undefined;
|
|
122
122
|
name?: any;
|
|
123
123
|
apiKey?: string | undefined;
|
|
124
|
+
token?: string | undefined;
|
|
124
125
|
secret?: string | undefined;
|
|
125
126
|
avatar?: any;
|
|
126
127
|
createdAt?: any;
|
|
127
128
|
updatedAt?: any;
|
|
128
|
-
|
|
129
|
-
which?: string | undefined;
|
|
129
|
+
login?: string | undefined;
|
|
130
130
|
connected?: boolean | undefined;
|
|
131
|
-
token?: string | undefined;
|
|
132
131
|
downloaded?: {
|
|
133
132
|
updatedAt: any;
|
|
134
133
|
size: string;
|
|
@@ -156,12 +155,13 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
|
|
|
156
155
|
}[] | undefined;
|
|
157
156
|
whitelist?: any[] | undefined;
|
|
158
157
|
ccxt_async_config?: any;
|
|
158
|
+
which?: string | undefined;
|
|
159
159
|
requiredCredentials?: any;
|
|
160
160
|
uid?: string | undefined;
|
|
161
|
-
login?: string | undefined;
|
|
162
161
|
twofa?: string | undefined;
|
|
163
162
|
privateKey?: string | undefined;
|
|
164
163
|
walletAddress?: string | undefined;
|
|
164
|
+
userId?: string | {} | undefined;
|
|
165
165
|
__v?: any;
|
|
166
166
|
_id: string | {};
|
|
167
167
|
} | undefined;
|
|
@@ -226,21 +226,20 @@ export declare const exchangesTickerDataSchema: import("@feathersjs/typebox").TP
|
|
|
226
226
|
export type ExchangesTickerData = Static<typeof exchangesTickerDataSchema>;
|
|
227
227
|
export declare const exchangesTickerDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
228
228
|
export declare const exchangesTickerDataResolver: import("@feathersjs/schema").Resolver<{
|
|
229
|
-
exchangeId?: any;
|
|
230
|
-
exchange?: string | undefined;
|
|
231
229
|
timestamp?: any;
|
|
230
|
+
exchange?: string | undefined;
|
|
231
|
+
exchangeId?: any;
|
|
232
232
|
exchangeData?: {
|
|
233
233
|
password?: string | undefined;
|
|
234
234
|
name?: any;
|
|
235
235
|
apiKey?: string | undefined;
|
|
236
|
+
token?: string | undefined;
|
|
236
237
|
secret?: string | undefined;
|
|
237
238
|
avatar?: any;
|
|
238
239
|
createdAt?: any;
|
|
239
240
|
updatedAt?: any;
|
|
240
|
-
|
|
241
|
-
which?: string | undefined;
|
|
241
|
+
login?: string | undefined;
|
|
242
242
|
connected?: boolean | undefined;
|
|
243
|
-
token?: string | undefined;
|
|
244
243
|
downloaded?: {
|
|
245
244
|
updatedAt: any;
|
|
246
245
|
size: string;
|
|
@@ -268,12 +267,13 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
|
|
|
268
267
|
}[] | undefined;
|
|
269
268
|
whitelist?: any[] | undefined;
|
|
270
269
|
ccxt_async_config?: any;
|
|
270
|
+
which?: string | undefined;
|
|
271
271
|
requiredCredentials?: any;
|
|
272
272
|
uid?: string | undefined;
|
|
273
|
-
login?: string | undefined;
|
|
274
273
|
twofa?: string | undefined;
|
|
275
274
|
privateKey?: string | undefined;
|
|
276
275
|
walletAddress?: string | undefined;
|
|
276
|
+
userId?: string | {} | undefined;
|
|
277
277
|
__v?: any;
|
|
278
278
|
_id: string | {};
|
|
279
279
|
} | undefined;
|
|
@@ -338,21 +338,20 @@ export declare const exchangesTickerPatchSchema: import("@feathersjs/typebox").T
|
|
|
338
338
|
export type ExchangesTickerPatch = Static<typeof exchangesTickerPatchSchema>;
|
|
339
339
|
export declare const exchangesTickerPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
340
340
|
export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
341
|
-
exchangeId?: any;
|
|
342
|
-
exchange?: string | undefined;
|
|
343
341
|
timestamp?: any;
|
|
342
|
+
exchange?: string | undefined;
|
|
343
|
+
exchangeId?: any;
|
|
344
344
|
exchangeData?: {
|
|
345
345
|
password?: string | undefined;
|
|
346
346
|
name?: any;
|
|
347
347
|
apiKey?: string | undefined;
|
|
348
|
+
token?: string | undefined;
|
|
348
349
|
secret?: string | undefined;
|
|
349
350
|
avatar?: any;
|
|
350
351
|
createdAt?: any;
|
|
351
352
|
updatedAt?: any;
|
|
352
|
-
|
|
353
|
-
which?: string | undefined;
|
|
353
|
+
login?: string | undefined;
|
|
354
354
|
connected?: boolean | undefined;
|
|
355
|
-
token?: string | undefined;
|
|
356
355
|
downloaded?: {
|
|
357
356
|
updatedAt: any;
|
|
358
357
|
size: string;
|
|
@@ -380,12 +379,13 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
|
|
|
380
379
|
}[] | undefined;
|
|
381
380
|
whitelist?: any[] | undefined;
|
|
382
381
|
ccxt_async_config?: any;
|
|
382
|
+
which?: string | undefined;
|
|
383
383
|
requiredCredentials?: any;
|
|
384
384
|
uid?: string | undefined;
|
|
385
|
-
login?: string | undefined;
|
|
386
385
|
twofa?: string | undefined;
|
|
387
386
|
privateKey?: string | undefined;
|
|
388
387
|
walletAddress?: string | undefined;
|
|
388
|
+
userId?: string | {} | undefined;
|
|
389
389
|
__v?: any;
|
|
390
390
|
_id: string | {};
|
|
391
391
|
} | undefined;
|
|
@@ -453,11 +453,11 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
453
453
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
454
454
|
symbol: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
455
455
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
456
|
-
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
457
|
-
exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
458
456
|
timestamp: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
457
|
+
exchange: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
458
|
+
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
459
459
|
}>;
|
|
460
|
-
$select: import("@feathersjs/typebox").TUnsafe<("symbol" | "_id" | "
|
|
460
|
+
$select: import("@feathersjs/typebox").TUnsafe<("symbol" | "_id" | "timestamp" | "exchange" | "exchangeId")[]>;
|
|
461
461
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
462
462
|
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<{
|
|
463
463
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
@@ -465,8 +465,8 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
465
465
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
466
466
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
467
467
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
468
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
469
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
468
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
469
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
470
470
|
}>, import("@feathersjs/typebox").TObject<{
|
|
471
471
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
472
472
|
} | undefined>]>>]>>;
|
|
@@ -476,19 +476,19 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
476
476
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
477
477
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
478
478
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
479
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
480
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
479
|
+
$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<{}>]>>;
|
|
480
|
+
$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<{}>]>>;
|
|
481
481
|
}>, import("@feathersjs/typebox").TObject<{
|
|
482
482
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
483
483
|
} | undefined>]>>]>>;
|
|
484
|
-
|
|
484
|
+
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<{
|
|
485
485
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
486
486
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
487
487
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
488
488
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
489
489
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
490
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
491
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
490
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
491
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
492
492
|
}>, import("@feathersjs/typebox").TObject<{
|
|
493
493
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
494
494
|
} | undefined>]>>]>>;
|
|
@@ -498,19 +498,19 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
498
498
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
499
499
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
500
500
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
501
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
502
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
501
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
502
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
503
503
|
}>, import("@feathersjs/typebox").TObject<{
|
|
504
504
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
505
505
|
} | undefined>]>>]>>;
|
|
506
|
-
|
|
506
|
+
exchangeId: 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<{
|
|
507
507
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
508
508
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
509
509
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
510
510
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
511
511
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
512
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
513
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
512
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
513
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
514
514
|
}>, import("@feathersjs/typebox").TObject<{
|
|
515
515
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
516
516
|
} | undefined>]>>]>>;
|
|
@@ -522,8 +522,8 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
522
522
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
523
523
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
524
524
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
525
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
526
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
525
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
526
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
527
527
|
}>, import("@feathersjs/typebox").TObject<{
|
|
528
528
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
529
529
|
} | undefined>]>>]>>;
|
|
@@ -533,19 +533,19 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
533
533
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
534
534
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
535
535
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
536
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
537
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
536
|
+
$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<{}>]>>;
|
|
537
|
+
$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<{}>]>>;
|
|
538
538
|
}>, import("@feathersjs/typebox").TObject<{
|
|
539
539
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
540
540
|
} | undefined>]>>]>>;
|
|
541
|
-
|
|
541
|
+
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<{
|
|
542
542
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
543
543
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
544
544
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
545
545
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
546
546
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
547
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
548
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
547
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
548
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
549
549
|
}>, import("@feathersjs/typebox").TObject<{
|
|
550
550
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
551
551
|
} | undefined>]>>]>>;
|
|
@@ -555,19 +555,19 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
555
555
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
556
556
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
557
557
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
558
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
559
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
558
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
559
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
560
560
|
}>, import("@feathersjs/typebox").TObject<{
|
|
561
561
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
562
562
|
} | undefined>]>>]>>;
|
|
563
|
-
|
|
563
|
+
exchangeId: 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<{
|
|
564
564
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
565
565
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
566
566
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
567
567
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
568
568
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
569
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
570
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
569
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
570
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
571
571
|
}>, import("@feathersjs/typebox").TObject<{
|
|
572
572
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
573
573
|
} | undefined>]>>]>>;
|
|
@@ -580,8 +580,8 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
580
580
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
581
581
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
582
582
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
583
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
584
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
583
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
584
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
585
585
|
}>, import("@feathersjs/typebox").TObject<{
|
|
586
586
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
587
587
|
} | undefined>]>>]>>;
|
|
@@ -591,19 +591,19 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
591
591
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
592
592
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
593
593
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
594
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
595
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
594
|
+
$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<{}>]>>;
|
|
595
|
+
$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<{}>]>>;
|
|
596
596
|
}>, import("@feathersjs/typebox").TObject<{
|
|
597
597
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
598
598
|
} | undefined>]>>]>>;
|
|
599
|
-
|
|
599
|
+
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<{
|
|
600
600
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
601
601
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
602
602
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
603
603
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
604
604
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
605
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
606
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
605
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
606
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
607
607
|
}>, import("@feathersjs/typebox").TObject<{
|
|
608
608
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
609
609
|
} | undefined>]>>]>>;
|
|
@@ -613,19 +613,19 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
613
613
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
614
614
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
615
615
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
616
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
617
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
616
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
617
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
618
618
|
}>, import("@feathersjs/typebox").TObject<{
|
|
619
619
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
620
620
|
} | undefined>]>>]>>;
|
|
621
|
-
|
|
621
|
+
exchangeId: 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<{
|
|
622
622
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
623
623
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
624
624
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
625
625
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
626
626
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
627
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
628
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
627
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
628
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
629
629
|
}>, import("@feathersjs/typebox").TObject<{
|
|
630
630
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
631
631
|
} | undefined>]>>]>>;
|
|
@@ -637,8 +637,8 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
637
637
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
638
638
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
639
639
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
640
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
641
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
640
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
641
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
642
642
|
}>, import("@feathersjs/typebox").TObject<{
|
|
643
643
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
644
644
|
} | undefined>]>>]>>;
|
|
@@ -648,19 +648,19 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
648
648
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
649
649
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
650
650
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
651
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
652
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
651
|
+
$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<{}>]>>;
|
|
652
|
+
$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<{}>]>>;
|
|
653
653
|
}>, import("@feathersjs/typebox").TObject<{
|
|
654
654
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
655
655
|
} | undefined>]>>]>>;
|
|
656
|
-
|
|
656
|
+
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<{
|
|
657
657
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
658
658
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
659
659
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
660
660
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
661
661
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
662
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
663
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
662
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
663
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
664
664
|
}>, import("@feathersjs/typebox").TObject<{
|
|
665
665
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
666
666
|
} | undefined>]>>]>>;
|
|
@@ -670,19 +670,19 @@ export declare const exchangesTickerQuerySchema: import("@feathersjs/typebox").T
|
|
|
670
670
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
671
671
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
672
672
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
673
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
674
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
673
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
674
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
675
675
|
}>, import("@feathersjs/typebox").TObject<{
|
|
676
676
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
677
677
|
} | undefined>]>>]>>;
|
|
678
|
-
|
|
678
|
+
exchangeId: 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<{
|
|
679
679
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
680
680
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
681
681
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
682
682
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
683
683
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
684
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
685
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
684
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
685
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
686
686
|
}>, import("@feathersjs/typebox").TObject<{
|
|
687
687
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
688
688
|
} | undefined>]>>]>>;
|
|
@@ -695,11 +695,11 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
695
695
|
$sort: {
|
|
696
696
|
symbol?: number | undefined;
|
|
697
697
|
_id?: number | undefined;
|
|
698
|
-
exchangeId?: number | undefined;
|
|
699
|
-
exchange?: number | undefined;
|
|
700
698
|
timestamp?: number | undefined;
|
|
699
|
+
exchange?: number | undefined;
|
|
700
|
+
exchangeId?: number | undefined;
|
|
701
701
|
};
|
|
702
|
-
$select: ("symbol" | "_id" | "
|
|
702
|
+
$select: ("symbol" | "_id" | "timestamp" | "exchange" | "exchangeId")[];
|
|
703
703
|
$and: ({
|
|
704
704
|
symbol?: string | Partial<{
|
|
705
705
|
$gt: string;
|
|
@@ -707,8 +707,8 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
707
707
|
$lt: string;
|
|
708
708
|
$lte: string;
|
|
709
709
|
$ne: string;
|
|
710
|
-
$in: string[];
|
|
711
|
-
$nin: string[];
|
|
710
|
+
$in: string | string[];
|
|
711
|
+
$nin: string | string[];
|
|
712
712
|
} & {}> | undefined;
|
|
713
713
|
_id?: string | {} | Partial<{
|
|
714
714
|
$gt: string | {};
|
|
@@ -716,20 +716,20 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
716
716
|
$lt: string | {};
|
|
717
717
|
$lte: string | {};
|
|
718
718
|
$ne: string | {};
|
|
719
|
-
$in: (string | {})[];
|
|
720
|
-
$nin: (string | {})[];
|
|
719
|
+
$in: string | {} | (string | {})[];
|
|
720
|
+
$nin: string | {} | (string | {})[];
|
|
721
721
|
} & {}> | undefined;
|
|
722
|
-
|
|
722
|
+
timestamp?: any;
|
|
723
723
|
exchange?: string | Partial<{
|
|
724
724
|
$gt?: string | undefined;
|
|
725
725
|
$gte?: string | undefined;
|
|
726
726
|
$lt?: string | undefined;
|
|
727
727
|
$lte?: string | undefined;
|
|
728
728
|
$ne?: string | undefined;
|
|
729
|
-
$in: string[];
|
|
730
|
-
$nin: string[];
|
|
729
|
+
$in: string | string[];
|
|
730
|
+
$nin: string | string[];
|
|
731
731
|
} & {}> | undefined;
|
|
732
|
-
|
|
732
|
+
exchangeId?: any;
|
|
733
733
|
} | {
|
|
734
734
|
$or: {
|
|
735
735
|
symbol?: string | Partial<{
|
|
@@ -738,8 +738,8 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
738
738
|
$lt: string;
|
|
739
739
|
$lte: string;
|
|
740
740
|
$ne: string;
|
|
741
|
-
$in: string[];
|
|
742
|
-
$nin: string[];
|
|
741
|
+
$in: string | string[];
|
|
742
|
+
$nin: string | string[];
|
|
743
743
|
} & {}> | undefined;
|
|
744
744
|
_id?: string | {} | Partial<{
|
|
745
745
|
$gt: string | {};
|
|
@@ -747,20 +747,20 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
747
747
|
$lt: string | {};
|
|
748
748
|
$lte: string | {};
|
|
749
749
|
$ne: string | {};
|
|
750
|
-
$in: (string | {})[];
|
|
751
|
-
$nin: (string | {})[];
|
|
750
|
+
$in: string | {} | (string | {})[];
|
|
751
|
+
$nin: string | {} | (string | {})[];
|
|
752
752
|
} & {}> | undefined;
|
|
753
|
-
|
|
753
|
+
timestamp?: any;
|
|
754
754
|
exchange?: string | Partial<{
|
|
755
755
|
$gt?: string | undefined;
|
|
756
756
|
$gte?: string | undefined;
|
|
757
757
|
$lt?: string | undefined;
|
|
758
758
|
$lte?: string | undefined;
|
|
759
759
|
$ne?: string | undefined;
|
|
760
|
-
$in: string[];
|
|
761
|
-
$nin: string[];
|
|
760
|
+
$in: string | string[];
|
|
761
|
+
$nin: string | string[];
|
|
762
762
|
} & {}> | undefined;
|
|
763
|
-
|
|
763
|
+
exchangeId?: any;
|
|
764
764
|
}[];
|
|
765
765
|
})[];
|
|
766
766
|
$or: {
|
|
@@ -770,8 +770,8 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
770
770
|
$lt: string;
|
|
771
771
|
$lte: string;
|
|
772
772
|
$ne: string;
|
|
773
|
-
$in: string[];
|
|
774
|
-
$nin: string[];
|
|
773
|
+
$in: string | string[];
|
|
774
|
+
$nin: string | string[];
|
|
775
775
|
} & {}> | undefined;
|
|
776
776
|
_id?: string | {} | Partial<{
|
|
777
777
|
$gt: string | {};
|
|
@@ -779,20 +779,20 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
779
779
|
$lt: string | {};
|
|
780
780
|
$lte: string | {};
|
|
781
781
|
$ne: string | {};
|
|
782
|
-
$in: (string | {})[];
|
|
783
|
-
$nin: (string | {})[];
|
|
782
|
+
$in: string | {} | (string | {})[];
|
|
783
|
+
$nin: string | {} | (string | {})[];
|
|
784
784
|
} & {}> | undefined;
|
|
785
|
-
|
|
785
|
+
timestamp?: any;
|
|
786
786
|
exchange?: string | Partial<{
|
|
787
787
|
$gt?: string | undefined;
|
|
788
788
|
$gte?: string | undefined;
|
|
789
789
|
$lt?: string | undefined;
|
|
790
790
|
$lte?: string | undefined;
|
|
791
791
|
$ne?: string | undefined;
|
|
792
|
-
$in: string[];
|
|
793
|
-
$nin: string[];
|
|
792
|
+
$in: string | string[];
|
|
793
|
+
$nin: string | string[];
|
|
794
794
|
} & {}> | undefined;
|
|
795
|
-
|
|
795
|
+
exchangeId?: any;
|
|
796
796
|
}[];
|
|
797
797
|
}> & {
|
|
798
798
|
symbol?: string | Partial<{
|
|
@@ -801,8 +801,8 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
801
801
|
$lt: string;
|
|
802
802
|
$lte: string;
|
|
803
803
|
$ne: string;
|
|
804
|
-
$in: string[];
|
|
805
|
-
$nin: string[];
|
|
804
|
+
$in: string | string[];
|
|
805
|
+
$nin: string | string[];
|
|
806
806
|
} & {}> | undefined;
|
|
807
807
|
_id?: string | {} | Partial<{
|
|
808
808
|
$gt: string | {};
|
|
@@ -810,18 +810,18 @@ export declare const exchangesTickerQueryResolver: import("@feathersjs/schema").
|
|
|
810
810
|
$lt: string | {};
|
|
811
811
|
$lte: string | {};
|
|
812
812
|
$ne: string | {};
|
|
813
|
-
$in: (string | {})[];
|
|
814
|
-
$nin: (string | {})[];
|
|
813
|
+
$in: string | {} | (string | {})[];
|
|
814
|
+
$nin: string | {} | (string | {})[];
|
|
815
815
|
} & {}> | undefined;
|
|
816
|
-
|
|
816
|
+
timestamp?: any;
|
|
817
817
|
exchange?: string | Partial<{
|
|
818
818
|
$gt?: string | undefined;
|
|
819
819
|
$gte?: string | undefined;
|
|
820
820
|
$lt?: string | undefined;
|
|
821
821
|
$lte?: string | undefined;
|
|
822
822
|
$ne?: string | undefined;
|
|
823
|
-
$in: string[];
|
|
824
|
-
$nin: string[];
|
|
823
|
+
$in: string | string[];
|
|
824
|
+
$nin: string | string[];
|
|
825
825
|
} & {}> | undefined;
|
|
826
|
-
|
|
826
|
+
exchangeId?: any;
|
|
827
827
|
} & {}, HookContext<ExchangesTickerService<import("./ticker.class").ExchangesTickerParams>>>;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { Params } from '@feathersjs/feathers';
|
|
2
|
+
import type { Application } from '../../declarations';
|
|
3
|
+
import type { Homepage, HomepageData, HomepagePatch, HomepageQuery } from './homepage.schema';
|
|
4
|
+
import { MemoryService } from '@feathersjs/memory';
|
|
5
|
+
export type { Homepage, HomepageData, HomepagePatch, HomepageQuery };
|
|
6
|
+
export interface HomepageServiceOptions {
|
|
7
|
+
app: Application;
|
|
8
|
+
}
|
|
9
|
+
export interface HomepageParams extends Params<HomepageQuery> {
|
|
10
|
+
}
|
|
11
|
+
export declare class HomepageService extends MemoryService<Homepage, HomepageData> {
|
|
12
|
+
}
|
|
13
|
+
export declare const getOptions: (app: Application) => {
|
|
14
|
+
app: Application;
|
|
15
|
+
};
|