@cryptorobot.ai/client 0.0.35 → 0.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/configuration.d.ts +1 -0
- package/lib/helpers/ccxt.helper.d.ts +1 -0
- package/lib/helpers/mailer.helper.d.ts +14 -0
- package/lib/helpers/reports.helper.d.ts +5 -0
- package/lib/helpers/subscription.helper.d.ts +7 -15
- package/lib/hooks/get-pods-container-inspect.d.ts +2 -0
- package/lib/hooks/whitelist-set-default-by-volume.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +28 -4
- package/lib/services/exchanges/download/download.schema.d.ts +28 -4
- package/lib/services/exchanges/exchanges.schema.d.ts +246 -90
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +28 -4
- package/lib/services/homepage/homepage.schema.d.ts +9 -1
- package/lib/services/strategies/backtest/backtest.schema.d.ts +56 -56
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +4 -4
- package/lib/services/strategies/strategies.schema.d.ts +93 -11
- package/lib/services/traders/pods/api/api.schema.d.ts +52 -28
- package/lib/services/traders/pods/events/events.class.d.ts +1 -1
- package/lib/services/traders/pods/events/events.schema.d.ts +8 -0
- package/lib/services/traders/pods/pods.schema.d.ts +44 -20
- package/lib/services/traders/traders.schema.d.ts +247 -115
- package/package.json +1 -1
|
@@ -36,6 +36,9 @@ export declare const exchangesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
36
36
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
37
37
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
38
38
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
39
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
40
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
41
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
39
42
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
40
43
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
41
44
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -64,6 +67,7 @@ export declare const exchangesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
64
67
|
updatedAt?: any;
|
|
65
68
|
error?: any;
|
|
66
69
|
login?: string | undefined;
|
|
70
|
+
userId?: string | {} | undefined;
|
|
67
71
|
connected?: boolean | undefined;
|
|
68
72
|
downloaded?: {
|
|
69
73
|
updatedAt: any;
|
|
@@ -93,12 +97,14 @@ export declare const exchangesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
93
97
|
whitelist?: any[] | undefined;
|
|
94
98
|
ccxt_async_config?: any;
|
|
95
99
|
which?: string | undefined;
|
|
100
|
+
stakeCurrencies?: any[] | undefined;
|
|
101
|
+
popularStakeCurrency?: string | null | undefined;
|
|
102
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
96
103
|
requiredCredentials?: any;
|
|
97
104
|
uid?: string | undefined;
|
|
98
105
|
twofa?: string | undefined;
|
|
99
106
|
privateKey?: string | undefined;
|
|
100
107
|
walletAddress?: string | undefined;
|
|
101
|
-
userId?: string | {} | undefined;
|
|
102
108
|
__v?: any;
|
|
103
109
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
104
110
|
export declare const exchangesExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
@@ -113,6 +119,7 @@ export declare const exchangesExternalResolver: import("@feathersjs/schema").Res
|
|
|
113
119
|
updatedAt?: any;
|
|
114
120
|
error?: any;
|
|
115
121
|
login?: string | undefined;
|
|
122
|
+
userId?: string | {} | undefined;
|
|
116
123
|
connected?: boolean | undefined;
|
|
117
124
|
downloaded?: {
|
|
118
125
|
updatedAt: any;
|
|
@@ -142,12 +149,14 @@ export declare const exchangesExternalResolver: import("@feathersjs/schema").Res
|
|
|
142
149
|
whitelist?: any[] | undefined;
|
|
143
150
|
ccxt_async_config?: any;
|
|
144
151
|
which?: string | undefined;
|
|
152
|
+
stakeCurrencies?: any[] | undefined;
|
|
153
|
+
popularStakeCurrency?: string | null | undefined;
|
|
154
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
145
155
|
requiredCredentials?: any;
|
|
146
156
|
uid?: string | undefined;
|
|
147
157
|
twofa?: string | undefined;
|
|
148
158
|
privateKey?: string | undefined;
|
|
149
159
|
walletAddress?: string | undefined;
|
|
150
|
-
userId?: string | {} | undefined;
|
|
151
160
|
__v?: any;
|
|
152
161
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
153
162
|
export declare const exchangesDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
@@ -185,6 +194,9 @@ export declare const exchangesDataSchema: import("@feathersjs/typebox").TPick<im
|
|
|
185
194
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
186
195
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
187
196
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
197
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
198
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
199
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
188
200
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
189
201
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
190
202
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -198,7 +210,7 @@ export declare const exchangesDataSchema: import("@feathersjs/typebox").TPick<im
|
|
|
198
210
|
error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
199
211
|
userId: 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<{}>]>]>>;
|
|
200
212
|
__v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
201
|
-
}>, ["_id"]>;
|
|
213
|
+
}>, ["_id", "name"]>;
|
|
202
214
|
export type ExchangesData = Static<typeof exchangesDataSchema>;
|
|
203
215
|
export declare const exchangesDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
204
216
|
export declare const exchangesDataResolver: import("@feathersjs/schema").Resolver<{
|
|
@@ -213,6 +225,7 @@ export declare const exchangesDataResolver: import("@feathersjs/schema").Resolve
|
|
|
213
225
|
updatedAt?: any;
|
|
214
226
|
error?: any;
|
|
215
227
|
login?: string | undefined;
|
|
228
|
+
userId?: string | {} | undefined;
|
|
216
229
|
connected?: boolean | undefined;
|
|
217
230
|
downloaded?: {
|
|
218
231
|
updatedAt: any;
|
|
@@ -242,12 +255,14 @@ export declare const exchangesDataResolver: import("@feathersjs/schema").Resolve
|
|
|
242
255
|
whitelist?: any[] | undefined;
|
|
243
256
|
ccxt_async_config?: any;
|
|
244
257
|
which?: string | undefined;
|
|
258
|
+
stakeCurrencies?: any[] | undefined;
|
|
259
|
+
popularStakeCurrency?: string | null | undefined;
|
|
260
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
245
261
|
requiredCredentials?: any;
|
|
246
262
|
uid?: string | undefined;
|
|
247
263
|
twofa?: string | undefined;
|
|
248
264
|
privateKey?: string | undefined;
|
|
249
265
|
walletAddress?: string | undefined;
|
|
250
|
-
userId?: string | {} | undefined;
|
|
251
266
|
__v?: any;
|
|
252
267
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
253
268
|
export declare const exchangesPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
@@ -285,6 +300,9 @@ export declare const exchangesPatchSchema: import("@feathersjs/typebox").TPartia
|
|
|
285
300
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
286
301
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
287
302
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
303
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
304
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
305
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
288
306
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
289
307
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
290
308
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -313,6 +331,7 @@ export declare const exchangesPatchResolver: import("@feathersjs/schema").Resolv
|
|
|
313
331
|
updatedAt?: any;
|
|
314
332
|
error?: any;
|
|
315
333
|
login?: string | undefined;
|
|
334
|
+
userId?: string | {} | undefined;
|
|
316
335
|
connected?: boolean | undefined;
|
|
317
336
|
downloaded?: {
|
|
318
337
|
updatedAt: any;
|
|
@@ -342,12 +361,14 @@ export declare const exchangesPatchResolver: import("@feathersjs/schema").Resolv
|
|
|
342
361
|
whitelist?: any[] | undefined;
|
|
343
362
|
ccxt_async_config?: any;
|
|
344
363
|
which?: string | undefined;
|
|
364
|
+
stakeCurrencies?: any[] | undefined;
|
|
365
|
+
popularStakeCurrency?: string | null | undefined;
|
|
366
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
345
367
|
requiredCredentials?: any;
|
|
346
368
|
uid?: string | undefined;
|
|
347
369
|
twofa?: string | undefined;
|
|
348
370
|
privateKey?: string | undefined;
|
|
349
371
|
walletAddress?: string | undefined;
|
|
350
|
-
userId?: string | {} | undefined;
|
|
351
372
|
__v?: any;
|
|
352
373
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
353
374
|
export declare const exchangesQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
@@ -385,6 +406,9 @@ export declare const exchangesQueryProperties: import("@feathersjs/typebox").TPi
|
|
|
385
406
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
386
407
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
387
408
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
409
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
410
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
411
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
388
412
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
389
413
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
390
414
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -398,19 +422,21 @@ export declare const exchangesQueryProperties: import("@feathersjs/typebox").TPi
|
|
|
398
422
|
error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
399
423
|
userId: 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<{}>]>]>>;
|
|
400
424
|
__v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
401
|
-
}>, ["_id", "name", "userId", "which", "updatedAt", "connected"]>;
|
|
425
|
+
}>, ["_id", "name", "userId", "which", "updatedAt", "connected", "whitelist", "createdAt"]>;
|
|
402
426
|
export declare const exchangesQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
403
427
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
404
428
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
405
429
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
406
430
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
407
431
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
432
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
408
433
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
434
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
409
435
|
connected: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
436
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
410
437
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
411
|
-
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
412
438
|
}>;
|
|
413
|
-
$select: import("@feathersjs/typebox").TUnsafe<("name" | "_id" | "updatedAt" | "connected" | "
|
|
439
|
+
$select: import("@feathersjs/typebox").TUnsafe<("name" | "_id" | "createdAt" | "updatedAt" | "userId" | "connected" | "whitelist" | "which")[]>;
|
|
414
440
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
415
441
|
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<{
|
|
416
442
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -434,6 +460,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
434
460
|
}>, import("@feathersjs/typebox").TObject<{
|
|
435
461
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
436
462
|
} | undefined>]>>]>>;
|
|
463
|
+
createdAt: 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<{
|
|
464
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
465
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
466
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
467
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
468
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
469
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
470
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
471
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
472
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
473
|
+
} | undefined>]>>]>>;
|
|
437
474
|
updatedAt: 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<{
|
|
438
475
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
439
476
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -445,6 +482,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
445
482
|
}>, import("@feathersjs/typebox").TObject<{
|
|
446
483
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
447
484
|
} | undefined>]>>]>>;
|
|
485
|
+
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<{
|
|
486
|
+
$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<{}>]>]>>;
|
|
487
|
+
$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<{}>]>]>>;
|
|
488
|
+
$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<{}>]>]>>;
|
|
489
|
+
$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<{}>]>]>>;
|
|
490
|
+
$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<{}>]>]>>;
|
|
491
|
+
$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<{}>]>]>>>;
|
|
492
|
+
$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<{}>]>]>>>;
|
|
493
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
494
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
495
|
+
} | undefined>]>>]>>;
|
|
448
496
|
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<{
|
|
449
497
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
450
498
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -456,6 +504,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
456
504
|
}>, import("@feathersjs/typebox").TObject<{
|
|
457
505
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
458
506
|
} | undefined>]>>]>>;
|
|
507
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
508
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
509
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
510
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
511
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
512
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
513
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>>;
|
|
514
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>>;
|
|
515
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
516
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
517
|
+
} | undefined>]>>]>>;
|
|
459
518
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
460
519
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
461
520
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -467,17 +526,6 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
467
526
|
}>, import("@feathersjs/typebox").TObject<{
|
|
468
527
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
469
528
|
} | undefined>]>>]>>;
|
|
470
|
-
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<{
|
|
471
|
-
$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<{}>]>]>>;
|
|
472
|
-
$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<{}>]>]>>;
|
|
473
|
-
$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<{}>]>]>>;
|
|
474
|
-
$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<{}>]>]>>;
|
|
475
|
-
$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<{}>]>]>>;
|
|
476
|
-
$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<{}>]>]>>>;
|
|
477
|
-
$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<{}>]>]>>>;
|
|
478
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
479
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
480
|
-
} | undefined>]>>]>>;
|
|
481
529
|
}>>, import("@feathersjs/typebox").TObject<{
|
|
482
530
|
$or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
483
531
|
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<{
|
|
@@ -502,6 +550,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
502
550
|
}>, import("@feathersjs/typebox").TObject<{
|
|
503
551
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
504
552
|
} | undefined>]>>]>>;
|
|
553
|
+
createdAt: 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<{
|
|
554
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
555
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
556
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
557
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
558
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
559
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
560
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
561
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
562
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
563
|
+
} | undefined>]>>]>>;
|
|
505
564
|
updatedAt: 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<{
|
|
506
565
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
507
566
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -513,6 +572,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
513
572
|
}>, import("@feathersjs/typebox").TObject<{
|
|
514
573
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
515
574
|
} | undefined>]>>]>>;
|
|
575
|
+
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<{
|
|
576
|
+
$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<{}>]>]>>;
|
|
577
|
+
$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<{}>]>]>>;
|
|
578
|
+
$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<{}>]>]>>;
|
|
579
|
+
$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<{}>]>]>>;
|
|
580
|
+
$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<{}>]>]>>;
|
|
581
|
+
$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<{}>]>]>>>;
|
|
582
|
+
$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<{}>]>]>>>;
|
|
583
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
584
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
585
|
+
} | undefined>]>>]>>;
|
|
516
586
|
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<{
|
|
517
587
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
518
588
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -524,6 +594,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
524
594
|
}>, import("@feathersjs/typebox").TObject<{
|
|
525
595
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
526
596
|
} | undefined>]>>]>>;
|
|
597
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
598
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
599
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
600
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
601
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
602
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
603
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>>;
|
|
604
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>>;
|
|
605
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
606
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
607
|
+
} | undefined>]>>]>>;
|
|
527
608
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
528
609
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
529
610
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -535,17 +616,6 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
535
616
|
}>, import("@feathersjs/typebox").TObject<{
|
|
536
617
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
537
618
|
} | undefined>]>>]>>;
|
|
538
|
-
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<{
|
|
539
|
-
$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<{}>]>]>>;
|
|
540
|
-
$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<{}>]>]>>;
|
|
541
|
-
$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<{}>]>]>>;
|
|
542
|
-
$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<{}>]>]>>;
|
|
543
|
-
$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<{}>]>]>>;
|
|
544
|
-
$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<{}>]>]>>>;
|
|
545
|
-
$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<{}>]>]>>>;
|
|
546
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
547
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
548
|
-
} | undefined>]>>]>>;
|
|
549
619
|
}>>>;
|
|
550
620
|
}>]>>;
|
|
551
621
|
$or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
@@ -571,6 +641,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
571
641
|
}>, import("@feathersjs/typebox").TObject<{
|
|
572
642
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
573
643
|
} | undefined>]>>]>>;
|
|
644
|
+
createdAt: 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<{
|
|
645
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
646
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
647
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
648
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
649
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
650
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
651
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
652
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
653
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
654
|
+
} | undefined>]>>]>>;
|
|
574
655
|
updatedAt: 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<{
|
|
575
656
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
576
657
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -582,6 +663,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
582
663
|
}>, import("@feathersjs/typebox").TObject<{
|
|
583
664
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
584
665
|
} | undefined>]>>]>>;
|
|
666
|
+
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<{
|
|
667
|
+
$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<{}>]>]>>;
|
|
668
|
+
$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<{}>]>]>>;
|
|
669
|
+
$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<{}>]>]>>;
|
|
670
|
+
$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<{}>]>]>>;
|
|
671
|
+
$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<{}>]>]>>;
|
|
672
|
+
$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<{}>]>]>>>;
|
|
673
|
+
$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<{}>]>]>>>;
|
|
674
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
675
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
676
|
+
} | undefined>]>>]>>;
|
|
585
677
|
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<{
|
|
586
678
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
587
679
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -593,6 +685,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
593
685
|
}>, import("@feathersjs/typebox").TObject<{
|
|
594
686
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
595
687
|
} | undefined>]>>]>>;
|
|
688
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
689
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
690
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
691
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
692
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
693
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
694
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>>;
|
|
695
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>>;
|
|
696
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
697
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
698
|
+
} | undefined>]>>]>>;
|
|
596
699
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
597
700
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
598
701
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -604,17 +707,6 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
604
707
|
}>, import("@feathersjs/typebox").TObject<{
|
|
605
708
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
606
709
|
} | undefined>]>>]>>;
|
|
607
|
-
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<{
|
|
608
|
-
$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<{}>]>]>>;
|
|
609
|
-
$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<{}>]>]>>;
|
|
610
|
-
$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<{}>]>]>>;
|
|
611
|
-
$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<{}>]>]>>;
|
|
612
|
-
$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<{}>]>]>>;
|
|
613
|
-
$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<{}>]>]>>>;
|
|
614
|
-
$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<{}>]>]>>>;
|
|
615
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
616
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
617
|
-
} | undefined>]>>]>>;
|
|
618
710
|
}>>>;
|
|
619
711
|
}>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
620
712
|
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<{
|
|
@@ -639,6 +731,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
639
731
|
}>, import("@feathersjs/typebox").TObject<{
|
|
640
732
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
641
733
|
} | undefined>]>>]>>;
|
|
734
|
+
createdAt: 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<{
|
|
735
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
736
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
737
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
738
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
739
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
740
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
741
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
742
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
743
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
744
|
+
} | undefined>]>>]>>;
|
|
642
745
|
updatedAt: 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<{
|
|
643
746
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
644
747
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -650,6 +753,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
650
753
|
}>, import("@feathersjs/typebox").TObject<{
|
|
651
754
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
652
755
|
} | undefined>]>>]>>;
|
|
756
|
+
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<{
|
|
757
|
+
$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<{}>]>]>>;
|
|
758
|
+
$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<{}>]>]>>;
|
|
759
|
+
$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<{}>]>]>>;
|
|
760
|
+
$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<{}>]>]>>;
|
|
761
|
+
$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<{}>]>]>>;
|
|
762
|
+
$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<{}>]>]>>>;
|
|
763
|
+
$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<{}>]>]>>>;
|
|
764
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
765
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
766
|
+
} | undefined>]>>]>>;
|
|
653
767
|
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<{
|
|
654
768
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
655
769
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -661,6 +775,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
661
775
|
}>, import("@feathersjs/typebox").TObject<{
|
|
662
776
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
663
777
|
} | undefined>]>>]>>;
|
|
778
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
779
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
780
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
781
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
782
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
783
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
784
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>>;
|
|
785
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>>;
|
|
786
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
787
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
788
|
+
} | undefined>]>>]>>;
|
|
664
789
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
665
790
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
666
791
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -672,17 +797,6 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
672
797
|
}>, import("@feathersjs/typebox").TObject<{
|
|
673
798
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
674
799
|
} | undefined>]>>]>>;
|
|
675
|
-
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<{
|
|
676
|
-
$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<{}>]>]>>;
|
|
677
|
-
$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<{}>]>]>>;
|
|
678
|
-
$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<{}>]>]>>;
|
|
679
|
-
$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<{}>]>]>>;
|
|
680
|
-
$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<{}>]>]>>;
|
|
681
|
-
$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<{}>]>]>>>;
|
|
682
|
-
$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<{}>]>]>>>;
|
|
683
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
684
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
685
|
-
} | undefined>]>>]>>;
|
|
686
800
|
}>>]>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
687
801
|
export type ExchangesQuery = Static<typeof exchangesQuerySchema>;
|
|
688
802
|
export declare const exchangesQueryValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
@@ -692,12 +806,14 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
692
806
|
$sort: {
|
|
693
807
|
name?: number | undefined;
|
|
694
808
|
_id?: number | undefined;
|
|
809
|
+
createdAt?: number | undefined;
|
|
695
810
|
updatedAt?: number | undefined;
|
|
811
|
+
userId?: number | undefined;
|
|
696
812
|
connected?: number | undefined;
|
|
813
|
+
whitelist?: number | undefined;
|
|
697
814
|
which?: number | undefined;
|
|
698
|
-
userId?: number | undefined;
|
|
699
815
|
};
|
|
700
|
-
$select: ("name" | "_id" | "updatedAt" | "connected" | "
|
|
816
|
+
$select: ("name" | "_id" | "createdAt" | "updatedAt" | "userId" | "connected" | "whitelist" | "which")[];
|
|
701
817
|
$and: ({
|
|
702
818
|
name?: any;
|
|
703
819
|
_id?: string | {} | Partial<{
|
|
@@ -709,7 +825,17 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
709
825
|
$in: string | {} | (string | {})[];
|
|
710
826
|
$nin: string | {} | (string | {})[];
|
|
711
827
|
} & {}> | undefined;
|
|
828
|
+
createdAt?: any;
|
|
712
829
|
updatedAt?: any;
|
|
830
|
+
userId?: string | {} | Partial<{
|
|
831
|
+
$gt?: string | {} | undefined;
|
|
832
|
+
$gte?: string | {} | undefined;
|
|
833
|
+
$lt?: string | {} | undefined;
|
|
834
|
+
$lte?: string | {} | undefined;
|
|
835
|
+
$ne?: string | {} | undefined;
|
|
836
|
+
$in: string | {} | (string | {})[];
|
|
837
|
+
$nin: string | {} | (string | {})[];
|
|
838
|
+
} & {}> | undefined;
|
|
713
839
|
connected?: boolean | Partial<{
|
|
714
840
|
$gt?: boolean | undefined;
|
|
715
841
|
$gte?: boolean | undefined;
|
|
@@ -719,6 +845,15 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
719
845
|
$in: boolean | boolean[];
|
|
720
846
|
$nin: boolean | boolean[];
|
|
721
847
|
} & {}> | undefined;
|
|
848
|
+
whitelist?: any[] | Partial<{
|
|
849
|
+
$gt?: any[] | undefined;
|
|
850
|
+
$gte?: any[] | undefined;
|
|
851
|
+
$lt?: any[] | undefined;
|
|
852
|
+
$lte?: any[] | undefined;
|
|
853
|
+
$ne?: any[] | undefined;
|
|
854
|
+
$in: any[] | any[][];
|
|
855
|
+
$nin: any[] | any[][];
|
|
856
|
+
} & {}> | undefined;
|
|
722
857
|
which?: string | Partial<{
|
|
723
858
|
$gt?: string | undefined;
|
|
724
859
|
$gte?: string | undefined;
|
|
@@ -728,15 +863,6 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
728
863
|
$in: string | string[];
|
|
729
864
|
$nin: string | string[];
|
|
730
865
|
} & {}> | undefined;
|
|
731
|
-
userId?: string | {} | Partial<{
|
|
732
|
-
$gt?: string | {} | undefined;
|
|
733
|
-
$gte?: string | {} | undefined;
|
|
734
|
-
$lt?: string | {} | undefined;
|
|
735
|
-
$lte?: string | {} | undefined;
|
|
736
|
-
$ne?: string | {} | undefined;
|
|
737
|
-
$in: string | {} | (string | {})[];
|
|
738
|
-
$nin: string | {} | (string | {})[];
|
|
739
|
-
} & {}> | undefined;
|
|
740
866
|
} | {
|
|
741
867
|
$or: {
|
|
742
868
|
name?: any;
|
|
@@ -749,7 +875,17 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
749
875
|
$in: string | {} | (string | {})[];
|
|
750
876
|
$nin: string | {} | (string | {})[];
|
|
751
877
|
} & {}> | undefined;
|
|
878
|
+
createdAt?: any;
|
|
752
879
|
updatedAt?: any;
|
|
880
|
+
userId?: string | {} | Partial<{
|
|
881
|
+
$gt?: string | {} | undefined;
|
|
882
|
+
$gte?: string | {} | undefined;
|
|
883
|
+
$lt?: string | {} | undefined;
|
|
884
|
+
$lte?: string | {} | undefined;
|
|
885
|
+
$ne?: string | {} | undefined;
|
|
886
|
+
$in: string | {} | (string | {})[];
|
|
887
|
+
$nin: string | {} | (string | {})[];
|
|
888
|
+
} & {}> | undefined;
|
|
753
889
|
connected?: boolean | Partial<{
|
|
754
890
|
$gt?: boolean | undefined;
|
|
755
891
|
$gte?: boolean | undefined;
|
|
@@ -759,6 +895,15 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
759
895
|
$in: boolean | boolean[];
|
|
760
896
|
$nin: boolean | boolean[];
|
|
761
897
|
} & {}> | undefined;
|
|
898
|
+
whitelist?: any[] | Partial<{
|
|
899
|
+
$gt?: any[] | undefined;
|
|
900
|
+
$gte?: any[] | undefined;
|
|
901
|
+
$lt?: any[] | undefined;
|
|
902
|
+
$lte?: any[] | undefined;
|
|
903
|
+
$ne?: any[] | undefined;
|
|
904
|
+
$in: any[] | any[][];
|
|
905
|
+
$nin: any[] | any[][];
|
|
906
|
+
} & {}> | undefined;
|
|
762
907
|
which?: string | Partial<{
|
|
763
908
|
$gt?: string | undefined;
|
|
764
909
|
$gte?: string | undefined;
|
|
@@ -768,15 +913,6 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
768
913
|
$in: string | string[];
|
|
769
914
|
$nin: string | string[];
|
|
770
915
|
} & {}> | undefined;
|
|
771
|
-
userId?: string | {} | Partial<{
|
|
772
|
-
$gt?: string | {} | undefined;
|
|
773
|
-
$gte?: string | {} | undefined;
|
|
774
|
-
$lt?: string | {} | undefined;
|
|
775
|
-
$lte?: string | {} | undefined;
|
|
776
|
-
$ne?: string | {} | undefined;
|
|
777
|
-
$in: string | {} | (string | {})[];
|
|
778
|
-
$nin: string | {} | (string | {})[];
|
|
779
|
-
} & {}> | undefined;
|
|
780
916
|
}[];
|
|
781
917
|
})[];
|
|
782
918
|
$or: {
|
|
@@ -790,7 +926,17 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
790
926
|
$in: string | {} | (string | {})[];
|
|
791
927
|
$nin: string | {} | (string | {})[];
|
|
792
928
|
} & {}> | undefined;
|
|
929
|
+
createdAt?: any;
|
|
793
930
|
updatedAt?: any;
|
|
931
|
+
userId?: string | {} | Partial<{
|
|
932
|
+
$gt?: string | {} | undefined;
|
|
933
|
+
$gte?: string | {} | undefined;
|
|
934
|
+
$lt?: string | {} | undefined;
|
|
935
|
+
$lte?: string | {} | undefined;
|
|
936
|
+
$ne?: string | {} | undefined;
|
|
937
|
+
$in: string | {} | (string | {})[];
|
|
938
|
+
$nin: string | {} | (string | {})[];
|
|
939
|
+
} & {}> | undefined;
|
|
794
940
|
connected?: boolean | Partial<{
|
|
795
941
|
$gt?: boolean | undefined;
|
|
796
942
|
$gte?: boolean | undefined;
|
|
@@ -800,6 +946,15 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
800
946
|
$in: boolean | boolean[];
|
|
801
947
|
$nin: boolean | boolean[];
|
|
802
948
|
} & {}> | undefined;
|
|
949
|
+
whitelist?: any[] | Partial<{
|
|
950
|
+
$gt?: any[] | undefined;
|
|
951
|
+
$gte?: any[] | undefined;
|
|
952
|
+
$lt?: any[] | undefined;
|
|
953
|
+
$lte?: any[] | undefined;
|
|
954
|
+
$ne?: any[] | undefined;
|
|
955
|
+
$in: any[] | any[][];
|
|
956
|
+
$nin: any[] | any[][];
|
|
957
|
+
} & {}> | undefined;
|
|
803
958
|
which?: string | Partial<{
|
|
804
959
|
$gt?: string | undefined;
|
|
805
960
|
$gte?: string | undefined;
|
|
@@ -809,15 +964,6 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
809
964
|
$in: string | string[];
|
|
810
965
|
$nin: string | string[];
|
|
811
966
|
} & {}> | undefined;
|
|
812
|
-
userId?: string | {} | Partial<{
|
|
813
|
-
$gt?: string | {} | undefined;
|
|
814
|
-
$gte?: string | {} | undefined;
|
|
815
|
-
$lt?: string | {} | undefined;
|
|
816
|
-
$lte?: string | {} | undefined;
|
|
817
|
-
$ne?: string | {} | undefined;
|
|
818
|
-
$in: string | {} | (string | {})[];
|
|
819
|
-
$nin: string | {} | (string | {})[];
|
|
820
|
-
} & {}> | undefined;
|
|
821
967
|
}[];
|
|
822
968
|
}> & {
|
|
823
969
|
name?: any;
|
|
@@ -830,7 +976,17 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
830
976
|
$in: string | {} | (string | {})[];
|
|
831
977
|
$nin: string | {} | (string | {})[];
|
|
832
978
|
} & {}> | undefined;
|
|
979
|
+
createdAt?: any;
|
|
833
980
|
updatedAt?: any;
|
|
981
|
+
userId?: string | {} | Partial<{
|
|
982
|
+
$gt?: string | {} | undefined;
|
|
983
|
+
$gte?: string | {} | undefined;
|
|
984
|
+
$lt?: string | {} | undefined;
|
|
985
|
+
$lte?: string | {} | undefined;
|
|
986
|
+
$ne?: string | {} | undefined;
|
|
987
|
+
$in: string | {} | (string | {})[];
|
|
988
|
+
$nin: string | {} | (string | {})[];
|
|
989
|
+
} & {}> | undefined;
|
|
834
990
|
connected?: boolean | Partial<{
|
|
835
991
|
$gt?: boolean | undefined;
|
|
836
992
|
$gte?: boolean | undefined;
|
|
@@ -840,6 +996,15 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
840
996
|
$in: boolean | boolean[];
|
|
841
997
|
$nin: boolean | boolean[];
|
|
842
998
|
} & {}> | undefined;
|
|
999
|
+
whitelist?: any[] | Partial<{
|
|
1000
|
+
$gt?: any[] | undefined;
|
|
1001
|
+
$gte?: any[] | undefined;
|
|
1002
|
+
$lt?: any[] | undefined;
|
|
1003
|
+
$lte?: any[] | undefined;
|
|
1004
|
+
$ne?: any[] | undefined;
|
|
1005
|
+
$in: any[] | any[][];
|
|
1006
|
+
$nin: any[] | any[][];
|
|
1007
|
+
} & {}> | undefined;
|
|
843
1008
|
which?: string | Partial<{
|
|
844
1009
|
$gt?: string | undefined;
|
|
845
1010
|
$gte?: string | undefined;
|
|
@@ -849,13 +1014,4 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
849
1014
|
$in: string | string[];
|
|
850
1015
|
$nin: string | string[];
|
|
851
1016
|
} & {}> | undefined;
|
|
852
|
-
userId?: string | {} | Partial<{
|
|
853
|
-
$gt?: string | {} | undefined;
|
|
854
|
-
$gte?: string | {} | undefined;
|
|
855
|
-
$lt?: string | {} | undefined;
|
|
856
|
-
$lte?: string | {} | undefined;
|
|
857
|
-
$ne?: string | {} | undefined;
|
|
858
|
-
$in: string | {} | (string | {})[];
|
|
859
|
-
$nin: string | {} | (string | {})[];
|
|
860
|
-
} & {}> | undefined;
|
|
861
1017
|
} & {}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|