@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
|
@@ -57,7 +57,6 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
57
57
|
traderId: import("@feathersjs/typebox").TAny;
|
|
58
58
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
59
59
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
60
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
61
60
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
62
61
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
63
62
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -182,6 +181,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
182
181
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
183
182
|
}>>;
|
|
184
183
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
184
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
185
185
|
host: import("@feathersjs/typebox").TString<string>;
|
|
186
186
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
187
187
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -349,7 +349,6 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
349
349
|
traderId: import("@feathersjs/typebox").TAny;
|
|
350
350
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
351
351
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
352
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
353
352
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
354
353
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
355
354
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -474,6 +473,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
474
473
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
475
474
|
}>>;
|
|
476
475
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
476
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
477
477
|
host: import("@feathersjs/typebox").TString<string>;
|
|
478
478
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
479
479
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -484,7 +484,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
484
484
|
name: import("@feathersjs/typebox").TString<string>;
|
|
485
485
|
type: import("@feathersjs/typebox").TString<string>;
|
|
486
486
|
description: import("@feathersjs/typebox").TString<string>;
|
|
487
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
487
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
488
488
|
values: import("@feathersjs/typebox").TAny;
|
|
489
489
|
}>>>;
|
|
490
490
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -502,20 +502,17 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
502
502
|
provider: "docker";
|
|
503
503
|
_id: string | {};
|
|
504
504
|
options: any;
|
|
505
|
-
strategyId: string | {};
|
|
506
|
-
exchangeId: string;
|
|
507
505
|
exchange: Partial<{
|
|
508
506
|
password?: string | undefined;
|
|
509
507
|
name?: any;
|
|
510
508
|
apiKey?: string | undefined;
|
|
509
|
+
token?: string | undefined;
|
|
511
510
|
secret?: string | undefined;
|
|
512
511
|
avatar?: any;
|
|
513
512
|
createdAt?: any;
|
|
514
513
|
updatedAt?: any;
|
|
515
|
-
|
|
516
|
-
which?: string | undefined;
|
|
514
|
+
login?: string | undefined;
|
|
517
515
|
connected?: boolean | undefined;
|
|
518
|
-
token?: string | undefined;
|
|
519
516
|
downloaded?: {
|
|
520
517
|
updatedAt: any;
|
|
521
518
|
size: string;
|
|
@@ -543,15 +540,17 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
543
540
|
}[] | undefined;
|
|
544
541
|
whitelist?: any[] | undefined;
|
|
545
542
|
ccxt_async_config?: any;
|
|
543
|
+
which?: string | undefined;
|
|
546
544
|
requiredCredentials?: any;
|
|
547
545
|
uid?: string | undefined;
|
|
548
|
-
login?: string | undefined;
|
|
549
546
|
twofa?: string | undefined;
|
|
550
547
|
privateKey?: string | undefined;
|
|
551
548
|
walletAddress?: string | undefined;
|
|
549
|
+
userId?: string | {} | undefined;
|
|
552
550
|
__v?: any;
|
|
553
551
|
_id: string | {};
|
|
554
552
|
}>;
|
|
553
|
+
exchangeId: string;
|
|
555
554
|
strategy: Partial<{
|
|
556
555
|
_id?: string | {} | undefined;
|
|
557
556
|
traders?: {
|
|
@@ -563,19 +562,19 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
563
562
|
chat_id: any;
|
|
564
563
|
allow_custom_messages: boolean;
|
|
565
564
|
notification_settings: {
|
|
566
|
-
status: "silent" | "on" | "off";
|
|
567
565
|
entry: "silent" | "on" | "off";
|
|
568
566
|
exit: {
|
|
567
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
569
568
|
roi: "silent" | "on" | "off";
|
|
570
569
|
emergency_exit: "silent" | "on" | "off";
|
|
571
570
|
force_exit: "silent" | "on" | "off";
|
|
572
571
|
exit_signal: "silent" | "on" | "off";
|
|
573
572
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
574
573
|
stop_loss: "silent" | "on" | "off";
|
|
575
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
576
574
|
custom_exit: "silent" | "on" | "off";
|
|
577
575
|
partial_exit: "silent" | "on" | "off";
|
|
578
576
|
};
|
|
577
|
+
status: "silent" | "on" | "off";
|
|
579
578
|
warning: "silent" | "on" | "off";
|
|
580
579
|
startup: "silent" | "on" | "off";
|
|
581
580
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -590,8 +589,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
590
589
|
reload: boolean;
|
|
591
590
|
balance_dust_level: number;
|
|
592
591
|
} | undefined;
|
|
593
|
-
dry_run_wallet?: number | undefined;
|
|
594
|
-
max_open_trades?: number | undefined;
|
|
595
592
|
plugins?: {
|
|
596
593
|
number_assets?: number | undefined;
|
|
597
594
|
refresh_period?: number | undefined;
|
|
@@ -600,6 +597,8 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
600
597
|
removeRecentlyListed?: boolean | undefined;
|
|
601
598
|
removeRecentlyListedDays?: number | undefined;
|
|
602
599
|
} | undefined;
|
|
600
|
+
dry_run_wallet?: number | undefined;
|
|
601
|
+
max_open_trades?: number | undefined;
|
|
603
602
|
fiat_display_currency?: string | undefined;
|
|
604
603
|
unfilledtimeout?: {
|
|
605
604
|
entry: number;
|
|
@@ -613,37 +612,36 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
613
612
|
enabled: boolean;
|
|
614
613
|
format: string;
|
|
615
614
|
webhookstatus: {
|
|
616
|
-
|
|
615
|
+
userId: string;
|
|
617
616
|
event: string;
|
|
618
617
|
status: string;
|
|
619
|
-
|
|
618
|
+
traderId: any;
|
|
620
619
|
};
|
|
621
620
|
webhookentry: {
|
|
622
|
-
|
|
623
|
-
traderId: any;
|
|
624
|
-
stake_amount: string;
|
|
621
|
+
userId: string;
|
|
625
622
|
stake_currency: string;
|
|
623
|
+
stake_amount: string;
|
|
626
624
|
event: string;
|
|
627
|
-
|
|
625
|
+
traderId: any;
|
|
628
626
|
pair: string;
|
|
629
627
|
fiat_currency: string;
|
|
630
628
|
};
|
|
631
629
|
webhookentrycancel: {
|
|
632
630
|
limit: string;
|
|
633
|
-
|
|
634
|
-
stake_amount: string;
|
|
631
|
+
userId: string;
|
|
635
632
|
stake_currency: string;
|
|
633
|
+
stake_amount: string;
|
|
636
634
|
event: string;
|
|
637
|
-
|
|
635
|
+
traderId: any;
|
|
638
636
|
pair: string;
|
|
639
637
|
fiat_currency: string;
|
|
640
638
|
};
|
|
641
639
|
webhookentryfill: {
|
|
642
|
-
|
|
643
|
-
stake_amount: string;
|
|
640
|
+
userId: string;
|
|
644
641
|
stake_currency: string;
|
|
642
|
+
stake_amount: string;
|
|
645
643
|
event: string;
|
|
646
|
-
|
|
644
|
+
traderId: any;
|
|
647
645
|
pair: string;
|
|
648
646
|
trade_id: string;
|
|
649
647
|
open_rate: string;
|
|
@@ -652,10 +650,10 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
652
650
|
};
|
|
653
651
|
webhookexit: {
|
|
654
652
|
limit: string;
|
|
655
|
-
|
|
653
|
+
userId: string;
|
|
656
654
|
stake_currency: string;
|
|
657
655
|
event: string;
|
|
658
|
-
|
|
656
|
+
traderId: any;
|
|
659
657
|
pair: string;
|
|
660
658
|
fiat_currency: string;
|
|
661
659
|
trade_id: string;
|
|
@@ -670,22 +668,23 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
670
668
|
};
|
|
671
669
|
webhookexitcancel: {
|
|
672
670
|
limit: string;
|
|
673
|
-
|
|
671
|
+
userId: string;
|
|
674
672
|
stake_currency: string;
|
|
675
673
|
event: string;
|
|
676
|
-
|
|
674
|
+
traderId: any;
|
|
677
675
|
pair: string;
|
|
678
676
|
profit_amount: string;
|
|
679
677
|
profit_ratio: string;
|
|
680
678
|
};
|
|
681
679
|
webhookexitfill: {
|
|
682
|
-
traderId: any;
|
|
683
|
-
event: string;
|
|
684
680
|
userId: string;
|
|
681
|
+
event: string;
|
|
682
|
+
traderId: any;
|
|
685
683
|
pair: string;
|
|
686
684
|
close_rate: string;
|
|
687
685
|
};
|
|
688
686
|
} | undefined;
|
|
687
|
+
reset?: boolean | undefined;
|
|
689
688
|
host: string;
|
|
690
689
|
name: any;
|
|
691
690
|
provider: "docker";
|
|
@@ -695,20 +694,20 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
695
694
|
_id: string | {};
|
|
696
695
|
createdAt: any;
|
|
697
696
|
updatedAt: any;
|
|
698
|
-
|
|
699
|
-
strategyId: string | {};
|
|
700
|
-
stake_amount: string | number;
|
|
701
|
-
stake_currency: string;
|
|
702
|
-
exchangeId: any;
|
|
703
|
-
userId: any;
|
|
697
|
+
connected: boolean;
|
|
704
698
|
which: string;
|
|
699
|
+
userId: any;
|
|
700
|
+
"traders/pods": any;
|
|
705
701
|
exchange: any;
|
|
706
|
-
|
|
702
|
+
exchangeId: any;
|
|
703
|
+
stake_currency: string;
|
|
704
|
+
stake_amount: string | number;
|
|
707
705
|
dry_run: boolean;
|
|
708
706
|
handling: string;
|
|
709
707
|
initial_state: string;
|
|
710
708
|
pairlists: any;
|
|
711
709
|
strategy: any;
|
|
710
|
+
strategyId: string | {};
|
|
712
711
|
entry_pricing: {
|
|
713
712
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
714
713
|
use_order_book?: boolean | undefined;
|
|
@@ -728,35 +727,34 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
728
727
|
api_server: {
|
|
729
728
|
password: string;
|
|
730
729
|
enabled: boolean;
|
|
730
|
+
username: string;
|
|
731
731
|
listen_ip_address: string;
|
|
732
732
|
listen_port: number;
|
|
733
733
|
verbosity: string;
|
|
734
734
|
jwt_secret_key: string;
|
|
735
735
|
CORS_origins: string[];
|
|
736
|
-
username: string;
|
|
737
736
|
};
|
|
738
737
|
pod: string;
|
|
739
738
|
}[] | undefined;
|
|
740
739
|
createdAt?: any;
|
|
741
740
|
updatedAt?: any;
|
|
741
|
+
userId?: string | {} | undefined;
|
|
742
742
|
'strategies/templates'?: {
|
|
743
743
|
_id?: string | {} | undefined;
|
|
744
|
+
createdAt?: any;
|
|
744
745
|
values: any;
|
|
745
746
|
name: string;
|
|
746
|
-
createdAt: any;
|
|
747
747
|
description: string;
|
|
748
748
|
type: string;
|
|
749
749
|
} | undefined;
|
|
750
|
+
file?: any;
|
|
751
|
+
templateId?: string | {} | undefined;
|
|
752
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
750
753
|
stoploss?: number | undefined;
|
|
751
754
|
minimal_roi?: {
|
|
752
755
|
minutes: number;
|
|
753
756
|
profit: number;
|
|
754
757
|
}[] | undefined;
|
|
755
|
-
results?: unknown;
|
|
756
|
-
userId?: string | {} | undefined;
|
|
757
|
-
file?: any;
|
|
758
|
-
templateId?: string | {} | undefined;
|
|
759
|
-
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
760
758
|
exit_sell_signal?: boolean | undefined;
|
|
761
759
|
exit_profit_only?: boolean | undefined;
|
|
762
760
|
exit_profit_offset?: number | undefined;
|
|
@@ -765,10 +763,10 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
765
763
|
stoploss?: string | undefined;
|
|
766
764
|
entry?: "Limit" | "Market" | undefined;
|
|
767
765
|
exit?: "Limit" | "Market" | undefined;
|
|
768
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
769
766
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
770
767
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
771
768
|
forcesell?: "Limit" | "Market" | undefined;
|
|
769
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
772
770
|
stoploss_on_exchange_interval?: number | undefined;
|
|
773
771
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
774
772
|
} | undefined;
|
|
@@ -800,10 +798,12 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
800
798
|
}[] | undefined;
|
|
801
799
|
indicators?: unknown[] | undefined;
|
|
802
800
|
code?: unknown;
|
|
801
|
+
results?: unknown;
|
|
803
802
|
configured?: boolean | undefined;
|
|
804
803
|
name: any;
|
|
805
804
|
'strategies/indicators': any;
|
|
806
805
|
}>;
|
|
806
|
+
strategyId: string | {};
|
|
807
807
|
pod: any;
|
|
808
808
|
trader: Partial<{
|
|
809
809
|
telegram?: {
|
|
@@ -814,19 +814,19 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
814
814
|
chat_id: any;
|
|
815
815
|
allow_custom_messages: boolean;
|
|
816
816
|
notification_settings: {
|
|
817
|
-
status: "silent" | "on" | "off";
|
|
818
817
|
entry: "silent" | "on" | "off";
|
|
819
818
|
exit: {
|
|
819
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
820
820
|
roi: "silent" | "on" | "off";
|
|
821
821
|
emergency_exit: "silent" | "on" | "off";
|
|
822
822
|
force_exit: "silent" | "on" | "off";
|
|
823
823
|
exit_signal: "silent" | "on" | "off";
|
|
824
824
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
825
825
|
stop_loss: "silent" | "on" | "off";
|
|
826
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
827
826
|
custom_exit: "silent" | "on" | "off";
|
|
828
827
|
partial_exit: "silent" | "on" | "off";
|
|
829
828
|
};
|
|
829
|
+
status: "silent" | "on" | "off";
|
|
830
830
|
warning: "silent" | "on" | "off";
|
|
831
831
|
startup: "silent" | "on" | "off";
|
|
832
832
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -841,8 +841,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
841
841
|
reload: boolean;
|
|
842
842
|
balance_dust_level: number;
|
|
843
843
|
} | undefined;
|
|
844
|
-
dry_run_wallet?: number | undefined;
|
|
845
|
-
max_open_trades?: number | undefined;
|
|
846
844
|
plugins?: {
|
|
847
845
|
number_assets?: number | undefined;
|
|
848
846
|
refresh_period?: number | undefined;
|
|
@@ -851,6 +849,8 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
851
849
|
removeRecentlyListed?: boolean | undefined;
|
|
852
850
|
removeRecentlyListedDays?: number | undefined;
|
|
853
851
|
} | undefined;
|
|
852
|
+
dry_run_wallet?: number | undefined;
|
|
853
|
+
max_open_trades?: number | undefined;
|
|
854
854
|
fiat_display_currency?: string | undefined;
|
|
855
855
|
unfilledtimeout?: {
|
|
856
856
|
entry: number;
|
|
@@ -864,37 +864,36 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
864
864
|
enabled: boolean;
|
|
865
865
|
format: string;
|
|
866
866
|
webhookstatus: {
|
|
867
|
-
|
|
867
|
+
userId: string;
|
|
868
868
|
event: string;
|
|
869
869
|
status: string;
|
|
870
|
-
|
|
870
|
+
traderId: any;
|
|
871
871
|
};
|
|
872
872
|
webhookentry: {
|
|
873
|
-
|
|
874
|
-
traderId: any;
|
|
875
|
-
stake_amount: string;
|
|
873
|
+
userId: string;
|
|
876
874
|
stake_currency: string;
|
|
875
|
+
stake_amount: string;
|
|
877
876
|
event: string;
|
|
878
|
-
|
|
877
|
+
traderId: any;
|
|
879
878
|
pair: string;
|
|
880
879
|
fiat_currency: string;
|
|
881
880
|
};
|
|
882
881
|
webhookentrycancel: {
|
|
883
882
|
limit: string;
|
|
884
|
-
|
|
885
|
-
stake_amount: string;
|
|
883
|
+
userId: string;
|
|
886
884
|
stake_currency: string;
|
|
885
|
+
stake_amount: string;
|
|
887
886
|
event: string;
|
|
888
|
-
|
|
887
|
+
traderId: any;
|
|
889
888
|
pair: string;
|
|
890
889
|
fiat_currency: string;
|
|
891
890
|
};
|
|
892
891
|
webhookentryfill: {
|
|
893
|
-
|
|
894
|
-
stake_amount: string;
|
|
892
|
+
userId: string;
|
|
895
893
|
stake_currency: string;
|
|
894
|
+
stake_amount: string;
|
|
896
895
|
event: string;
|
|
897
|
-
|
|
896
|
+
traderId: any;
|
|
898
897
|
pair: string;
|
|
899
898
|
trade_id: string;
|
|
900
899
|
open_rate: string;
|
|
@@ -903,10 +902,10 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
903
902
|
};
|
|
904
903
|
webhookexit: {
|
|
905
904
|
limit: string;
|
|
906
|
-
|
|
905
|
+
userId: string;
|
|
907
906
|
stake_currency: string;
|
|
908
907
|
event: string;
|
|
909
|
-
|
|
908
|
+
traderId: any;
|
|
910
909
|
pair: string;
|
|
911
910
|
fiat_currency: string;
|
|
912
911
|
trade_id: string;
|
|
@@ -921,22 +920,23 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
921
920
|
};
|
|
922
921
|
webhookexitcancel: {
|
|
923
922
|
limit: string;
|
|
924
|
-
|
|
923
|
+
userId: string;
|
|
925
924
|
stake_currency: string;
|
|
926
925
|
event: string;
|
|
927
|
-
|
|
926
|
+
traderId: any;
|
|
928
927
|
pair: string;
|
|
929
928
|
profit_amount: string;
|
|
930
929
|
profit_ratio: string;
|
|
931
930
|
};
|
|
932
931
|
webhookexitfill: {
|
|
933
|
-
traderId: any;
|
|
934
|
-
event: string;
|
|
935
932
|
userId: string;
|
|
933
|
+
event: string;
|
|
934
|
+
traderId: any;
|
|
936
935
|
pair: string;
|
|
937
936
|
close_rate: string;
|
|
938
937
|
};
|
|
939
938
|
} | undefined;
|
|
939
|
+
reset?: boolean | undefined;
|
|
940
940
|
host: string;
|
|
941
941
|
name: any;
|
|
942
942
|
provider: "docker";
|
|
@@ -946,20 +946,20 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
946
946
|
_id: string | {};
|
|
947
947
|
createdAt: any;
|
|
948
948
|
updatedAt: any;
|
|
949
|
-
|
|
950
|
-
strategyId: string | {};
|
|
951
|
-
stake_amount: string | number;
|
|
952
|
-
stake_currency: string;
|
|
953
|
-
exchangeId: any;
|
|
954
|
-
userId: any;
|
|
949
|
+
connected: boolean;
|
|
955
950
|
which: string;
|
|
951
|
+
userId: any;
|
|
952
|
+
"traders/pods": any;
|
|
956
953
|
exchange: any;
|
|
957
|
-
|
|
954
|
+
exchangeId: any;
|
|
955
|
+
stake_currency: string;
|
|
956
|
+
stake_amount: string | number;
|
|
958
957
|
dry_run: boolean;
|
|
959
958
|
handling: string;
|
|
960
959
|
initial_state: string;
|
|
961
960
|
pairlists: any;
|
|
962
961
|
strategy: any;
|
|
962
|
+
strategyId: string | {};
|
|
963
963
|
entry_pricing: {
|
|
964
964
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
965
965
|
use_order_book?: boolean | undefined;
|
|
@@ -979,12 +979,12 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
979
979
|
api_server: {
|
|
980
980
|
password: string;
|
|
981
981
|
enabled: boolean;
|
|
982
|
+
username: string;
|
|
982
983
|
listen_ip_address: string;
|
|
983
984
|
listen_port: number;
|
|
984
985
|
verbosity: string;
|
|
985
986
|
jwt_secret_key: string;
|
|
986
987
|
CORS_origins: string[];
|
|
987
|
-
username: string;
|
|
988
988
|
};
|
|
989
989
|
pod: string;
|
|
990
990
|
}>;
|
|
@@ -995,20 +995,17 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
995
995
|
provider: "docker";
|
|
996
996
|
_id: string | {};
|
|
997
997
|
options: any;
|
|
998
|
-
strategyId: string | {};
|
|
999
|
-
exchangeId: string;
|
|
1000
998
|
exchange: Partial<{
|
|
1001
999
|
password?: string | undefined;
|
|
1002
1000
|
name?: any;
|
|
1003
1001
|
apiKey?: string | undefined;
|
|
1002
|
+
token?: string | undefined;
|
|
1004
1003
|
secret?: string | undefined;
|
|
1005
1004
|
avatar?: any;
|
|
1006
1005
|
createdAt?: any;
|
|
1007
1006
|
updatedAt?: any;
|
|
1008
|
-
|
|
1009
|
-
which?: string | undefined;
|
|
1007
|
+
login?: string | undefined;
|
|
1010
1008
|
connected?: boolean | undefined;
|
|
1011
|
-
token?: string | undefined;
|
|
1012
1009
|
downloaded?: {
|
|
1013
1010
|
updatedAt: any;
|
|
1014
1011
|
size: string;
|
|
@@ -1036,15 +1033,17 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1036
1033
|
}[] | undefined;
|
|
1037
1034
|
whitelist?: any[] | undefined;
|
|
1038
1035
|
ccxt_async_config?: any;
|
|
1036
|
+
which?: string | undefined;
|
|
1039
1037
|
requiredCredentials?: any;
|
|
1040
1038
|
uid?: string | undefined;
|
|
1041
|
-
login?: string | undefined;
|
|
1042
1039
|
twofa?: string | undefined;
|
|
1043
1040
|
privateKey?: string | undefined;
|
|
1044
1041
|
walletAddress?: string | undefined;
|
|
1042
|
+
userId?: string | {} | undefined;
|
|
1045
1043
|
__v?: any;
|
|
1046
1044
|
_id: string | {};
|
|
1047
1045
|
}>;
|
|
1046
|
+
exchangeId: string;
|
|
1048
1047
|
strategy: Partial<{
|
|
1049
1048
|
_id?: string | {} | undefined;
|
|
1050
1049
|
traders?: {
|
|
@@ -1056,19 +1055,19 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1056
1055
|
chat_id: any;
|
|
1057
1056
|
allow_custom_messages: boolean;
|
|
1058
1057
|
notification_settings: {
|
|
1059
|
-
status: "silent" | "on" | "off";
|
|
1060
1058
|
entry: "silent" | "on" | "off";
|
|
1061
1059
|
exit: {
|
|
1060
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1062
1061
|
roi: "silent" | "on" | "off";
|
|
1063
1062
|
emergency_exit: "silent" | "on" | "off";
|
|
1064
1063
|
force_exit: "silent" | "on" | "off";
|
|
1065
1064
|
exit_signal: "silent" | "on" | "off";
|
|
1066
1065
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
1067
1066
|
stop_loss: "silent" | "on" | "off";
|
|
1068
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1069
1067
|
custom_exit: "silent" | "on" | "off";
|
|
1070
1068
|
partial_exit: "silent" | "on" | "off";
|
|
1071
1069
|
};
|
|
1070
|
+
status: "silent" | "on" | "off";
|
|
1072
1071
|
warning: "silent" | "on" | "off";
|
|
1073
1072
|
startup: "silent" | "on" | "off";
|
|
1074
1073
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -1083,8 +1082,6 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1083
1082
|
reload: boolean;
|
|
1084
1083
|
balance_dust_level: number;
|
|
1085
1084
|
} | undefined;
|
|
1086
|
-
dry_run_wallet?: number | undefined;
|
|
1087
|
-
max_open_trades?: number | undefined;
|
|
1088
1085
|
plugins?: {
|
|
1089
1086
|
number_assets?: number | undefined;
|
|
1090
1087
|
refresh_period?: number | undefined;
|
|
@@ -1093,6 +1090,8 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1093
1090
|
removeRecentlyListed?: boolean | undefined;
|
|
1094
1091
|
removeRecentlyListedDays?: number | undefined;
|
|
1095
1092
|
} | undefined;
|
|
1093
|
+
dry_run_wallet?: number | undefined;
|
|
1094
|
+
max_open_trades?: number | undefined;
|
|
1096
1095
|
fiat_display_currency?: string | undefined;
|
|
1097
1096
|
unfilledtimeout?: {
|
|
1098
1097
|
entry: number;
|
|
@@ -1106,37 +1105,36 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1106
1105
|
enabled: boolean;
|
|
1107
1106
|
format: string;
|
|
1108
1107
|
webhookstatus: {
|
|
1109
|
-
|
|
1108
|
+
userId: string;
|
|
1110
1109
|
event: string;
|
|
1111
1110
|
status: string;
|
|
1112
|
-
|
|
1111
|
+
traderId: any;
|
|
1113
1112
|
};
|
|
1114
1113
|
webhookentry: {
|
|
1115
|
-
|
|
1116
|
-
traderId: any;
|
|
1117
|
-
stake_amount: string;
|
|
1114
|
+
userId: string;
|
|
1118
1115
|
stake_currency: string;
|
|
1116
|
+
stake_amount: string;
|
|
1119
1117
|
event: string;
|
|
1120
|
-
|
|
1118
|
+
traderId: any;
|
|
1121
1119
|
pair: string;
|
|
1122
1120
|
fiat_currency: string;
|
|
1123
1121
|
};
|
|
1124
1122
|
webhookentrycancel: {
|
|
1125
1123
|
limit: string;
|
|
1126
|
-
|
|
1127
|
-
stake_amount: string;
|
|
1124
|
+
userId: string;
|
|
1128
1125
|
stake_currency: string;
|
|
1126
|
+
stake_amount: string;
|
|
1129
1127
|
event: string;
|
|
1130
|
-
|
|
1128
|
+
traderId: any;
|
|
1131
1129
|
pair: string;
|
|
1132
1130
|
fiat_currency: string;
|
|
1133
1131
|
};
|
|
1134
1132
|
webhookentryfill: {
|
|
1135
|
-
|
|
1136
|
-
stake_amount: string;
|
|
1133
|
+
userId: string;
|
|
1137
1134
|
stake_currency: string;
|
|
1135
|
+
stake_amount: string;
|
|
1138
1136
|
event: string;
|
|
1139
|
-
|
|
1137
|
+
traderId: any;
|
|
1140
1138
|
pair: string;
|
|
1141
1139
|
trade_id: string;
|
|
1142
1140
|
open_rate: string;
|
|
@@ -1145,10 +1143,10 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1145
1143
|
};
|
|
1146
1144
|
webhookexit: {
|
|
1147
1145
|
limit: string;
|
|
1148
|
-
|
|
1146
|
+
userId: string;
|
|
1149
1147
|
stake_currency: string;
|
|
1150
1148
|
event: string;
|
|
1151
|
-
|
|
1149
|
+
traderId: any;
|
|
1152
1150
|
pair: string;
|
|
1153
1151
|
fiat_currency: string;
|
|
1154
1152
|
trade_id: string;
|
|
@@ -1163,22 +1161,23 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1163
1161
|
};
|
|
1164
1162
|
webhookexitcancel: {
|
|
1165
1163
|
limit: string;
|
|
1166
|
-
|
|
1164
|
+
userId: string;
|
|
1167
1165
|
stake_currency: string;
|
|
1168
1166
|
event: string;
|
|
1169
|
-
|
|
1167
|
+
traderId: any;
|
|
1170
1168
|
pair: string;
|
|
1171
1169
|
profit_amount: string;
|
|
1172
1170
|
profit_ratio: string;
|
|
1173
1171
|
};
|
|
1174
1172
|
webhookexitfill: {
|
|
1175
|
-
traderId: any;
|
|
1176
|
-
event: string;
|
|
1177
1173
|
userId: string;
|
|
1174
|
+
event: string;
|
|
1175
|
+
traderId: any;
|
|
1178
1176
|
pair: string;
|
|
1179
1177
|
close_rate: string;
|
|
1180
1178
|
};
|
|
1181
1179
|
} | undefined;
|
|
1180
|
+
reset?: boolean | undefined;
|
|
1182
1181
|
host: string;
|
|
1183
1182
|
name: any;
|
|
1184
1183
|
provider: "docker";
|
|
@@ -1188,20 +1187,20 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1188
1187
|
_id: string | {};
|
|
1189
1188
|
createdAt: any;
|
|
1190
1189
|
updatedAt: any;
|
|
1191
|
-
|
|
1192
|
-
strategyId: string | {};
|
|
1193
|
-
stake_amount: string | number;
|
|
1194
|
-
stake_currency: string;
|
|
1195
|
-
exchangeId: any;
|
|
1196
|
-
userId: any;
|
|
1190
|
+
connected: boolean;
|
|
1197
1191
|
which: string;
|
|
1192
|
+
userId: any;
|
|
1193
|
+
"traders/pods": any;
|
|
1198
1194
|
exchange: any;
|
|
1199
|
-
|
|
1195
|
+
exchangeId: any;
|
|
1196
|
+
stake_currency: string;
|
|
1197
|
+
stake_amount: string | number;
|
|
1200
1198
|
dry_run: boolean;
|
|
1201
1199
|
handling: string;
|
|
1202
1200
|
initial_state: string;
|
|
1203
1201
|
pairlists: any;
|
|
1204
1202
|
strategy: any;
|
|
1203
|
+
strategyId: string | {};
|
|
1205
1204
|
entry_pricing: {
|
|
1206
1205
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1207
1206
|
use_order_book?: boolean | undefined;
|
|
@@ -1221,35 +1220,34 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1221
1220
|
api_server: {
|
|
1222
1221
|
password: string;
|
|
1223
1222
|
enabled: boolean;
|
|
1223
|
+
username: string;
|
|
1224
1224
|
listen_ip_address: string;
|
|
1225
1225
|
listen_port: number;
|
|
1226
1226
|
verbosity: string;
|
|
1227
1227
|
jwt_secret_key: string;
|
|
1228
1228
|
CORS_origins: string[];
|
|
1229
|
-
username: string;
|
|
1230
1229
|
};
|
|
1231
1230
|
pod: string;
|
|
1232
1231
|
}[] | undefined;
|
|
1233
1232
|
createdAt?: any;
|
|
1234
1233
|
updatedAt?: any;
|
|
1234
|
+
userId?: string | {} | undefined;
|
|
1235
1235
|
'strategies/templates'?: {
|
|
1236
1236
|
_id?: string | {} | undefined;
|
|
1237
|
+
createdAt?: any;
|
|
1237
1238
|
values: any;
|
|
1238
1239
|
name: string;
|
|
1239
|
-
createdAt: any;
|
|
1240
1240
|
description: string;
|
|
1241
1241
|
type: string;
|
|
1242
1242
|
} | undefined;
|
|
1243
|
+
file?: any;
|
|
1244
|
+
templateId?: string | {} | undefined;
|
|
1245
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
1243
1246
|
stoploss?: number | undefined;
|
|
1244
1247
|
minimal_roi?: {
|
|
1245
1248
|
minutes: number;
|
|
1246
1249
|
profit: number;
|
|
1247
1250
|
}[] | undefined;
|
|
1248
|
-
results?: unknown;
|
|
1249
|
-
userId?: string | {} | undefined;
|
|
1250
|
-
file?: any;
|
|
1251
|
-
templateId?: string | {} | undefined;
|
|
1252
|
-
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
1253
1251
|
exit_sell_signal?: boolean | undefined;
|
|
1254
1252
|
exit_profit_only?: boolean | undefined;
|
|
1255
1253
|
exit_profit_offset?: number | undefined;
|
|
@@ -1258,10 +1256,10 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1258
1256
|
stoploss?: string | undefined;
|
|
1259
1257
|
entry?: "Limit" | "Market" | undefined;
|
|
1260
1258
|
exit?: "Limit" | "Market" | undefined;
|
|
1261
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
1262
1259
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
1263
1260
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
1264
1261
|
forcesell?: "Limit" | "Market" | undefined;
|
|
1262
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
1265
1263
|
stoploss_on_exchange_interval?: number | undefined;
|
|
1266
1264
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
1267
1265
|
} | undefined;
|
|
@@ -1293,10 +1291,12 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1293
1291
|
}[] | undefined;
|
|
1294
1292
|
indicators?: unknown[] | undefined;
|
|
1295
1293
|
code?: unknown;
|
|
1294
|
+
results?: unknown;
|
|
1296
1295
|
configured?: boolean | undefined;
|
|
1297
1296
|
name: any;
|
|
1298
1297
|
'strategies/indicators': any;
|
|
1299
1298
|
}>;
|
|
1299
|
+
strategyId: string | {};
|
|
1300
1300
|
pod: any;
|
|
1301
1301
|
trader: Partial<{
|
|
1302
1302
|
telegram?: {
|
|
@@ -1307,19 +1307,19 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1307
1307
|
chat_id: any;
|
|
1308
1308
|
allow_custom_messages: boolean;
|
|
1309
1309
|
notification_settings: {
|
|
1310
|
-
status: "silent" | "on" | "off";
|
|
1311
1310
|
entry: "silent" | "on" | "off";
|
|
1312
1311
|
exit: {
|
|
1312
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1313
1313
|
roi: "silent" | "on" | "off";
|
|
1314
1314
|
emergency_exit: "silent" | "on" | "off";
|
|
1315
1315
|
force_exit: "silent" | "on" | "off";
|
|
1316
1316
|
exit_signal: "silent" | "on" | "off";
|
|
1317
1317
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
1318
1318
|
stop_loss: "silent" | "on" | "off";
|
|
1319
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1320
1319
|
custom_exit: "silent" | "on" | "off";
|
|
1321
1320
|
partial_exit: "silent" | "on" | "off";
|
|
1322
1321
|
};
|
|
1322
|
+
status: "silent" | "on" | "off";
|
|
1323
1323
|
warning: "silent" | "on" | "off";
|
|
1324
1324
|
startup: "silent" | "on" | "off";
|
|
1325
1325
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -1334,8 +1334,6 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1334
1334
|
reload: boolean;
|
|
1335
1335
|
balance_dust_level: number;
|
|
1336
1336
|
} | undefined;
|
|
1337
|
-
dry_run_wallet?: number | undefined;
|
|
1338
|
-
max_open_trades?: number | undefined;
|
|
1339
1337
|
plugins?: {
|
|
1340
1338
|
number_assets?: number | undefined;
|
|
1341
1339
|
refresh_period?: number | undefined;
|
|
@@ -1344,6 +1342,8 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1344
1342
|
removeRecentlyListed?: boolean | undefined;
|
|
1345
1343
|
removeRecentlyListedDays?: number | undefined;
|
|
1346
1344
|
} | undefined;
|
|
1345
|
+
dry_run_wallet?: number | undefined;
|
|
1346
|
+
max_open_trades?: number | undefined;
|
|
1347
1347
|
fiat_display_currency?: string | undefined;
|
|
1348
1348
|
unfilledtimeout?: {
|
|
1349
1349
|
entry: number;
|
|
@@ -1357,37 +1357,36 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1357
1357
|
enabled: boolean;
|
|
1358
1358
|
format: string;
|
|
1359
1359
|
webhookstatus: {
|
|
1360
|
-
|
|
1360
|
+
userId: string;
|
|
1361
1361
|
event: string;
|
|
1362
1362
|
status: string;
|
|
1363
|
-
|
|
1363
|
+
traderId: any;
|
|
1364
1364
|
};
|
|
1365
1365
|
webhookentry: {
|
|
1366
|
-
|
|
1367
|
-
traderId: any;
|
|
1368
|
-
stake_amount: string;
|
|
1366
|
+
userId: string;
|
|
1369
1367
|
stake_currency: string;
|
|
1368
|
+
stake_amount: string;
|
|
1370
1369
|
event: string;
|
|
1371
|
-
|
|
1370
|
+
traderId: any;
|
|
1372
1371
|
pair: string;
|
|
1373
1372
|
fiat_currency: string;
|
|
1374
1373
|
};
|
|
1375
1374
|
webhookentrycancel: {
|
|
1376
1375
|
limit: string;
|
|
1377
|
-
|
|
1378
|
-
stake_amount: string;
|
|
1376
|
+
userId: string;
|
|
1379
1377
|
stake_currency: string;
|
|
1378
|
+
stake_amount: string;
|
|
1380
1379
|
event: string;
|
|
1381
|
-
|
|
1380
|
+
traderId: any;
|
|
1382
1381
|
pair: string;
|
|
1383
1382
|
fiat_currency: string;
|
|
1384
1383
|
};
|
|
1385
1384
|
webhookentryfill: {
|
|
1386
|
-
|
|
1387
|
-
stake_amount: string;
|
|
1385
|
+
userId: string;
|
|
1388
1386
|
stake_currency: string;
|
|
1387
|
+
stake_amount: string;
|
|
1389
1388
|
event: string;
|
|
1390
|
-
|
|
1389
|
+
traderId: any;
|
|
1391
1390
|
pair: string;
|
|
1392
1391
|
trade_id: string;
|
|
1393
1392
|
open_rate: string;
|
|
@@ -1396,10 +1395,10 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1396
1395
|
};
|
|
1397
1396
|
webhookexit: {
|
|
1398
1397
|
limit: string;
|
|
1399
|
-
|
|
1398
|
+
userId: string;
|
|
1400
1399
|
stake_currency: string;
|
|
1401
1400
|
event: string;
|
|
1402
|
-
|
|
1401
|
+
traderId: any;
|
|
1403
1402
|
pair: string;
|
|
1404
1403
|
fiat_currency: string;
|
|
1405
1404
|
trade_id: string;
|
|
@@ -1414,22 +1413,23 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1414
1413
|
};
|
|
1415
1414
|
webhookexitcancel: {
|
|
1416
1415
|
limit: string;
|
|
1417
|
-
|
|
1416
|
+
userId: string;
|
|
1418
1417
|
stake_currency: string;
|
|
1419
1418
|
event: string;
|
|
1420
|
-
|
|
1419
|
+
traderId: any;
|
|
1421
1420
|
pair: string;
|
|
1422
1421
|
profit_amount: string;
|
|
1423
1422
|
profit_ratio: string;
|
|
1424
1423
|
};
|
|
1425
1424
|
webhookexitfill: {
|
|
1426
|
-
traderId: any;
|
|
1427
|
-
event: string;
|
|
1428
1425
|
userId: string;
|
|
1426
|
+
event: string;
|
|
1427
|
+
traderId: any;
|
|
1429
1428
|
pair: string;
|
|
1430
1429
|
close_rate: string;
|
|
1431
1430
|
};
|
|
1432
1431
|
} | undefined;
|
|
1432
|
+
reset?: boolean | undefined;
|
|
1433
1433
|
host: string;
|
|
1434
1434
|
name: any;
|
|
1435
1435
|
provider: "docker";
|
|
@@ -1439,20 +1439,20 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1439
1439
|
_id: string | {};
|
|
1440
1440
|
createdAt: any;
|
|
1441
1441
|
updatedAt: any;
|
|
1442
|
-
|
|
1443
|
-
strategyId: string | {};
|
|
1444
|
-
stake_amount: string | number;
|
|
1445
|
-
stake_currency: string;
|
|
1446
|
-
exchangeId: any;
|
|
1447
|
-
userId: any;
|
|
1442
|
+
connected: boolean;
|
|
1448
1443
|
which: string;
|
|
1444
|
+
userId: any;
|
|
1445
|
+
"traders/pods": any;
|
|
1449
1446
|
exchange: any;
|
|
1450
|
-
|
|
1447
|
+
exchangeId: any;
|
|
1448
|
+
stake_currency: string;
|
|
1449
|
+
stake_amount: string | number;
|
|
1451
1450
|
dry_run: boolean;
|
|
1452
1451
|
handling: string;
|
|
1453
1452
|
initial_state: string;
|
|
1454
1453
|
pairlists: any;
|
|
1455
1454
|
strategy: any;
|
|
1455
|
+
strategyId: string | {};
|
|
1456
1456
|
entry_pricing: {
|
|
1457
1457
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1458
1458
|
use_order_book?: boolean | undefined;
|
|
@@ -1472,12 +1472,12 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1472
1472
|
api_server: {
|
|
1473
1473
|
password: string;
|
|
1474
1474
|
enabled: boolean;
|
|
1475
|
+
username: string;
|
|
1475
1476
|
listen_ip_address: string;
|
|
1476
1477
|
listen_port: number;
|
|
1477
1478
|
verbosity: string;
|
|
1478
1479
|
jwt_secret_key: string;
|
|
1479
1480
|
CORS_origins: string[];
|
|
1480
|
-
username: string;
|
|
1481
1481
|
};
|
|
1482
1482
|
pod: string;
|
|
1483
1483
|
}>;
|
|
@@ -1538,7 +1538,6 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1538
1538
|
traderId: import("@feathersjs/typebox").TAny;
|
|
1539
1539
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
1540
1540
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
1541
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
1542
1541
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
1543
1542
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
1544
1543
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1663,6 +1662,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1663
1662
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
1664
1663
|
}>>;
|
|
1665
1664
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
1665
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1666
1666
|
host: import("@feathersjs/typebox").TString<string>;
|
|
1667
1667
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1668
1668
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -1830,7 +1830,6 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1830
1830
|
traderId: import("@feathersjs/typebox").TAny;
|
|
1831
1831
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
1832
1832
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
1833
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
1834
1833
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
1835
1834
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
1836
1835
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1955,6 +1954,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1955
1954
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
1956
1955
|
}>>;
|
|
1957
1956
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
1957
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1958
1958
|
host: import("@feathersjs/typebox").TString<string>;
|
|
1959
1959
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
1960
1960
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -1965,7 +1965,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1965
1965
|
name: import("@feathersjs/typebox").TString<string>;
|
|
1966
1966
|
type: import("@feathersjs/typebox").TString<string>;
|
|
1967
1967
|
description: import("@feathersjs/typebox").TString<string>;
|
|
1968
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
1968
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
1969
1969
|
values: import("@feathersjs/typebox").TAny;
|
|
1970
1970
|
}>>>;
|
|
1971
1971
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -1983,20 +1983,17 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
1983
1983
|
provider: "docker";
|
|
1984
1984
|
_id: string | {};
|
|
1985
1985
|
options: any;
|
|
1986
|
-
strategyId: string | {};
|
|
1987
|
-
exchangeId: string;
|
|
1988
1986
|
exchange: Partial<{
|
|
1989
1987
|
password?: string | undefined;
|
|
1990
1988
|
name?: any;
|
|
1991
1989
|
apiKey?: string | undefined;
|
|
1990
|
+
token?: string | undefined;
|
|
1992
1991
|
secret?: string | undefined;
|
|
1993
1992
|
avatar?: any;
|
|
1994
1993
|
createdAt?: any;
|
|
1995
1994
|
updatedAt?: any;
|
|
1996
|
-
|
|
1997
|
-
which?: string | undefined;
|
|
1995
|
+
login?: string | undefined;
|
|
1998
1996
|
connected?: boolean | undefined;
|
|
1999
|
-
token?: string | undefined;
|
|
2000
1997
|
downloaded?: {
|
|
2001
1998
|
updatedAt: any;
|
|
2002
1999
|
size: string;
|
|
@@ -2024,15 +2021,17 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2024
2021
|
}[] | undefined;
|
|
2025
2022
|
whitelist?: any[] | undefined;
|
|
2026
2023
|
ccxt_async_config?: any;
|
|
2024
|
+
which?: string | undefined;
|
|
2027
2025
|
requiredCredentials?: any;
|
|
2028
2026
|
uid?: string | undefined;
|
|
2029
|
-
login?: string | undefined;
|
|
2030
2027
|
twofa?: string | undefined;
|
|
2031
2028
|
privateKey?: string | undefined;
|
|
2032
2029
|
walletAddress?: string | undefined;
|
|
2030
|
+
userId?: string | {} | undefined;
|
|
2033
2031
|
__v?: any;
|
|
2034
2032
|
_id: string | {};
|
|
2035
2033
|
}>;
|
|
2034
|
+
exchangeId: string;
|
|
2036
2035
|
strategy: Partial<{
|
|
2037
2036
|
_id?: string | {} | undefined;
|
|
2038
2037
|
traders?: {
|
|
@@ -2044,19 +2043,19 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2044
2043
|
chat_id: any;
|
|
2045
2044
|
allow_custom_messages: boolean;
|
|
2046
2045
|
notification_settings: {
|
|
2047
|
-
status: "silent" | "on" | "off";
|
|
2048
2046
|
entry: "silent" | "on" | "off";
|
|
2049
2047
|
exit: {
|
|
2048
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
2050
2049
|
roi: "silent" | "on" | "off";
|
|
2051
2050
|
emergency_exit: "silent" | "on" | "off";
|
|
2052
2051
|
force_exit: "silent" | "on" | "off";
|
|
2053
2052
|
exit_signal: "silent" | "on" | "off";
|
|
2054
2053
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
2055
2054
|
stop_loss: "silent" | "on" | "off";
|
|
2056
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
2057
2055
|
custom_exit: "silent" | "on" | "off";
|
|
2058
2056
|
partial_exit: "silent" | "on" | "off";
|
|
2059
2057
|
};
|
|
2058
|
+
status: "silent" | "on" | "off";
|
|
2060
2059
|
warning: "silent" | "on" | "off";
|
|
2061
2060
|
startup: "silent" | "on" | "off";
|
|
2062
2061
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -2071,8 +2070,6 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2071
2070
|
reload: boolean;
|
|
2072
2071
|
balance_dust_level: number;
|
|
2073
2072
|
} | undefined;
|
|
2074
|
-
dry_run_wallet?: number | undefined;
|
|
2075
|
-
max_open_trades?: number | undefined;
|
|
2076
2073
|
plugins?: {
|
|
2077
2074
|
number_assets?: number | undefined;
|
|
2078
2075
|
refresh_period?: number | undefined;
|
|
@@ -2081,6 +2078,8 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2081
2078
|
removeRecentlyListed?: boolean | undefined;
|
|
2082
2079
|
removeRecentlyListedDays?: number | undefined;
|
|
2083
2080
|
} | undefined;
|
|
2081
|
+
dry_run_wallet?: number | undefined;
|
|
2082
|
+
max_open_trades?: number | undefined;
|
|
2084
2083
|
fiat_display_currency?: string | undefined;
|
|
2085
2084
|
unfilledtimeout?: {
|
|
2086
2085
|
entry: number;
|
|
@@ -2094,37 +2093,36 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2094
2093
|
enabled: boolean;
|
|
2095
2094
|
format: string;
|
|
2096
2095
|
webhookstatus: {
|
|
2097
|
-
|
|
2096
|
+
userId: string;
|
|
2098
2097
|
event: string;
|
|
2099
2098
|
status: string;
|
|
2100
|
-
|
|
2099
|
+
traderId: any;
|
|
2101
2100
|
};
|
|
2102
2101
|
webhookentry: {
|
|
2103
|
-
|
|
2104
|
-
traderId: any;
|
|
2105
|
-
stake_amount: string;
|
|
2102
|
+
userId: string;
|
|
2106
2103
|
stake_currency: string;
|
|
2104
|
+
stake_amount: string;
|
|
2107
2105
|
event: string;
|
|
2108
|
-
|
|
2106
|
+
traderId: any;
|
|
2109
2107
|
pair: string;
|
|
2110
2108
|
fiat_currency: string;
|
|
2111
2109
|
};
|
|
2112
2110
|
webhookentrycancel: {
|
|
2113
2111
|
limit: string;
|
|
2114
|
-
|
|
2115
|
-
stake_amount: string;
|
|
2112
|
+
userId: string;
|
|
2116
2113
|
stake_currency: string;
|
|
2114
|
+
stake_amount: string;
|
|
2117
2115
|
event: string;
|
|
2118
|
-
|
|
2116
|
+
traderId: any;
|
|
2119
2117
|
pair: string;
|
|
2120
2118
|
fiat_currency: string;
|
|
2121
2119
|
};
|
|
2122
2120
|
webhookentryfill: {
|
|
2123
|
-
|
|
2124
|
-
stake_amount: string;
|
|
2121
|
+
userId: string;
|
|
2125
2122
|
stake_currency: string;
|
|
2123
|
+
stake_amount: string;
|
|
2126
2124
|
event: string;
|
|
2127
|
-
|
|
2125
|
+
traderId: any;
|
|
2128
2126
|
pair: string;
|
|
2129
2127
|
trade_id: string;
|
|
2130
2128
|
open_rate: string;
|
|
@@ -2133,10 +2131,10 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2133
2131
|
};
|
|
2134
2132
|
webhookexit: {
|
|
2135
2133
|
limit: string;
|
|
2136
|
-
|
|
2134
|
+
userId: string;
|
|
2137
2135
|
stake_currency: string;
|
|
2138
2136
|
event: string;
|
|
2139
|
-
|
|
2137
|
+
traderId: any;
|
|
2140
2138
|
pair: string;
|
|
2141
2139
|
fiat_currency: string;
|
|
2142
2140
|
trade_id: string;
|
|
@@ -2151,22 +2149,23 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2151
2149
|
};
|
|
2152
2150
|
webhookexitcancel: {
|
|
2153
2151
|
limit: string;
|
|
2154
|
-
|
|
2152
|
+
userId: string;
|
|
2155
2153
|
stake_currency: string;
|
|
2156
2154
|
event: string;
|
|
2157
|
-
|
|
2155
|
+
traderId: any;
|
|
2158
2156
|
pair: string;
|
|
2159
2157
|
profit_amount: string;
|
|
2160
2158
|
profit_ratio: string;
|
|
2161
2159
|
};
|
|
2162
2160
|
webhookexitfill: {
|
|
2163
|
-
traderId: any;
|
|
2164
|
-
event: string;
|
|
2165
2161
|
userId: string;
|
|
2162
|
+
event: string;
|
|
2163
|
+
traderId: any;
|
|
2166
2164
|
pair: string;
|
|
2167
2165
|
close_rate: string;
|
|
2168
2166
|
};
|
|
2169
2167
|
} | undefined;
|
|
2168
|
+
reset?: boolean | undefined;
|
|
2170
2169
|
host: string;
|
|
2171
2170
|
name: any;
|
|
2172
2171
|
provider: "docker";
|
|
@@ -2176,20 +2175,20 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2176
2175
|
_id: string | {};
|
|
2177
2176
|
createdAt: any;
|
|
2178
2177
|
updatedAt: any;
|
|
2179
|
-
|
|
2180
|
-
strategyId: string | {};
|
|
2181
|
-
stake_amount: string | number;
|
|
2182
|
-
stake_currency: string;
|
|
2183
|
-
exchangeId: any;
|
|
2184
|
-
userId: any;
|
|
2178
|
+
connected: boolean;
|
|
2185
2179
|
which: string;
|
|
2180
|
+
userId: any;
|
|
2181
|
+
"traders/pods": any;
|
|
2186
2182
|
exchange: any;
|
|
2187
|
-
|
|
2183
|
+
exchangeId: any;
|
|
2184
|
+
stake_currency: string;
|
|
2185
|
+
stake_amount: string | number;
|
|
2188
2186
|
dry_run: boolean;
|
|
2189
2187
|
handling: string;
|
|
2190
2188
|
initial_state: string;
|
|
2191
2189
|
pairlists: any;
|
|
2192
2190
|
strategy: any;
|
|
2191
|
+
strategyId: string | {};
|
|
2193
2192
|
entry_pricing: {
|
|
2194
2193
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2195
2194
|
use_order_book?: boolean | undefined;
|
|
@@ -2209,35 +2208,34 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2209
2208
|
api_server: {
|
|
2210
2209
|
password: string;
|
|
2211
2210
|
enabled: boolean;
|
|
2211
|
+
username: string;
|
|
2212
2212
|
listen_ip_address: string;
|
|
2213
2213
|
listen_port: number;
|
|
2214
2214
|
verbosity: string;
|
|
2215
2215
|
jwt_secret_key: string;
|
|
2216
2216
|
CORS_origins: string[];
|
|
2217
|
-
username: string;
|
|
2218
2217
|
};
|
|
2219
2218
|
pod: string;
|
|
2220
2219
|
}[] | undefined;
|
|
2221
2220
|
createdAt?: any;
|
|
2222
2221
|
updatedAt?: any;
|
|
2222
|
+
userId?: string | {} | undefined;
|
|
2223
2223
|
'strategies/templates'?: {
|
|
2224
2224
|
_id?: string | {} | undefined;
|
|
2225
|
+
createdAt?: any;
|
|
2225
2226
|
values: any;
|
|
2226
2227
|
name: string;
|
|
2227
|
-
createdAt: any;
|
|
2228
2228
|
description: string;
|
|
2229
2229
|
type: string;
|
|
2230
2230
|
} | undefined;
|
|
2231
|
+
file?: any;
|
|
2232
|
+
templateId?: string | {} | undefined;
|
|
2233
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2231
2234
|
stoploss?: number | undefined;
|
|
2232
2235
|
minimal_roi?: {
|
|
2233
2236
|
minutes: number;
|
|
2234
2237
|
profit: number;
|
|
2235
2238
|
}[] | undefined;
|
|
2236
|
-
results?: unknown;
|
|
2237
|
-
userId?: string | {} | undefined;
|
|
2238
|
-
file?: any;
|
|
2239
|
-
templateId?: string | {} | undefined;
|
|
2240
|
-
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2241
2239
|
exit_sell_signal?: boolean | undefined;
|
|
2242
2240
|
exit_profit_only?: boolean | undefined;
|
|
2243
2241
|
exit_profit_offset?: number | undefined;
|
|
@@ -2246,10 +2244,10 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2246
2244
|
stoploss?: string | undefined;
|
|
2247
2245
|
entry?: "Limit" | "Market" | undefined;
|
|
2248
2246
|
exit?: "Limit" | "Market" | undefined;
|
|
2249
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
2250
2247
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
2251
2248
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
2252
2249
|
forcesell?: "Limit" | "Market" | undefined;
|
|
2250
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
2253
2251
|
stoploss_on_exchange_interval?: number | undefined;
|
|
2254
2252
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
2255
2253
|
} | undefined;
|
|
@@ -2281,10 +2279,12 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2281
2279
|
}[] | undefined;
|
|
2282
2280
|
indicators?: unknown[] | undefined;
|
|
2283
2281
|
code?: unknown;
|
|
2282
|
+
results?: unknown;
|
|
2284
2283
|
configured?: boolean | undefined;
|
|
2285
2284
|
name: any;
|
|
2286
2285
|
'strategies/indicators': any;
|
|
2287
2286
|
}>;
|
|
2287
|
+
strategyId: string | {};
|
|
2288
2288
|
pod: any;
|
|
2289
2289
|
trader: Partial<{
|
|
2290
2290
|
telegram?: {
|
|
@@ -2295,19 +2295,19 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2295
2295
|
chat_id: any;
|
|
2296
2296
|
allow_custom_messages: boolean;
|
|
2297
2297
|
notification_settings: {
|
|
2298
|
-
status: "silent" | "on" | "off";
|
|
2299
2298
|
entry: "silent" | "on" | "off";
|
|
2300
2299
|
exit: {
|
|
2300
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
2301
2301
|
roi: "silent" | "on" | "off";
|
|
2302
2302
|
emergency_exit: "silent" | "on" | "off";
|
|
2303
2303
|
force_exit: "silent" | "on" | "off";
|
|
2304
2304
|
exit_signal: "silent" | "on" | "off";
|
|
2305
2305
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
2306
2306
|
stop_loss: "silent" | "on" | "off";
|
|
2307
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
2308
2307
|
custom_exit: "silent" | "on" | "off";
|
|
2309
2308
|
partial_exit: "silent" | "on" | "off";
|
|
2310
2309
|
};
|
|
2310
|
+
status: "silent" | "on" | "off";
|
|
2311
2311
|
warning: "silent" | "on" | "off";
|
|
2312
2312
|
startup: "silent" | "on" | "off";
|
|
2313
2313
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -2322,8 +2322,6 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2322
2322
|
reload: boolean;
|
|
2323
2323
|
balance_dust_level: number;
|
|
2324
2324
|
} | undefined;
|
|
2325
|
-
dry_run_wallet?: number | undefined;
|
|
2326
|
-
max_open_trades?: number | undefined;
|
|
2327
2325
|
plugins?: {
|
|
2328
2326
|
number_assets?: number | undefined;
|
|
2329
2327
|
refresh_period?: number | undefined;
|
|
@@ -2332,6 +2330,8 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2332
2330
|
removeRecentlyListed?: boolean | undefined;
|
|
2333
2331
|
removeRecentlyListedDays?: number | undefined;
|
|
2334
2332
|
} | undefined;
|
|
2333
|
+
dry_run_wallet?: number | undefined;
|
|
2334
|
+
max_open_trades?: number | undefined;
|
|
2335
2335
|
fiat_display_currency?: string | undefined;
|
|
2336
2336
|
unfilledtimeout?: {
|
|
2337
2337
|
entry: number;
|
|
@@ -2345,37 +2345,36 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2345
2345
|
enabled: boolean;
|
|
2346
2346
|
format: string;
|
|
2347
2347
|
webhookstatus: {
|
|
2348
|
-
|
|
2348
|
+
userId: string;
|
|
2349
2349
|
event: string;
|
|
2350
2350
|
status: string;
|
|
2351
|
-
|
|
2351
|
+
traderId: any;
|
|
2352
2352
|
};
|
|
2353
2353
|
webhookentry: {
|
|
2354
|
-
|
|
2355
|
-
traderId: any;
|
|
2356
|
-
stake_amount: string;
|
|
2354
|
+
userId: string;
|
|
2357
2355
|
stake_currency: string;
|
|
2356
|
+
stake_amount: string;
|
|
2358
2357
|
event: string;
|
|
2359
|
-
|
|
2358
|
+
traderId: any;
|
|
2360
2359
|
pair: string;
|
|
2361
2360
|
fiat_currency: string;
|
|
2362
2361
|
};
|
|
2363
2362
|
webhookentrycancel: {
|
|
2364
2363
|
limit: string;
|
|
2365
|
-
|
|
2366
|
-
stake_amount: string;
|
|
2364
|
+
userId: string;
|
|
2367
2365
|
stake_currency: string;
|
|
2366
|
+
stake_amount: string;
|
|
2368
2367
|
event: string;
|
|
2369
|
-
|
|
2368
|
+
traderId: any;
|
|
2370
2369
|
pair: string;
|
|
2371
2370
|
fiat_currency: string;
|
|
2372
2371
|
};
|
|
2373
2372
|
webhookentryfill: {
|
|
2374
|
-
|
|
2375
|
-
stake_amount: string;
|
|
2373
|
+
userId: string;
|
|
2376
2374
|
stake_currency: string;
|
|
2375
|
+
stake_amount: string;
|
|
2377
2376
|
event: string;
|
|
2378
|
-
|
|
2377
|
+
traderId: any;
|
|
2379
2378
|
pair: string;
|
|
2380
2379
|
trade_id: string;
|
|
2381
2380
|
open_rate: string;
|
|
@@ -2384,10 +2383,10 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2384
2383
|
};
|
|
2385
2384
|
webhookexit: {
|
|
2386
2385
|
limit: string;
|
|
2387
|
-
|
|
2386
|
+
userId: string;
|
|
2388
2387
|
stake_currency: string;
|
|
2389
2388
|
event: string;
|
|
2390
|
-
|
|
2389
|
+
traderId: any;
|
|
2391
2390
|
pair: string;
|
|
2392
2391
|
fiat_currency: string;
|
|
2393
2392
|
trade_id: string;
|
|
@@ -2402,22 +2401,23 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2402
2401
|
};
|
|
2403
2402
|
webhookexitcancel: {
|
|
2404
2403
|
limit: string;
|
|
2405
|
-
|
|
2404
|
+
userId: string;
|
|
2406
2405
|
stake_currency: string;
|
|
2407
2406
|
event: string;
|
|
2408
|
-
|
|
2407
|
+
traderId: any;
|
|
2409
2408
|
pair: string;
|
|
2410
2409
|
profit_amount: string;
|
|
2411
2410
|
profit_ratio: string;
|
|
2412
2411
|
};
|
|
2413
2412
|
webhookexitfill: {
|
|
2414
|
-
traderId: any;
|
|
2415
|
-
event: string;
|
|
2416
2413
|
userId: string;
|
|
2414
|
+
event: string;
|
|
2415
|
+
traderId: any;
|
|
2417
2416
|
pair: string;
|
|
2418
2417
|
close_rate: string;
|
|
2419
2418
|
};
|
|
2420
2419
|
} | undefined;
|
|
2420
|
+
reset?: boolean | undefined;
|
|
2421
2421
|
host: string;
|
|
2422
2422
|
name: any;
|
|
2423
2423
|
provider: "docker";
|
|
@@ -2427,20 +2427,20 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2427
2427
|
_id: string | {};
|
|
2428
2428
|
createdAt: any;
|
|
2429
2429
|
updatedAt: any;
|
|
2430
|
-
|
|
2431
|
-
strategyId: string | {};
|
|
2432
|
-
stake_amount: string | number;
|
|
2433
|
-
stake_currency: string;
|
|
2434
|
-
exchangeId: any;
|
|
2435
|
-
userId: any;
|
|
2430
|
+
connected: boolean;
|
|
2436
2431
|
which: string;
|
|
2432
|
+
userId: any;
|
|
2433
|
+
"traders/pods": any;
|
|
2437
2434
|
exchange: any;
|
|
2438
|
-
|
|
2435
|
+
exchangeId: any;
|
|
2436
|
+
stake_currency: string;
|
|
2437
|
+
stake_amount: string | number;
|
|
2439
2438
|
dry_run: boolean;
|
|
2440
2439
|
handling: string;
|
|
2441
2440
|
initial_state: string;
|
|
2442
2441
|
pairlists: any;
|
|
2443
2442
|
strategy: any;
|
|
2443
|
+
strategyId: string | {};
|
|
2444
2444
|
entry_pricing: {
|
|
2445
2445
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2446
2446
|
use_order_book?: boolean | undefined;
|
|
@@ -2460,12 +2460,12 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2460
2460
|
api_server: {
|
|
2461
2461
|
password: string;
|
|
2462
2462
|
enabled: boolean;
|
|
2463
|
+
username: string;
|
|
2463
2464
|
listen_ip_address: string;
|
|
2464
2465
|
listen_port: number;
|
|
2465
2466
|
verbosity: string;
|
|
2466
2467
|
jwt_secret_key: string;
|
|
2467
2468
|
CORS_origins: string[];
|
|
2468
|
-
username: string;
|
|
2469
2469
|
};
|
|
2470
2470
|
pod: string;
|
|
2471
2471
|
}>;
|
|
@@ -2526,7 +2526,6 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2526
2526
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2527
2527
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
2528
2528
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
2529
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
2530
2529
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
2531
2530
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
2532
2531
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2651,6 +2650,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2651
2650
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
2652
2651
|
}>>;
|
|
2653
2652
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
2653
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2654
2654
|
host: import("@feathersjs/typebox").TString<string>;
|
|
2655
2655
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
2656
2656
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -2818,7 +2818,6 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2818
2818
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2819
2819
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
2820
2820
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
2821
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
2822
2821
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
2823
2822
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
2824
2823
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2943,6 +2942,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2943
2942
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
2944
2943
|
}>>;
|
|
2945
2944
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
2945
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2946
2946
|
host: import("@feathersjs/typebox").TString<string>;
|
|
2947
2947
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
2948
2948
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -2953,7 +2953,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2953
2953
|
name: import("@feathersjs/typebox").TString<string>;
|
|
2954
2954
|
type: import("@feathersjs/typebox").TString<string>;
|
|
2955
2955
|
description: import("@feathersjs/typebox").TString<string>;
|
|
2956
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
2956
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2957
2957
|
values: import("@feathersjs/typebox").TAny;
|
|
2958
2958
|
}>>>;
|
|
2959
2959
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -2971,20 +2971,17 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2971
2971
|
provider: "docker";
|
|
2972
2972
|
_id: string | {};
|
|
2973
2973
|
options: any;
|
|
2974
|
-
strategyId: string | {};
|
|
2975
|
-
exchangeId: string;
|
|
2976
2974
|
exchange: Partial<{
|
|
2977
2975
|
password?: string | undefined;
|
|
2978
2976
|
name?: any;
|
|
2979
2977
|
apiKey?: string | undefined;
|
|
2978
|
+
token?: string | undefined;
|
|
2980
2979
|
secret?: string | undefined;
|
|
2981
2980
|
avatar?: any;
|
|
2982
2981
|
createdAt?: any;
|
|
2983
2982
|
updatedAt?: any;
|
|
2984
|
-
|
|
2985
|
-
which?: string | undefined;
|
|
2983
|
+
login?: string | undefined;
|
|
2986
2984
|
connected?: boolean | undefined;
|
|
2987
|
-
token?: string | undefined;
|
|
2988
2985
|
downloaded?: {
|
|
2989
2986
|
updatedAt: any;
|
|
2990
2987
|
size: string;
|
|
@@ -3012,15 +3009,17 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3012
3009
|
}[] | undefined;
|
|
3013
3010
|
whitelist?: any[] | undefined;
|
|
3014
3011
|
ccxt_async_config?: any;
|
|
3012
|
+
which?: string | undefined;
|
|
3015
3013
|
requiredCredentials?: any;
|
|
3016
3014
|
uid?: string | undefined;
|
|
3017
|
-
login?: string | undefined;
|
|
3018
3015
|
twofa?: string | undefined;
|
|
3019
3016
|
privateKey?: string | undefined;
|
|
3020
3017
|
walletAddress?: string | undefined;
|
|
3018
|
+
userId?: string | {} | undefined;
|
|
3021
3019
|
__v?: any;
|
|
3022
3020
|
_id: string | {};
|
|
3023
3021
|
}>;
|
|
3022
|
+
exchangeId: string;
|
|
3024
3023
|
strategy: Partial<{
|
|
3025
3024
|
_id?: string | {} | undefined;
|
|
3026
3025
|
traders?: {
|
|
@@ -3032,19 +3031,19 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3032
3031
|
chat_id: any;
|
|
3033
3032
|
allow_custom_messages: boolean;
|
|
3034
3033
|
notification_settings: {
|
|
3035
|
-
status: "silent" | "on" | "off";
|
|
3036
3034
|
entry: "silent" | "on" | "off";
|
|
3037
3035
|
exit: {
|
|
3036
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
3038
3037
|
roi: "silent" | "on" | "off";
|
|
3039
3038
|
emergency_exit: "silent" | "on" | "off";
|
|
3040
3039
|
force_exit: "silent" | "on" | "off";
|
|
3041
3040
|
exit_signal: "silent" | "on" | "off";
|
|
3042
3041
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
3043
3042
|
stop_loss: "silent" | "on" | "off";
|
|
3044
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
3045
3043
|
custom_exit: "silent" | "on" | "off";
|
|
3046
3044
|
partial_exit: "silent" | "on" | "off";
|
|
3047
3045
|
};
|
|
3046
|
+
status: "silent" | "on" | "off";
|
|
3048
3047
|
warning: "silent" | "on" | "off";
|
|
3049
3048
|
startup: "silent" | "on" | "off";
|
|
3050
3049
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -3059,8 +3058,6 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3059
3058
|
reload: boolean;
|
|
3060
3059
|
balance_dust_level: number;
|
|
3061
3060
|
} | undefined;
|
|
3062
|
-
dry_run_wallet?: number | undefined;
|
|
3063
|
-
max_open_trades?: number | undefined;
|
|
3064
3061
|
plugins?: {
|
|
3065
3062
|
number_assets?: number | undefined;
|
|
3066
3063
|
refresh_period?: number | undefined;
|
|
@@ -3069,6 +3066,8 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3069
3066
|
removeRecentlyListed?: boolean | undefined;
|
|
3070
3067
|
removeRecentlyListedDays?: number | undefined;
|
|
3071
3068
|
} | undefined;
|
|
3069
|
+
dry_run_wallet?: number | undefined;
|
|
3070
|
+
max_open_trades?: number | undefined;
|
|
3072
3071
|
fiat_display_currency?: string | undefined;
|
|
3073
3072
|
unfilledtimeout?: {
|
|
3074
3073
|
entry: number;
|
|
@@ -3082,37 +3081,36 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3082
3081
|
enabled: boolean;
|
|
3083
3082
|
format: string;
|
|
3084
3083
|
webhookstatus: {
|
|
3085
|
-
|
|
3084
|
+
userId: string;
|
|
3086
3085
|
event: string;
|
|
3087
3086
|
status: string;
|
|
3088
|
-
|
|
3087
|
+
traderId: any;
|
|
3089
3088
|
};
|
|
3090
3089
|
webhookentry: {
|
|
3091
|
-
|
|
3092
|
-
traderId: any;
|
|
3093
|
-
stake_amount: string;
|
|
3090
|
+
userId: string;
|
|
3094
3091
|
stake_currency: string;
|
|
3092
|
+
stake_amount: string;
|
|
3095
3093
|
event: string;
|
|
3096
|
-
|
|
3094
|
+
traderId: any;
|
|
3097
3095
|
pair: string;
|
|
3098
3096
|
fiat_currency: string;
|
|
3099
3097
|
};
|
|
3100
3098
|
webhookentrycancel: {
|
|
3101
3099
|
limit: string;
|
|
3102
|
-
|
|
3103
|
-
stake_amount: string;
|
|
3100
|
+
userId: string;
|
|
3104
3101
|
stake_currency: string;
|
|
3102
|
+
stake_amount: string;
|
|
3105
3103
|
event: string;
|
|
3106
|
-
|
|
3104
|
+
traderId: any;
|
|
3107
3105
|
pair: string;
|
|
3108
3106
|
fiat_currency: string;
|
|
3109
3107
|
};
|
|
3110
3108
|
webhookentryfill: {
|
|
3111
|
-
|
|
3112
|
-
stake_amount: string;
|
|
3109
|
+
userId: string;
|
|
3113
3110
|
stake_currency: string;
|
|
3111
|
+
stake_amount: string;
|
|
3114
3112
|
event: string;
|
|
3115
|
-
|
|
3113
|
+
traderId: any;
|
|
3116
3114
|
pair: string;
|
|
3117
3115
|
trade_id: string;
|
|
3118
3116
|
open_rate: string;
|
|
@@ -3121,10 +3119,10 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3121
3119
|
};
|
|
3122
3120
|
webhookexit: {
|
|
3123
3121
|
limit: string;
|
|
3124
|
-
|
|
3122
|
+
userId: string;
|
|
3125
3123
|
stake_currency: string;
|
|
3126
3124
|
event: string;
|
|
3127
|
-
|
|
3125
|
+
traderId: any;
|
|
3128
3126
|
pair: string;
|
|
3129
3127
|
fiat_currency: string;
|
|
3130
3128
|
trade_id: string;
|
|
@@ -3139,22 +3137,23 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3139
3137
|
};
|
|
3140
3138
|
webhookexitcancel: {
|
|
3141
3139
|
limit: string;
|
|
3142
|
-
|
|
3140
|
+
userId: string;
|
|
3143
3141
|
stake_currency: string;
|
|
3144
3142
|
event: string;
|
|
3145
|
-
|
|
3143
|
+
traderId: any;
|
|
3146
3144
|
pair: string;
|
|
3147
3145
|
profit_amount: string;
|
|
3148
3146
|
profit_ratio: string;
|
|
3149
3147
|
};
|
|
3150
3148
|
webhookexitfill: {
|
|
3151
|
-
traderId: any;
|
|
3152
|
-
event: string;
|
|
3153
3149
|
userId: string;
|
|
3150
|
+
event: string;
|
|
3151
|
+
traderId: any;
|
|
3154
3152
|
pair: string;
|
|
3155
3153
|
close_rate: string;
|
|
3156
3154
|
};
|
|
3157
3155
|
} | undefined;
|
|
3156
|
+
reset?: boolean | undefined;
|
|
3158
3157
|
host: string;
|
|
3159
3158
|
name: any;
|
|
3160
3159
|
provider: "docker";
|
|
@@ -3164,20 +3163,20 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3164
3163
|
_id: string | {};
|
|
3165
3164
|
createdAt: any;
|
|
3166
3165
|
updatedAt: any;
|
|
3167
|
-
|
|
3168
|
-
strategyId: string | {};
|
|
3169
|
-
stake_amount: string | number;
|
|
3170
|
-
stake_currency: string;
|
|
3171
|
-
exchangeId: any;
|
|
3172
|
-
userId: any;
|
|
3166
|
+
connected: boolean;
|
|
3173
3167
|
which: string;
|
|
3168
|
+
userId: any;
|
|
3169
|
+
"traders/pods": any;
|
|
3174
3170
|
exchange: any;
|
|
3175
|
-
|
|
3171
|
+
exchangeId: any;
|
|
3172
|
+
stake_currency: string;
|
|
3173
|
+
stake_amount: string | number;
|
|
3176
3174
|
dry_run: boolean;
|
|
3177
3175
|
handling: string;
|
|
3178
3176
|
initial_state: string;
|
|
3179
3177
|
pairlists: any;
|
|
3180
3178
|
strategy: any;
|
|
3179
|
+
strategyId: string | {};
|
|
3181
3180
|
entry_pricing: {
|
|
3182
3181
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
3183
3182
|
use_order_book?: boolean | undefined;
|
|
@@ -3197,35 +3196,34 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3197
3196
|
api_server: {
|
|
3198
3197
|
password: string;
|
|
3199
3198
|
enabled: boolean;
|
|
3199
|
+
username: string;
|
|
3200
3200
|
listen_ip_address: string;
|
|
3201
3201
|
listen_port: number;
|
|
3202
3202
|
verbosity: string;
|
|
3203
3203
|
jwt_secret_key: string;
|
|
3204
3204
|
CORS_origins: string[];
|
|
3205
|
-
username: string;
|
|
3206
3205
|
};
|
|
3207
3206
|
pod: string;
|
|
3208
3207
|
}[] | undefined;
|
|
3209
3208
|
createdAt?: any;
|
|
3210
3209
|
updatedAt?: any;
|
|
3210
|
+
userId?: string | {} | undefined;
|
|
3211
3211
|
'strategies/templates'?: {
|
|
3212
3212
|
_id?: string | {} | undefined;
|
|
3213
|
+
createdAt?: any;
|
|
3213
3214
|
values: any;
|
|
3214
3215
|
name: string;
|
|
3215
|
-
createdAt: any;
|
|
3216
3216
|
description: string;
|
|
3217
3217
|
type: string;
|
|
3218
3218
|
} | undefined;
|
|
3219
|
+
file?: any;
|
|
3220
|
+
templateId?: string | {} | undefined;
|
|
3221
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
3219
3222
|
stoploss?: number | undefined;
|
|
3220
3223
|
minimal_roi?: {
|
|
3221
3224
|
minutes: number;
|
|
3222
3225
|
profit: number;
|
|
3223
3226
|
}[] | undefined;
|
|
3224
|
-
results?: unknown;
|
|
3225
|
-
userId?: string | {} | undefined;
|
|
3226
|
-
file?: any;
|
|
3227
|
-
templateId?: string | {} | undefined;
|
|
3228
|
-
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
3229
3227
|
exit_sell_signal?: boolean | undefined;
|
|
3230
3228
|
exit_profit_only?: boolean | undefined;
|
|
3231
3229
|
exit_profit_offset?: number | undefined;
|
|
@@ -3234,10 +3232,10 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3234
3232
|
stoploss?: string | undefined;
|
|
3235
3233
|
entry?: "Limit" | "Market" | undefined;
|
|
3236
3234
|
exit?: "Limit" | "Market" | undefined;
|
|
3237
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
3238
3235
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
3239
3236
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
3240
3237
|
forcesell?: "Limit" | "Market" | undefined;
|
|
3238
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
3241
3239
|
stoploss_on_exchange_interval?: number | undefined;
|
|
3242
3240
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
3243
3241
|
} | undefined;
|
|
@@ -3269,10 +3267,12 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3269
3267
|
}[] | undefined;
|
|
3270
3268
|
indicators?: unknown[] | undefined;
|
|
3271
3269
|
code?: unknown;
|
|
3270
|
+
results?: unknown;
|
|
3272
3271
|
configured?: boolean | undefined;
|
|
3273
3272
|
name: any;
|
|
3274
3273
|
'strategies/indicators': any;
|
|
3275
3274
|
}>;
|
|
3275
|
+
strategyId: string | {};
|
|
3276
3276
|
pod: any;
|
|
3277
3277
|
trader: Partial<{
|
|
3278
3278
|
telegram?: {
|
|
@@ -3283,19 +3283,19 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3283
3283
|
chat_id: any;
|
|
3284
3284
|
allow_custom_messages: boolean;
|
|
3285
3285
|
notification_settings: {
|
|
3286
|
-
status: "silent" | "on" | "off";
|
|
3287
3286
|
entry: "silent" | "on" | "off";
|
|
3288
3287
|
exit: {
|
|
3288
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
3289
3289
|
roi: "silent" | "on" | "off";
|
|
3290
3290
|
emergency_exit: "silent" | "on" | "off";
|
|
3291
3291
|
force_exit: "silent" | "on" | "off";
|
|
3292
3292
|
exit_signal: "silent" | "on" | "off";
|
|
3293
3293
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
3294
3294
|
stop_loss: "silent" | "on" | "off";
|
|
3295
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
3296
3295
|
custom_exit: "silent" | "on" | "off";
|
|
3297
3296
|
partial_exit: "silent" | "on" | "off";
|
|
3298
3297
|
};
|
|
3298
|
+
status: "silent" | "on" | "off";
|
|
3299
3299
|
warning: "silent" | "on" | "off";
|
|
3300
3300
|
startup: "silent" | "on" | "off";
|
|
3301
3301
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -3310,8 +3310,6 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3310
3310
|
reload: boolean;
|
|
3311
3311
|
balance_dust_level: number;
|
|
3312
3312
|
} | undefined;
|
|
3313
|
-
dry_run_wallet?: number | undefined;
|
|
3314
|
-
max_open_trades?: number | undefined;
|
|
3315
3313
|
plugins?: {
|
|
3316
3314
|
number_assets?: number | undefined;
|
|
3317
3315
|
refresh_period?: number | undefined;
|
|
@@ -3320,6 +3318,8 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3320
3318
|
removeRecentlyListed?: boolean | undefined;
|
|
3321
3319
|
removeRecentlyListedDays?: number | undefined;
|
|
3322
3320
|
} | undefined;
|
|
3321
|
+
dry_run_wallet?: number | undefined;
|
|
3322
|
+
max_open_trades?: number | undefined;
|
|
3323
3323
|
fiat_display_currency?: string | undefined;
|
|
3324
3324
|
unfilledtimeout?: {
|
|
3325
3325
|
entry: number;
|
|
@@ -3333,37 +3333,36 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3333
3333
|
enabled: boolean;
|
|
3334
3334
|
format: string;
|
|
3335
3335
|
webhookstatus: {
|
|
3336
|
-
|
|
3336
|
+
userId: string;
|
|
3337
3337
|
event: string;
|
|
3338
3338
|
status: string;
|
|
3339
|
-
|
|
3339
|
+
traderId: any;
|
|
3340
3340
|
};
|
|
3341
3341
|
webhookentry: {
|
|
3342
|
-
|
|
3343
|
-
traderId: any;
|
|
3344
|
-
stake_amount: string;
|
|
3342
|
+
userId: string;
|
|
3345
3343
|
stake_currency: string;
|
|
3344
|
+
stake_amount: string;
|
|
3346
3345
|
event: string;
|
|
3347
|
-
|
|
3346
|
+
traderId: any;
|
|
3348
3347
|
pair: string;
|
|
3349
3348
|
fiat_currency: string;
|
|
3350
3349
|
};
|
|
3351
3350
|
webhookentrycancel: {
|
|
3352
3351
|
limit: string;
|
|
3353
|
-
|
|
3354
|
-
stake_amount: string;
|
|
3352
|
+
userId: string;
|
|
3355
3353
|
stake_currency: string;
|
|
3354
|
+
stake_amount: string;
|
|
3356
3355
|
event: string;
|
|
3357
|
-
|
|
3356
|
+
traderId: any;
|
|
3358
3357
|
pair: string;
|
|
3359
3358
|
fiat_currency: string;
|
|
3360
3359
|
};
|
|
3361
3360
|
webhookentryfill: {
|
|
3362
|
-
|
|
3363
|
-
stake_amount: string;
|
|
3361
|
+
userId: string;
|
|
3364
3362
|
stake_currency: string;
|
|
3363
|
+
stake_amount: string;
|
|
3365
3364
|
event: string;
|
|
3366
|
-
|
|
3365
|
+
traderId: any;
|
|
3367
3366
|
pair: string;
|
|
3368
3367
|
trade_id: string;
|
|
3369
3368
|
open_rate: string;
|
|
@@ -3372,10 +3371,10 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3372
3371
|
};
|
|
3373
3372
|
webhookexit: {
|
|
3374
3373
|
limit: string;
|
|
3375
|
-
|
|
3374
|
+
userId: string;
|
|
3376
3375
|
stake_currency: string;
|
|
3377
3376
|
event: string;
|
|
3378
|
-
|
|
3377
|
+
traderId: any;
|
|
3379
3378
|
pair: string;
|
|
3380
3379
|
fiat_currency: string;
|
|
3381
3380
|
trade_id: string;
|
|
@@ -3390,22 +3389,23 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3390
3389
|
};
|
|
3391
3390
|
webhookexitcancel: {
|
|
3392
3391
|
limit: string;
|
|
3393
|
-
|
|
3392
|
+
userId: string;
|
|
3394
3393
|
stake_currency: string;
|
|
3395
3394
|
event: string;
|
|
3396
|
-
|
|
3395
|
+
traderId: any;
|
|
3397
3396
|
pair: string;
|
|
3398
3397
|
profit_amount: string;
|
|
3399
3398
|
profit_ratio: string;
|
|
3400
3399
|
};
|
|
3401
3400
|
webhookexitfill: {
|
|
3402
|
-
traderId: any;
|
|
3403
|
-
event: string;
|
|
3404
3401
|
userId: string;
|
|
3402
|
+
event: string;
|
|
3403
|
+
traderId: any;
|
|
3405
3404
|
pair: string;
|
|
3406
3405
|
close_rate: string;
|
|
3407
3406
|
};
|
|
3408
3407
|
} | undefined;
|
|
3408
|
+
reset?: boolean | undefined;
|
|
3409
3409
|
host: string;
|
|
3410
3410
|
name: any;
|
|
3411
3411
|
provider: "docker";
|
|
@@ -3415,20 +3415,20 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3415
3415
|
_id: string | {};
|
|
3416
3416
|
createdAt: any;
|
|
3417
3417
|
updatedAt: any;
|
|
3418
|
-
|
|
3419
|
-
strategyId: string | {};
|
|
3420
|
-
stake_amount: string | number;
|
|
3421
|
-
stake_currency: string;
|
|
3422
|
-
exchangeId: any;
|
|
3423
|
-
userId: any;
|
|
3418
|
+
connected: boolean;
|
|
3424
3419
|
which: string;
|
|
3420
|
+
userId: any;
|
|
3421
|
+
"traders/pods": any;
|
|
3425
3422
|
exchange: any;
|
|
3426
|
-
|
|
3423
|
+
exchangeId: any;
|
|
3424
|
+
stake_currency: string;
|
|
3425
|
+
stake_amount: string | number;
|
|
3427
3426
|
dry_run: boolean;
|
|
3428
3427
|
handling: string;
|
|
3429
3428
|
initial_state: string;
|
|
3430
3429
|
pairlists: any;
|
|
3431
3430
|
strategy: any;
|
|
3431
|
+
strategyId: string | {};
|
|
3432
3432
|
entry_pricing: {
|
|
3433
3433
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
3434
3434
|
use_order_book?: boolean | undefined;
|
|
@@ -3448,12 +3448,12 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3448
3448
|
api_server: {
|
|
3449
3449
|
password: string;
|
|
3450
3450
|
enabled: boolean;
|
|
3451
|
+
username: string;
|
|
3451
3452
|
listen_ip_address: string;
|
|
3452
3453
|
listen_port: number;
|
|
3453
3454
|
verbosity: string;
|
|
3454
3455
|
jwt_secret_key: string;
|
|
3455
3456
|
CORS_origins: string[];
|
|
3456
|
-
username: string;
|
|
3457
3457
|
};
|
|
3458
3458
|
pod: string;
|
|
3459
3459
|
}>;
|
|
@@ -3514,7 +3514,6 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3514
3514
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3515
3515
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
3516
3516
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
3517
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
3518
3517
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
3519
3518
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
3520
3519
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3639,6 +3638,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3639
3638
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
3640
3639
|
}>>;
|
|
3641
3640
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
3641
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3642
3642
|
host: import("@feathersjs/typebox").TString<string>;
|
|
3643
3643
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
3644
3644
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -3806,7 +3806,6 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3806
3806
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3807
3807
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
3808
3808
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
3809
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
3810
3809
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
3811
3810
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
3812
3811
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3931,6 +3930,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3931
3930
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
3932
3931
|
}>>;
|
|
3933
3932
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
3933
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3934
3934
|
host: import("@feathersjs/typebox").TString<string>;
|
|
3935
3935
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
3936
3936
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -3941,7 +3941,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3941
3941
|
name: import("@feathersjs/typebox").TString<string>;
|
|
3942
3942
|
type: import("@feathersjs/typebox").TString<string>;
|
|
3943
3943
|
description: import("@feathersjs/typebox").TString<string>;
|
|
3944
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
3944
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
3945
3945
|
values: import("@feathersjs/typebox").TAny;
|
|
3946
3946
|
}>>>;
|
|
3947
3947
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -3970,8 +3970,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
3970
3970
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3971
3971
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3972
3972
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3973
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
3974
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
3973
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
3974
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
3975
3975
|
}>, import("@feathersjs/typebox").TObject<{
|
|
3976
3976
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
3977
3977
|
} | undefined>]>>]>>;
|
|
@@ -3981,8 +3981,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
3981
3981
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
3982
3982
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
3983
3983
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
3984
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
3985
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
3984
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
3985
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
3986
3986
|
}>, import("@feathersjs/typebox").TObject<{
|
|
3987
3987
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
3988
3988
|
} | undefined>]>>]>>;
|
|
@@ -3992,8 +3992,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
3992
3992
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
3993
3993
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
3994
3994
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
3995
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
3996
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
3995
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
3996
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
3997
3997
|
}>, import("@feathersjs/typebox").TObject<{
|
|
3998
3998
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
3999
3999
|
} | undefined>]>>]>>;
|
|
@@ -4003,8 +4003,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4003
4003
|
$lt: import("@feathersjs/typebox").TAny;
|
|
4004
4004
|
$lte: import("@feathersjs/typebox").TAny;
|
|
4005
4005
|
$ne: import("@feathersjs/typebox").TAny;
|
|
4006
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4007
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4006
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4007
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4008
4008
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4009
4009
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4010
4010
|
} | undefined>]>>]>>;
|
|
@@ -4014,8 +4014,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4014
4014
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
4015
4015
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
4016
4016
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
4017
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
4018
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
4017
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
4018
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
4019
4019
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4020
4020
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4021
4021
|
} | undefined>]>>]>>;
|
|
@@ -4025,8 +4025,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4025
4025
|
$lt: import("@feathersjs/typebox").TAny;
|
|
4026
4026
|
$lte: import("@feathersjs/typebox").TAny;
|
|
4027
4027
|
$ne: import("@feathersjs/typebox").TAny;
|
|
4028
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4029
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4028
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4029
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4030
4030
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4031
4031
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4032
4032
|
} | undefined>]>>]>>;
|
|
@@ -4038,8 +4038,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4038
4038
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4039
4039
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4040
4040
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4041
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
4042
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
4041
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
4042
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
4043
4043
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4044
4044
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4045
4045
|
} | undefined>]>>]>>;
|
|
@@ -4049,8 +4049,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4049
4049
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
4050
4050
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
4051
4051
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
4052
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
4053
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
4052
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
4053
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
4054
4054
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4055
4055
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4056
4056
|
} | undefined>]>>]>>;
|
|
@@ -4060,8 +4060,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4060
4060
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
4061
4061
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
4062
4062
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
4063
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
4064
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
4063
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
4064
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
4065
4065
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4066
4066
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4067
4067
|
} | undefined>]>>]>>;
|
|
@@ -4071,8 +4071,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4071
4071
|
$lt: import("@feathersjs/typebox").TAny;
|
|
4072
4072
|
$lte: import("@feathersjs/typebox").TAny;
|
|
4073
4073
|
$ne: import("@feathersjs/typebox").TAny;
|
|
4074
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4075
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4074
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4075
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4076
4076
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4077
4077
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4078
4078
|
} | undefined>]>>]>>;
|
|
@@ -4082,8 +4082,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4082
4082
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
4083
4083
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
4084
4084
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
4085
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
4086
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
4085
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
4086
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
4087
4087
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4088
4088
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4089
4089
|
} | undefined>]>>]>>;
|
|
@@ -4093,8 +4093,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4093
4093
|
$lt: import("@feathersjs/typebox").TAny;
|
|
4094
4094
|
$lte: import("@feathersjs/typebox").TAny;
|
|
4095
4095
|
$ne: import("@feathersjs/typebox").TAny;
|
|
4096
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4097
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4096
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4097
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4098
4098
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4099
4099
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4100
4100
|
} | undefined>]>>]>>;
|
|
@@ -4107,8 +4107,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4107
4107
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4108
4108
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4109
4109
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4110
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
4111
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
4110
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
4111
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
4112
4112
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4113
4113
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4114
4114
|
} | undefined>]>>]>>;
|
|
@@ -4118,8 +4118,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4118
4118
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
4119
4119
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
4120
4120
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
4121
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
4122
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
4121
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
4122
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
4123
4123
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4124
4124
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4125
4125
|
} | undefined>]>>]>>;
|
|
@@ -4129,8 +4129,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4129
4129
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
4130
4130
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
4131
4131
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
4132
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
4133
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
4132
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
4133
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
4134
4134
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4135
4135
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4136
4136
|
} | undefined>]>>]>>;
|
|
@@ -4140,8 +4140,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4140
4140
|
$lt: import("@feathersjs/typebox").TAny;
|
|
4141
4141
|
$lte: import("@feathersjs/typebox").TAny;
|
|
4142
4142
|
$ne: import("@feathersjs/typebox").TAny;
|
|
4143
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4144
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4143
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4144
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4145
4145
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4146
4146
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4147
4147
|
} | undefined>]>>]>>;
|
|
@@ -4151,8 +4151,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4151
4151
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
4152
4152
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
4153
4153
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
4154
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
4155
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
4154
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
4155
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
4156
4156
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4157
4157
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4158
4158
|
} | undefined>]>>]>>;
|
|
@@ -4162,8 +4162,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4162
4162
|
$lt: import("@feathersjs/typebox").TAny;
|
|
4163
4163
|
$lte: import("@feathersjs/typebox").TAny;
|
|
4164
4164
|
$ne: import("@feathersjs/typebox").TAny;
|
|
4165
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4166
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4165
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4166
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4167
4167
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4168
4168
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4169
4169
|
} | undefined>]>>]>>;
|
|
@@ -4175,8 +4175,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4175
4175
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4176
4176
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4177
4177
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4178
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
4179
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
4178
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
4179
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
4180
4180
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4181
4181
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4182
4182
|
} | undefined>]>>]>>;
|
|
@@ -4186,8 +4186,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4186
4186
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
4187
4187
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
4188
4188
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
4189
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
4190
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
4189
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
4190
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>>;
|
|
4191
4191
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4192
4192
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4193
4193
|
} | undefined>]>>]>>;
|
|
@@ -4197,8 +4197,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4197
4197
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
4198
4198
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
4199
4199
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
4200
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
4201
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
4200
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
4201
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
4202
4202
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4203
4203
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4204
4204
|
} | undefined>]>>]>>;
|
|
@@ -4208,8 +4208,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4208
4208
|
$lt: import("@feathersjs/typebox").TAny;
|
|
4209
4209
|
$lte: import("@feathersjs/typebox").TAny;
|
|
4210
4210
|
$ne: import("@feathersjs/typebox").TAny;
|
|
4211
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4212
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4211
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4212
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4213
4213
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4214
4214
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4215
4215
|
} | undefined>]>>]>>;
|
|
@@ -4219,8 +4219,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4219
4219
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
4220
4220
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
4221
4221
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
4222
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
4223
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
4222
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
4223
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
4224
4224
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4225
4225
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4226
4226
|
} | undefined>]>>]>>;
|
|
@@ -4230,8 +4230,8 @@ export declare const tradersPodsQuerySchema: import("@feathersjs/typebox").TInte
|
|
|
4230
4230
|
$lt: import("@feathersjs/typebox").TAny;
|
|
4231
4231
|
$lte: import("@feathersjs/typebox").TAny;
|
|
4232
4232
|
$ne: import("@feathersjs/typebox").TAny;
|
|
4233
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4234
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4233
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4234
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
4235
4235
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4236
4236
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
4237
4237
|
} | undefined>]>>]>>;
|
|
@@ -4257,8 +4257,8 @@ export declare const tradersPodsQueryResolver: import("@feathersjs/schema").Reso
|
|
|
4257
4257
|
$lt?: string | undefined;
|
|
4258
4258
|
$lte?: string | undefined;
|
|
4259
4259
|
$ne?: string | undefined;
|
|
4260
|
-
$in: string[];
|
|
4261
|
-
$nin: string[];
|
|
4260
|
+
$in: string | string[];
|
|
4261
|
+
$nin: string | string[];
|
|
4262
4262
|
} & {}> | undefined;
|
|
4263
4263
|
provider?: "docker" | Partial<{
|
|
4264
4264
|
$gt: "docker";
|
|
@@ -4266,8 +4266,8 @@ export declare const tradersPodsQueryResolver: import("@feathersjs/schema").Reso
|
|
|
4266
4266
|
$lt: "docker";
|
|
4267
4267
|
$lte: "docker";
|
|
4268
4268
|
$ne: "docker";
|
|
4269
|
-
$in: "docker"[];
|
|
4270
|
-
$nin: "docker"[];
|
|
4269
|
+
$in: "docker" | "docker"[];
|
|
4270
|
+
$nin: "docker" | "docker"[];
|
|
4271
4271
|
} & {}> | undefined;
|
|
4272
4272
|
_id?: string | {} | Partial<{
|
|
4273
4273
|
$gt: string | {};
|
|
@@ -4275,8 +4275,8 @@ export declare const tradersPodsQueryResolver: import("@feathersjs/schema").Reso
|
|
|
4275
4275
|
$lt: string | {};
|
|
4276
4276
|
$lte: string | {};
|
|
4277
4277
|
$ne: string | {};
|
|
4278
|
-
$in: (string | {})[];
|
|
4279
|
-
$nin: (string | {})[];
|
|
4278
|
+
$in: string | {} | (string | {})[];
|
|
4279
|
+
$nin: string | {} | (string | {})[];
|
|
4280
4280
|
} & {}> | undefined;
|
|
4281
4281
|
options?: any;
|
|
4282
4282
|
exchangeId?: string | Partial<{
|
|
@@ -4285,8 +4285,8 @@ export declare const tradersPodsQueryResolver: import("@feathersjs/schema").Reso
|
|
|
4285
4285
|
$lt: string;
|
|
4286
4286
|
$lte: string;
|
|
4287
4287
|
$ne: string;
|
|
4288
|
-
$in: string[];
|
|
4289
|
-
$nin: string[];
|
|
4288
|
+
$in: string | string[];
|
|
4289
|
+
$nin: string | string[];
|
|
4290
4290
|
} & {}> | undefined;
|
|
4291
4291
|
pod?: any;
|
|
4292
4292
|
} | {
|
|
@@ -4297,8 +4297,8 @@ export declare const tradersPodsQueryResolver: import("@feathersjs/schema").Reso
|
|
|
4297
4297
|
$lt?: string | undefined;
|
|
4298
4298
|
$lte?: string | undefined;
|
|
4299
4299
|
$ne?: string | undefined;
|
|
4300
|
-
$in: string[];
|
|
4301
|
-
$nin: string[];
|
|
4300
|
+
$in: string | string[];
|
|
4301
|
+
$nin: string | string[];
|
|
4302
4302
|
} & {}> | undefined;
|
|
4303
4303
|
provider?: "docker" | Partial<{
|
|
4304
4304
|
$gt: "docker";
|
|
@@ -4306,8 +4306,8 @@ export declare const tradersPodsQueryResolver: import("@feathersjs/schema").Reso
|
|
|
4306
4306
|
$lt: "docker";
|
|
4307
4307
|
$lte: "docker";
|
|
4308
4308
|
$ne: "docker";
|
|
4309
|
-
$in: "docker"[];
|
|
4310
|
-
$nin: "docker"[];
|
|
4309
|
+
$in: "docker" | "docker"[];
|
|
4310
|
+
$nin: "docker" | "docker"[];
|
|
4311
4311
|
} & {}> | undefined;
|
|
4312
4312
|
_id?: string | {} | Partial<{
|
|
4313
4313
|
$gt: string | {};
|
|
@@ -4315,8 +4315,8 @@ export declare const tradersPodsQueryResolver: import("@feathersjs/schema").Reso
|
|
|
4315
4315
|
$lt: string | {};
|
|
4316
4316
|
$lte: string | {};
|
|
4317
4317
|
$ne: string | {};
|
|
4318
|
-
$in: (string | {})[];
|
|
4319
|
-
$nin: (string | {})[];
|
|
4318
|
+
$in: string | {} | (string | {})[];
|
|
4319
|
+
$nin: string | {} | (string | {})[];
|
|
4320
4320
|
} & {}> | undefined;
|
|
4321
4321
|
options?: any;
|
|
4322
4322
|
exchangeId?: string | Partial<{
|
|
@@ -4325,8 +4325,8 @@ export declare const tradersPodsQueryResolver: import("@feathersjs/schema").Reso
|
|
|
4325
4325
|
$lt: string;
|
|
4326
4326
|
$lte: string;
|
|
4327
4327
|
$ne: string;
|
|
4328
|
-
$in: string[];
|
|
4329
|
-
$nin: string[];
|
|
4328
|
+
$in: string | string[];
|
|
4329
|
+
$nin: string | string[];
|
|
4330
4330
|
} & {}> | undefined;
|
|
4331
4331
|
pod?: any;
|
|
4332
4332
|
}[];
|
|
@@ -4338,8 +4338,8 @@ export declare const tradersPodsQueryResolver: import("@feathersjs/schema").Reso
|
|
|
4338
4338
|
$lt?: string | undefined;
|
|
4339
4339
|
$lte?: string | undefined;
|
|
4340
4340
|
$ne?: string | undefined;
|
|
4341
|
-
$in: string[];
|
|
4342
|
-
$nin: string[];
|
|
4341
|
+
$in: string | string[];
|
|
4342
|
+
$nin: string | string[];
|
|
4343
4343
|
} & {}> | undefined;
|
|
4344
4344
|
provider?: "docker" | Partial<{
|
|
4345
4345
|
$gt: "docker";
|
|
@@ -4347,8 +4347,8 @@ export declare const tradersPodsQueryResolver: import("@feathersjs/schema").Reso
|
|
|
4347
4347
|
$lt: "docker";
|
|
4348
4348
|
$lte: "docker";
|
|
4349
4349
|
$ne: "docker";
|
|
4350
|
-
$in: "docker"[];
|
|
4351
|
-
$nin: "docker"[];
|
|
4350
|
+
$in: "docker" | "docker"[];
|
|
4351
|
+
$nin: "docker" | "docker"[];
|
|
4352
4352
|
} & {}> | undefined;
|
|
4353
4353
|
_id?: string | {} | Partial<{
|
|
4354
4354
|
$gt: string | {};
|
|
@@ -4356,8 +4356,8 @@ export declare const tradersPodsQueryResolver: import("@feathersjs/schema").Reso
|
|
|
4356
4356
|
$lt: string | {};
|
|
4357
4357
|
$lte: string | {};
|
|
4358
4358
|
$ne: string | {};
|
|
4359
|
-
$in: (string | {})[];
|
|
4360
|
-
$nin: (string | {})[];
|
|
4359
|
+
$in: string | {} | (string | {})[];
|
|
4360
|
+
$nin: string | {} | (string | {})[];
|
|
4361
4361
|
} & {}> | undefined;
|
|
4362
4362
|
options?: any;
|
|
4363
4363
|
exchangeId?: string | Partial<{
|
|
@@ -4366,8 +4366,8 @@ export declare const tradersPodsQueryResolver: import("@feathersjs/schema").Reso
|
|
|
4366
4366
|
$lt: string;
|
|
4367
4367
|
$lte: string;
|
|
4368
4368
|
$ne: string;
|
|
4369
|
-
$in: string[];
|
|
4370
|
-
$nin: string[];
|
|
4369
|
+
$in: string | string[];
|
|
4370
|
+
$nin: string | string[];
|
|
4371
4371
|
} & {}> | undefined;
|
|
4372
4372
|
pod?: any;
|
|
4373
4373
|
}[];
|
|
@@ -4378,8 +4378,8 @@ export declare const tradersPodsQueryResolver: import("@feathersjs/schema").Reso
|
|
|
4378
4378
|
$lt?: string | undefined;
|
|
4379
4379
|
$lte?: string | undefined;
|
|
4380
4380
|
$ne?: string | undefined;
|
|
4381
|
-
$in: string[];
|
|
4382
|
-
$nin: string[];
|
|
4381
|
+
$in: string | string[];
|
|
4382
|
+
$nin: string | string[];
|
|
4383
4383
|
} & {}> | undefined;
|
|
4384
4384
|
provider?: "docker" | Partial<{
|
|
4385
4385
|
$gt: "docker";
|
|
@@ -4387,8 +4387,8 @@ export declare const tradersPodsQueryResolver: import("@feathersjs/schema").Reso
|
|
|
4387
4387
|
$lt: "docker";
|
|
4388
4388
|
$lte: "docker";
|
|
4389
4389
|
$ne: "docker";
|
|
4390
|
-
$in: "docker"[];
|
|
4391
|
-
$nin: "docker"[];
|
|
4390
|
+
$in: "docker" | "docker"[];
|
|
4391
|
+
$nin: "docker" | "docker"[];
|
|
4392
4392
|
} & {}> | undefined;
|
|
4393
4393
|
_id?: string | {} | Partial<{
|
|
4394
4394
|
$gt: string | {};
|
|
@@ -4396,8 +4396,8 @@ export declare const tradersPodsQueryResolver: import("@feathersjs/schema").Reso
|
|
|
4396
4396
|
$lt: string | {};
|
|
4397
4397
|
$lte: string | {};
|
|
4398
4398
|
$ne: string | {};
|
|
4399
|
-
$in: (string | {})[];
|
|
4400
|
-
$nin: (string | {})[];
|
|
4399
|
+
$in: string | {} | (string | {})[];
|
|
4400
|
+
$nin: string | {} | (string | {})[];
|
|
4401
4401
|
} & {}> | undefined;
|
|
4402
4402
|
options?: any;
|
|
4403
4403
|
exchangeId?: string | Partial<{
|
|
@@ -4406,8 +4406,8 @@ export declare const tradersPodsQueryResolver: import("@feathersjs/schema").Reso
|
|
|
4406
4406
|
$lt: string;
|
|
4407
4407
|
$lte: string;
|
|
4408
4408
|
$ne: string;
|
|
4409
|
-
$in: string[];
|
|
4410
|
-
$nin: string[];
|
|
4409
|
+
$in: string | string[];
|
|
4410
|
+
$nin: string | string[];
|
|
4411
4411
|
} & {}> | undefined;
|
|
4412
4412
|
pod?: any;
|
|
4413
4413
|
} & {}, HookContext<TradersPodsService<import("./pods.class").TradersPodsParams>>>;
|