@cryptorobot.ai/client 0.0.19 → 0.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +38 -36
- package/lib/client.js +6 -12
- package/lib/configuration.d.ts +20 -1
- package/lib/firebase-push-notification.d.ts +1 -0
- package/lib/helpers/backtest.helper.d.ts +53 -4
- package/lib/helpers/ccxt.helper.d.ts +75 -0
- package/lib/helpers/deployments.helper.d.ts +72 -0
- package/lib/helpers/funnel.helper.d.ts +17 -0
- package/lib/helpers/hyperopt.helper.d.ts +14 -0
- package/lib/helpers/push-notification.helper.d.ts +7 -0
- package/lib/helpers/queue.helper.d.ts +8 -0
- package/lib/helpers/sqlite3.helper.d.ts +6 -0
- package/lib/helpers/sqs.helper.d.ts +7 -0
- package/lib/helpers/subscription.helper.d.ts +48 -0
- package/lib/helpers/telegram.helper.d.ts +26 -1
- package/lib/helpers/trader.helper.d.ts +26 -0
- package/lib/hooks/application/setup-config-preparation.d.ts +1 -1
- package/lib/hooks/application/setup-info.d.ts +1 -1
- package/lib/hooks/application/setup-load-indicators.d.ts +1 -1
- package/lib/hooks/application/setup-load-strategy-templates.d.ts +1 -1
- package/lib/hooks/aws-prepare-batch-job.d.ts +2 -0
- package/lib/hooks/backtest-copy-candles-from-user-data.d.ts +1 -1
- package/lib/hooks/{backtest-generate-and-start.d.ts → backtest-generate-and-queue.d.ts} +1 -1
- package/lib/hooks/backtest-generate-config.d.ts +6 -0
- package/lib/hooks/backtest-generate-exchange-config.d.ts +6 -0
- package/lib/hooks/backtest-get-results.d.ts +12 -0
- package/lib/hooks/file-generate-config-hyperopt.d.ts +2 -0
- package/lib/hooks/setup-ensure-image.d.ts +3 -0
- package/lib/hooks/setup-firebase.d.ts +2 -0
- package/lib/hooks/setup-homepage.d.ts +3 -0
- package/lib/hooks/setup-mautic.d.ts +3 -0
- package/lib/hooks/setup-mixpanel.d.ts +3 -0
- package/lib/hooks/setup-prepare-maildev-while-in-test-env.d.ts +1 -1
- package/lib/hooks/setup-queues.d.ts +1 -1
- package/lib/hooks/sqlite-reset-database.d.ts +2 -0
- package/lib/hooks/traders/pods-process-worker.d.ts +5 -0
- package/lib/sentry.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +56 -56
- package/lib/services/exchanges/download/download.schema.d.ts +60 -60
- package/lib/services/exchanges/download/webhooks/webhooks.schema.d.ts +84 -84
- package/lib/services/exchanges/exchanges.schema.d.ts +198 -198
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +110 -110
- package/lib/services/homepage/homepage.class.d.ts +15 -0
- package/lib/services/homepage/homepage.d.ts +10 -0
- package/lib/services/homepage/homepage.schema.d.ts +237 -0
- package/lib/services/homepage/homepage.shared.d.ts +4 -0
- package/lib/services/homepage/homepage.shared.js +6 -0
- package/lib/services/markets/markets.schema.d.ts +112 -112
- package/lib/services/messages/messages.schema.d.ts +136 -64
- package/lib/services/strategies/ai/ai.schema.d.ts +32 -32
- package/lib/services/strategies/backtest/backtest.schema.d.ts +394 -84
- package/lib/services/strategies/backtest/results/results.class.d.ts +1 -1
- package/lib/services/strategies/backtest/results/results.schema.d.ts +454 -156
- package/lib/services/strategies/hyperopt/hyperopt.class.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +375 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.d.ts +13 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.js +13 -0
- package/lib/services/strategies/indicators/indicators.schema.d.ts +40 -40
- package/lib/services/strategies/strategies.schema.d.ts +329 -247
- package/lib/services/strategies/templates/templates.schema.d.ts +41 -41
- package/lib/services/stripe/charges/charges.d.ts +1 -1
- package/lib/services/stripe/customers/customers.d.ts +1 -1
- package/lib/services/stripe/customers/paymentintent/paymentintent.d.ts +1 -1
- package/lib/services/stripe/customers/paymentmethods/paymentmethods.d.ts +1 -1
- package/lib/services/stripe/products/products.d.ts +1 -1
- package/lib/services/traders/pods/api/api.class.d.ts +1 -1
- package/lib/services/traders/pods/api/api.schema.d.ts +519 -519
- package/lib/services/traders/pods/events/events.schema.d.ts +375 -111
- package/lib/services/traders/pods/pods.schema.d.ts +384 -384
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +76 -76
- package/lib/services/traders/traders.class.d.ts +7 -1
- package/lib/services/traders/traders.d.ts +1 -0
- package/lib/services/traders/traders.schema.d.ts +852 -380
- package/lib/services/users/users.class.d.ts +1 -1
- package/lib/services/users/users.schema.d.ts +158 -52
- package/package.json +9 -2
- package/lib/hooks/bootstrap-user-telegram.d.ts +0 -2
|
@@ -81,14 +81,13 @@ export declare const exchangesDownloadResolver: import("@feathersjs/schema").Res
|
|
|
81
81
|
password?: string | undefined;
|
|
82
82
|
name?: any;
|
|
83
83
|
apiKey?: string | undefined;
|
|
84
|
+
token?: string | undefined;
|
|
84
85
|
secret?: string | undefined;
|
|
85
86
|
avatar?: any;
|
|
86
87
|
createdAt?: any;
|
|
87
88
|
updatedAt?: any;
|
|
88
|
-
|
|
89
|
-
which?: string | undefined;
|
|
89
|
+
login?: string | undefined;
|
|
90
90
|
connected?: boolean | undefined;
|
|
91
|
-
token?: string | undefined;
|
|
92
91
|
downloaded?: {
|
|
93
92
|
updatedAt: any;
|
|
94
93
|
size: string;
|
|
@@ -116,12 +115,13 @@ export declare const exchangesDownloadResolver: import("@feathersjs/schema").Res
|
|
|
116
115
|
}[] | undefined;
|
|
117
116
|
whitelist?: any[] | undefined;
|
|
118
117
|
ccxt_async_config?: any;
|
|
118
|
+
which?: string | undefined;
|
|
119
119
|
requiredCredentials?: any;
|
|
120
120
|
uid?: string | undefined;
|
|
121
|
-
login?: string | undefined;
|
|
122
121
|
twofa?: string | undefined;
|
|
123
122
|
privateKey?: string | undefined;
|
|
124
123
|
walletAddress?: string | undefined;
|
|
124
|
+
userId?: string | {} | undefined;
|
|
125
125
|
__v?: any;
|
|
126
126
|
_id: string | {};
|
|
127
127
|
} | undefined;
|
|
@@ -140,12 +140,12 @@ export declare const exchangesDownloadResolver: import("@feathersjs/schema").Res
|
|
|
140
140
|
api_server: {
|
|
141
141
|
password: string;
|
|
142
142
|
enabled: boolean;
|
|
143
|
+
username: string;
|
|
143
144
|
listen_ip_address: string;
|
|
144
145
|
listen_port: number;
|
|
145
146
|
verbosity: string;
|
|
146
147
|
jwt_secret_key: string;
|
|
147
148
|
CORS_origins: string[];
|
|
148
|
-
username: string;
|
|
149
149
|
};
|
|
150
150
|
nonce: string;
|
|
151
151
|
}, HookContext<ExchangesDownloadService<import("./download.class").ExchangesDownloadParams>>>;
|
|
@@ -154,14 +154,13 @@ export declare const exchangesDownloadExternalResolver: import("@feathersjs/sche
|
|
|
154
154
|
password?: string | undefined;
|
|
155
155
|
name?: any;
|
|
156
156
|
apiKey?: string | undefined;
|
|
157
|
+
token?: string | undefined;
|
|
157
158
|
secret?: string | undefined;
|
|
158
159
|
avatar?: any;
|
|
159
160
|
createdAt?: any;
|
|
160
161
|
updatedAt?: any;
|
|
161
|
-
|
|
162
|
-
which?: string | undefined;
|
|
162
|
+
login?: string | undefined;
|
|
163
163
|
connected?: boolean | undefined;
|
|
164
|
-
token?: string | undefined;
|
|
165
164
|
downloaded?: {
|
|
166
165
|
updatedAt: any;
|
|
167
166
|
size: string;
|
|
@@ -189,12 +188,13 @@ export declare const exchangesDownloadExternalResolver: import("@feathersjs/sche
|
|
|
189
188
|
}[] | undefined;
|
|
190
189
|
whitelist?: any[] | undefined;
|
|
191
190
|
ccxt_async_config?: any;
|
|
191
|
+
which?: string | undefined;
|
|
192
192
|
requiredCredentials?: any;
|
|
193
193
|
uid?: string | undefined;
|
|
194
|
-
login?: string | undefined;
|
|
195
194
|
twofa?: string | undefined;
|
|
196
195
|
privateKey?: string | undefined;
|
|
197
196
|
walletAddress?: string | undefined;
|
|
197
|
+
userId?: string | {} | undefined;
|
|
198
198
|
__v?: any;
|
|
199
199
|
_id: string | {};
|
|
200
200
|
} | undefined;
|
|
@@ -213,12 +213,12 @@ export declare const exchangesDownloadExternalResolver: import("@feathersjs/sche
|
|
|
213
213
|
api_server: {
|
|
214
214
|
password: string;
|
|
215
215
|
enabled: boolean;
|
|
216
|
+
username: string;
|
|
216
217
|
listen_ip_address: string;
|
|
217
218
|
listen_port: number;
|
|
218
219
|
verbosity: string;
|
|
219
220
|
jwt_secret_key: string;
|
|
220
221
|
CORS_origins: string[];
|
|
221
|
-
username: string;
|
|
222
222
|
};
|
|
223
223
|
nonce: string;
|
|
224
224
|
}, HookContext<ExchangesDownloadService<import("./download.class").ExchangesDownloadParams>>>;
|
|
@@ -302,14 +302,13 @@ export declare const exchangesDownloadDataResolver: import("@feathersjs/schema")
|
|
|
302
302
|
password?: string | undefined;
|
|
303
303
|
name?: any;
|
|
304
304
|
apiKey?: string | undefined;
|
|
305
|
+
token?: string | undefined;
|
|
305
306
|
secret?: string | undefined;
|
|
306
307
|
avatar?: any;
|
|
307
308
|
createdAt?: any;
|
|
308
309
|
updatedAt?: any;
|
|
309
|
-
|
|
310
|
-
which?: string | undefined;
|
|
310
|
+
login?: string | undefined;
|
|
311
311
|
connected?: boolean | undefined;
|
|
312
|
-
token?: string | undefined;
|
|
313
312
|
downloaded?: {
|
|
314
313
|
updatedAt: any;
|
|
315
314
|
size: string;
|
|
@@ -337,12 +336,13 @@ export declare const exchangesDownloadDataResolver: import("@feathersjs/schema")
|
|
|
337
336
|
}[] | undefined;
|
|
338
337
|
whitelist?: any[] | undefined;
|
|
339
338
|
ccxt_async_config?: any;
|
|
339
|
+
which?: string | undefined;
|
|
340
340
|
requiredCredentials?: any;
|
|
341
341
|
uid?: string | undefined;
|
|
342
|
-
login?: string | undefined;
|
|
343
342
|
twofa?: string | undefined;
|
|
344
343
|
privateKey?: string | undefined;
|
|
345
344
|
walletAddress?: string | undefined;
|
|
345
|
+
userId?: string | {} | undefined;
|
|
346
346
|
__v?: any;
|
|
347
347
|
_id: string | {};
|
|
348
348
|
} | undefined;
|
|
@@ -361,12 +361,12 @@ export declare const exchangesDownloadDataResolver: import("@feathersjs/schema")
|
|
|
361
361
|
api_server: {
|
|
362
362
|
password: string;
|
|
363
363
|
enabled: boolean;
|
|
364
|
+
username: string;
|
|
364
365
|
listen_ip_address: string;
|
|
365
366
|
listen_port: number;
|
|
366
367
|
verbosity: string;
|
|
367
368
|
jwt_secret_key: string;
|
|
368
369
|
CORS_origins: string[];
|
|
369
|
-
username: string;
|
|
370
370
|
};
|
|
371
371
|
nonce: string;
|
|
372
372
|
}, HookContext<ExchangesDownloadService<import("./download.class").ExchangesDownloadParams>>>;
|
|
@@ -450,14 +450,13 @@ export declare const exchangesDownloadPatchResolver: import("@feathersjs/schema"
|
|
|
450
450
|
password?: string | undefined;
|
|
451
451
|
name?: any;
|
|
452
452
|
apiKey?: string | undefined;
|
|
453
|
+
token?: string | undefined;
|
|
453
454
|
secret?: string | undefined;
|
|
454
455
|
avatar?: any;
|
|
455
456
|
createdAt?: any;
|
|
456
457
|
updatedAt?: any;
|
|
457
|
-
|
|
458
|
-
which?: string | undefined;
|
|
458
|
+
login?: string | undefined;
|
|
459
459
|
connected?: boolean | undefined;
|
|
460
|
-
token?: string | undefined;
|
|
461
460
|
downloaded?: {
|
|
462
461
|
updatedAt: any;
|
|
463
462
|
size: string;
|
|
@@ -485,12 +484,13 @@ export declare const exchangesDownloadPatchResolver: import("@feathersjs/schema"
|
|
|
485
484
|
}[] | undefined;
|
|
486
485
|
whitelist?: any[] | undefined;
|
|
487
486
|
ccxt_async_config?: any;
|
|
487
|
+
which?: string | undefined;
|
|
488
488
|
requiredCredentials?: any;
|
|
489
489
|
uid?: string | undefined;
|
|
490
|
-
login?: string | undefined;
|
|
491
490
|
twofa?: string | undefined;
|
|
492
491
|
privateKey?: string | undefined;
|
|
493
492
|
walletAddress?: string | undefined;
|
|
493
|
+
userId?: string | {} | undefined;
|
|
494
494
|
__v?: any;
|
|
495
495
|
_id: string | {};
|
|
496
496
|
} | undefined;
|
|
@@ -509,12 +509,12 @@ export declare const exchangesDownloadPatchResolver: import("@feathersjs/schema"
|
|
|
509
509
|
api_server: {
|
|
510
510
|
password: string;
|
|
511
511
|
enabled: boolean;
|
|
512
|
+
username: string;
|
|
512
513
|
listen_ip_address: string;
|
|
513
514
|
listen_port: number;
|
|
514
515
|
verbosity: string;
|
|
515
516
|
jwt_secret_key: string;
|
|
516
517
|
CORS_origins: string[];
|
|
517
|
-
username: string;
|
|
518
518
|
};
|
|
519
519
|
nonce: string;
|
|
520
520
|
}, HookContext<ExchangesDownloadService<import("./download.class").ExchangesDownloadParams>>>;
|
|
@@ -607,8 +607,8 @@ export declare const exchangesDownloadQuerySchema: import("@feathersjs/typebox")
|
|
|
607
607
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
608
608
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
609
609
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
610
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
611
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
610
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
611
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
612
612
|
}>, import("@feathersjs/typebox").TObject<{
|
|
613
613
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
614
614
|
} | undefined>]>>]>>;
|
|
@@ -618,8 +618,8 @@ export declare const exchangesDownloadQuerySchema: import("@feathersjs/typebox")
|
|
|
618
618
|
$lt: import("@feathersjs/typebox").TAny;
|
|
619
619
|
$lte: import("@feathersjs/typebox").TAny;
|
|
620
620
|
$ne: import("@feathersjs/typebox").TAny;
|
|
621
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
622
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
621
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
622
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
623
623
|
}>, import("@feathersjs/typebox").TObject<{
|
|
624
624
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
625
625
|
} | undefined>]>>]>>;
|
|
@@ -629,8 +629,8 @@ export declare const exchangesDownloadQuerySchema: import("@feathersjs/typebox")
|
|
|
629
629
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
630
630
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
631
631
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
632
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
633
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
632
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
633
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
634
634
|
}>, import("@feathersjs/typebox").TObject<{
|
|
635
635
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
636
636
|
} | undefined>]>>]>>;
|
|
@@ -642,8 +642,8 @@ export declare const exchangesDownloadQuerySchema: import("@feathersjs/typebox")
|
|
|
642
642
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
643
643
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
644
644
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
645
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
646
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
645
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
646
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
647
647
|
}>, import("@feathersjs/typebox").TObject<{
|
|
648
648
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
649
649
|
} | undefined>]>>]>>;
|
|
@@ -653,8 +653,8 @@ export declare const exchangesDownloadQuerySchema: import("@feathersjs/typebox")
|
|
|
653
653
|
$lt: import("@feathersjs/typebox").TAny;
|
|
654
654
|
$lte: import("@feathersjs/typebox").TAny;
|
|
655
655
|
$ne: import("@feathersjs/typebox").TAny;
|
|
656
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
657
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
656
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
657
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
658
658
|
}>, import("@feathersjs/typebox").TObject<{
|
|
659
659
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
660
660
|
} | undefined>]>>]>>;
|
|
@@ -664,8 +664,8 @@ export declare const exchangesDownloadQuerySchema: import("@feathersjs/typebox")
|
|
|
664
664
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
665
665
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
666
666
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
667
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
668
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
667
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
668
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
669
669
|
}>, import("@feathersjs/typebox").TObject<{
|
|
670
670
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
671
671
|
} | undefined>]>>]>>;
|
|
@@ -678,8 +678,8 @@ export declare const exchangesDownloadQuerySchema: import("@feathersjs/typebox")
|
|
|
678
678
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
679
679
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
680
680
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
681
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
682
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
681
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
682
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
683
683
|
}>, import("@feathersjs/typebox").TObject<{
|
|
684
684
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
685
685
|
} | undefined>]>>]>>;
|
|
@@ -689,8 +689,8 @@ export declare const exchangesDownloadQuerySchema: import("@feathersjs/typebox")
|
|
|
689
689
|
$lt: import("@feathersjs/typebox").TAny;
|
|
690
690
|
$lte: import("@feathersjs/typebox").TAny;
|
|
691
691
|
$ne: import("@feathersjs/typebox").TAny;
|
|
692
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
693
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
692
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
693
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
694
694
|
}>, import("@feathersjs/typebox").TObject<{
|
|
695
695
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
696
696
|
} | undefined>]>>]>>;
|
|
@@ -700,8 +700,8 @@ export declare const exchangesDownloadQuerySchema: import("@feathersjs/typebox")
|
|
|
700
700
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
701
701
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
702
702
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
703
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
704
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
703
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
704
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
705
705
|
}>, import("@feathersjs/typebox").TObject<{
|
|
706
706
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
707
707
|
} | undefined>]>>]>>;
|
|
@@ -713,8 +713,8 @@ export declare const exchangesDownloadQuerySchema: import("@feathersjs/typebox")
|
|
|
713
713
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
714
714
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
715
715
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
716
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
717
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
716
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
717
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
718
718
|
}>, import("@feathersjs/typebox").TObject<{
|
|
719
719
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
720
720
|
} | undefined>]>>]>>;
|
|
@@ -724,8 +724,8 @@ export declare const exchangesDownloadQuerySchema: import("@feathersjs/typebox")
|
|
|
724
724
|
$lt: import("@feathersjs/typebox").TAny;
|
|
725
725
|
$lte: import("@feathersjs/typebox").TAny;
|
|
726
726
|
$ne: import("@feathersjs/typebox").TAny;
|
|
727
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
728
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
727
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
728
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
729
729
|
}>, import("@feathersjs/typebox").TObject<{
|
|
730
730
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
731
731
|
} | undefined>]>>]>>;
|
|
@@ -735,8 +735,8 @@ export declare const exchangesDownloadQuerySchema: import("@feathersjs/typebox")
|
|
|
735
735
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
736
736
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
737
737
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
738
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
739
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
738
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
739
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
740
740
|
}>, import("@feathersjs/typebox").TObject<{
|
|
741
741
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
742
742
|
} | undefined>]>>]>>;
|
|
@@ -759,8 +759,8 @@ export declare const exchangesDownloadQueryResolver: import("@feathersjs/schema"
|
|
|
759
759
|
$lt: string | {};
|
|
760
760
|
$lte: string | {};
|
|
761
761
|
$ne: string | {};
|
|
762
|
-
$in: (string | {})[];
|
|
763
|
-
$nin: (string | {})[];
|
|
762
|
+
$in: string | {} | (string | {})[];
|
|
763
|
+
$nin: string | {} | (string | {})[];
|
|
764
764
|
} & {}> | undefined;
|
|
765
765
|
exchangeId?: any;
|
|
766
766
|
nonce?: string | Partial<{
|
|
@@ -769,8 +769,8 @@ export declare const exchangesDownloadQueryResolver: import("@feathersjs/schema"
|
|
|
769
769
|
$lt: string;
|
|
770
770
|
$lte: string;
|
|
771
771
|
$ne: string;
|
|
772
|
-
$in: string[];
|
|
773
|
-
$nin: string[];
|
|
772
|
+
$in: string | string[];
|
|
773
|
+
$nin: string | string[];
|
|
774
774
|
} & {}> | undefined;
|
|
775
775
|
} | {
|
|
776
776
|
$or: {
|
|
@@ -780,8 +780,8 @@ export declare const exchangesDownloadQueryResolver: import("@feathersjs/schema"
|
|
|
780
780
|
$lt: string | {};
|
|
781
781
|
$lte: string | {};
|
|
782
782
|
$ne: string | {};
|
|
783
|
-
$in: (string | {})[];
|
|
784
|
-
$nin: (string | {})[];
|
|
783
|
+
$in: string | {} | (string | {})[];
|
|
784
|
+
$nin: string | {} | (string | {})[];
|
|
785
785
|
} & {}> | undefined;
|
|
786
786
|
exchangeId?: any;
|
|
787
787
|
nonce?: string | Partial<{
|
|
@@ -790,8 +790,8 @@ export declare const exchangesDownloadQueryResolver: import("@feathersjs/schema"
|
|
|
790
790
|
$lt: string;
|
|
791
791
|
$lte: string;
|
|
792
792
|
$ne: string;
|
|
793
|
-
$in: string[];
|
|
794
|
-
$nin: string[];
|
|
793
|
+
$in: string | string[];
|
|
794
|
+
$nin: string | string[];
|
|
795
795
|
} & {}> | undefined;
|
|
796
796
|
}[];
|
|
797
797
|
})[];
|
|
@@ -802,8 +802,8 @@ export declare const exchangesDownloadQueryResolver: import("@feathersjs/schema"
|
|
|
802
802
|
$lt: string | {};
|
|
803
803
|
$lte: string | {};
|
|
804
804
|
$ne: string | {};
|
|
805
|
-
$in: (string | {})[];
|
|
806
|
-
$nin: (string | {})[];
|
|
805
|
+
$in: string | {} | (string | {})[];
|
|
806
|
+
$nin: string | {} | (string | {})[];
|
|
807
807
|
} & {}> | undefined;
|
|
808
808
|
exchangeId?: any;
|
|
809
809
|
nonce?: string | Partial<{
|
|
@@ -812,8 +812,8 @@ export declare const exchangesDownloadQueryResolver: import("@feathersjs/schema"
|
|
|
812
812
|
$lt: string;
|
|
813
813
|
$lte: string;
|
|
814
814
|
$ne: string;
|
|
815
|
-
$in: string[];
|
|
816
|
-
$nin: string[];
|
|
815
|
+
$in: string | string[];
|
|
816
|
+
$nin: string | string[];
|
|
817
817
|
} & {}> | undefined;
|
|
818
818
|
}[];
|
|
819
819
|
}> & {
|
|
@@ -823,8 +823,8 @@ export declare const exchangesDownloadQueryResolver: import("@feathersjs/schema"
|
|
|
823
823
|
$lt: string | {};
|
|
824
824
|
$lte: string | {};
|
|
825
825
|
$ne: string | {};
|
|
826
|
-
$in: (string | {})[];
|
|
827
|
-
$nin: (string | {})[];
|
|
826
|
+
$in: string | {} | (string | {})[];
|
|
827
|
+
$nin: string | {} | (string | {})[];
|
|
828
828
|
} & {}> | undefined;
|
|
829
829
|
exchangeId?: any;
|
|
830
830
|
nonce?: string | Partial<{
|
|
@@ -833,7 +833,7 @@ export declare const exchangesDownloadQueryResolver: import("@feathersjs/schema"
|
|
|
833
833
|
$lt: string;
|
|
834
834
|
$lte: string;
|
|
835
835
|
$ne: string;
|
|
836
|
-
$in: string[];
|
|
837
|
-
$nin: string[];
|
|
836
|
+
$in: string | string[];
|
|
837
|
+
$nin: string | string[];
|
|
838
838
|
} & {}> | undefined;
|
|
839
839
|
} & {}, HookContext<ExchangesDownloadService<import("./download.class").ExchangesDownloadParams>>>;
|