@cryptorobot.ai/client 0.0.19 → 0.0.26
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 +24 -16
- package/lib/hooks/bootstrap-user-telegram.d.ts +0 -2
|
@@ -113,7 +113,6 @@ export declare const strategiesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
113
113
|
traderId: import("@feathersjs/typebox").TAny;
|
|
114
114
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
115
115
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
116
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
117
116
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
118
117
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
119
118
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -238,6 +237,7 @@ export declare const strategiesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
238
237
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
239
238
|
}>>;
|
|
240
239
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
240
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
241
241
|
host: import("@feathersjs/typebox").TString<string>;
|
|
242
242
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
243
243
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -248,7 +248,7 @@ export declare const strategiesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
248
248
|
name: import("@feathersjs/typebox").TString<string>;
|
|
249
249
|
type: import("@feathersjs/typebox").TString<string>;
|
|
250
250
|
description: import("@feathersjs/typebox").TString<string>;
|
|
251
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
251
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
252
252
|
values: import("@feathersjs/typebox").TAny;
|
|
253
253
|
}>>>;
|
|
254
254
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -266,19 +266,19 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
266
266
|
chat_id: any;
|
|
267
267
|
allow_custom_messages: boolean;
|
|
268
268
|
notification_settings: {
|
|
269
|
-
status: "silent" | "on" | "off";
|
|
270
269
|
entry: "silent" | "on" | "off";
|
|
271
270
|
exit: {
|
|
271
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
272
272
|
roi: "silent" | "on" | "off";
|
|
273
273
|
emergency_exit: "silent" | "on" | "off";
|
|
274
274
|
force_exit: "silent" | "on" | "off";
|
|
275
275
|
exit_signal: "silent" | "on" | "off";
|
|
276
276
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
277
277
|
stop_loss: "silent" | "on" | "off";
|
|
278
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
279
278
|
custom_exit: "silent" | "on" | "off";
|
|
280
279
|
partial_exit: "silent" | "on" | "off";
|
|
281
280
|
};
|
|
281
|
+
status: "silent" | "on" | "off";
|
|
282
282
|
warning: "silent" | "on" | "off";
|
|
283
283
|
startup: "silent" | "on" | "off";
|
|
284
284
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -293,8 +293,6 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
293
293
|
reload: boolean;
|
|
294
294
|
balance_dust_level: number;
|
|
295
295
|
} | undefined;
|
|
296
|
-
dry_run_wallet?: number | undefined;
|
|
297
|
-
max_open_trades?: number | undefined;
|
|
298
296
|
plugins?: {
|
|
299
297
|
number_assets?: number | undefined;
|
|
300
298
|
refresh_period?: number | undefined;
|
|
@@ -303,6 +301,8 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
303
301
|
removeRecentlyListed?: boolean | undefined;
|
|
304
302
|
removeRecentlyListedDays?: number | undefined;
|
|
305
303
|
} | undefined;
|
|
304
|
+
dry_run_wallet?: number | undefined;
|
|
305
|
+
max_open_trades?: number | undefined;
|
|
306
306
|
fiat_display_currency?: string | undefined;
|
|
307
307
|
unfilledtimeout?: {
|
|
308
308
|
entry: number;
|
|
@@ -316,37 +316,36 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
316
316
|
enabled: boolean;
|
|
317
317
|
format: string;
|
|
318
318
|
webhookstatus: {
|
|
319
|
-
|
|
319
|
+
userId: string;
|
|
320
320
|
event: string;
|
|
321
321
|
status: string;
|
|
322
|
-
|
|
322
|
+
traderId: any;
|
|
323
323
|
};
|
|
324
324
|
webhookentry: {
|
|
325
|
-
|
|
326
|
-
traderId: any;
|
|
327
|
-
stake_amount: string;
|
|
325
|
+
userId: string;
|
|
328
326
|
stake_currency: string;
|
|
327
|
+
stake_amount: string;
|
|
329
328
|
event: string;
|
|
330
|
-
|
|
329
|
+
traderId: any;
|
|
331
330
|
pair: string;
|
|
332
331
|
fiat_currency: string;
|
|
333
332
|
};
|
|
334
333
|
webhookentrycancel: {
|
|
335
334
|
limit: string;
|
|
336
|
-
|
|
337
|
-
stake_amount: string;
|
|
335
|
+
userId: string;
|
|
338
336
|
stake_currency: string;
|
|
337
|
+
stake_amount: string;
|
|
339
338
|
event: string;
|
|
340
|
-
|
|
339
|
+
traderId: any;
|
|
341
340
|
pair: string;
|
|
342
341
|
fiat_currency: string;
|
|
343
342
|
};
|
|
344
343
|
webhookentryfill: {
|
|
345
|
-
|
|
346
|
-
stake_amount: string;
|
|
344
|
+
userId: string;
|
|
347
345
|
stake_currency: string;
|
|
346
|
+
stake_amount: string;
|
|
348
347
|
event: string;
|
|
349
|
-
|
|
348
|
+
traderId: any;
|
|
350
349
|
pair: string;
|
|
351
350
|
trade_id: string;
|
|
352
351
|
open_rate: string;
|
|
@@ -355,10 +354,10 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
355
354
|
};
|
|
356
355
|
webhookexit: {
|
|
357
356
|
limit: string;
|
|
358
|
-
|
|
357
|
+
userId: string;
|
|
359
358
|
stake_currency: string;
|
|
360
359
|
event: string;
|
|
361
|
-
|
|
360
|
+
traderId: any;
|
|
362
361
|
pair: string;
|
|
363
362
|
fiat_currency: string;
|
|
364
363
|
trade_id: string;
|
|
@@ -373,22 +372,23 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
373
372
|
};
|
|
374
373
|
webhookexitcancel: {
|
|
375
374
|
limit: string;
|
|
376
|
-
|
|
375
|
+
userId: string;
|
|
377
376
|
stake_currency: string;
|
|
378
377
|
event: string;
|
|
379
|
-
|
|
378
|
+
traderId: any;
|
|
380
379
|
pair: string;
|
|
381
380
|
profit_amount: string;
|
|
382
381
|
profit_ratio: string;
|
|
383
382
|
};
|
|
384
383
|
webhookexitfill: {
|
|
385
|
-
traderId: any;
|
|
386
|
-
event: string;
|
|
387
384
|
userId: string;
|
|
385
|
+
event: string;
|
|
386
|
+
traderId: any;
|
|
388
387
|
pair: string;
|
|
389
388
|
close_rate: string;
|
|
390
389
|
};
|
|
391
390
|
} | undefined;
|
|
391
|
+
reset?: boolean | undefined;
|
|
392
392
|
host: string;
|
|
393
393
|
name: any;
|
|
394
394
|
provider: "docker";
|
|
@@ -398,20 +398,20 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
398
398
|
_id: string | {};
|
|
399
399
|
createdAt: any;
|
|
400
400
|
updatedAt: any;
|
|
401
|
-
|
|
402
|
-
strategyId: string | {};
|
|
403
|
-
stake_amount: string | number;
|
|
404
|
-
stake_currency: string;
|
|
405
|
-
exchangeId: any;
|
|
406
|
-
userId: any;
|
|
401
|
+
connected: boolean;
|
|
407
402
|
which: string;
|
|
403
|
+
userId: any;
|
|
404
|
+
"traders/pods": any;
|
|
408
405
|
exchange: any;
|
|
409
|
-
|
|
406
|
+
exchangeId: any;
|
|
407
|
+
stake_currency: string;
|
|
408
|
+
stake_amount: string | number;
|
|
410
409
|
dry_run: boolean;
|
|
411
410
|
handling: string;
|
|
412
411
|
initial_state: string;
|
|
413
412
|
pairlists: any;
|
|
414
413
|
strategy: any;
|
|
414
|
+
strategyId: string | {};
|
|
415
415
|
entry_pricing: {
|
|
416
416
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
417
417
|
use_order_book?: boolean | undefined;
|
|
@@ -431,35 +431,34 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
431
431
|
api_server: {
|
|
432
432
|
password: string;
|
|
433
433
|
enabled: boolean;
|
|
434
|
+
username: string;
|
|
434
435
|
listen_ip_address: string;
|
|
435
436
|
listen_port: number;
|
|
436
437
|
verbosity: string;
|
|
437
438
|
jwt_secret_key: string;
|
|
438
439
|
CORS_origins: string[];
|
|
439
|
-
username: string;
|
|
440
440
|
};
|
|
441
441
|
pod: string;
|
|
442
442
|
}[] | undefined;
|
|
443
443
|
createdAt?: any;
|
|
444
444
|
updatedAt?: any;
|
|
445
|
+
userId?: string | {} | undefined;
|
|
445
446
|
'strategies/templates'?: {
|
|
446
447
|
_id?: string | {} | undefined;
|
|
448
|
+
createdAt?: any;
|
|
447
449
|
values: any;
|
|
448
450
|
name: string;
|
|
449
|
-
createdAt: any;
|
|
450
451
|
description: string;
|
|
451
452
|
type: string;
|
|
452
453
|
} | undefined;
|
|
454
|
+
file?: any;
|
|
455
|
+
templateId?: string | {} | undefined;
|
|
456
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
453
457
|
stoploss?: number | undefined;
|
|
454
458
|
minimal_roi?: {
|
|
455
459
|
minutes: number;
|
|
456
460
|
profit: number;
|
|
457
461
|
}[] | undefined;
|
|
458
|
-
results?: unknown;
|
|
459
|
-
userId?: string | {} | undefined;
|
|
460
|
-
file?: any;
|
|
461
|
-
templateId?: string | {} | undefined;
|
|
462
|
-
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
463
462
|
exit_sell_signal?: boolean | undefined;
|
|
464
463
|
exit_profit_only?: boolean | undefined;
|
|
465
464
|
exit_profit_offset?: number | undefined;
|
|
@@ -468,10 +467,10 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
468
467
|
stoploss?: string | undefined;
|
|
469
468
|
entry?: "Limit" | "Market" | undefined;
|
|
470
469
|
exit?: "Limit" | "Market" | undefined;
|
|
471
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
472
470
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
473
471
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
474
472
|
forcesell?: "Limit" | "Market" | undefined;
|
|
473
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
475
474
|
stoploss_on_exchange_interval?: number | undefined;
|
|
476
475
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
477
476
|
} | undefined;
|
|
@@ -503,6 +502,7 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
503
502
|
}[] | undefined;
|
|
504
503
|
indicators?: unknown[] | undefined;
|
|
505
504
|
code?: unknown;
|
|
505
|
+
results?: unknown;
|
|
506
506
|
configured?: boolean | undefined;
|
|
507
507
|
name: any;
|
|
508
508
|
'strategies/indicators': any;
|
|
@@ -518,19 +518,19 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
518
518
|
chat_id: any;
|
|
519
519
|
allow_custom_messages: boolean;
|
|
520
520
|
notification_settings: {
|
|
521
|
-
status: "silent" | "on" | "off";
|
|
522
521
|
entry: "silent" | "on" | "off";
|
|
523
522
|
exit: {
|
|
523
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
524
524
|
roi: "silent" | "on" | "off";
|
|
525
525
|
emergency_exit: "silent" | "on" | "off";
|
|
526
526
|
force_exit: "silent" | "on" | "off";
|
|
527
527
|
exit_signal: "silent" | "on" | "off";
|
|
528
528
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
529
529
|
stop_loss: "silent" | "on" | "off";
|
|
530
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
531
530
|
custom_exit: "silent" | "on" | "off";
|
|
532
531
|
partial_exit: "silent" | "on" | "off";
|
|
533
532
|
};
|
|
533
|
+
status: "silent" | "on" | "off";
|
|
534
534
|
warning: "silent" | "on" | "off";
|
|
535
535
|
startup: "silent" | "on" | "off";
|
|
536
536
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -545,8 +545,6 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
545
545
|
reload: boolean;
|
|
546
546
|
balance_dust_level: number;
|
|
547
547
|
} | undefined;
|
|
548
|
-
dry_run_wallet?: number | undefined;
|
|
549
|
-
max_open_trades?: number | undefined;
|
|
550
548
|
plugins?: {
|
|
551
549
|
number_assets?: number | undefined;
|
|
552
550
|
refresh_period?: number | undefined;
|
|
@@ -555,6 +553,8 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
555
553
|
removeRecentlyListed?: boolean | undefined;
|
|
556
554
|
removeRecentlyListedDays?: number | undefined;
|
|
557
555
|
} | undefined;
|
|
556
|
+
dry_run_wallet?: number | undefined;
|
|
557
|
+
max_open_trades?: number | undefined;
|
|
558
558
|
fiat_display_currency?: string | undefined;
|
|
559
559
|
unfilledtimeout?: {
|
|
560
560
|
entry: number;
|
|
@@ -568,37 +568,36 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
568
568
|
enabled: boolean;
|
|
569
569
|
format: string;
|
|
570
570
|
webhookstatus: {
|
|
571
|
-
|
|
571
|
+
userId: string;
|
|
572
572
|
event: string;
|
|
573
573
|
status: string;
|
|
574
|
-
|
|
574
|
+
traderId: any;
|
|
575
575
|
};
|
|
576
576
|
webhookentry: {
|
|
577
|
-
|
|
578
|
-
traderId: any;
|
|
579
|
-
stake_amount: string;
|
|
577
|
+
userId: string;
|
|
580
578
|
stake_currency: string;
|
|
579
|
+
stake_amount: string;
|
|
581
580
|
event: string;
|
|
582
|
-
|
|
581
|
+
traderId: any;
|
|
583
582
|
pair: string;
|
|
584
583
|
fiat_currency: string;
|
|
585
584
|
};
|
|
586
585
|
webhookentrycancel: {
|
|
587
586
|
limit: string;
|
|
588
|
-
|
|
589
|
-
stake_amount: string;
|
|
587
|
+
userId: string;
|
|
590
588
|
stake_currency: string;
|
|
589
|
+
stake_amount: string;
|
|
591
590
|
event: string;
|
|
592
|
-
|
|
591
|
+
traderId: any;
|
|
593
592
|
pair: string;
|
|
594
593
|
fiat_currency: string;
|
|
595
594
|
};
|
|
596
595
|
webhookentryfill: {
|
|
597
|
-
|
|
598
|
-
stake_amount: string;
|
|
596
|
+
userId: string;
|
|
599
597
|
stake_currency: string;
|
|
598
|
+
stake_amount: string;
|
|
600
599
|
event: string;
|
|
601
|
-
|
|
600
|
+
traderId: any;
|
|
602
601
|
pair: string;
|
|
603
602
|
trade_id: string;
|
|
604
603
|
open_rate: string;
|
|
@@ -607,10 +606,10 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
607
606
|
};
|
|
608
607
|
webhookexit: {
|
|
609
608
|
limit: string;
|
|
610
|
-
|
|
609
|
+
userId: string;
|
|
611
610
|
stake_currency: string;
|
|
612
611
|
event: string;
|
|
613
|
-
|
|
612
|
+
traderId: any;
|
|
614
613
|
pair: string;
|
|
615
614
|
fiat_currency: string;
|
|
616
615
|
trade_id: string;
|
|
@@ -625,22 +624,23 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
625
624
|
};
|
|
626
625
|
webhookexitcancel: {
|
|
627
626
|
limit: string;
|
|
628
|
-
|
|
627
|
+
userId: string;
|
|
629
628
|
stake_currency: string;
|
|
630
629
|
event: string;
|
|
631
|
-
|
|
630
|
+
traderId: any;
|
|
632
631
|
pair: string;
|
|
633
632
|
profit_amount: string;
|
|
634
633
|
profit_ratio: string;
|
|
635
634
|
};
|
|
636
635
|
webhookexitfill: {
|
|
637
|
-
traderId: any;
|
|
638
|
-
event: string;
|
|
639
636
|
userId: string;
|
|
637
|
+
event: string;
|
|
638
|
+
traderId: any;
|
|
640
639
|
pair: string;
|
|
641
640
|
close_rate: string;
|
|
642
641
|
};
|
|
643
642
|
} | undefined;
|
|
643
|
+
reset?: boolean | undefined;
|
|
644
644
|
host: string;
|
|
645
645
|
name: any;
|
|
646
646
|
provider: "docker";
|
|
@@ -650,20 +650,20 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
650
650
|
_id: string | {};
|
|
651
651
|
createdAt: any;
|
|
652
652
|
updatedAt: any;
|
|
653
|
-
|
|
654
|
-
strategyId: string | {};
|
|
655
|
-
stake_amount: string | number;
|
|
656
|
-
stake_currency: string;
|
|
657
|
-
exchangeId: any;
|
|
658
|
-
userId: any;
|
|
653
|
+
connected: boolean;
|
|
659
654
|
which: string;
|
|
655
|
+
userId: any;
|
|
656
|
+
"traders/pods": any;
|
|
660
657
|
exchange: any;
|
|
661
|
-
|
|
658
|
+
exchangeId: any;
|
|
659
|
+
stake_currency: string;
|
|
660
|
+
stake_amount: string | number;
|
|
662
661
|
dry_run: boolean;
|
|
663
662
|
handling: string;
|
|
664
663
|
initial_state: string;
|
|
665
664
|
pairlists: any;
|
|
666
665
|
strategy: any;
|
|
666
|
+
strategyId: string | {};
|
|
667
667
|
entry_pricing: {
|
|
668
668
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
669
669
|
use_order_book?: boolean | undefined;
|
|
@@ -683,35 +683,34 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
683
683
|
api_server: {
|
|
684
684
|
password: string;
|
|
685
685
|
enabled: boolean;
|
|
686
|
+
username: string;
|
|
686
687
|
listen_ip_address: string;
|
|
687
688
|
listen_port: number;
|
|
688
689
|
verbosity: string;
|
|
689
690
|
jwt_secret_key: string;
|
|
690
691
|
CORS_origins: string[];
|
|
691
|
-
username: string;
|
|
692
692
|
};
|
|
693
693
|
pod: string;
|
|
694
694
|
}[] | undefined;
|
|
695
695
|
createdAt?: any;
|
|
696
696
|
updatedAt?: any;
|
|
697
|
+
userId?: string | {} | undefined;
|
|
697
698
|
'strategies/templates'?: {
|
|
698
699
|
_id?: string | {} | undefined;
|
|
700
|
+
createdAt?: any;
|
|
699
701
|
values: any;
|
|
700
702
|
name: string;
|
|
701
|
-
createdAt: any;
|
|
702
703
|
description: string;
|
|
703
704
|
type: string;
|
|
704
705
|
} | undefined;
|
|
706
|
+
file?: any;
|
|
707
|
+
templateId?: string | {} | undefined;
|
|
708
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
705
709
|
stoploss?: number | undefined;
|
|
706
710
|
minimal_roi?: {
|
|
707
711
|
minutes: number;
|
|
708
712
|
profit: number;
|
|
709
713
|
}[] | undefined;
|
|
710
|
-
results?: unknown;
|
|
711
|
-
userId?: string | {} | undefined;
|
|
712
|
-
file?: any;
|
|
713
|
-
templateId?: string | {} | undefined;
|
|
714
|
-
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
715
714
|
exit_sell_signal?: boolean | undefined;
|
|
716
715
|
exit_profit_only?: boolean | undefined;
|
|
717
716
|
exit_profit_offset?: number | undefined;
|
|
@@ -720,10 +719,10 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
720
719
|
stoploss?: string | undefined;
|
|
721
720
|
entry?: "Limit" | "Market" | undefined;
|
|
722
721
|
exit?: "Limit" | "Market" | undefined;
|
|
723
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
724
722
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
725
723
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
726
724
|
forcesell?: "Limit" | "Market" | undefined;
|
|
725
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
727
726
|
stoploss_on_exchange_interval?: number | undefined;
|
|
728
727
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
729
728
|
} | undefined;
|
|
@@ -755,6 +754,7 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
755
754
|
}[] | undefined;
|
|
756
755
|
indicators?: unknown[] | undefined;
|
|
757
756
|
code?: unknown;
|
|
757
|
+
results?: unknown;
|
|
758
758
|
configured?: boolean | undefined;
|
|
759
759
|
name: any;
|
|
760
760
|
'strategies/indicators': any;
|
|
@@ -871,7 +871,6 @@ export declare const strategiesDataSchema: import("@feathersjs/typebox").TPick<i
|
|
|
871
871
|
traderId: import("@feathersjs/typebox").TAny;
|
|
872
872
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
873
873
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
874
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
875
874
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
876
875
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
877
876
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -996,6 +995,7 @@ export declare const strategiesDataSchema: import("@feathersjs/typebox").TPick<i
|
|
|
996
995
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
997
996
|
}>>;
|
|
998
997
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
998
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
999
999
|
host: import("@feathersjs/typebox").TString<string>;
|
|
1000
1000
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1001
1001
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -1006,7 +1006,7 @@ export declare const strategiesDataSchema: import("@feathersjs/typebox").TPick<i
|
|
|
1006
1006
|
name: import("@feathersjs/typebox").TString<string>;
|
|
1007
1007
|
type: import("@feathersjs/typebox").TString<string>;
|
|
1008
1008
|
description: import("@feathersjs/typebox").TString<string>;
|
|
1009
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
1009
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
1010
1010
|
values: import("@feathersjs/typebox").TAny;
|
|
1011
1011
|
}>>>;
|
|
1012
1012
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -1024,19 +1024,19 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1024
1024
|
chat_id: any;
|
|
1025
1025
|
allow_custom_messages: boolean;
|
|
1026
1026
|
notification_settings: {
|
|
1027
|
-
status: "silent" | "on" | "off";
|
|
1028
1027
|
entry: "silent" | "on" | "off";
|
|
1029
1028
|
exit: {
|
|
1029
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1030
1030
|
roi: "silent" | "on" | "off";
|
|
1031
1031
|
emergency_exit: "silent" | "on" | "off";
|
|
1032
1032
|
force_exit: "silent" | "on" | "off";
|
|
1033
1033
|
exit_signal: "silent" | "on" | "off";
|
|
1034
1034
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
1035
1035
|
stop_loss: "silent" | "on" | "off";
|
|
1036
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1037
1036
|
custom_exit: "silent" | "on" | "off";
|
|
1038
1037
|
partial_exit: "silent" | "on" | "off";
|
|
1039
1038
|
};
|
|
1039
|
+
status: "silent" | "on" | "off";
|
|
1040
1040
|
warning: "silent" | "on" | "off";
|
|
1041
1041
|
startup: "silent" | "on" | "off";
|
|
1042
1042
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -1051,8 +1051,6 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1051
1051
|
reload: boolean;
|
|
1052
1052
|
balance_dust_level: number;
|
|
1053
1053
|
} | undefined;
|
|
1054
|
-
dry_run_wallet?: number | undefined;
|
|
1055
|
-
max_open_trades?: number | undefined;
|
|
1056
1054
|
plugins?: {
|
|
1057
1055
|
number_assets?: number | undefined;
|
|
1058
1056
|
refresh_period?: number | undefined;
|
|
@@ -1061,6 +1059,8 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1061
1059
|
removeRecentlyListed?: boolean | undefined;
|
|
1062
1060
|
removeRecentlyListedDays?: number | undefined;
|
|
1063
1061
|
} | undefined;
|
|
1062
|
+
dry_run_wallet?: number | undefined;
|
|
1063
|
+
max_open_trades?: number | undefined;
|
|
1064
1064
|
fiat_display_currency?: string | undefined;
|
|
1065
1065
|
unfilledtimeout?: {
|
|
1066
1066
|
entry: number;
|
|
@@ -1074,37 +1074,36 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1074
1074
|
enabled: boolean;
|
|
1075
1075
|
format: string;
|
|
1076
1076
|
webhookstatus: {
|
|
1077
|
-
|
|
1077
|
+
userId: string;
|
|
1078
1078
|
event: string;
|
|
1079
1079
|
status: string;
|
|
1080
|
-
|
|
1080
|
+
traderId: any;
|
|
1081
1081
|
};
|
|
1082
1082
|
webhookentry: {
|
|
1083
|
-
|
|
1084
|
-
traderId: any;
|
|
1085
|
-
stake_amount: string;
|
|
1083
|
+
userId: string;
|
|
1086
1084
|
stake_currency: string;
|
|
1085
|
+
stake_amount: string;
|
|
1087
1086
|
event: string;
|
|
1088
|
-
|
|
1087
|
+
traderId: any;
|
|
1089
1088
|
pair: string;
|
|
1090
1089
|
fiat_currency: string;
|
|
1091
1090
|
};
|
|
1092
1091
|
webhookentrycancel: {
|
|
1093
1092
|
limit: string;
|
|
1094
|
-
|
|
1095
|
-
stake_amount: string;
|
|
1093
|
+
userId: string;
|
|
1096
1094
|
stake_currency: string;
|
|
1095
|
+
stake_amount: string;
|
|
1097
1096
|
event: string;
|
|
1098
|
-
|
|
1097
|
+
traderId: any;
|
|
1099
1098
|
pair: string;
|
|
1100
1099
|
fiat_currency: string;
|
|
1101
1100
|
};
|
|
1102
1101
|
webhookentryfill: {
|
|
1103
|
-
|
|
1104
|
-
stake_amount: string;
|
|
1102
|
+
userId: string;
|
|
1105
1103
|
stake_currency: string;
|
|
1104
|
+
stake_amount: string;
|
|
1106
1105
|
event: string;
|
|
1107
|
-
|
|
1106
|
+
traderId: any;
|
|
1108
1107
|
pair: string;
|
|
1109
1108
|
trade_id: string;
|
|
1110
1109
|
open_rate: string;
|
|
@@ -1113,10 +1112,10 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1113
1112
|
};
|
|
1114
1113
|
webhookexit: {
|
|
1115
1114
|
limit: string;
|
|
1116
|
-
|
|
1115
|
+
userId: string;
|
|
1117
1116
|
stake_currency: string;
|
|
1118
1117
|
event: string;
|
|
1119
|
-
|
|
1118
|
+
traderId: any;
|
|
1120
1119
|
pair: string;
|
|
1121
1120
|
fiat_currency: string;
|
|
1122
1121
|
trade_id: string;
|
|
@@ -1131,22 +1130,23 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1131
1130
|
};
|
|
1132
1131
|
webhookexitcancel: {
|
|
1133
1132
|
limit: string;
|
|
1134
|
-
|
|
1133
|
+
userId: string;
|
|
1135
1134
|
stake_currency: string;
|
|
1136
1135
|
event: string;
|
|
1137
|
-
|
|
1136
|
+
traderId: any;
|
|
1138
1137
|
pair: string;
|
|
1139
1138
|
profit_amount: string;
|
|
1140
1139
|
profit_ratio: string;
|
|
1141
1140
|
};
|
|
1142
1141
|
webhookexitfill: {
|
|
1143
|
-
traderId: any;
|
|
1144
|
-
event: string;
|
|
1145
1142
|
userId: string;
|
|
1143
|
+
event: string;
|
|
1144
|
+
traderId: any;
|
|
1146
1145
|
pair: string;
|
|
1147
1146
|
close_rate: string;
|
|
1148
1147
|
};
|
|
1149
1148
|
} | undefined;
|
|
1149
|
+
reset?: boolean | undefined;
|
|
1150
1150
|
host: string;
|
|
1151
1151
|
name: any;
|
|
1152
1152
|
provider: "docker";
|
|
@@ -1156,20 +1156,20 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1156
1156
|
_id: string | {};
|
|
1157
1157
|
createdAt: any;
|
|
1158
1158
|
updatedAt: any;
|
|
1159
|
-
|
|
1160
|
-
strategyId: string | {};
|
|
1161
|
-
stake_amount: string | number;
|
|
1162
|
-
stake_currency: string;
|
|
1163
|
-
exchangeId: any;
|
|
1164
|
-
userId: any;
|
|
1159
|
+
connected: boolean;
|
|
1165
1160
|
which: string;
|
|
1161
|
+
userId: any;
|
|
1162
|
+
"traders/pods": any;
|
|
1166
1163
|
exchange: any;
|
|
1167
|
-
|
|
1164
|
+
exchangeId: any;
|
|
1165
|
+
stake_currency: string;
|
|
1166
|
+
stake_amount: string | number;
|
|
1168
1167
|
dry_run: boolean;
|
|
1169
1168
|
handling: string;
|
|
1170
1169
|
initial_state: string;
|
|
1171
1170
|
pairlists: any;
|
|
1172
1171
|
strategy: any;
|
|
1172
|
+
strategyId: string | {};
|
|
1173
1173
|
entry_pricing: {
|
|
1174
1174
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1175
1175
|
use_order_book?: boolean | undefined;
|
|
@@ -1189,35 +1189,34 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1189
1189
|
api_server: {
|
|
1190
1190
|
password: string;
|
|
1191
1191
|
enabled: boolean;
|
|
1192
|
+
username: string;
|
|
1192
1193
|
listen_ip_address: string;
|
|
1193
1194
|
listen_port: number;
|
|
1194
1195
|
verbosity: string;
|
|
1195
1196
|
jwt_secret_key: string;
|
|
1196
1197
|
CORS_origins: string[];
|
|
1197
|
-
username: string;
|
|
1198
1198
|
};
|
|
1199
1199
|
pod: string;
|
|
1200
1200
|
}[] | undefined;
|
|
1201
1201
|
createdAt?: any;
|
|
1202
1202
|
updatedAt?: any;
|
|
1203
|
+
userId?: string | {} | undefined;
|
|
1203
1204
|
'strategies/templates'?: {
|
|
1204
1205
|
_id?: string | {} | undefined;
|
|
1206
|
+
createdAt?: any;
|
|
1205
1207
|
values: any;
|
|
1206
1208
|
name: string;
|
|
1207
|
-
createdAt: any;
|
|
1208
1209
|
description: string;
|
|
1209
1210
|
type: string;
|
|
1210
1211
|
} | undefined;
|
|
1212
|
+
file?: any;
|
|
1213
|
+
templateId?: string | {} | undefined;
|
|
1214
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
1211
1215
|
stoploss?: number | undefined;
|
|
1212
1216
|
minimal_roi?: {
|
|
1213
1217
|
minutes: number;
|
|
1214
1218
|
profit: number;
|
|
1215
1219
|
}[] | undefined;
|
|
1216
|
-
results?: unknown;
|
|
1217
|
-
userId?: string | {} | undefined;
|
|
1218
|
-
file?: any;
|
|
1219
|
-
templateId?: string | {} | undefined;
|
|
1220
|
-
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
1221
1220
|
exit_sell_signal?: boolean | undefined;
|
|
1222
1221
|
exit_profit_only?: boolean | undefined;
|
|
1223
1222
|
exit_profit_offset?: number | undefined;
|
|
@@ -1226,10 +1225,10 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1226
1225
|
stoploss?: string | undefined;
|
|
1227
1226
|
entry?: "Limit" | "Market" | undefined;
|
|
1228
1227
|
exit?: "Limit" | "Market" | undefined;
|
|
1229
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
1230
1228
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
1231
1229
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
1232
1230
|
forcesell?: "Limit" | "Market" | undefined;
|
|
1231
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
1233
1232
|
stoploss_on_exchange_interval?: number | undefined;
|
|
1234
1233
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
1235
1234
|
} | undefined;
|
|
@@ -1261,6 +1260,7 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1261
1260
|
}[] | undefined;
|
|
1262
1261
|
indicators?: unknown[] | undefined;
|
|
1263
1262
|
code?: unknown;
|
|
1263
|
+
results?: unknown;
|
|
1264
1264
|
configured?: boolean | undefined;
|
|
1265
1265
|
name: any;
|
|
1266
1266
|
'strategies/indicators': any;
|
|
@@ -1377,7 +1377,6 @@ export declare const strategiesPatchSchema: import("@feathersjs/typebox").TParti
|
|
|
1377
1377
|
traderId: import("@feathersjs/typebox").TAny;
|
|
1378
1378
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
1379
1379
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
1380
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
1381
1380
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
1382
1381
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
1383
1382
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1502,6 +1501,7 @@ export declare const strategiesPatchSchema: import("@feathersjs/typebox").TParti
|
|
|
1502
1501
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
1503
1502
|
}>>;
|
|
1504
1503
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
1504
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1505
1505
|
host: import("@feathersjs/typebox").TString<string>;
|
|
1506
1506
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1507
1507
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -1512,7 +1512,7 @@ export declare const strategiesPatchSchema: import("@feathersjs/typebox").TParti
|
|
|
1512
1512
|
name: import("@feathersjs/typebox").TString<string>;
|
|
1513
1513
|
type: import("@feathersjs/typebox").TString<string>;
|
|
1514
1514
|
description: import("@feathersjs/typebox").TString<string>;
|
|
1515
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
1515
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
1516
1516
|
values: import("@feathersjs/typebox").TAny;
|
|
1517
1517
|
}>>>;
|
|
1518
1518
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -1530,19 +1530,19 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1530
1530
|
chat_id: any;
|
|
1531
1531
|
allow_custom_messages: boolean;
|
|
1532
1532
|
notification_settings: {
|
|
1533
|
-
status: "silent" | "on" | "off";
|
|
1534
1533
|
entry: "silent" | "on" | "off";
|
|
1535
1534
|
exit: {
|
|
1535
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1536
1536
|
roi: "silent" | "on" | "off";
|
|
1537
1537
|
emergency_exit: "silent" | "on" | "off";
|
|
1538
1538
|
force_exit: "silent" | "on" | "off";
|
|
1539
1539
|
exit_signal: "silent" | "on" | "off";
|
|
1540
1540
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
1541
1541
|
stop_loss: "silent" | "on" | "off";
|
|
1542
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1543
1542
|
custom_exit: "silent" | "on" | "off";
|
|
1544
1543
|
partial_exit: "silent" | "on" | "off";
|
|
1545
1544
|
};
|
|
1545
|
+
status: "silent" | "on" | "off";
|
|
1546
1546
|
warning: "silent" | "on" | "off";
|
|
1547
1547
|
startup: "silent" | "on" | "off";
|
|
1548
1548
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -1557,8 +1557,6 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1557
1557
|
reload: boolean;
|
|
1558
1558
|
balance_dust_level: number;
|
|
1559
1559
|
} | undefined;
|
|
1560
|
-
dry_run_wallet?: number | undefined;
|
|
1561
|
-
max_open_trades?: number | undefined;
|
|
1562
1560
|
plugins?: {
|
|
1563
1561
|
number_assets?: number | undefined;
|
|
1564
1562
|
refresh_period?: number | undefined;
|
|
@@ -1567,6 +1565,8 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1567
1565
|
removeRecentlyListed?: boolean | undefined;
|
|
1568
1566
|
removeRecentlyListedDays?: number | undefined;
|
|
1569
1567
|
} | undefined;
|
|
1568
|
+
dry_run_wallet?: number | undefined;
|
|
1569
|
+
max_open_trades?: number | undefined;
|
|
1570
1570
|
fiat_display_currency?: string | undefined;
|
|
1571
1571
|
unfilledtimeout?: {
|
|
1572
1572
|
entry: number;
|
|
@@ -1580,37 +1580,36 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1580
1580
|
enabled: boolean;
|
|
1581
1581
|
format: string;
|
|
1582
1582
|
webhookstatus: {
|
|
1583
|
-
|
|
1583
|
+
userId: string;
|
|
1584
1584
|
event: string;
|
|
1585
1585
|
status: string;
|
|
1586
|
-
|
|
1586
|
+
traderId: any;
|
|
1587
1587
|
};
|
|
1588
1588
|
webhookentry: {
|
|
1589
|
-
|
|
1590
|
-
traderId: any;
|
|
1591
|
-
stake_amount: string;
|
|
1589
|
+
userId: string;
|
|
1592
1590
|
stake_currency: string;
|
|
1591
|
+
stake_amount: string;
|
|
1593
1592
|
event: string;
|
|
1594
|
-
|
|
1593
|
+
traderId: any;
|
|
1595
1594
|
pair: string;
|
|
1596
1595
|
fiat_currency: string;
|
|
1597
1596
|
};
|
|
1598
1597
|
webhookentrycancel: {
|
|
1599
1598
|
limit: string;
|
|
1600
|
-
|
|
1601
|
-
stake_amount: string;
|
|
1599
|
+
userId: string;
|
|
1602
1600
|
stake_currency: string;
|
|
1601
|
+
stake_amount: string;
|
|
1603
1602
|
event: string;
|
|
1604
|
-
|
|
1603
|
+
traderId: any;
|
|
1605
1604
|
pair: string;
|
|
1606
1605
|
fiat_currency: string;
|
|
1607
1606
|
};
|
|
1608
1607
|
webhookentryfill: {
|
|
1609
|
-
|
|
1610
|
-
stake_amount: string;
|
|
1608
|
+
userId: string;
|
|
1611
1609
|
stake_currency: string;
|
|
1610
|
+
stake_amount: string;
|
|
1612
1611
|
event: string;
|
|
1613
|
-
|
|
1612
|
+
traderId: any;
|
|
1614
1613
|
pair: string;
|
|
1615
1614
|
trade_id: string;
|
|
1616
1615
|
open_rate: string;
|
|
@@ -1619,10 +1618,10 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1619
1618
|
};
|
|
1620
1619
|
webhookexit: {
|
|
1621
1620
|
limit: string;
|
|
1622
|
-
|
|
1621
|
+
userId: string;
|
|
1623
1622
|
stake_currency: string;
|
|
1624
1623
|
event: string;
|
|
1625
|
-
|
|
1624
|
+
traderId: any;
|
|
1626
1625
|
pair: string;
|
|
1627
1626
|
fiat_currency: string;
|
|
1628
1627
|
trade_id: string;
|
|
@@ -1637,22 +1636,23 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1637
1636
|
};
|
|
1638
1637
|
webhookexitcancel: {
|
|
1639
1638
|
limit: string;
|
|
1640
|
-
|
|
1639
|
+
userId: string;
|
|
1641
1640
|
stake_currency: string;
|
|
1642
1641
|
event: string;
|
|
1643
|
-
|
|
1642
|
+
traderId: any;
|
|
1644
1643
|
pair: string;
|
|
1645
1644
|
profit_amount: string;
|
|
1646
1645
|
profit_ratio: string;
|
|
1647
1646
|
};
|
|
1648
1647
|
webhookexitfill: {
|
|
1649
|
-
traderId: any;
|
|
1650
|
-
event: string;
|
|
1651
1648
|
userId: string;
|
|
1649
|
+
event: string;
|
|
1650
|
+
traderId: any;
|
|
1652
1651
|
pair: string;
|
|
1653
1652
|
close_rate: string;
|
|
1654
1653
|
};
|
|
1655
1654
|
} | undefined;
|
|
1655
|
+
reset?: boolean | undefined;
|
|
1656
1656
|
host: string;
|
|
1657
1657
|
name: any;
|
|
1658
1658
|
provider: "docker";
|
|
@@ -1662,20 +1662,20 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1662
1662
|
_id: string | {};
|
|
1663
1663
|
createdAt: any;
|
|
1664
1664
|
updatedAt: any;
|
|
1665
|
-
|
|
1666
|
-
strategyId: string | {};
|
|
1667
|
-
stake_amount: string | number;
|
|
1668
|
-
stake_currency: string;
|
|
1669
|
-
exchangeId: any;
|
|
1670
|
-
userId: any;
|
|
1665
|
+
connected: boolean;
|
|
1671
1666
|
which: string;
|
|
1667
|
+
userId: any;
|
|
1668
|
+
"traders/pods": any;
|
|
1672
1669
|
exchange: any;
|
|
1673
|
-
|
|
1670
|
+
exchangeId: any;
|
|
1671
|
+
stake_currency: string;
|
|
1672
|
+
stake_amount: string | number;
|
|
1674
1673
|
dry_run: boolean;
|
|
1675
1674
|
handling: string;
|
|
1676
1675
|
initial_state: string;
|
|
1677
1676
|
pairlists: any;
|
|
1678
1677
|
strategy: any;
|
|
1678
|
+
strategyId: string | {};
|
|
1679
1679
|
entry_pricing: {
|
|
1680
1680
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1681
1681
|
use_order_book?: boolean | undefined;
|
|
@@ -1695,35 +1695,34 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1695
1695
|
api_server: {
|
|
1696
1696
|
password: string;
|
|
1697
1697
|
enabled: boolean;
|
|
1698
|
+
username: string;
|
|
1698
1699
|
listen_ip_address: string;
|
|
1699
1700
|
listen_port: number;
|
|
1700
1701
|
verbosity: string;
|
|
1701
1702
|
jwt_secret_key: string;
|
|
1702
1703
|
CORS_origins: string[];
|
|
1703
|
-
username: string;
|
|
1704
1704
|
};
|
|
1705
1705
|
pod: string;
|
|
1706
1706
|
}[] | undefined;
|
|
1707
1707
|
createdAt?: any;
|
|
1708
1708
|
updatedAt?: any;
|
|
1709
|
+
userId?: string | {} | undefined;
|
|
1709
1710
|
'strategies/templates'?: {
|
|
1710
1711
|
_id?: string | {} | undefined;
|
|
1712
|
+
createdAt?: any;
|
|
1711
1713
|
values: any;
|
|
1712
1714
|
name: string;
|
|
1713
|
-
createdAt: any;
|
|
1714
1715
|
description: string;
|
|
1715
1716
|
type: string;
|
|
1716
1717
|
} | undefined;
|
|
1718
|
+
file?: any;
|
|
1719
|
+
templateId?: string | {} | undefined;
|
|
1720
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
1717
1721
|
stoploss?: number | undefined;
|
|
1718
1722
|
minimal_roi?: {
|
|
1719
1723
|
minutes: number;
|
|
1720
1724
|
profit: number;
|
|
1721
1725
|
}[] | undefined;
|
|
1722
|
-
results?: unknown;
|
|
1723
|
-
userId?: string | {} | undefined;
|
|
1724
|
-
file?: any;
|
|
1725
|
-
templateId?: string | {} | undefined;
|
|
1726
|
-
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
1727
1726
|
exit_sell_signal?: boolean | undefined;
|
|
1728
1727
|
exit_profit_only?: boolean | undefined;
|
|
1729
1728
|
exit_profit_offset?: number | undefined;
|
|
@@ -1732,10 +1731,10 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1732
1731
|
stoploss?: string | undefined;
|
|
1733
1732
|
entry?: "Limit" | "Market" | undefined;
|
|
1734
1733
|
exit?: "Limit" | "Market" | undefined;
|
|
1735
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
1736
1734
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
1737
1735
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
1738
1736
|
forcesell?: "Limit" | "Market" | undefined;
|
|
1737
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
1739
1738
|
stoploss_on_exchange_interval?: number | undefined;
|
|
1740
1739
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
1741
1740
|
} | undefined;
|
|
@@ -1767,6 +1766,7 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1767
1766
|
}[] | undefined;
|
|
1768
1767
|
indicators?: unknown[] | undefined;
|
|
1769
1768
|
code?: unknown;
|
|
1769
|
+
results?: unknown;
|
|
1770
1770
|
configured?: boolean | undefined;
|
|
1771
1771
|
name: any;
|
|
1772
1772
|
'strategies/indicators': any;
|
|
@@ -1883,7 +1883,6 @@ export declare const strategiesQueryProperties: import("@feathersjs/typebox").TP
|
|
|
1883
1883
|
traderId: import("@feathersjs/typebox").TAny;
|
|
1884
1884
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
1885
1885
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
1886
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
1887
1886
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
1888
1887
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
1889
1888
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2008,6 +2007,7 @@ export declare const strategiesQueryProperties: import("@feathersjs/typebox").TP
|
|
|
2008
2007
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
2009
2008
|
}>>;
|
|
2010
2009
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
2010
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2011
2011
|
host: import("@feathersjs/typebox").TString<string>;
|
|
2012
2012
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
2013
2013
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -2018,11 +2018,11 @@ export declare const strategiesQueryProperties: import("@feathersjs/typebox").TP
|
|
|
2018
2018
|
name: import("@feathersjs/typebox").TString<string>;
|
|
2019
2019
|
type: import("@feathersjs/typebox").TString<string>;
|
|
2020
2020
|
description: import("@feathersjs/typebox").TString<string>;
|
|
2021
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
2021
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2022
2022
|
values: import("@feathersjs/typebox").TAny;
|
|
2023
2023
|
}>>>;
|
|
2024
2024
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
2025
|
-
}>, ["_id", "name", "userId", "templateId", "createdAt", "updatedAt", "configured"]>;
|
|
2025
|
+
}>, ["_id", "name", "userId", "templateId", "createdAt", "updatedAt", "configured", "interval"]>;
|
|
2026
2026
|
export declare const strategiesQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
2027
2027
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
2028
2028
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
@@ -2033,9 +2033,10 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2033
2033
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
2034
2034
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
2035
2035
|
templateId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
2036
|
+
interval: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
2036
2037
|
configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
2037
2038
|
}>;
|
|
2038
|
-
$select: import("@feathersjs/typebox").TUnsafe<("name" | "_id" | "createdAt" | "updatedAt" | "userId" | "templateId" | "configured")[]>;
|
|
2039
|
+
$select: import("@feathersjs/typebox").TUnsafe<("name" | "_id" | "createdAt" | "updatedAt" | "userId" | "templateId" | "interval" | "configured")[]>;
|
|
2039
2040
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2040
2041
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2041
2042
|
$gt: import("@feathersjs/typebox").TAny;
|
|
@@ -2043,8 +2044,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2043
2044
|
$lt: import("@feathersjs/typebox").TAny;
|
|
2044
2045
|
$lte: import("@feathersjs/typebox").TAny;
|
|
2045
2046
|
$ne: import("@feathersjs/typebox").TAny;
|
|
2046
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2047
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2047
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2048
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2048
2049
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2049
2050
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2050
2051
|
} | undefined>]>>]>>;
|
|
@@ -2054,8 +2055,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2054
2055
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2055
2056
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2056
2057
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2057
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2058
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2058
|
+
$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<{}>]>>>;
|
|
2059
|
+
$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<{}>]>>>;
|
|
2059
2060
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2060
2061
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2061
2062
|
} | undefined>]>>]>>;
|
|
@@ -2065,8 +2066,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2065
2066
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2066
2067
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2067
2068
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2068
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2069
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2069
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2070
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2070
2071
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2071
2072
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2072
2073
|
} | undefined>]>>]>>;
|
|
@@ -2076,8 +2077,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2076
2077
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2077
2078
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2078
2079
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2079
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2080
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2080
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2081
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2081
2082
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2082
2083
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2083
2084
|
} | undefined>]>>]>>;
|
|
@@ -2087,8 +2088,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2087
2088
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2088
2089
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2089
2090
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2090
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2091
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2091
|
+
$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<{}>]>>>;
|
|
2092
|
+
$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<{}>]>>>;
|
|
2092
2093
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2093
2094
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2094
2095
|
} | undefined>]>>]>>;
|
|
@@ -2098,8 +2099,19 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2098
2099
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
2099
2100
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
2100
2101
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
2101
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>>;
|
|
2102
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>>;
|
|
2102
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>>;
|
|
2103
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>>;
|
|
2104
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2105
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2106
|
+
} | undefined>]>>]>>;
|
|
2107
|
+
interval: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2108
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2109
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2110
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2111
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2112
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2113
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>>;
|
|
2114
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>>;
|
|
2103
2115
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2104
2116
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2105
2117
|
} | undefined>]>>]>>;
|
|
@@ -2109,8 +2121,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2109
2121
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2110
2122
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2111
2123
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2112
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2113
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2124
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2125
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2114
2126
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2115
2127
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2116
2128
|
} | undefined>]>>]>>;
|
|
@@ -2122,8 +2134,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2122
2134
|
$lt: import("@feathersjs/typebox").TAny;
|
|
2123
2135
|
$lte: import("@feathersjs/typebox").TAny;
|
|
2124
2136
|
$ne: import("@feathersjs/typebox").TAny;
|
|
2125
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2126
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2137
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2138
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2127
2139
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2128
2140
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2129
2141
|
} | undefined>]>>]>>;
|
|
@@ -2133,8 +2145,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2133
2145
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2134
2146
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2135
2147
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2136
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2137
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2148
|
+
$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<{}>]>>>;
|
|
2149
|
+
$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<{}>]>>>;
|
|
2138
2150
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2139
2151
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2140
2152
|
} | undefined>]>>]>>;
|
|
@@ -2144,8 +2156,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2144
2156
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2145
2157
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2146
2158
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2147
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2148
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2159
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2160
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2149
2161
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2150
2162
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2151
2163
|
} | undefined>]>>]>>;
|
|
@@ -2155,8 +2167,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2155
2167
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2156
2168
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2157
2169
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2158
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2159
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2170
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2171
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2160
2172
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2161
2173
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2162
2174
|
} | undefined>]>>]>>;
|
|
@@ -2166,8 +2178,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2166
2178
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2167
2179
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2168
2180
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2169
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2170
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2181
|
+
$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<{}>]>>>;
|
|
2182
|
+
$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<{}>]>>>;
|
|
2171
2183
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2172
2184
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2173
2185
|
} | undefined>]>>]>>;
|
|
@@ -2177,8 +2189,19 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2177
2189
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
2178
2190
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
2179
2191
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
2180
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>>;
|
|
2181
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>>;
|
|
2192
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>>;
|
|
2193
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>>;
|
|
2194
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2195
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2196
|
+
} | undefined>]>>]>>;
|
|
2197
|
+
interval: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2198
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2199
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2200
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2201
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2202
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2203
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>>;
|
|
2204
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>>;
|
|
2182
2205
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2183
2206
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2184
2207
|
} | undefined>]>>]>>;
|
|
@@ -2188,8 +2211,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2188
2211
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2189
2212
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2190
2213
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2191
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2192
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2214
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2215
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2193
2216
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2194
2217
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2195
2218
|
} | undefined>]>>]>>;
|
|
@@ -2202,8 +2225,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2202
2225
|
$lt: import("@feathersjs/typebox").TAny;
|
|
2203
2226
|
$lte: import("@feathersjs/typebox").TAny;
|
|
2204
2227
|
$ne: import("@feathersjs/typebox").TAny;
|
|
2205
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2206
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2228
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2229
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2207
2230
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2208
2231
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2209
2232
|
} | undefined>]>>]>>;
|
|
@@ -2213,8 +2236,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2213
2236
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2214
2237
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2215
2238
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2216
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2217
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2239
|
+
$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<{}>]>>>;
|
|
2240
|
+
$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<{}>]>>>;
|
|
2218
2241
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2219
2242
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2220
2243
|
} | undefined>]>>]>>;
|
|
@@ -2224,8 +2247,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2224
2247
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2225
2248
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2226
2249
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2227
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2228
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2250
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2251
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2229
2252
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2230
2253
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2231
2254
|
} | undefined>]>>]>>;
|
|
@@ -2235,8 +2258,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2235
2258
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2236
2259
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2237
2260
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2238
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2239
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2261
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2262
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2240
2263
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2241
2264
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2242
2265
|
} | undefined>]>>]>>;
|
|
@@ -2246,8 +2269,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2246
2269
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2247
2270
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2248
2271
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2249
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2250
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2272
|
+
$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<{}>]>>>;
|
|
2273
|
+
$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<{}>]>>>;
|
|
2251
2274
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2252
2275
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2253
2276
|
} | undefined>]>>]>>;
|
|
@@ -2257,8 +2280,19 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2257
2280
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
2258
2281
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
2259
2282
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
2260
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>>;
|
|
2261
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>>;
|
|
2283
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>>;
|
|
2284
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>>;
|
|
2285
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2286
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2287
|
+
} | undefined>]>>]>>;
|
|
2288
|
+
interval: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2289
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2290
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2291
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2292
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2293
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2294
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>>;
|
|
2295
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>>;
|
|
2262
2296
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2263
2297
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2264
2298
|
} | undefined>]>>]>>;
|
|
@@ -2268,8 +2302,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2268
2302
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2269
2303
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2270
2304
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2271
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2272
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2305
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2306
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2273
2307
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2274
2308
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2275
2309
|
} | undefined>]>>]>>;
|
|
@@ -2281,8 +2315,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2281
2315
|
$lt: import("@feathersjs/typebox").TAny;
|
|
2282
2316
|
$lte: import("@feathersjs/typebox").TAny;
|
|
2283
2317
|
$ne: import("@feathersjs/typebox").TAny;
|
|
2284
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2285
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2318
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2319
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
2286
2320
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2287
2321
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2288
2322
|
} | undefined>]>>]>>;
|
|
@@ -2292,8 +2326,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2292
2326
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2293
2327
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2294
2328
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2295
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2296
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2329
|
+
$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<{}>]>>>;
|
|
2330
|
+
$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<{}>]>>>;
|
|
2297
2331
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2298
2332
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2299
2333
|
} | undefined>]>>]>>;
|
|
@@ -2303,8 +2337,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2303
2337
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2304
2338
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2305
2339
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2306
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2307
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2340
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2341
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2308
2342
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2309
2343
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2310
2344
|
} | undefined>]>>]>>;
|
|
@@ -2314,8 +2348,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2314
2348
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2315
2349
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2316
2350
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2317
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2318
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2351
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2352
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
2319
2353
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2320
2354
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2321
2355
|
} | undefined>]>>]>>;
|
|
@@ -2325,8 +2359,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2325
2359
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2326
2360
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2327
2361
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
2328
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2329
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>>;
|
|
2362
|
+
$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<{}>]>>>;
|
|
2363
|
+
$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<{}>]>>>;
|
|
2330
2364
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2331
2365
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2332
2366
|
} | undefined>]>>]>>;
|
|
@@ -2336,8 +2370,19 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2336
2370
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
2337
2371
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
2338
2372
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>;
|
|
2339
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>>;
|
|
2340
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>>;
|
|
2373
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>>;
|
|
2374
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>>>;
|
|
2375
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2376
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2377
|
+
} | undefined>]>>]>>;
|
|
2378
|
+
interval: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2379
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2380
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2381
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2382
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2383
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>;
|
|
2384
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>>;
|
|
2385
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"1m">, import("@feathersjs/typebox").TLiteral<"5m">, import("@feathersjs/typebox").TLiteral<"30m">, import("@feathersjs/typebox").TLiteral<"2h">, import("@feathersjs/typebox").TLiteral<"6h">, import("@feathersjs/typebox").TLiteral<"12h">, import("@feathersjs/typebox").TLiteral<"1d">, import("@feathersjs/typebox").TLiteral<"1w">]>>>;
|
|
2341
2386
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2342
2387
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2343
2388
|
} | undefined>]>>]>>;
|
|
@@ -2347,8 +2392,8 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2347
2392
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2348
2393
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2349
2394
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2350
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2351
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2395
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2396
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
2352
2397
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2353
2398
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2354
2399
|
} | undefined>]>>]>>;
|
|
@@ -2365,9 +2410,10 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2365
2410
|
updatedAt?: number | undefined;
|
|
2366
2411
|
userId?: number | undefined;
|
|
2367
2412
|
templateId?: number | undefined;
|
|
2413
|
+
interval?: number | undefined;
|
|
2368
2414
|
configured?: number | undefined;
|
|
2369
2415
|
};
|
|
2370
|
-
$select: ("name" | "_id" | "createdAt" | "updatedAt" | "userId" | "templateId" | "configured")[];
|
|
2416
|
+
$select: ("name" | "_id" | "createdAt" | "updatedAt" | "userId" | "templateId" | "interval" | "configured")[];
|
|
2371
2417
|
$and: ({
|
|
2372
2418
|
name?: any;
|
|
2373
2419
|
_id?: string | {} | Partial<{
|
|
@@ -2376,8 +2422,8 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2376
2422
|
$lt?: string | {} | undefined;
|
|
2377
2423
|
$lte?: string | {} | undefined;
|
|
2378
2424
|
$ne?: string | {} | undefined;
|
|
2379
|
-
$in: (string | {})[];
|
|
2380
|
-
$nin: (string | {})[];
|
|
2425
|
+
$in: string | {} | (string | {})[];
|
|
2426
|
+
$nin: string | {} | (string | {})[];
|
|
2381
2427
|
} & {}> | undefined;
|
|
2382
2428
|
createdAt?: any;
|
|
2383
2429
|
updatedAt?: any;
|
|
@@ -2387,8 +2433,8 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2387
2433
|
$lt?: string | {} | undefined;
|
|
2388
2434
|
$lte?: string | {} | undefined;
|
|
2389
2435
|
$ne?: string | {} | undefined;
|
|
2390
|
-
$in: (string | {})[];
|
|
2391
|
-
$nin: (string | {})[];
|
|
2436
|
+
$in: string | {} | (string | {})[];
|
|
2437
|
+
$nin: string | {} | (string | {})[];
|
|
2392
2438
|
} & {}> | undefined;
|
|
2393
2439
|
templateId?: string | {} | Partial<{
|
|
2394
2440
|
$gt?: string | {} | undefined;
|
|
@@ -2396,8 +2442,17 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2396
2442
|
$lt?: string | {} | undefined;
|
|
2397
2443
|
$lte?: string | {} | undefined;
|
|
2398
2444
|
$ne?: string | {} | undefined;
|
|
2399
|
-
$in: (string | {})[];
|
|
2400
|
-
$nin: (string | {})[];
|
|
2445
|
+
$in: string | {} | (string | {})[];
|
|
2446
|
+
$nin: string | {} | (string | {})[];
|
|
2447
|
+
} & {}> | undefined;
|
|
2448
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | Partial<{
|
|
2449
|
+
$gt?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2450
|
+
$gte?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2451
|
+
$lt?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2452
|
+
$lte?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2453
|
+
$ne?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2454
|
+
$in: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | ("1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w")[];
|
|
2455
|
+
$nin: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | ("1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w")[];
|
|
2401
2456
|
} & {}> | undefined;
|
|
2402
2457
|
configured?: boolean | Partial<{
|
|
2403
2458
|
$gt?: boolean | undefined;
|
|
@@ -2405,8 +2460,8 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2405
2460
|
$lt?: boolean | undefined;
|
|
2406
2461
|
$lte?: boolean | undefined;
|
|
2407
2462
|
$ne?: boolean | undefined;
|
|
2408
|
-
$in: boolean[];
|
|
2409
|
-
$nin: boolean[];
|
|
2463
|
+
$in: boolean | boolean[];
|
|
2464
|
+
$nin: boolean | boolean[];
|
|
2410
2465
|
} & {}> | undefined;
|
|
2411
2466
|
} | {
|
|
2412
2467
|
$or: {
|
|
@@ -2417,8 +2472,8 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2417
2472
|
$lt?: string | {} | undefined;
|
|
2418
2473
|
$lte?: string | {} | undefined;
|
|
2419
2474
|
$ne?: string | {} | undefined;
|
|
2420
|
-
$in: (string | {})[];
|
|
2421
|
-
$nin: (string | {})[];
|
|
2475
|
+
$in: string | {} | (string | {})[];
|
|
2476
|
+
$nin: string | {} | (string | {})[];
|
|
2422
2477
|
} & {}> | undefined;
|
|
2423
2478
|
createdAt?: any;
|
|
2424
2479
|
updatedAt?: any;
|
|
@@ -2428,8 +2483,8 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2428
2483
|
$lt?: string | {} | undefined;
|
|
2429
2484
|
$lte?: string | {} | undefined;
|
|
2430
2485
|
$ne?: string | {} | undefined;
|
|
2431
|
-
$in: (string | {})[];
|
|
2432
|
-
$nin: (string | {})[];
|
|
2486
|
+
$in: string | {} | (string | {})[];
|
|
2487
|
+
$nin: string | {} | (string | {})[];
|
|
2433
2488
|
} & {}> | undefined;
|
|
2434
2489
|
templateId?: string | {} | Partial<{
|
|
2435
2490
|
$gt?: string | {} | undefined;
|
|
@@ -2437,8 +2492,17 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2437
2492
|
$lt?: string | {} | undefined;
|
|
2438
2493
|
$lte?: string | {} | undefined;
|
|
2439
2494
|
$ne?: string | {} | undefined;
|
|
2440
|
-
$in: (string | {})[];
|
|
2441
|
-
$nin: (string | {})[];
|
|
2495
|
+
$in: string | {} | (string | {})[];
|
|
2496
|
+
$nin: string | {} | (string | {})[];
|
|
2497
|
+
} & {}> | undefined;
|
|
2498
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | Partial<{
|
|
2499
|
+
$gt?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2500
|
+
$gte?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2501
|
+
$lt?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2502
|
+
$lte?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2503
|
+
$ne?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2504
|
+
$in: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | ("1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w")[];
|
|
2505
|
+
$nin: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | ("1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w")[];
|
|
2442
2506
|
} & {}> | undefined;
|
|
2443
2507
|
configured?: boolean | Partial<{
|
|
2444
2508
|
$gt?: boolean | undefined;
|
|
@@ -2446,8 +2510,8 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2446
2510
|
$lt?: boolean | undefined;
|
|
2447
2511
|
$lte?: boolean | undefined;
|
|
2448
2512
|
$ne?: boolean | undefined;
|
|
2449
|
-
$in: boolean[];
|
|
2450
|
-
$nin: boolean[];
|
|
2513
|
+
$in: boolean | boolean[];
|
|
2514
|
+
$nin: boolean | boolean[];
|
|
2451
2515
|
} & {}> | undefined;
|
|
2452
2516
|
}[];
|
|
2453
2517
|
})[];
|
|
@@ -2459,8 +2523,8 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2459
2523
|
$lt?: string | {} | undefined;
|
|
2460
2524
|
$lte?: string | {} | undefined;
|
|
2461
2525
|
$ne?: string | {} | undefined;
|
|
2462
|
-
$in: (string | {})[];
|
|
2463
|
-
$nin: (string | {})[];
|
|
2526
|
+
$in: string | {} | (string | {})[];
|
|
2527
|
+
$nin: string | {} | (string | {})[];
|
|
2464
2528
|
} & {}> | undefined;
|
|
2465
2529
|
createdAt?: any;
|
|
2466
2530
|
updatedAt?: any;
|
|
@@ -2470,8 +2534,8 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2470
2534
|
$lt?: string | {} | undefined;
|
|
2471
2535
|
$lte?: string | {} | undefined;
|
|
2472
2536
|
$ne?: string | {} | undefined;
|
|
2473
|
-
$in: (string | {})[];
|
|
2474
|
-
$nin: (string | {})[];
|
|
2537
|
+
$in: string | {} | (string | {})[];
|
|
2538
|
+
$nin: string | {} | (string | {})[];
|
|
2475
2539
|
} & {}> | undefined;
|
|
2476
2540
|
templateId?: string | {} | Partial<{
|
|
2477
2541
|
$gt?: string | {} | undefined;
|
|
@@ -2479,8 +2543,17 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2479
2543
|
$lt?: string | {} | undefined;
|
|
2480
2544
|
$lte?: string | {} | undefined;
|
|
2481
2545
|
$ne?: string | {} | undefined;
|
|
2482
|
-
$in: (string | {})[];
|
|
2483
|
-
$nin: (string | {})[];
|
|
2546
|
+
$in: string | {} | (string | {})[];
|
|
2547
|
+
$nin: string | {} | (string | {})[];
|
|
2548
|
+
} & {}> | undefined;
|
|
2549
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | Partial<{
|
|
2550
|
+
$gt?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2551
|
+
$gte?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2552
|
+
$lt?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2553
|
+
$lte?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2554
|
+
$ne?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2555
|
+
$in: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | ("1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w")[];
|
|
2556
|
+
$nin: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | ("1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w")[];
|
|
2484
2557
|
} & {}> | undefined;
|
|
2485
2558
|
configured?: boolean | Partial<{
|
|
2486
2559
|
$gt?: boolean | undefined;
|
|
@@ -2488,8 +2561,8 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2488
2561
|
$lt?: boolean | undefined;
|
|
2489
2562
|
$lte?: boolean | undefined;
|
|
2490
2563
|
$ne?: boolean | undefined;
|
|
2491
|
-
$in: boolean[];
|
|
2492
|
-
$nin: boolean[];
|
|
2564
|
+
$in: boolean | boolean[];
|
|
2565
|
+
$nin: boolean | boolean[];
|
|
2493
2566
|
} & {}> | undefined;
|
|
2494
2567
|
}[];
|
|
2495
2568
|
}> & {
|
|
@@ -2500,8 +2573,8 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2500
2573
|
$lt?: string | {} | undefined;
|
|
2501
2574
|
$lte?: string | {} | undefined;
|
|
2502
2575
|
$ne?: string | {} | undefined;
|
|
2503
|
-
$in: (string | {})[];
|
|
2504
|
-
$nin: (string | {})[];
|
|
2576
|
+
$in: string | {} | (string | {})[];
|
|
2577
|
+
$nin: string | {} | (string | {})[];
|
|
2505
2578
|
} & {}> | undefined;
|
|
2506
2579
|
createdAt?: any;
|
|
2507
2580
|
updatedAt?: any;
|
|
@@ -2511,8 +2584,8 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2511
2584
|
$lt?: string | {} | undefined;
|
|
2512
2585
|
$lte?: string | {} | undefined;
|
|
2513
2586
|
$ne?: string | {} | undefined;
|
|
2514
|
-
$in: (string | {})[];
|
|
2515
|
-
$nin: (string | {})[];
|
|
2587
|
+
$in: string | {} | (string | {})[];
|
|
2588
|
+
$nin: string | {} | (string | {})[];
|
|
2516
2589
|
} & {}> | undefined;
|
|
2517
2590
|
templateId?: string | {} | Partial<{
|
|
2518
2591
|
$gt?: string | {} | undefined;
|
|
@@ -2520,8 +2593,17 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2520
2593
|
$lt?: string | {} | undefined;
|
|
2521
2594
|
$lte?: string | {} | undefined;
|
|
2522
2595
|
$ne?: string | {} | undefined;
|
|
2523
|
-
$in: (string | {})[];
|
|
2524
|
-
$nin: (string | {})[];
|
|
2596
|
+
$in: string | {} | (string | {})[];
|
|
2597
|
+
$nin: string | {} | (string | {})[];
|
|
2598
|
+
} & {}> | undefined;
|
|
2599
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | Partial<{
|
|
2600
|
+
$gt?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2601
|
+
$gte?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2602
|
+
$lt?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2603
|
+
$lte?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2604
|
+
$ne?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2605
|
+
$in: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | ("1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w")[];
|
|
2606
|
+
$nin: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | ("1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w")[];
|
|
2525
2607
|
} & {}> | undefined;
|
|
2526
2608
|
configured?: boolean | Partial<{
|
|
2527
2609
|
$gt?: boolean | undefined;
|
|
@@ -2529,7 +2611,7 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2529
2611
|
$lt?: boolean | undefined;
|
|
2530
2612
|
$lte?: boolean | undefined;
|
|
2531
2613
|
$ne?: boolean | undefined;
|
|
2532
|
-
$in: boolean[];
|
|
2533
|
-
$nin: boolean[];
|
|
2614
|
+
$in: boolean | boolean[];
|
|
2615
|
+
$nin: boolean | boolean[];
|
|
2534
2616
|
} & {}> | undefined;
|
|
2535
2617
|
} & {}, HookContext<StrategiesService<import("./strategies.class").StrategiesParams>>>;
|