@cryptorobot.ai/client 0.0.32 → 0.0.34
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/app.d.ts +1 -0
- package/lib/client.d.ts +2 -0
- package/lib/client.js +7 -5
- package/lib/configuration.d.ts +12 -1
- package/lib/helpers/app.helper.d.ts +1 -0
- package/lib/helpers/ccxt.helper.d.ts +2 -0
- package/lib/helpers/deployments.helper.d.ts +1 -1
- package/lib/helpers/funnel.helper.d.ts +2 -0
- package/lib/helpers/push-notification.helper.d.ts +1 -0
- package/lib/hooks/application/setup-ccxt-load-marketplaces-mocked.d.ts +3 -0
- package/lib/hooks/application/setup-fs.d.ts +3 -0
- package/lib/hooks/revenuecat-is-subscription-active.d.ts +2 -0
- package/lib/services/auth-management/auth-management.shared.js +1 -12
- package/lib/services/config/config.class.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.class.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.schema.d.ts +32 -24
- package/lib/services/exchanges/download/download.schema.d.ts +32 -24
- package/lib/services/exchanges/exchanges.d.ts +1 -0
- package/lib/services/exchanges/exchanges.schema.d.ts +85 -77
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +32 -24
- package/lib/services/index.d.ts +1 -1
- package/lib/services/messages/messages.schema.d.ts +40 -24
- package/lib/services/strategies/backtest/backtest.d.ts +1 -0
- package/lib/services/strategies/backtest/backtest.schema.d.ts +133 -197
- package/lib/services/strategies/indicators/indicators.schema.d.ts +61 -61
- package/lib/services/strategies/strategies.d.ts +1 -0
- package/lib/services/strategies/strategies.schema.d.ts +32 -16
- package/lib/services/strategies/templates/templates.schema.d.ts +9 -1
- package/lib/services/stripe/webhooks/webhooks.class.d.ts +26 -0
- package/lib/services/stripe/webhooks/webhooks.d.ts +9 -0
- package/lib/services/stripe/webhooks/webhooks.shared.d.ts +13 -0
- package/lib/services/stripe/webhooks/webhooks.shared.js +13 -0
- package/lib/services/traders/pods/api/api.schema.d.ts +112 -72
- package/lib/services/traders/pods/pods.schema.d.ts +88 -56
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +217 -3
- package/lib/services/traders/traders.schema.d.ts +141 -133
- package/lib/services/users/users.d.ts +1 -0
- package/lib/services/users/users.helper.d.ts +1 -1
- package/lib/services/users/users.schema.d.ts +196 -80
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import type { Static } from '@feathersjs/typebox';
|
|
|
2
2
|
import type { HookContext } from '../../declarations';
|
|
3
3
|
import type { ExchangesService } from './exchanges.class';
|
|
4
4
|
export declare const exchangesSchema: import("@feathersjs/typebox").TObject<{
|
|
5
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
5
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
6
6
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
7
7
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
8
8
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -36,8 +36,8 @@ 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
|
-
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
40
|
-
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
39
|
+
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
40
|
+
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
41
41
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
42
42
|
password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
43
43
|
uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -46,6 +46,7 @@ export declare const exchangesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
46
46
|
privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
47
47
|
walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
48
48
|
token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
49
|
+
error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
49
50
|
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<{}>]>]>>;
|
|
50
51
|
__v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
51
52
|
}>;
|
|
@@ -54,12 +55,14 @@ export declare const exchangesValidator: import("@feathersjs/schema").Validator<
|
|
|
54
55
|
export declare const exchangesResolver: import("@feathersjs/schema").Resolver<{
|
|
55
56
|
password?: string | undefined;
|
|
56
57
|
name?: any;
|
|
57
|
-
apiKey?: string | undefined;
|
|
58
|
+
apiKey?: string | null | undefined;
|
|
58
59
|
token?: string | undefined;
|
|
59
|
-
secret?: string | undefined;
|
|
60
|
+
secret?: string | null | undefined;
|
|
61
|
+
_id?: string | {} | undefined;
|
|
60
62
|
avatar?: any;
|
|
61
63
|
createdAt?: any;
|
|
62
64
|
updatedAt?: any;
|
|
65
|
+
error?: any;
|
|
63
66
|
login?: string | undefined;
|
|
64
67
|
connected?: boolean | undefined;
|
|
65
68
|
downloaded?: {
|
|
@@ -97,17 +100,18 @@ export declare const exchangesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
97
100
|
walletAddress?: string | undefined;
|
|
98
101
|
userId?: string | {} | undefined;
|
|
99
102
|
__v?: any;
|
|
100
|
-
_id: string | {};
|
|
101
103
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
102
104
|
export declare const exchangesExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
103
105
|
password?: string | undefined;
|
|
104
106
|
name?: any;
|
|
105
|
-
apiKey?: string | undefined;
|
|
107
|
+
apiKey?: string | null | undefined;
|
|
106
108
|
token?: string | undefined;
|
|
107
|
-
secret?: string | undefined;
|
|
109
|
+
secret?: string | null | undefined;
|
|
110
|
+
_id?: string | {} | undefined;
|
|
108
111
|
avatar?: any;
|
|
109
112
|
createdAt?: any;
|
|
110
113
|
updatedAt?: any;
|
|
114
|
+
error?: any;
|
|
111
115
|
login?: string | undefined;
|
|
112
116
|
connected?: boolean | undefined;
|
|
113
117
|
downloaded?: {
|
|
@@ -145,10 +149,9 @@ export declare const exchangesExternalResolver: import("@feathersjs/schema").Res
|
|
|
145
149
|
walletAddress?: string | undefined;
|
|
146
150
|
userId?: string | {} | undefined;
|
|
147
151
|
__v?: any;
|
|
148
|
-
_id: string | {};
|
|
149
152
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
150
153
|
export declare const exchangesDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
151
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
154
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
152
155
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
153
156
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
154
157
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -182,8 +185,8 @@ export declare const exchangesDataSchema: import("@feathersjs/typebox").TPick<im
|
|
|
182
185
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
183
186
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
184
187
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
185
|
-
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
186
|
-
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
188
|
+
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
189
|
+
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
187
190
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
188
191
|
password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
189
192
|
uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -192,20 +195,23 @@ export declare const exchangesDataSchema: import("@feathersjs/typebox").TPick<im
|
|
|
192
195
|
privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
193
196
|
walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
194
197
|
token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
198
|
+
error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
195
199
|
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<{}>]>]>>;
|
|
196
200
|
__v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
197
|
-
}>, []>;
|
|
201
|
+
}>, ["_id"]>;
|
|
198
202
|
export type ExchangesData = Static<typeof exchangesDataSchema>;
|
|
199
203
|
export declare const exchangesDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
200
204
|
export declare const exchangesDataResolver: import("@feathersjs/schema").Resolver<{
|
|
201
205
|
password?: string | undefined;
|
|
202
206
|
name?: any;
|
|
203
|
-
apiKey?: string | undefined;
|
|
207
|
+
apiKey?: string | null | undefined;
|
|
204
208
|
token?: string | undefined;
|
|
205
|
-
secret?: string | undefined;
|
|
209
|
+
secret?: string | null | undefined;
|
|
210
|
+
_id?: string | {} | undefined;
|
|
206
211
|
avatar?: any;
|
|
207
212
|
createdAt?: any;
|
|
208
213
|
updatedAt?: any;
|
|
214
|
+
error?: any;
|
|
209
215
|
login?: string | undefined;
|
|
210
216
|
connected?: boolean | undefined;
|
|
211
217
|
downloaded?: {
|
|
@@ -243,10 +249,9 @@ export declare const exchangesDataResolver: import("@feathersjs/schema").Resolve
|
|
|
243
249
|
walletAddress?: string | undefined;
|
|
244
250
|
userId?: string | {} | undefined;
|
|
245
251
|
__v?: any;
|
|
246
|
-
_id: string | {};
|
|
247
252
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
248
253
|
export declare const exchangesPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
249
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
254
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
250
255
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
251
256
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
252
257
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -280,8 +285,8 @@ export declare const exchangesPatchSchema: import("@feathersjs/typebox").TPartia
|
|
|
280
285
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
281
286
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
282
287
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
283
|
-
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
284
|
-
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
288
|
+
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
289
|
+
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
285
290
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
286
291
|
password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
287
292
|
uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -290,6 +295,7 @@ export declare const exchangesPatchSchema: import("@feathersjs/typebox").TPartia
|
|
|
290
295
|
privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
291
296
|
walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
292
297
|
token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
298
|
+
error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
293
299
|
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<{}>]>]>>;
|
|
294
300
|
__v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
295
301
|
}>>;
|
|
@@ -298,12 +304,14 @@ export declare const exchangesPatchValidator: import("@feathersjs/schema").Valid
|
|
|
298
304
|
export declare const exchangesPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
299
305
|
password?: string | undefined;
|
|
300
306
|
name?: any;
|
|
301
|
-
apiKey?: string | undefined;
|
|
307
|
+
apiKey?: string | null | undefined;
|
|
302
308
|
token?: string | undefined;
|
|
303
|
-
secret?: string | undefined;
|
|
309
|
+
secret?: string | null | undefined;
|
|
310
|
+
_id?: string | {} | undefined;
|
|
304
311
|
avatar?: any;
|
|
305
312
|
createdAt?: any;
|
|
306
313
|
updatedAt?: any;
|
|
314
|
+
error?: any;
|
|
307
315
|
login?: string | undefined;
|
|
308
316
|
connected?: boolean | undefined;
|
|
309
317
|
downloaded?: {
|
|
@@ -341,10 +349,9 @@ export declare const exchangesPatchResolver: import("@feathersjs/schema").Resolv
|
|
|
341
349
|
walletAddress?: string | undefined;
|
|
342
350
|
userId?: string | {} | undefined;
|
|
343
351
|
__v?: any;
|
|
344
|
-
_id: string | {};
|
|
345
352
|
}, HookContext<ExchangesService<import("./exchanges.class").ExchangesParams>>>;
|
|
346
353
|
export declare const exchangesQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
347
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
354
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
348
355
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
349
356
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
350
357
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -378,8 +385,8 @@ export declare const exchangesQueryProperties: import("@feathersjs/typebox").TPi
|
|
|
378
385
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
379
386
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
380
387
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
381
|
-
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
382
|
-
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
388
|
+
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
389
|
+
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
383
390
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
384
391
|
password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
385
392
|
uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -388,6 +395,7 @@ export declare const exchangesQueryProperties: import("@feathersjs/typebox").TPi
|
|
|
388
395
|
privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
389
396
|
walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
390
397
|
token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
398
|
+
error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
391
399
|
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<{}>]>]>>;
|
|
392
400
|
__v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
393
401
|
}>, ["_id", "name", "userId", "which", "updatedAt", "connected"]>;
|
|
@@ -415,14 +423,14 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
415
423
|
}>, import("@feathersjs/typebox").TObject<{
|
|
416
424
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
417
425
|
} | undefined>]>>]>>;
|
|
418
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
419
|
-
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
420
|
-
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
421
|
-
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
422
|
-
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
423
|
-
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
424
|
-
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
425
|
-
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
426
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
|
|
427
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
428
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
429
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
430
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
431
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
432
|
+
$in: import("@feathersjs/typebox").TOptional<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").TObject<{}>]>>>;
|
|
433
|
+
$nin: import("@feathersjs/typebox").TOptional<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").TObject<{}>]>>>;
|
|
426
434
|
}>, import("@feathersjs/typebox").TObject<{
|
|
427
435
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
428
436
|
} | undefined>]>>]>>;
|
|
@@ -483,14 +491,14 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
483
491
|
}>, import("@feathersjs/typebox").TObject<{
|
|
484
492
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
485
493
|
} | undefined>]>>]>>;
|
|
486
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
487
|
-
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
488
|
-
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
489
|
-
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
490
|
-
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
491
|
-
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
492
|
-
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
493
|
-
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
494
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
|
|
495
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
496
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
497
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
498
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
499
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
500
|
+
$in: import("@feathersjs/typebox").TOptional<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").TObject<{}>]>>>;
|
|
501
|
+
$nin: import("@feathersjs/typebox").TOptional<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").TObject<{}>]>>>;
|
|
494
502
|
}>, import("@feathersjs/typebox").TObject<{
|
|
495
503
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
496
504
|
} | undefined>]>>]>>;
|
|
@@ -552,14 +560,14 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
552
560
|
}>, import("@feathersjs/typebox").TObject<{
|
|
553
561
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
554
562
|
} | undefined>]>>]>>;
|
|
555
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
556
|
-
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
557
|
-
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
558
|
-
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
559
|
-
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
560
|
-
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
561
|
-
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
562
|
-
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
563
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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<{
|
|
564
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
565
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
566
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
567
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
568
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
569
|
+
$in: import("@feathersjs/typebox").TOptional<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").TObject<{}>]>>>;
|
|
570
|
+
$nin: import("@feathersjs/typebox").TOptional<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").TObject<{}>]>>>;
|
|
563
571
|
}>, import("@feathersjs/typebox").TObject<{
|
|
564
572
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
565
573
|
} | undefined>]>>]>>;
|
|
@@ -620,14 +628,14 @@ export declare const exchangesQuerySchema: import("@feathersjs/typebox").TInters
|
|
|
620
628
|
}>, import("@feathersjs/typebox").TObject<{
|
|
621
629
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
622
630
|
} | undefined>]>>]>>;
|
|
623
|
-
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
624
|
-
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
625
|
-
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
626
|
-
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
627
|
-
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
628
|
-
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
629
|
-
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
630
|
-
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
631
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
632
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
633
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
634
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
635
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
636
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
637
|
+
$in: import("@feathersjs/typebox").TOptional<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").TObject<{}>]>>>;
|
|
638
|
+
$nin: import("@feathersjs/typebox").TOptional<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").TObject<{}>]>>>;
|
|
631
639
|
}>, import("@feathersjs/typebox").TObject<{
|
|
632
640
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
633
641
|
} | undefined>]>>]>>;
|
|
@@ -693,11 +701,11 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
693
701
|
$and: ({
|
|
694
702
|
name?: any;
|
|
695
703
|
_id?: string | {} | Partial<{
|
|
696
|
-
$gt
|
|
697
|
-
$gte
|
|
698
|
-
$lt
|
|
699
|
-
$lte
|
|
700
|
-
$ne
|
|
704
|
+
$gt?: string | {} | undefined;
|
|
705
|
+
$gte?: string | {} | undefined;
|
|
706
|
+
$lt?: string | {} | undefined;
|
|
707
|
+
$lte?: string | {} | undefined;
|
|
708
|
+
$ne?: string | {} | undefined;
|
|
701
709
|
$in: string | {} | (string | {})[];
|
|
702
710
|
$nin: string | {} | (string | {})[];
|
|
703
711
|
} & {}> | undefined;
|
|
@@ -733,11 +741,11 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
733
741
|
$or: {
|
|
734
742
|
name?: any;
|
|
735
743
|
_id?: string | {} | Partial<{
|
|
736
|
-
$gt
|
|
737
|
-
$gte
|
|
738
|
-
$lt
|
|
739
|
-
$lte
|
|
740
|
-
$ne
|
|
744
|
+
$gt?: string | {} | undefined;
|
|
745
|
+
$gte?: string | {} | undefined;
|
|
746
|
+
$lt?: string | {} | undefined;
|
|
747
|
+
$lte?: string | {} | undefined;
|
|
748
|
+
$ne?: string | {} | undefined;
|
|
741
749
|
$in: string | {} | (string | {})[];
|
|
742
750
|
$nin: string | {} | (string | {})[];
|
|
743
751
|
} & {}> | undefined;
|
|
@@ -774,11 +782,11 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
774
782
|
$or: {
|
|
775
783
|
name?: any;
|
|
776
784
|
_id?: string | {} | Partial<{
|
|
777
|
-
$gt
|
|
778
|
-
$gte
|
|
779
|
-
$lt
|
|
780
|
-
$lte
|
|
781
|
-
$ne
|
|
785
|
+
$gt?: string | {} | undefined;
|
|
786
|
+
$gte?: string | {} | undefined;
|
|
787
|
+
$lt?: string | {} | undefined;
|
|
788
|
+
$lte?: string | {} | undefined;
|
|
789
|
+
$ne?: string | {} | undefined;
|
|
782
790
|
$in: string | {} | (string | {})[];
|
|
783
791
|
$nin: string | {} | (string | {})[];
|
|
784
792
|
} & {}> | undefined;
|
|
@@ -814,11 +822,11 @@ export declare const exchangesQueryResolver: import("@feathersjs/schema").Resolv
|
|
|
814
822
|
}> & {
|
|
815
823
|
name?: any;
|
|
816
824
|
_id?: string | {} | Partial<{
|
|
817
|
-
$gt
|
|
818
|
-
$gte
|
|
819
|
-
$lt
|
|
820
|
-
$lte
|
|
821
|
-
$ne
|
|
825
|
+
$gt?: string | {} | undefined;
|
|
826
|
+
$gte?: string | {} | undefined;
|
|
827
|
+
$lt?: string | {} | undefined;
|
|
828
|
+
$lte?: string | {} | undefined;
|
|
829
|
+
$ne?: string | {} | undefined;
|
|
822
830
|
$in: string | {} | (string | {})[];
|
|
823
831
|
$nin: string | {} | (string | {})[];
|
|
824
832
|
} & {}> | undefined;
|
|
@@ -5,7 +5,7 @@ export declare const exchangesTickerSchema: import("@feathersjs/typebox").TObjec
|
|
|
5
5
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
6
6
|
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
7
7
|
exchangeData: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
8
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
8
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
9
9
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
10
10
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
11
11
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -39,8 +39,8 @@ export declare const exchangesTickerSchema: import("@feathersjs/typebox").TObjec
|
|
|
39
39
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
40
40
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
41
41
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
42
|
-
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
43
|
-
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
42
|
+
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
43
|
+
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
44
44
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
45
45
|
password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
46
46
|
uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -49,6 +49,7 @@ export declare const exchangesTickerSchema: import("@feathersjs/typebox").TObjec
|
|
|
49
49
|
privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
50
50
|
walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
51
51
|
token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
52
|
+
error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
52
53
|
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<{}>]>]>>;
|
|
53
54
|
__v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
54
55
|
}>>>;
|
|
@@ -65,12 +66,14 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
65
66
|
exchangeData?: {
|
|
66
67
|
password?: string | undefined;
|
|
67
68
|
name?: any;
|
|
68
|
-
apiKey?: string | undefined;
|
|
69
|
+
apiKey?: string | null | undefined;
|
|
69
70
|
token?: string | undefined;
|
|
70
|
-
secret?: string | undefined;
|
|
71
|
+
secret?: string | null | undefined;
|
|
72
|
+
_id?: string | {} | undefined;
|
|
71
73
|
avatar?: any;
|
|
72
74
|
createdAt?: any;
|
|
73
75
|
updatedAt?: any;
|
|
76
|
+
error?: any;
|
|
74
77
|
login?: string | undefined;
|
|
75
78
|
connected?: boolean | undefined;
|
|
76
79
|
downloaded?: {
|
|
@@ -108,7 +111,6 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
108
111
|
walletAddress?: string | undefined;
|
|
109
112
|
userId?: string | {} | undefined;
|
|
110
113
|
__v?: any;
|
|
111
|
-
_id: string | {};
|
|
112
114
|
} | undefined;
|
|
113
115
|
symbol: string;
|
|
114
116
|
_id: string | {};
|
|
@@ -120,12 +122,14 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
|
|
|
120
122
|
exchangeData?: {
|
|
121
123
|
password?: string | undefined;
|
|
122
124
|
name?: any;
|
|
123
|
-
apiKey?: string | undefined;
|
|
125
|
+
apiKey?: string | null | undefined;
|
|
124
126
|
token?: string | undefined;
|
|
125
|
-
secret?: string | undefined;
|
|
127
|
+
secret?: string | null | undefined;
|
|
128
|
+
_id?: string | {} | undefined;
|
|
126
129
|
avatar?: any;
|
|
127
130
|
createdAt?: any;
|
|
128
131
|
updatedAt?: any;
|
|
132
|
+
error?: any;
|
|
129
133
|
login?: string | undefined;
|
|
130
134
|
connected?: boolean | undefined;
|
|
131
135
|
downloaded?: {
|
|
@@ -163,7 +167,6 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
|
|
|
163
167
|
walletAddress?: string | undefined;
|
|
164
168
|
userId?: string | {} | undefined;
|
|
165
169
|
__v?: any;
|
|
166
|
-
_id: string | {};
|
|
167
170
|
} | undefined;
|
|
168
171
|
symbol: string;
|
|
169
172
|
_id: string | {};
|
|
@@ -172,7 +175,7 @@ export declare const exchangesTickerDataSchema: import("@feathersjs/typebox").TP
|
|
|
172
175
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
173
176
|
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
174
177
|
exchangeData: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
175
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
178
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
176
179
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
177
180
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
178
181
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -206,8 +209,8 @@ export declare const exchangesTickerDataSchema: import("@feathersjs/typebox").TP
|
|
|
206
209
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
207
210
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
208
211
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
209
|
-
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
210
|
-
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
212
|
+
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
213
|
+
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
211
214
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
212
215
|
password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
213
216
|
uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -216,6 +219,7 @@ export declare const exchangesTickerDataSchema: import("@feathersjs/typebox").TP
|
|
|
216
219
|
privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
217
220
|
walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
218
221
|
token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
222
|
+
error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
219
223
|
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<{}>]>]>>;
|
|
220
224
|
__v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
221
225
|
}>>>;
|
|
@@ -232,12 +236,14 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
|
|
|
232
236
|
exchangeData?: {
|
|
233
237
|
password?: string | undefined;
|
|
234
238
|
name?: any;
|
|
235
|
-
apiKey?: string | undefined;
|
|
239
|
+
apiKey?: string | null | undefined;
|
|
236
240
|
token?: string | undefined;
|
|
237
|
-
secret?: string | undefined;
|
|
241
|
+
secret?: string | null | undefined;
|
|
242
|
+
_id?: string | {} | undefined;
|
|
238
243
|
avatar?: any;
|
|
239
244
|
createdAt?: any;
|
|
240
245
|
updatedAt?: any;
|
|
246
|
+
error?: any;
|
|
241
247
|
login?: string | undefined;
|
|
242
248
|
connected?: boolean | undefined;
|
|
243
249
|
downloaded?: {
|
|
@@ -275,7 +281,6 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
|
|
|
275
281
|
walletAddress?: string | undefined;
|
|
276
282
|
userId?: string | {} | undefined;
|
|
277
283
|
__v?: any;
|
|
278
|
-
_id: string | {};
|
|
279
284
|
} | undefined;
|
|
280
285
|
symbol: string;
|
|
281
286
|
_id: string | {};
|
|
@@ -284,7 +289,7 @@ export declare const exchangesTickerPatchSchema: import("@feathersjs/typebox").T
|
|
|
284
289
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
285
290
|
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
286
291
|
exchangeData: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
287
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
292
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
288
293
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
289
294
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
290
295
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -318,8 +323,8 @@ export declare const exchangesTickerPatchSchema: import("@feathersjs/typebox").T
|
|
|
318
323
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
319
324
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
320
325
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
321
|
-
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
322
|
-
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
326
|
+
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
327
|
+
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
323
328
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
324
329
|
password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
325
330
|
uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -328,6 +333,7 @@ export declare const exchangesTickerPatchSchema: import("@feathersjs/typebox").T
|
|
|
328
333
|
privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
329
334
|
walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
330
335
|
token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
336
|
+
error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
331
337
|
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<{}>]>]>>;
|
|
332
338
|
__v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
333
339
|
}>>>;
|
|
@@ -344,12 +350,14 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
|
|
|
344
350
|
exchangeData?: {
|
|
345
351
|
password?: string | undefined;
|
|
346
352
|
name?: any;
|
|
347
|
-
apiKey?: string | undefined;
|
|
353
|
+
apiKey?: string | null | undefined;
|
|
348
354
|
token?: string | undefined;
|
|
349
|
-
secret?: string | undefined;
|
|
355
|
+
secret?: string | null | undefined;
|
|
356
|
+
_id?: string | {} | undefined;
|
|
350
357
|
avatar?: any;
|
|
351
358
|
createdAt?: any;
|
|
352
359
|
updatedAt?: any;
|
|
360
|
+
error?: any;
|
|
353
361
|
login?: string | undefined;
|
|
354
362
|
connected?: boolean | undefined;
|
|
355
363
|
downloaded?: {
|
|
@@ -387,7 +395,6 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
|
|
|
387
395
|
walletAddress?: string | undefined;
|
|
388
396
|
userId?: string | {} | undefined;
|
|
389
397
|
__v?: any;
|
|
390
|
-
_id: string | {};
|
|
391
398
|
} | undefined;
|
|
392
399
|
symbol: string;
|
|
393
400
|
_id: string | {};
|
|
@@ -396,7 +403,7 @@ export declare const exchangesTickerQueryProperties: import("@feathersjs/typebox
|
|
|
396
403
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
397
404
|
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
398
405
|
exchangeData: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
399
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]
|
|
406
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
400
407
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
401
408
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
402
409
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -430,8 +437,8 @@ export declare const exchangesTickerQueryProperties: import("@feathersjs/typebox
|
|
|
430
437
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
431
438
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
432
439
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
433
|
-
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
434
|
-
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
440
|
+
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
441
|
+
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
435
442
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
436
443
|
password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
437
444
|
uid: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -440,6 +447,7 @@ export declare const exchangesTickerQueryProperties: import("@feathersjs/typebox
|
|
|
440
447
|
privateKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
441
448
|
walletAddress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
442
449
|
token: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
450
|
+
error: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
443
451
|
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<{}>]>]>>;
|
|
444
452
|
__v: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
445
453
|
}>>>;
|
package/lib/services/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { Application } from '../declarations';
|
|
2
|
-
export declare const services: (app: Application) => void
|
|
2
|
+
export declare const services: (app: Application) => Promise<void>;
|