@cryptorobot.ai/client 0.0.38 → 0.0.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/src/client.js +33 -3
- package/lib/src/services/agents/agents.class.d.ts +11 -0
- package/lib/src/services/agents/agents.d.ts +11 -0
- package/lib/src/services/agents/agents.schema.d.ts +2371 -0
- package/lib/src/services/agents/agents.shared.d.ts +13 -0
- package/lib/src/services/agents/agents.shared.js +13 -0
- package/lib/src/services/agents/prepare/prepare.class.d.ts +18 -0
- package/lib/src/services/agents/prepare/prepare.d.ts +11 -0
- package/lib/src/services/agents/prepare/prepare.schema.d.ts +285 -0
- package/lib/src/services/agents/prepare/prepare.shared.d.ts +13 -0
- package/lib/src/services/agents/prepare/prepare.shared.js +13 -0
- package/lib/src/services/agents/sessions/conversations/conversations.class.d.ts +11 -0
- package/lib/src/services/agents/sessions/conversations/conversations.d.ts +11 -0
- package/lib/src/services/agents/sessions/conversations/conversations.schema.d.ts +2561 -0
- package/lib/src/services/agents/sessions/conversations/conversations.shared.d.ts +13 -0
- package/lib/src/services/agents/sessions/conversations/conversations.shared.js +13 -0
- package/lib/src/services/agents/sessions/sessions.class.d.ts +11 -0
- package/lib/src/services/agents/sessions/sessions.d.ts +11 -0
- package/lib/src/services/agents/sessions/sessions.schema.d.ts +803 -0
- package/lib/src/services/agents/sessions/sessions.shared.d.ts +13 -0
- package/lib/src/services/agents/sessions/sessions.shared.js +13 -0
- package/lib/src/services/events/events.class.d.ts +11 -0
- package/lib/src/services/events/events.d.ts +11 -0
- package/lib/src/services/events/events.schema.d.ts +786 -0
- package/lib/src/services/events/events.shared.d.ts +13 -0
- package/lib/src/services/events/events.shared.js +13 -0
- package/lib/src/services/events/triggers/triggers.class.d.ts +11 -0
- package/lib/src/services/events/triggers/triggers.d.ts +11 -0
- package/lib/src/services/events/triggers/triggers.schema.d.ts +1582 -0
- package/lib/src/services/events/triggers/triggers.shared.d.ts +13 -0
- package/lib/src/services/events/triggers/triggers.shared.js +13 -0
- package/lib/src/services/events/types/types.class.d.ts +11 -0
- package/lib/src/services/events/types/types.d.ts +11 -0
- package/lib/src/services/events/types/types.schema.d.ts +688 -0
- package/lib/src/services/events/types/types.shared.d.ts +13 -0
- package/lib/src/services/events/types/types.shared.js +13 -0
- package/lib/src/services/exchanges/balance/balance.schema.d.ts +16 -16
- package/lib/src/services/exchanges/download/download.schema.d.ts +58 -17
- package/lib/src/services/exchanges/download/download.shared.d.ts +1 -1
- package/lib/src/services/exchanges/download/download.shared.js +1 -1
- package/lib/src/services/exchanges/download/webhooks/webhooks.schema.d.ts +4 -4
- package/lib/src/services/exchanges/exchanges.schema.d.ts +100 -100
- package/lib/src/services/exchanges/ohlcv/ohlcv.class.d.ts +19 -0
- package/lib/src/services/exchanges/ohlcv/ohlcv.d.ts +11 -0
- package/lib/src/services/exchanges/ohlcv/ohlcv.schema.d.ts +507 -0
- package/lib/src/services/exchanges/ohlcv/ohlcv.shared.d.ts +13 -0
- package/lib/src/services/exchanges/ohlcv/ohlcv.shared.js +13 -0
- package/lib/src/services/exchanges/ticker/ticker.schema.d.ts +68 -68
- package/lib/src/services/extensions/extensions.class.d.ts +11 -0
- package/lib/src/services/extensions/extensions.d.ts +11 -0
- package/lib/src/services/extensions/extensions.schema.d.ts +1275 -0
- package/lib/src/services/extensions/extensions.shared.d.ts +13 -0
- package/lib/src/services/extensions/extensions.shared.js +13 -0
- package/lib/src/services/keys/KeysService.d.ts +13 -0
- package/lib/src/services/keys/keys.class.d.ts +11 -0
- package/lib/src/services/keys/keys.d.ts +11 -0
- package/lib/src/services/keys/keys.schema.d.ts +719 -0
- package/lib/src/services/keys/keys.shared.d.ts +14 -0
- package/lib/src/services/keys/keys.shared.js +13 -0
- package/lib/src/services/messages/messages.schema.d.ts +64 -32
- package/lib/src/services/restricted/restricted.class.d.ts +26 -0
- package/lib/src/services/restricted/restricted.d.ts +21 -0
- package/lib/src/services/restricted/restricted.shared.d.ts +13 -0
- package/lib/src/services/restricted/restricted.shared.js +13 -0
- package/lib/src/services/strategies/backtest/backtest.schema.d.ts +127 -60
- package/lib/src/services/strategies/backtest/results/results.schema.d.ts +36 -36
- package/lib/src/services/strategies/generate/generate.class.d.ts +11 -0
- package/lib/src/services/strategies/generate/generate.d.ts +11 -0
- package/lib/src/services/strategies/generate/generate.schema.d.ts +429 -0
- package/lib/src/services/strategies/generate/generate.shared.d.ts +13 -0
- package/lib/src/services/strategies/generate/generate.shared.js +13 -0
- package/lib/src/services/strategies/hyperopt/hyperopt.schema.d.ts +16 -8
- package/lib/src/services/strategies/indicators/indicators.schema.d.ts +177 -97
- package/lib/src/services/strategies/indicators/talib/talib.class.d.ts +11 -0
- package/lib/src/services/strategies/indicators/talib/talib.d.ts +11 -0
- package/lib/src/services/strategies/indicators/talib/talib.schema.d.ts +443 -0
- package/lib/src/services/strategies/indicators/talib/talib.shared.d.ts +13 -0
- package/lib/src/services/strategies/indicators/talib/talib.shared.js +13 -0
- package/lib/src/services/strategies/strategies.schema.d.ts +2732 -327
- package/lib/src/services/strategies/templates/templates.schema.d.ts +2146 -16
- package/lib/src/services/tools/openapi/openapi.class.d.ts +34 -0
- package/lib/src/services/tools/openapi/openapi.d.ts +10 -0
- package/lib/src/services/tools/openapi/openapi.shared.d.ts +13 -0
- package/lib/src/services/tools/openapi/openapi.shared.js +13 -0
- package/lib/src/services/tools/tools.class.d.ts +11 -0
- package/lib/src/services/tools/tools.d.ts +11 -0
- package/lib/src/services/tools/tools.schema.d.ts +269 -0
- package/lib/src/services/tools/tools.shared.d.ts +13 -0
- package/lib/src/services/tools/tools.shared.js +13 -0
- package/lib/src/services/traders/pods/api/api.schema.d.ts +1650 -464
- package/lib/src/services/traders/pods/events/events.schema.d.ts +4 -4
- package/lib/src/services/traders/pods/pods.schema.d.ts +1539 -443
- package/lib/src/services/traders/traders.schema.d.ts +142 -142
- package/lib/src/services/users/users.class.d.ts +178 -3
- package/lib/src/services/users/users.schema.d.ts +123 -85
- package/lib/src/services/users/users.shared.d.ts +4 -3
- package/lib/src/services/users/users.shared.js +1 -1
- package/package.json +2 -3
- package/readme.md +1 -2
|
@@ -61,13 +61,10 @@ export declare const exchangesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
61
61
|
apiKey?: string | null | undefined;
|
|
62
62
|
token?: string | undefined;
|
|
63
63
|
secret?: string | null | undefined;
|
|
64
|
+
error?: any;
|
|
64
65
|
_id?: string | {} | undefined;
|
|
65
|
-
avatar?: any;
|
|
66
66
|
createdAt?: any;
|
|
67
67
|
updatedAt?: any;
|
|
68
|
-
error?: any;
|
|
69
|
-
login?: string | undefined;
|
|
70
|
-
userId?: string | {} | undefined;
|
|
71
68
|
connected?: boolean | undefined;
|
|
72
69
|
downloaded?: {
|
|
73
70
|
updatedAt: any;
|
|
@@ -90,6 +87,7 @@ export declare const exchangesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
90
87
|
} | undefined;
|
|
91
88
|
tags?: any;
|
|
92
89
|
background?: any;
|
|
90
|
+
avatar?: any;
|
|
93
91
|
blacklist?: {
|
|
94
92
|
left: string;
|
|
95
93
|
right: string;
|
|
@@ -102,9 +100,11 @@ export declare const exchangesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
102
100
|
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
103
101
|
requiredCredentials?: any;
|
|
104
102
|
uid?: string | undefined;
|
|
103
|
+
login?: string | undefined;
|
|
105
104
|
twofa?: string | undefined;
|
|
106
105
|
privateKey?: string | undefined;
|
|
107
106
|
walletAddress?: string | undefined;
|
|
107
|
+
userId?: string | {} | undefined;
|
|
108
108
|
__v?: any;
|
|
109
109
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
110
110
|
export declare const exchangesExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
@@ -113,13 +113,10 @@ export declare const exchangesExternalResolver: import("@feathersjs/schema").Res
|
|
|
113
113
|
apiKey?: string | null | undefined;
|
|
114
114
|
token?: string | undefined;
|
|
115
115
|
secret?: string | null | undefined;
|
|
116
|
+
error?: any;
|
|
116
117
|
_id?: string | {} | undefined;
|
|
117
|
-
avatar?: any;
|
|
118
118
|
createdAt?: any;
|
|
119
119
|
updatedAt?: any;
|
|
120
|
-
error?: any;
|
|
121
|
-
login?: string | undefined;
|
|
122
|
-
userId?: string | {} | undefined;
|
|
123
120
|
connected?: boolean | undefined;
|
|
124
121
|
downloaded?: {
|
|
125
122
|
updatedAt: any;
|
|
@@ -142,6 +139,7 @@ export declare const exchangesExternalResolver: import("@feathersjs/schema").Res
|
|
|
142
139
|
} | undefined;
|
|
143
140
|
tags?: any;
|
|
144
141
|
background?: any;
|
|
142
|
+
avatar?: any;
|
|
145
143
|
blacklist?: {
|
|
146
144
|
left: string;
|
|
147
145
|
right: string;
|
|
@@ -154,9 +152,11 @@ export declare const exchangesExternalResolver: import("@feathersjs/schema").Res
|
|
|
154
152
|
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
155
153
|
requiredCredentials?: any;
|
|
156
154
|
uid?: string | undefined;
|
|
155
|
+
login?: string | undefined;
|
|
157
156
|
twofa?: string | undefined;
|
|
158
157
|
privateKey?: string | undefined;
|
|
159
158
|
walletAddress?: string | undefined;
|
|
159
|
+
userId?: string | {} | undefined;
|
|
160
160
|
__v?: any;
|
|
161
161
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
162
162
|
export declare const exchangesDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
@@ -219,13 +219,10 @@ export declare const exchangesDataResolver: import("@feathersjs/schema").Resolve
|
|
|
219
219
|
apiKey?: string | null | undefined;
|
|
220
220
|
token?: string | undefined;
|
|
221
221
|
secret?: string | null | undefined;
|
|
222
|
+
error?: any;
|
|
222
223
|
_id?: string | {} | undefined;
|
|
223
|
-
avatar?: any;
|
|
224
224
|
createdAt?: any;
|
|
225
225
|
updatedAt?: any;
|
|
226
|
-
error?: any;
|
|
227
|
-
login?: string | undefined;
|
|
228
|
-
userId?: string | {} | undefined;
|
|
229
226
|
connected?: boolean | undefined;
|
|
230
227
|
downloaded?: {
|
|
231
228
|
updatedAt: any;
|
|
@@ -248,6 +245,7 @@ export declare const exchangesDataResolver: import("@feathersjs/schema").Resolve
|
|
|
248
245
|
} | undefined;
|
|
249
246
|
tags?: any;
|
|
250
247
|
background?: any;
|
|
248
|
+
avatar?: any;
|
|
251
249
|
blacklist?: {
|
|
252
250
|
left: string;
|
|
253
251
|
right: string;
|
|
@@ -260,9 +258,11 @@ export declare const exchangesDataResolver: import("@feathersjs/schema").Resolve
|
|
|
260
258
|
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
261
259
|
requiredCredentials?: any;
|
|
262
260
|
uid?: string | undefined;
|
|
261
|
+
login?: string | undefined;
|
|
263
262
|
twofa?: string | undefined;
|
|
264
263
|
privateKey?: string | undefined;
|
|
265
264
|
walletAddress?: string | undefined;
|
|
265
|
+
userId?: string | {} | undefined;
|
|
266
266
|
__v?: any;
|
|
267
267
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
268
268
|
export declare const exchangesPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
@@ -325,13 +325,10 @@ export declare const exchangesPatchResolver: import("@feathersjs/schema").Resolv
|
|
|
325
325
|
apiKey?: string | null | undefined;
|
|
326
326
|
token?: string | undefined;
|
|
327
327
|
secret?: string | null | undefined;
|
|
328
|
+
error?: any;
|
|
328
329
|
_id?: string | {} | undefined;
|
|
329
|
-
avatar?: any;
|
|
330
330
|
createdAt?: any;
|
|
331
331
|
updatedAt?: any;
|
|
332
|
-
error?: any;
|
|
333
|
-
login?: string | undefined;
|
|
334
|
-
userId?: string | {} | undefined;
|
|
335
332
|
connected?: boolean | undefined;
|
|
336
333
|
downloaded?: {
|
|
337
334
|
updatedAt: any;
|
|
@@ -354,6 +351,7 @@ export declare const exchangesPatchResolver: import("@feathersjs/schema").Resolv
|
|
|
354
351
|
} | undefined;
|
|
355
352
|
tags?: any;
|
|
356
353
|
background?: any;
|
|
354
|
+
avatar?: any;
|
|
357
355
|
blacklist?: {
|
|
358
356
|
left: string;
|
|
359
357
|
right: string;
|
|
@@ -366,9 +364,11 @@ export declare const exchangesPatchResolver: import("@feathersjs/schema").Resolv
|
|
|
366
364
|
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
367
365
|
requiredCredentials?: any;
|
|
368
366
|
uid?: string | undefined;
|
|
367
|
+
login?: string | undefined;
|
|
369
368
|
twofa?: string | undefined;
|
|
370
369
|
privateKey?: string | undefined;
|
|
371
370
|
walletAddress?: string | undefined;
|
|
371
|
+
userId?: string | {} | undefined;
|
|
372
372
|
__v?: any;
|
|
373
373
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
374
374
|
export declare const exchangesQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
@@ -431,12 +431,12 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
431
431
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
432
432
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
433
433
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
434
|
-
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
435
434
|
connected: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
436
435
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
437
436
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
437
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
438
438
|
}>;
|
|
439
|
-
$select: import("@feathersjs/typebox").TUnsafe<("name" | "_id" | "createdAt" | "updatedAt" | "
|
|
439
|
+
$select: import("@feathersjs/typebox").TUnsafe<("name" | "_id" | "createdAt" | "updatedAt" | "connected" | "whitelist" | "which" | "userId")[]>;
|
|
440
440
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
441
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<{
|
|
442
442
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -482,17 +482,6 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
482
482
|
}>, import("@feathersjs/typebox").TObject<{
|
|
483
483
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
484
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>]>>]>>;
|
|
496
485
|
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<{
|
|
497
486
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
498
487
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -526,6 +515,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
526
515
|
}>, import("@feathersjs/typebox").TObject<{
|
|
527
516
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
528
517
|
} | undefined>]>>]>>;
|
|
518
|
+
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<{
|
|
519
|
+
$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<{}>]>]>>;
|
|
520
|
+
$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<{}>]>]>>;
|
|
521
|
+
$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<{}>]>]>>;
|
|
522
|
+
$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<{}>]>]>>;
|
|
523
|
+
$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<{}>]>]>>;
|
|
524
|
+
$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<{}>]>]>>>;
|
|
525
|
+
$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<{}>]>]>>>;
|
|
526
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
527
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
528
|
+
} | undefined>]>>]>>;
|
|
529
529
|
}>>, import("@feathersjs/typebox").TObject<{
|
|
530
530
|
$or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
531
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<{
|
|
@@ -572,17 +572,6 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
572
572
|
}>, import("@feathersjs/typebox").TObject<{
|
|
573
573
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
574
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>]>>]>>;
|
|
586
575
|
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<{
|
|
587
576
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
588
577
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -616,6 +605,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
616
605
|
}>, import("@feathersjs/typebox").TObject<{
|
|
617
606
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
618
607
|
} | undefined>]>>]>>;
|
|
608
|
+
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<{
|
|
609
|
+
$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<{}>]>]>>;
|
|
610
|
+
$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<{}>]>]>>;
|
|
611
|
+
$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<{}>]>]>>;
|
|
612
|
+
$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<{}>]>]>>;
|
|
613
|
+
$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<{}>]>]>>;
|
|
614
|
+
$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<{}>]>]>>>;
|
|
615
|
+
$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<{}>]>]>>>;
|
|
616
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
617
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
618
|
+
} | undefined>]>>]>>;
|
|
619
619
|
}>>>;
|
|
620
620
|
}>]>>;
|
|
621
621
|
$or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
@@ -663,17 +663,6 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
663
663
|
}>, import("@feathersjs/typebox").TObject<{
|
|
664
664
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
665
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>]>>]>>;
|
|
677
666
|
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<{
|
|
678
667
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
679
668
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -707,6 +696,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
707
696
|
}>, import("@feathersjs/typebox").TObject<{
|
|
708
697
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
709
698
|
} | undefined>]>>]>>;
|
|
699
|
+
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<{
|
|
700
|
+
$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<{}>]>]>>;
|
|
701
|
+
$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<{}>]>]>>;
|
|
702
|
+
$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<{}>]>]>>;
|
|
703
|
+
$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<{}>]>]>>;
|
|
704
|
+
$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<{}>]>]>>;
|
|
705
|
+
$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<{}>]>]>>>;
|
|
706
|
+
$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<{}>]>]>>>;
|
|
707
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
708
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
709
|
+
} | undefined>]>>]>>;
|
|
710
710
|
}>>>;
|
|
711
711
|
}>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
712
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<{
|
|
@@ -753,17 +753,6 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
753
753
|
}>, import("@feathersjs/typebox").TObject<{
|
|
754
754
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
755
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>]>>]>>;
|
|
767
756
|
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<{
|
|
768
757
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
769
758
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -797,6 +786,17 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
797
786
|
}>, import("@feathersjs/typebox").TObject<{
|
|
798
787
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
799
788
|
} | undefined>]>>]>>;
|
|
789
|
+
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<{
|
|
790
|
+
$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<{}>]>]>>;
|
|
791
|
+
$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<{}>]>]>>;
|
|
792
|
+
$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<{}>]>]>>;
|
|
793
|
+
$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<{}>]>]>>;
|
|
794
|
+
$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<{}>]>]>>;
|
|
795
|
+
$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<{}>]>]>>>;
|
|
796
|
+
$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<{}>]>]>>>;
|
|
797
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
798
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
799
|
+
} | undefined>]>>]>>;
|
|
800
800
|
}>>]>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
801
801
|
export type ExchangesQuery = Static<typeof exchangesQuerySchema>;
|
|
802
802
|
export declare const exchangesQueryValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
@@ -808,12 +808,12 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
808
808
|
_id?: number | undefined;
|
|
809
809
|
createdAt?: number | undefined;
|
|
810
810
|
updatedAt?: number | undefined;
|
|
811
|
-
userId?: number | undefined;
|
|
812
811
|
connected?: number | undefined;
|
|
813
812
|
whitelist?: number | undefined;
|
|
814
813
|
which?: number | undefined;
|
|
814
|
+
userId?: number | undefined;
|
|
815
815
|
};
|
|
816
|
-
$select: ("name" | "_id" | "createdAt" | "updatedAt" | "
|
|
816
|
+
$select: ("name" | "_id" | "createdAt" | "updatedAt" | "connected" | "whitelist" | "which" | "userId")[];
|
|
817
817
|
$and: ({
|
|
818
818
|
name?: any;
|
|
819
819
|
_id?: string | {} | Partial<{
|
|
@@ -827,15 +827,6 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
827
827
|
} & {}> | undefined;
|
|
828
828
|
createdAt?: any;
|
|
829
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;
|
|
839
830
|
connected?: boolean | Partial<{
|
|
840
831
|
$gt?: boolean | undefined;
|
|
841
832
|
$gte?: boolean | undefined;
|
|
@@ -863,6 +854,15 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
863
854
|
$in: string | string[];
|
|
864
855
|
$nin: string | string[];
|
|
865
856
|
} & {}> | undefined;
|
|
857
|
+
userId?: string | {} | Partial<{
|
|
858
|
+
$gt?: string | {} | undefined;
|
|
859
|
+
$gte?: string | {} | undefined;
|
|
860
|
+
$lt?: string | {} | undefined;
|
|
861
|
+
$lte?: string | {} | undefined;
|
|
862
|
+
$ne?: string | {} | undefined;
|
|
863
|
+
$in: string | {} | (string | {})[];
|
|
864
|
+
$nin: string | {} | (string | {})[];
|
|
865
|
+
} & {}> | undefined;
|
|
866
866
|
} | {
|
|
867
867
|
$or: {
|
|
868
868
|
name?: any;
|
|
@@ -877,15 +877,6 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
877
877
|
} & {}> | undefined;
|
|
878
878
|
createdAt?: any;
|
|
879
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;
|
|
889
880
|
connected?: boolean | Partial<{
|
|
890
881
|
$gt?: boolean | undefined;
|
|
891
882
|
$gte?: boolean | undefined;
|
|
@@ -913,6 +904,15 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
913
904
|
$in: string | string[];
|
|
914
905
|
$nin: string | string[];
|
|
915
906
|
} & {}> | undefined;
|
|
907
|
+
userId?: string | {} | Partial<{
|
|
908
|
+
$gt?: string | {} | undefined;
|
|
909
|
+
$gte?: string | {} | undefined;
|
|
910
|
+
$lt?: string | {} | undefined;
|
|
911
|
+
$lte?: string | {} | undefined;
|
|
912
|
+
$ne?: string | {} | undefined;
|
|
913
|
+
$in: string | {} | (string | {})[];
|
|
914
|
+
$nin: string | {} | (string | {})[];
|
|
915
|
+
} & {}> | undefined;
|
|
916
916
|
}[];
|
|
917
917
|
})[];
|
|
918
918
|
$or: {
|
|
@@ -928,15 +928,6 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
928
928
|
} & {}> | undefined;
|
|
929
929
|
createdAt?: any;
|
|
930
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;
|
|
940
931
|
connected?: boolean | Partial<{
|
|
941
932
|
$gt?: boolean | undefined;
|
|
942
933
|
$gte?: boolean | undefined;
|
|
@@ -964,6 +955,15 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
964
955
|
$in: string | string[];
|
|
965
956
|
$nin: string | string[];
|
|
966
957
|
} & {}> | undefined;
|
|
958
|
+
userId?: string | {} | Partial<{
|
|
959
|
+
$gt?: string | {} | undefined;
|
|
960
|
+
$gte?: string | {} | undefined;
|
|
961
|
+
$lt?: string | {} | undefined;
|
|
962
|
+
$lte?: string | {} | undefined;
|
|
963
|
+
$ne?: string | {} | undefined;
|
|
964
|
+
$in: string | {} | (string | {})[];
|
|
965
|
+
$nin: string | {} | (string | {})[];
|
|
966
|
+
} & {}> | undefined;
|
|
967
967
|
}[];
|
|
968
968
|
}> & {
|
|
969
969
|
name?: any;
|
|
@@ -978,15 +978,6 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
978
978
|
} & {}> | undefined;
|
|
979
979
|
createdAt?: any;
|
|
980
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;
|
|
990
981
|
connected?: boolean | Partial<{
|
|
991
982
|
$gt?: boolean | undefined;
|
|
992
983
|
$gte?: boolean | undefined;
|
|
@@ -1014,4 +1005,13 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
1014
1005
|
$in: string | string[];
|
|
1015
1006
|
$nin: string | string[];
|
|
1016
1007
|
} & {}> | undefined;
|
|
1008
|
+
userId?: string | {} | Partial<{
|
|
1009
|
+
$gt?: string | {} | undefined;
|
|
1010
|
+
$gte?: string | {} | undefined;
|
|
1011
|
+
$lt?: string | {} | undefined;
|
|
1012
|
+
$lte?: string | {} | undefined;
|
|
1013
|
+
$ne?: string | {} | undefined;
|
|
1014
|
+
$in: string | {} | (string | {})[];
|
|
1015
|
+
$nin: string | {} | (string | {})[];
|
|
1016
|
+
} & {}> | undefined;
|
|
1017
1017
|
} & {}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { NullableId, Params, ServiceInterface } from '@feathersjs/feathers';
|
|
2
|
+
import type { Application } from '../../../declarations';
|
|
3
|
+
import type { ExchangesOhlcv, ExchangesOhlcvData, ExchangesOhlcvPatch, ExchangesOhlcvQuery } from './ohlcv.schema';
|
|
4
|
+
export type { ExchangesOhlcv, ExchangesOhlcvData, ExchangesOhlcvPatch, ExchangesOhlcvQuery };
|
|
5
|
+
export interface ExchangesOhlcvServiceOptions {
|
|
6
|
+
app: Application;
|
|
7
|
+
}
|
|
8
|
+
export interface ExchangesOhlcvParams extends Params<ExchangesOhlcvQuery> {
|
|
9
|
+
}
|
|
10
|
+
export declare class ExchangesOhlcvService<ServiceParams extends ExchangesOhlcvParams = ExchangesOhlcvParams> implements ServiceInterface<ExchangesOhlcv, ExchangesOhlcvData, ServiceParams, ExchangesOhlcvPatch> {
|
|
11
|
+
options: ExchangesOhlcvServiceOptions;
|
|
12
|
+
constructor(options: ExchangesOhlcvServiceOptions);
|
|
13
|
+
find(params?: ServiceParams): Promise<ExchangesOhlcv[]>;
|
|
14
|
+
create(data: ExchangesOhlcvData, params: ServiceParams): Promise<any>;
|
|
15
|
+
remove(_id: NullableId, params?: ServiceParams): Promise<any>;
|
|
16
|
+
}
|
|
17
|
+
export declare const getOptions: (app: Application) => {
|
|
18
|
+
app: Application;
|
|
19
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Application } from '../../../declarations';
|
|
2
|
+
import { ExchangesOhlcvService } from './ohlcv.class';
|
|
3
|
+
import { exchangesOhlcvPath } from './ohlcv.shared';
|
|
4
|
+
export * from './ohlcv.class';
|
|
5
|
+
export * from './ohlcv.schema';
|
|
6
|
+
export declare const exchangesOhlcv: (app: Application) => void;
|
|
7
|
+
declare module '../../../declarations' {
|
|
8
|
+
interface ServiceTypes {
|
|
9
|
+
[exchangesOhlcvPath]: ExchangesOhlcvService;
|
|
10
|
+
}
|
|
11
|
+
}
|