@cryptorobot.ai/client 0.0.19 → 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 +519 -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
|
@@ -55,14 +55,13 @@ export declare const exchangesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
55
55
|
password?: string | undefined;
|
|
56
56
|
name?: any;
|
|
57
57
|
apiKey?: string | undefined;
|
|
58
|
+
token?: string | undefined;
|
|
58
59
|
secret?: string | undefined;
|
|
59
60
|
avatar?: any;
|
|
60
61
|
createdAt?: any;
|
|
61
62
|
updatedAt?: any;
|
|
62
|
-
|
|
63
|
-
which?: string | undefined;
|
|
63
|
+
login?: string | undefined;
|
|
64
64
|
connected?: boolean | undefined;
|
|
65
|
-
token?: string | undefined;
|
|
66
65
|
downloaded?: {
|
|
67
66
|
updatedAt: any;
|
|
68
67
|
size: string;
|
|
@@ -90,12 +89,13 @@ export declare const exchangesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
90
89
|
}[] | undefined;
|
|
91
90
|
whitelist?: any[] | undefined;
|
|
92
91
|
ccxt_async_config?: any;
|
|
92
|
+
which?: string | undefined;
|
|
93
93
|
requiredCredentials?: any;
|
|
94
94
|
uid?: string | undefined;
|
|
95
|
-
login?: string | undefined;
|
|
96
95
|
twofa?: string | undefined;
|
|
97
96
|
privateKey?: string | undefined;
|
|
98
97
|
walletAddress?: string | undefined;
|
|
98
|
+
userId?: string | {} | undefined;
|
|
99
99
|
__v?: any;
|
|
100
100
|
_id: string | {};
|
|
101
101
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
@@ -103,14 +103,13 @@ export declare const exchangesExternalResolver: import("@feathersjs/schema").Res
|
|
|
103
103
|
password?: string | undefined;
|
|
104
104
|
name?: any;
|
|
105
105
|
apiKey?: string | undefined;
|
|
106
|
+
token?: string | undefined;
|
|
106
107
|
secret?: string | undefined;
|
|
107
108
|
avatar?: any;
|
|
108
109
|
createdAt?: any;
|
|
109
110
|
updatedAt?: any;
|
|
110
|
-
|
|
111
|
-
which?: string | undefined;
|
|
111
|
+
login?: string | undefined;
|
|
112
112
|
connected?: boolean | undefined;
|
|
113
|
-
token?: string | undefined;
|
|
114
113
|
downloaded?: {
|
|
115
114
|
updatedAt: any;
|
|
116
115
|
size: string;
|
|
@@ -138,12 +137,13 @@ export declare const exchangesExternalResolver: import("@feathersjs/schema").Res
|
|
|
138
137
|
}[] | undefined;
|
|
139
138
|
whitelist?: any[] | undefined;
|
|
140
139
|
ccxt_async_config?: any;
|
|
140
|
+
which?: string | undefined;
|
|
141
141
|
requiredCredentials?: any;
|
|
142
142
|
uid?: string | undefined;
|
|
143
|
-
login?: string | undefined;
|
|
144
143
|
twofa?: string | undefined;
|
|
145
144
|
privateKey?: string | undefined;
|
|
146
145
|
walletAddress?: string | undefined;
|
|
146
|
+
userId?: string | {} | undefined;
|
|
147
147
|
__v?: any;
|
|
148
148
|
_id: string | {};
|
|
149
149
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
@@ -201,14 +201,13 @@ export declare const exchangesDataResolver: import("@feathersjs/schema").Resolve
|
|
|
201
201
|
password?: string | undefined;
|
|
202
202
|
name?: any;
|
|
203
203
|
apiKey?: string | undefined;
|
|
204
|
+
token?: string | undefined;
|
|
204
205
|
secret?: string | undefined;
|
|
205
206
|
avatar?: any;
|
|
206
207
|
createdAt?: any;
|
|
207
208
|
updatedAt?: any;
|
|
208
|
-
|
|
209
|
-
which?: string | undefined;
|
|
209
|
+
login?: string | undefined;
|
|
210
210
|
connected?: boolean | undefined;
|
|
211
|
-
token?: string | undefined;
|
|
212
211
|
downloaded?: {
|
|
213
212
|
updatedAt: any;
|
|
214
213
|
size: string;
|
|
@@ -236,12 +235,13 @@ export declare const exchangesDataResolver: import("@feathersjs/schema").Resolve
|
|
|
236
235
|
}[] | undefined;
|
|
237
236
|
whitelist?: any[] | undefined;
|
|
238
237
|
ccxt_async_config?: any;
|
|
238
|
+
which?: string | undefined;
|
|
239
239
|
requiredCredentials?: any;
|
|
240
240
|
uid?: string | undefined;
|
|
241
|
-
login?: string | undefined;
|
|
242
241
|
twofa?: string | undefined;
|
|
243
242
|
privateKey?: string | undefined;
|
|
244
243
|
walletAddress?: string | undefined;
|
|
244
|
+
userId?: string | {} | undefined;
|
|
245
245
|
__v?: any;
|
|
246
246
|
_id: string | {};
|
|
247
247
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
@@ -299,14 +299,13 @@ export declare const exchangesPatchResolver: import("@feathersjs/schema").Resolv
|
|
|
299
299
|
password?: string | undefined;
|
|
300
300
|
name?: any;
|
|
301
301
|
apiKey?: string | undefined;
|
|
302
|
+
token?: string | undefined;
|
|
302
303
|
secret?: string | undefined;
|
|
303
304
|
avatar?: any;
|
|
304
305
|
createdAt?: any;
|
|
305
306
|
updatedAt?: any;
|
|
306
|
-
|
|
307
|
-
which?: string | undefined;
|
|
307
|
+
login?: string | undefined;
|
|
308
308
|
connected?: boolean | undefined;
|
|
309
|
-
token?: string | undefined;
|
|
310
309
|
downloaded?: {
|
|
311
310
|
updatedAt: any;
|
|
312
311
|
size: string;
|
|
@@ -334,12 +333,13 @@ export declare const exchangesPatchResolver: import("@feathersjs/schema").Resolv
|
|
|
334
333
|
}[] | undefined;
|
|
335
334
|
whitelist?: any[] | undefined;
|
|
336
335
|
ccxt_async_config?: any;
|
|
336
|
+
which?: string | undefined;
|
|
337
337
|
requiredCredentials?: any;
|
|
338
338
|
uid?: string | undefined;
|
|
339
|
-
login?: string | undefined;
|
|
340
339
|
twofa?: string | undefined;
|
|
341
340
|
privateKey?: string | undefined;
|
|
342
341
|
walletAddress?: string | undefined;
|
|
342
|
+
userId?: string | {} | undefined;
|
|
343
343
|
__v?: any;
|
|
344
344
|
_id: string | {};
|
|
345
345
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
@@ -398,11 +398,11 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
398
398
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
399
399
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
400
400
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
401
|
-
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
402
|
-
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
403
401
|
connected: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
402
|
+
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
403
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
404
404
|
}>;
|
|
405
|
-
$select: import("@feathersjs/typebox").TUnsafe<("name" | "_id" | "updatedAt" | "
|
|
405
|
+
$select: import("@feathersjs/typebox").TUnsafe<("name" | "_id" | "updatedAt" | "connected" | "which" | "userId")[]>;
|
|
406
406
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
407
407
|
name: 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<{
|
|
408
408
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -410,8 +410,8 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
410
410
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
411
411
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
412
412
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
413
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
414
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
413
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
414
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
415
415
|
}>, import("@feathersjs/typebox").TObject<{
|
|
416
416
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
417
417
|
} | undefined>]>>]>>;
|
|
@@ -421,8 +421,8 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
421
421
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
422
422
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
423
423
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
424
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
425
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
424
|
+
$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<{}>]>>;
|
|
425
|
+
$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<{}>]>>;
|
|
426
426
|
}>, import("@feathersjs/typebox").TObject<{
|
|
427
427
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
428
428
|
} | undefined>]>>]>>;
|
|
@@ -432,19 +432,19 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
432
432
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
433
433
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
434
434
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
435
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
436
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
435
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
436
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
437
437
|
}>, import("@feathersjs/typebox").TObject<{
|
|
438
438
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
439
439
|
} | undefined>]>>]>>;
|
|
440
|
-
|
|
441
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
442
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
443
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
444
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
445
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
446
|
-
$in: import("@feathersjs/typebox").
|
|
447
|
-
$nin: import("@feathersjs/typebox").
|
|
440
|
+
connected: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
441
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
442
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
443
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
444
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
445
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
446
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
447
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
448
448
|
}>, import("@feathersjs/typebox").TObject<{
|
|
449
449
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
450
450
|
} | undefined>]>>]>>;
|
|
@@ -454,19 +454,19 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
454
454
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
455
455
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
456
456
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
457
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
458
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
457
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
458
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
459
459
|
}>, import("@feathersjs/typebox").TObject<{
|
|
460
460
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
461
461
|
} | undefined>]>>]>>;
|
|
462
|
-
|
|
463
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
464
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
465
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
466
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
467
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
468
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
469
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
462
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, 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<{
|
|
463
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
464
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
465
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
466
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
467
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
468
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
|
|
469
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
|
|
470
470
|
}>, import("@feathersjs/typebox").TObject<{
|
|
471
471
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
472
472
|
} | undefined>]>>]>>;
|
|
@@ -478,8 +478,8 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
478
478
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
479
479
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
480
480
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
481
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
482
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
481
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
482
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
483
483
|
}>, import("@feathersjs/typebox").TObject<{
|
|
484
484
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
485
485
|
} | undefined>]>>]>>;
|
|
@@ -489,8 +489,8 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
489
489
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
490
490
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
491
491
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
492
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
493
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
492
|
+
$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<{}>]>>;
|
|
493
|
+
$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<{}>]>>;
|
|
494
494
|
}>, import("@feathersjs/typebox").TObject<{
|
|
495
495
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
496
496
|
} | undefined>]>>]>>;
|
|
@@ -500,19 +500,19 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
500
500
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
501
501
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
502
502
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
503
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
504
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
503
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
504
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
505
505
|
}>, import("@feathersjs/typebox").TObject<{
|
|
506
506
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
507
507
|
} | undefined>]>>]>>;
|
|
508
|
-
|
|
509
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
510
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
511
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
512
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
513
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
514
|
-
$in: import("@feathersjs/typebox").
|
|
515
|
-
$nin: import("@feathersjs/typebox").
|
|
508
|
+
connected: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
509
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
510
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
511
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
512
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
513
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
514
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
515
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
516
516
|
}>, import("@feathersjs/typebox").TObject<{
|
|
517
517
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
518
518
|
} | undefined>]>>]>>;
|
|
@@ -522,19 +522,19 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
522
522
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
523
523
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
524
524
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
525
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
526
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
525
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
526
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
527
527
|
}>, import("@feathersjs/typebox").TObject<{
|
|
528
528
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
529
529
|
} | undefined>]>>]>>;
|
|
530
|
-
|
|
531
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
532
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
533
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
534
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
535
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
536
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
537
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
530
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, 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<{
|
|
531
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
532
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
533
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
534
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
535
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
536
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
|
|
537
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, 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>]>>]>>;
|
|
@@ -547,8 +547,8 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
547
547
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
548
548
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
549
549
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
550
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
551
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
550
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
551
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
552
552
|
}>, import("@feathersjs/typebox").TObject<{
|
|
553
553
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
554
554
|
} | undefined>]>>]>>;
|
|
@@ -558,8 +558,8 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
558
558
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
559
559
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
560
560
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
561
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
562
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
561
|
+
$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<{}>]>>;
|
|
562
|
+
$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<{}>]>>;
|
|
563
563
|
}>, import("@feathersjs/typebox").TObject<{
|
|
564
564
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
565
565
|
} | undefined>]>>]>>;
|
|
@@ -569,19 +569,19 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
569
569
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
570
570
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
571
571
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
572
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
573
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
572
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
573
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
574
574
|
}>, import("@feathersjs/typebox").TObject<{
|
|
575
575
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
576
576
|
} | undefined>]>>]>>;
|
|
577
|
-
|
|
578
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
579
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
580
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
581
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
582
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
583
|
-
$in: import("@feathersjs/typebox").
|
|
584
|
-
$nin: import("@feathersjs/typebox").
|
|
577
|
+
connected: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
578
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
579
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
580
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
581
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
582
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
583
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
584
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
585
585
|
}>, import("@feathersjs/typebox").TObject<{
|
|
586
586
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
587
587
|
} | undefined>]>>]>>;
|
|
@@ -591,19 +591,19 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
591
591
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
592
592
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
593
593
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
594
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
595
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
594
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
595
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
596
596
|
}>, import("@feathersjs/typebox").TObject<{
|
|
597
597
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
598
598
|
} | undefined>]>>]>>;
|
|
599
|
-
|
|
600
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
601
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
602
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
603
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
604
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
605
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
606
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
599
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, 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<{
|
|
600
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
601
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
602
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
603
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
604
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
605
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
|
|
606
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
|
|
607
607
|
}>, import("@feathersjs/typebox").TObject<{
|
|
608
608
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
609
609
|
} | undefined>]>>]>>;
|
|
@@ -615,8 +615,8 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
615
615
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
616
616
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
617
617
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
618
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
619
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
618
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
619
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
620
620
|
}>, import("@feathersjs/typebox").TObject<{
|
|
621
621
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
622
622
|
} | undefined>]>>]>>;
|
|
@@ -626,8 +626,8 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
626
626
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
627
627
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
628
628
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
629
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
630
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
629
|
+
$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<{}>]>>;
|
|
630
|
+
$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<{}>]>>;
|
|
631
631
|
}>, import("@feathersjs/typebox").TObject<{
|
|
632
632
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
633
633
|
} | undefined>]>>]>>;
|
|
@@ -637,19 +637,19 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
637
637
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
638
638
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
639
639
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
640
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
641
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
640
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
641
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
642
642
|
}>, import("@feathersjs/typebox").TObject<{
|
|
643
643
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
644
644
|
} | undefined>]>>]>>;
|
|
645
|
-
|
|
646
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
647
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
648
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
649
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
650
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
651
|
-
$in: import("@feathersjs/typebox").
|
|
652
|
-
$nin: import("@feathersjs/typebox").
|
|
645
|
+
connected: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
646
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
647
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
648
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
649
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
650
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
651
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
652
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
653
653
|
}>, import("@feathersjs/typebox").TObject<{
|
|
654
654
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
655
655
|
} | undefined>]>>]>>;
|
|
@@ -659,19 +659,19 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
659
659
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
660
660
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
661
661
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
662
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
663
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
662
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
663
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
664
664
|
}>, import("@feathersjs/typebox").TObject<{
|
|
665
665
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
666
666
|
} | undefined>]>>]>>;
|
|
667
|
-
|
|
668
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
669
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
670
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
671
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
672
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
673
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
674
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
667
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, 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<{
|
|
668
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
669
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
670
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
671
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
672
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
673
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
|
|
674
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
|
|
675
675
|
}>, import("@feathersjs/typebox").TObject<{
|
|
676
676
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
677
677
|
} | undefined>]>>]>>;
|
|
@@ -685,11 +685,11 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
685
685
|
name?: number | undefined;
|
|
686
686
|
_id?: number | undefined;
|
|
687
687
|
updatedAt?: number | undefined;
|
|
688
|
-
userId?: number | undefined;
|
|
689
|
-
which?: number | undefined;
|
|
690
688
|
connected?: number | undefined;
|
|
689
|
+
which?: number | undefined;
|
|
690
|
+
userId?: number | undefined;
|
|
691
691
|
};
|
|
692
|
-
$select: ("name" | "_id" | "updatedAt" | "
|
|
692
|
+
$select: ("name" | "_id" | "updatedAt" | "connected" | "which" | "userId")[];
|
|
693
693
|
$and: ({
|
|
694
694
|
name?: any;
|
|
695
695
|
_id?: string | {} | Partial<{
|
|
@@ -698,18 +698,18 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
698
698
|
$lt: string | {};
|
|
699
699
|
$lte: string | {};
|
|
700
700
|
$ne: string | {};
|
|
701
|
-
$in: (string | {})[];
|
|
702
|
-
$nin: (string | {})[];
|
|
701
|
+
$in: string | {} | (string | {})[];
|
|
702
|
+
$nin: string | {} | (string | {})[];
|
|
703
703
|
} & {}> | undefined;
|
|
704
704
|
updatedAt?: any;
|
|
705
|
-
|
|
706
|
-
$gt?:
|
|
707
|
-
$gte?:
|
|
708
|
-
$lt?:
|
|
709
|
-
$lte?:
|
|
710
|
-
$ne?:
|
|
711
|
-
$in:
|
|
712
|
-
$nin:
|
|
705
|
+
connected?: boolean | Partial<{
|
|
706
|
+
$gt?: boolean | undefined;
|
|
707
|
+
$gte?: boolean | undefined;
|
|
708
|
+
$lt?: boolean | undefined;
|
|
709
|
+
$lte?: boolean | undefined;
|
|
710
|
+
$ne?: boolean | undefined;
|
|
711
|
+
$in: boolean | boolean[];
|
|
712
|
+
$nin: boolean | boolean[];
|
|
713
713
|
} & {}> | undefined;
|
|
714
714
|
which?: string | Partial<{
|
|
715
715
|
$gt?: string | undefined;
|
|
@@ -717,17 +717,17 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
717
717
|
$lt?: string | undefined;
|
|
718
718
|
$lte?: string | undefined;
|
|
719
719
|
$ne?: string | undefined;
|
|
720
|
-
$in: string[];
|
|
721
|
-
$nin: string[];
|
|
720
|
+
$in: string | string[];
|
|
721
|
+
$nin: string | string[];
|
|
722
722
|
} & {}> | undefined;
|
|
723
|
-
|
|
724
|
-
$gt?:
|
|
725
|
-
$gte?:
|
|
726
|
-
$lt?:
|
|
727
|
-
$lte?:
|
|
728
|
-
$ne?:
|
|
729
|
-
$in:
|
|
730
|
-
$nin:
|
|
723
|
+
userId?: string | {} | Partial<{
|
|
724
|
+
$gt?: string | {} | undefined;
|
|
725
|
+
$gte?: string | {} | undefined;
|
|
726
|
+
$lt?: string | {} | undefined;
|
|
727
|
+
$lte?: string | {} | undefined;
|
|
728
|
+
$ne?: string | {} | undefined;
|
|
729
|
+
$in: string | {} | (string | {})[];
|
|
730
|
+
$nin: string | {} | (string | {})[];
|
|
731
731
|
} & {}> | undefined;
|
|
732
732
|
} | {
|
|
733
733
|
$or: {
|
|
@@ -738,18 +738,18 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
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
|
updatedAt?: any;
|
|
745
|
-
|
|
746
|
-
$gt?:
|
|
747
|
-
$gte?:
|
|
748
|
-
$lt?:
|
|
749
|
-
$lte?:
|
|
750
|
-
$ne?:
|
|
751
|
-
$in:
|
|
752
|
-
$nin:
|
|
745
|
+
connected?: boolean | Partial<{
|
|
746
|
+
$gt?: boolean | undefined;
|
|
747
|
+
$gte?: boolean | undefined;
|
|
748
|
+
$lt?: boolean | undefined;
|
|
749
|
+
$lte?: boolean | undefined;
|
|
750
|
+
$ne?: boolean | undefined;
|
|
751
|
+
$in: boolean | boolean[];
|
|
752
|
+
$nin: boolean | boolean[];
|
|
753
753
|
} & {}> | undefined;
|
|
754
754
|
which?: string | Partial<{
|
|
755
755
|
$gt?: string | undefined;
|
|
@@ -757,17 +757,17 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
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
|
-
|
|
764
|
-
$gt?:
|
|
765
|
-
$gte?:
|
|
766
|
-
$lt?:
|
|
767
|
-
$lte?:
|
|
768
|
-
$ne?:
|
|
769
|
-
$in:
|
|
770
|
-
$nin:
|
|
763
|
+
userId?: string | {} | Partial<{
|
|
764
|
+
$gt?: string | {} | undefined;
|
|
765
|
+
$gte?: string | {} | undefined;
|
|
766
|
+
$lt?: string | {} | undefined;
|
|
767
|
+
$lte?: string | {} | undefined;
|
|
768
|
+
$ne?: string | {} | undefined;
|
|
769
|
+
$in: string | {} | (string | {})[];
|
|
770
|
+
$nin: string | {} | (string | {})[];
|
|
771
771
|
} & {}> | undefined;
|
|
772
772
|
}[];
|
|
773
773
|
})[];
|
|
@@ -779,18 +779,18 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
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
|
updatedAt?: any;
|
|
786
|
-
|
|
787
|
-
$gt?:
|
|
788
|
-
$gte?:
|
|
789
|
-
$lt?:
|
|
790
|
-
$lte?:
|
|
791
|
-
$ne?:
|
|
792
|
-
$in:
|
|
793
|
-
$nin:
|
|
786
|
+
connected?: boolean | Partial<{
|
|
787
|
+
$gt?: boolean | undefined;
|
|
788
|
+
$gte?: boolean | undefined;
|
|
789
|
+
$lt?: boolean | undefined;
|
|
790
|
+
$lte?: boolean | undefined;
|
|
791
|
+
$ne?: boolean | undefined;
|
|
792
|
+
$in: boolean | boolean[];
|
|
793
|
+
$nin: boolean | boolean[];
|
|
794
794
|
} & {}> | undefined;
|
|
795
795
|
which?: string | Partial<{
|
|
796
796
|
$gt?: string | undefined;
|
|
@@ -798,17 +798,17 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
798
798
|
$lt?: string | undefined;
|
|
799
799
|
$lte?: string | undefined;
|
|
800
800
|
$ne?: string | undefined;
|
|
801
|
-
$in: string[];
|
|
802
|
-
$nin: string[];
|
|
801
|
+
$in: string | string[];
|
|
802
|
+
$nin: string | string[];
|
|
803
803
|
} & {}> | undefined;
|
|
804
|
-
|
|
805
|
-
$gt?:
|
|
806
|
-
$gte?:
|
|
807
|
-
$lt?:
|
|
808
|
-
$lte?:
|
|
809
|
-
$ne?:
|
|
810
|
-
$in:
|
|
811
|
-
$nin:
|
|
804
|
+
userId?: string | {} | Partial<{
|
|
805
|
+
$gt?: string | {} | undefined;
|
|
806
|
+
$gte?: string | {} | undefined;
|
|
807
|
+
$lt?: string | {} | undefined;
|
|
808
|
+
$lte?: string | {} | undefined;
|
|
809
|
+
$ne?: string | {} | undefined;
|
|
810
|
+
$in: string | {} | (string | {})[];
|
|
811
|
+
$nin: string | {} | (string | {})[];
|
|
812
812
|
} & {}> | undefined;
|
|
813
813
|
}[];
|
|
814
814
|
}> & {
|
|
@@ -819,18 +819,18 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
819
819
|
$lt: string | {};
|
|
820
820
|
$lte: string | {};
|
|
821
821
|
$ne: string | {};
|
|
822
|
-
$in: (string | {})[];
|
|
823
|
-
$nin: (string | {})[];
|
|
822
|
+
$in: string | {} | (string | {})[];
|
|
823
|
+
$nin: string | {} | (string | {})[];
|
|
824
824
|
} & {}> | undefined;
|
|
825
825
|
updatedAt?: any;
|
|
826
|
-
|
|
827
|
-
$gt?:
|
|
828
|
-
$gte?:
|
|
829
|
-
$lt?:
|
|
830
|
-
$lte?:
|
|
831
|
-
$ne?:
|
|
832
|
-
$in:
|
|
833
|
-
$nin:
|
|
826
|
+
connected?: boolean | Partial<{
|
|
827
|
+
$gt?: boolean | undefined;
|
|
828
|
+
$gte?: boolean | undefined;
|
|
829
|
+
$lt?: boolean | undefined;
|
|
830
|
+
$lte?: boolean | undefined;
|
|
831
|
+
$ne?: boolean | undefined;
|
|
832
|
+
$in: boolean | boolean[];
|
|
833
|
+
$nin: boolean | boolean[];
|
|
834
834
|
} & {}> | undefined;
|
|
835
835
|
which?: string | Partial<{
|
|
836
836
|
$gt?: string | undefined;
|
|
@@ -838,16 +838,16 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
838
838
|
$lt?: string | undefined;
|
|
839
839
|
$lte?: string | undefined;
|
|
840
840
|
$ne?: string | undefined;
|
|
841
|
-
$in: string[];
|
|
842
|
-
$nin: string[];
|
|
841
|
+
$in: string | string[];
|
|
842
|
+
$nin: string | string[];
|
|
843
843
|
} & {}> | undefined;
|
|
844
|
-
|
|
845
|
-
$gt?:
|
|
846
|
-
$gte?:
|
|
847
|
-
$lt?:
|
|
848
|
-
$lte?:
|
|
849
|
-
$ne?:
|
|
850
|
-
$in:
|
|
851
|
-
$nin:
|
|
844
|
+
userId?: string | {} | Partial<{
|
|
845
|
+
$gt?: string | {} | undefined;
|
|
846
|
+
$gte?: string | {} | undefined;
|
|
847
|
+
$lt?: string | {} | undefined;
|
|
848
|
+
$lte?: string | {} | undefined;
|
|
849
|
+
$ne?: string | {} | undefined;
|
|
850
|
+
$in: string | {} | (string | {})[];
|
|
851
|
+
$nin: string | {} | (string | {})[];
|
|
852
852
|
} & {}> | undefined;
|
|
853
853
|
} & {}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|