@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
|
@@ -58,7 +58,6 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
58
58
|
traderId: import("@feathersjs/typebox").TAny;
|
|
59
59
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
60
60
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
61
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
62
61
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
63
62
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
64
63
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -183,6 +182,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
183
182
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
184
183
|
}>>;
|
|
185
184
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
185
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
186
186
|
host: import("@feathersjs/typebox").TString<string>;
|
|
187
187
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
188
188
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -244,7 +244,6 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
244
244
|
traderId: import("@feathersjs/typebox").TAny;
|
|
245
245
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
246
246
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
247
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
248
247
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
249
248
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
250
249
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -369,6 +368,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
369
368
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
370
369
|
}>>;
|
|
371
370
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
371
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
372
372
|
host: import("@feathersjs/typebox").TString<string>;
|
|
373
373
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
374
374
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -536,7 +536,6 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
536
536
|
traderId: import("@feathersjs/typebox").TAny;
|
|
537
537
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
538
538
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
539
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
540
539
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
541
540
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
542
541
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -661,6 +660,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
661
660
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
662
661
|
}>>;
|
|
663
662
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
663
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
664
664
|
host: import("@feathersjs/typebox").TString<string>;
|
|
665
665
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
666
666
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -671,7 +671,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
671
671
|
name: import("@feathersjs/typebox").TString<string>;
|
|
672
672
|
type: import("@feathersjs/typebox").TString<string>;
|
|
673
673
|
description: import("@feathersjs/typebox").TString<string>;
|
|
674
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
674
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
675
675
|
values: import("@feathersjs/typebox").TAny;
|
|
676
676
|
}>>>;
|
|
677
677
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -690,27 +690,23 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
690
690
|
export type TradersPodsApi = Static<typeof tradersPodsApiSchema>;
|
|
691
691
|
export declare const tradersPodsApiValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
692
692
|
export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolver<{
|
|
693
|
-
options?: any;
|
|
694
693
|
'traders/pods'?: Partial<{
|
|
695
694
|
host?: string | undefined;
|
|
696
695
|
stop?: boolean | undefined;
|
|
697
696
|
provider: "docker";
|
|
698
697
|
_id: string | {};
|
|
699
698
|
options: any;
|
|
700
|
-
strategyId: string | {};
|
|
701
|
-
exchangeId: string;
|
|
702
699
|
exchange: Partial<{
|
|
703
700
|
password?: string | undefined;
|
|
704
701
|
name?: any;
|
|
705
702
|
apiKey?: string | undefined;
|
|
703
|
+
token?: string | undefined;
|
|
706
704
|
secret?: string | undefined;
|
|
707
705
|
avatar?: any;
|
|
708
706
|
createdAt?: any;
|
|
709
707
|
updatedAt?: any;
|
|
710
|
-
|
|
711
|
-
which?: string | undefined;
|
|
708
|
+
login?: string | undefined;
|
|
712
709
|
connected?: boolean | undefined;
|
|
713
|
-
token?: string | undefined;
|
|
714
710
|
downloaded?: {
|
|
715
711
|
updatedAt: any;
|
|
716
712
|
size: string;
|
|
@@ -738,15 +734,17 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
738
734
|
}[] | undefined;
|
|
739
735
|
whitelist?: any[] | undefined;
|
|
740
736
|
ccxt_async_config?: any;
|
|
737
|
+
which?: string | undefined;
|
|
741
738
|
requiredCredentials?: any;
|
|
742
739
|
uid?: string | undefined;
|
|
743
|
-
login?: string | undefined;
|
|
744
740
|
twofa?: string | undefined;
|
|
745
741
|
privateKey?: string | undefined;
|
|
746
742
|
walletAddress?: string | undefined;
|
|
743
|
+
userId?: string | {} | undefined;
|
|
747
744
|
__v?: any;
|
|
748
745
|
_id: string | {};
|
|
749
746
|
}>;
|
|
747
|
+
exchangeId: string;
|
|
750
748
|
strategy: Partial<{
|
|
751
749
|
_id?: string | {} | undefined;
|
|
752
750
|
traders?: {
|
|
@@ -758,19 +756,19 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
758
756
|
chat_id: any;
|
|
759
757
|
allow_custom_messages: boolean;
|
|
760
758
|
notification_settings: {
|
|
761
|
-
status: "silent" | "on" | "off";
|
|
762
759
|
entry: "silent" | "on" | "off";
|
|
763
760
|
exit: {
|
|
761
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
764
762
|
roi: "silent" | "on" | "off";
|
|
765
763
|
emergency_exit: "silent" | "on" | "off";
|
|
766
764
|
force_exit: "silent" | "on" | "off";
|
|
767
765
|
exit_signal: "silent" | "on" | "off";
|
|
768
766
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
769
767
|
stop_loss: "silent" | "on" | "off";
|
|
770
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
771
768
|
custom_exit: "silent" | "on" | "off";
|
|
772
769
|
partial_exit: "silent" | "on" | "off";
|
|
773
770
|
};
|
|
771
|
+
status: "silent" | "on" | "off";
|
|
774
772
|
warning: "silent" | "on" | "off";
|
|
775
773
|
startup: "silent" | "on" | "off";
|
|
776
774
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -785,8 +783,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
785
783
|
reload: boolean;
|
|
786
784
|
balance_dust_level: number;
|
|
787
785
|
} | undefined;
|
|
788
|
-
dry_run_wallet?: number | undefined;
|
|
789
|
-
max_open_trades?: number | undefined;
|
|
790
786
|
plugins?: {
|
|
791
787
|
number_assets?: number | undefined;
|
|
792
788
|
refresh_period?: number | undefined;
|
|
@@ -795,6 +791,8 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
795
791
|
removeRecentlyListed?: boolean | undefined;
|
|
796
792
|
removeRecentlyListedDays?: number | undefined;
|
|
797
793
|
} | undefined;
|
|
794
|
+
dry_run_wallet?: number | undefined;
|
|
795
|
+
max_open_trades?: number | undefined;
|
|
798
796
|
fiat_display_currency?: string | undefined;
|
|
799
797
|
unfilledtimeout?: {
|
|
800
798
|
entry: number;
|
|
@@ -808,37 +806,36 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
808
806
|
enabled: boolean;
|
|
809
807
|
format: string;
|
|
810
808
|
webhookstatus: {
|
|
811
|
-
|
|
809
|
+
userId: string;
|
|
812
810
|
event: string;
|
|
813
811
|
status: string;
|
|
814
|
-
|
|
812
|
+
traderId: any;
|
|
815
813
|
};
|
|
816
814
|
webhookentry: {
|
|
817
|
-
|
|
818
|
-
traderId: any;
|
|
819
|
-
stake_amount: string;
|
|
815
|
+
userId: string;
|
|
820
816
|
stake_currency: string;
|
|
817
|
+
stake_amount: string;
|
|
821
818
|
event: string;
|
|
822
|
-
|
|
819
|
+
traderId: any;
|
|
823
820
|
pair: string;
|
|
824
821
|
fiat_currency: string;
|
|
825
822
|
};
|
|
826
823
|
webhookentrycancel: {
|
|
827
824
|
limit: string;
|
|
828
|
-
|
|
829
|
-
stake_amount: string;
|
|
825
|
+
userId: string;
|
|
830
826
|
stake_currency: string;
|
|
827
|
+
stake_amount: string;
|
|
831
828
|
event: string;
|
|
832
|
-
|
|
829
|
+
traderId: any;
|
|
833
830
|
pair: string;
|
|
834
831
|
fiat_currency: string;
|
|
835
832
|
};
|
|
836
833
|
webhookentryfill: {
|
|
837
|
-
|
|
838
|
-
stake_amount: string;
|
|
834
|
+
userId: string;
|
|
839
835
|
stake_currency: string;
|
|
836
|
+
stake_amount: string;
|
|
840
837
|
event: string;
|
|
841
|
-
|
|
838
|
+
traderId: any;
|
|
842
839
|
pair: string;
|
|
843
840
|
trade_id: string;
|
|
844
841
|
open_rate: string;
|
|
@@ -847,10 +844,10 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
847
844
|
};
|
|
848
845
|
webhookexit: {
|
|
849
846
|
limit: string;
|
|
850
|
-
|
|
847
|
+
userId: string;
|
|
851
848
|
stake_currency: string;
|
|
852
849
|
event: string;
|
|
853
|
-
|
|
850
|
+
traderId: any;
|
|
854
851
|
pair: string;
|
|
855
852
|
fiat_currency: string;
|
|
856
853
|
trade_id: string;
|
|
@@ -865,22 +862,23 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
865
862
|
};
|
|
866
863
|
webhookexitcancel: {
|
|
867
864
|
limit: string;
|
|
868
|
-
|
|
865
|
+
userId: string;
|
|
869
866
|
stake_currency: string;
|
|
870
867
|
event: string;
|
|
871
|
-
|
|
868
|
+
traderId: any;
|
|
872
869
|
pair: string;
|
|
873
870
|
profit_amount: string;
|
|
874
871
|
profit_ratio: string;
|
|
875
872
|
};
|
|
876
873
|
webhookexitfill: {
|
|
877
|
-
traderId: any;
|
|
878
|
-
event: string;
|
|
879
874
|
userId: string;
|
|
875
|
+
event: string;
|
|
876
|
+
traderId: any;
|
|
880
877
|
pair: string;
|
|
881
878
|
close_rate: string;
|
|
882
879
|
};
|
|
883
880
|
} | undefined;
|
|
881
|
+
reset?: boolean | undefined;
|
|
884
882
|
host: string;
|
|
885
883
|
name: any;
|
|
886
884
|
provider: "docker";
|
|
@@ -890,20 +888,20 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
890
888
|
_id: string | {};
|
|
891
889
|
createdAt: any;
|
|
892
890
|
updatedAt: any;
|
|
893
|
-
|
|
894
|
-
strategyId: string | {};
|
|
895
|
-
stake_amount: string | number;
|
|
896
|
-
stake_currency: string;
|
|
897
|
-
exchangeId: any;
|
|
898
|
-
userId: any;
|
|
891
|
+
connected: boolean;
|
|
899
892
|
which: string;
|
|
893
|
+
userId: any;
|
|
894
|
+
"traders/pods": any;
|
|
900
895
|
exchange: any;
|
|
901
|
-
|
|
896
|
+
exchangeId: any;
|
|
897
|
+
stake_currency: string;
|
|
898
|
+
stake_amount: string | number;
|
|
902
899
|
dry_run: boolean;
|
|
903
900
|
handling: string;
|
|
904
901
|
initial_state: string;
|
|
905
902
|
pairlists: any;
|
|
906
903
|
strategy: any;
|
|
904
|
+
strategyId: string | {};
|
|
907
905
|
entry_pricing: {
|
|
908
906
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
909
907
|
use_order_book?: boolean | undefined;
|
|
@@ -923,35 +921,34 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
923
921
|
api_server: {
|
|
924
922
|
password: string;
|
|
925
923
|
enabled: boolean;
|
|
924
|
+
username: string;
|
|
926
925
|
listen_ip_address: string;
|
|
927
926
|
listen_port: number;
|
|
928
927
|
verbosity: string;
|
|
929
928
|
jwt_secret_key: string;
|
|
930
929
|
CORS_origins: string[];
|
|
931
|
-
username: string;
|
|
932
930
|
};
|
|
933
931
|
pod: string;
|
|
934
932
|
}[] | undefined;
|
|
935
933
|
createdAt?: any;
|
|
936
934
|
updatedAt?: any;
|
|
935
|
+
userId?: string | {} | undefined;
|
|
937
936
|
'strategies/templates'?: {
|
|
938
937
|
_id?: string | {} | undefined;
|
|
938
|
+
createdAt?: any;
|
|
939
939
|
values: any;
|
|
940
940
|
name: string;
|
|
941
|
-
createdAt: any;
|
|
942
941
|
description: string;
|
|
943
942
|
type: string;
|
|
944
943
|
} | undefined;
|
|
944
|
+
file?: any;
|
|
945
|
+
templateId?: string | {} | undefined;
|
|
946
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
945
947
|
stoploss?: number | undefined;
|
|
946
948
|
minimal_roi?: {
|
|
947
949
|
minutes: number;
|
|
948
950
|
profit: number;
|
|
949
951
|
}[] | undefined;
|
|
950
|
-
results?: unknown;
|
|
951
|
-
userId?: string | {} | undefined;
|
|
952
|
-
file?: any;
|
|
953
|
-
templateId?: string | {} | undefined;
|
|
954
|
-
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
955
952
|
exit_sell_signal?: boolean | undefined;
|
|
956
953
|
exit_profit_only?: boolean | undefined;
|
|
957
954
|
exit_profit_offset?: number | undefined;
|
|
@@ -960,10 +957,10 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
960
957
|
stoploss?: string | undefined;
|
|
961
958
|
entry?: "Limit" | "Market" | undefined;
|
|
962
959
|
exit?: "Limit" | "Market" | undefined;
|
|
963
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
964
960
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
965
961
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
966
962
|
forcesell?: "Limit" | "Market" | undefined;
|
|
963
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
967
964
|
stoploss_on_exchange_interval?: number | undefined;
|
|
968
965
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
969
966
|
} | undefined;
|
|
@@ -995,10 +992,12 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
995
992
|
}[] | undefined;
|
|
996
993
|
indicators?: unknown[] | undefined;
|
|
997
994
|
code?: unknown;
|
|
995
|
+
results?: unknown;
|
|
998
996
|
configured?: boolean | undefined;
|
|
999
997
|
name: any;
|
|
1000
998
|
'strategies/indicators': any;
|
|
1001
999
|
}>;
|
|
1000
|
+
strategyId: string | {};
|
|
1002
1001
|
pod: any;
|
|
1003
1002
|
trader: Partial<{
|
|
1004
1003
|
telegram?: {
|
|
@@ -1009,19 +1008,19 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1009
1008
|
chat_id: any;
|
|
1010
1009
|
allow_custom_messages: boolean;
|
|
1011
1010
|
notification_settings: {
|
|
1012
|
-
status: "silent" | "on" | "off";
|
|
1013
1011
|
entry: "silent" | "on" | "off";
|
|
1014
1012
|
exit: {
|
|
1013
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1015
1014
|
roi: "silent" | "on" | "off";
|
|
1016
1015
|
emergency_exit: "silent" | "on" | "off";
|
|
1017
1016
|
force_exit: "silent" | "on" | "off";
|
|
1018
1017
|
exit_signal: "silent" | "on" | "off";
|
|
1019
1018
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
1020
1019
|
stop_loss: "silent" | "on" | "off";
|
|
1021
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1022
1020
|
custom_exit: "silent" | "on" | "off";
|
|
1023
1021
|
partial_exit: "silent" | "on" | "off";
|
|
1024
1022
|
};
|
|
1023
|
+
status: "silent" | "on" | "off";
|
|
1025
1024
|
warning: "silent" | "on" | "off";
|
|
1026
1025
|
startup: "silent" | "on" | "off";
|
|
1027
1026
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -1036,8 +1035,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1036
1035
|
reload: boolean;
|
|
1037
1036
|
balance_dust_level: number;
|
|
1038
1037
|
} | undefined;
|
|
1039
|
-
dry_run_wallet?: number | undefined;
|
|
1040
|
-
max_open_trades?: number | undefined;
|
|
1041
1038
|
plugins?: {
|
|
1042
1039
|
number_assets?: number | undefined;
|
|
1043
1040
|
refresh_period?: number | undefined;
|
|
@@ -1046,6 +1043,8 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1046
1043
|
removeRecentlyListed?: boolean | undefined;
|
|
1047
1044
|
removeRecentlyListedDays?: number | undefined;
|
|
1048
1045
|
} | undefined;
|
|
1046
|
+
dry_run_wallet?: number | undefined;
|
|
1047
|
+
max_open_trades?: number | undefined;
|
|
1049
1048
|
fiat_display_currency?: string | undefined;
|
|
1050
1049
|
unfilledtimeout?: {
|
|
1051
1050
|
entry: number;
|
|
@@ -1059,37 +1058,36 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1059
1058
|
enabled: boolean;
|
|
1060
1059
|
format: string;
|
|
1061
1060
|
webhookstatus: {
|
|
1062
|
-
|
|
1061
|
+
userId: string;
|
|
1063
1062
|
event: string;
|
|
1064
1063
|
status: string;
|
|
1065
|
-
|
|
1064
|
+
traderId: any;
|
|
1066
1065
|
};
|
|
1067
1066
|
webhookentry: {
|
|
1068
|
-
|
|
1069
|
-
traderId: any;
|
|
1070
|
-
stake_amount: string;
|
|
1067
|
+
userId: string;
|
|
1071
1068
|
stake_currency: string;
|
|
1069
|
+
stake_amount: string;
|
|
1072
1070
|
event: string;
|
|
1073
|
-
|
|
1071
|
+
traderId: any;
|
|
1074
1072
|
pair: string;
|
|
1075
1073
|
fiat_currency: string;
|
|
1076
1074
|
};
|
|
1077
1075
|
webhookentrycancel: {
|
|
1078
1076
|
limit: string;
|
|
1079
|
-
|
|
1080
|
-
stake_amount: string;
|
|
1077
|
+
userId: string;
|
|
1081
1078
|
stake_currency: string;
|
|
1079
|
+
stake_amount: string;
|
|
1082
1080
|
event: string;
|
|
1083
|
-
|
|
1081
|
+
traderId: any;
|
|
1084
1082
|
pair: string;
|
|
1085
1083
|
fiat_currency: string;
|
|
1086
1084
|
};
|
|
1087
1085
|
webhookentryfill: {
|
|
1088
|
-
|
|
1089
|
-
stake_amount: string;
|
|
1086
|
+
userId: string;
|
|
1090
1087
|
stake_currency: string;
|
|
1088
|
+
stake_amount: string;
|
|
1091
1089
|
event: string;
|
|
1092
|
-
|
|
1090
|
+
traderId: any;
|
|
1093
1091
|
pair: string;
|
|
1094
1092
|
trade_id: string;
|
|
1095
1093
|
open_rate: string;
|
|
@@ -1098,10 +1096,10 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1098
1096
|
};
|
|
1099
1097
|
webhookexit: {
|
|
1100
1098
|
limit: string;
|
|
1101
|
-
|
|
1099
|
+
userId: string;
|
|
1102
1100
|
stake_currency: string;
|
|
1103
1101
|
event: string;
|
|
1104
|
-
|
|
1102
|
+
traderId: any;
|
|
1105
1103
|
pair: string;
|
|
1106
1104
|
fiat_currency: string;
|
|
1107
1105
|
trade_id: string;
|
|
@@ -1116,22 +1114,23 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1116
1114
|
};
|
|
1117
1115
|
webhookexitcancel: {
|
|
1118
1116
|
limit: string;
|
|
1119
|
-
|
|
1117
|
+
userId: string;
|
|
1120
1118
|
stake_currency: string;
|
|
1121
1119
|
event: string;
|
|
1122
|
-
|
|
1120
|
+
traderId: any;
|
|
1123
1121
|
pair: string;
|
|
1124
1122
|
profit_amount: string;
|
|
1125
1123
|
profit_ratio: string;
|
|
1126
1124
|
};
|
|
1127
1125
|
webhookexitfill: {
|
|
1128
|
-
traderId: any;
|
|
1129
|
-
event: string;
|
|
1130
1126
|
userId: string;
|
|
1127
|
+
event: string;
|
|
1128
|
+
traderId: any;
|
|
1131
1129
|
pair: string;
|
|
1132
1130
|
close_rate: string;
|
|
1133
1131
|
};
|
|
1134
1132
|
} | undefined;
|
|
1133
|
+
reset?: boolean | undefined;
|
|
1135
1134
|
host: string;
|
|
1136
1135
|
name: any;
|
|
1137
1136
|
provider: "docker";
|
|
@@ -1141,20 +1140,20 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1141
1140
|
_id: string | {};
|
|
1142
1141
|
createdAt: any;
|
|
1143
1142
|
updatedAt: any;
|
|
1144
|
-
|
|
1145
|
-
strategyId: string | {};
|
|
1146
|
-
stake_amount: string | number;
|
|
1147
|
-
stake_currency: string;
|
|
1148
|
-
exchangeId: any;
|
|
1149
|
-
userId: any;
|
|
1143
|
+
connected: boolean;
|
|
1150
1144
|
which: string;
|
|
1145
|
+
userId: any;
|
|
1146
|
+
"traders/pods": any;
|
|
1151
1147
|
exchange: any;
|
|
1152
|
-
|
|
1148
|
+
exchangeId: any;
|
|
1149
|
+
stake_currency: string;
|
|
1150
|
+
stake_amount: string | number;
|
|
1153
1151
|
dry_run: boolean;
|
|
1154
1152
|
handling: string;
|
|
1155
1153
|
initial_state: string;
|
|
1156
1154
|
pairlists: any;
|
|
1157
1155
|
strategy: any;
|
|
1156
|
+
strategyId: string | {};
|
|
1158
1157
|
entry_pricing: {
|
|
1159
1158
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1160
1159
|
use_order_book?: boolean | undefined;
|
|
@@ -1174,16 +1173,17 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1174
1173
|
api_server: {
|
|
1175
1174
|
password: string;
|
|
1176
1175
|
enabled: boolean;
|
|
1176
|
+
username: string;
|
|
1177
1177
|
listen_ip_address: string;
|
|
1178
1178
|
listen_port: number;
|
|
1179
1179
|
verbosity: string;
|
|
1180
1180
|
jwt_secret_key: string;
|
|
1181
1181
|
CORS_origins: string[];
|
|
1182
|
-
username: string;
|
|
1183
1182
|
};
|
|
1184
1183
|
pod: string;
|
|
1185
1184
|
}>;
|
|
1186
1185
|
}> | undefined;
|
|
1186
|
+
options?: any;
|
|
1187
1187
|
trader?: Partial<{
|
|
1188
1188
|
telegram?: {
|
|
1189
1189
|
access_hash?: string | null | undefined;
|
|
@@ -1193,19 +1193,19 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1193
1193
|
chat_id: any;
|
|
1194
1194
|
allow_custom_messages: boolean;
|
|
1195
1195
|
notification_settings: {
|
|
1196
|
-
status: "silent" | "on" | "off";
|
|
1197
1196
|
entry: "silent" | "on" | "off";
|
|
1198
1197
|
exit: {
|
|
1198
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1199
1199
|
roi: "silent" | "on" | "off";
|
|
1200
1200
|
emergency_exit: "silent" | "on" | "off";
|
|
1201
1201
|
force_exit: "silent" | "on" | "off";
|
|
1202
1202
|
exit_signal: "silent" | "on" | "off";
|
|
1203
1203
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
1204
1204
|
stop_loss: "silent" | "on" | "off";
|
|
1205
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1206
1205
|
custom_exit: "silent" | "on" | "off";
|
|
1207
1206
|
partial_exit: "silent" | "on" | "off";
|
|
1208
1207
|
};
|
|
1208
|
+
status: "silent" | "on" | "off";
|
|
1209
1209
|
warning: "silent" | "on" | "off";
|
|
1210
1210
|
startup: "silent" | "on" | "off";
|
|
1211
1211
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -1220,8 +1220,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1220
1220
|
reload: boolean;
|
|
1221
1221
|
balance_dust_level: number;
|
|
1222
1222
|
} | undefined;
|
|
1223
|
-
dry_run_wallet?: number | undefined;
|
|
1224
|
-
max_open_trades?: number | undefined;
|
|
1225
1223
|
plugins?: {
|
|
1226
1224
|
number_assets?: number | undefined;
|
|
1227
1225
|
refresh_period?: number | undefined;
|
|
@@ -1230,6 +1228,8 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1230
1228
|
removeRecentlyListed?: boolean | undefined;
|
|
1231
1229
|
removeRecentlyListedDays?: number | undefined;
|
|
1232
1230
|
} | undefined;
|
|
1231
|
+
dry_run_wallet?: number | undefined;
|
|
1232
|
+
max_open_trades?: number | undefined;
|
|
1233
1233
|
fiat_display_currency?: string | undefined;
|
|
1234
1234
|
unfilledtimeout?: {
|
|
1235
1235
|
entry: number;
|
|
@@ -1243,37 +1243,36 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1243
1243
|
enabled: boolean;
|
|
1244
1244
|
format: string;
|
|
1245
1245
|
webhookstatus: {
|
|
1246
|
-
|
|
1246
|
+
userId: string;
|
|
1247
1247
|
event: string;
|
|
1248
1248
|
status: string;
|
|
1249
|
-
|
|
1249
|
+
traderId: any;
|
|
1250
1250
|
};
|
|
1251
1251
|
webhookentry: {
|
|
1252
|
-
|
|
1253
|
-
traderId: any;
|
|
1254
|
-
stake_amount: string;
|
|
1252
|
+
userId: string;
|
|
1255
1253
|
stake_currency: string;
|
|
1254
|
+
stake_amount: string;
|
|
1256
1255
|
event: string;
|
|
1257
|
-
|
|
1256
|
+
traderId: any;
|
|
1258
1257
|
pair: string;
|
|
1259
1258
|
fiat_currency: string;
|
|
1260
1259
|
};
|
|
1261
1260
|
webhookentrycancel: {
|
|
1262
1261
|
limit: string;
|
|
1263
|
-
|
|
1264
|
-
stake_amount: string;
|
|
1262
|
+
userId: string;
|
|
1265
1263
|
stake_currency: string;
|
|
1264
|
+
stake_amount: string;
|
|
1266
1265
|
event: string;
|
|
1267
|
-
|
|
1266
|
+
traderId: any;
|
|
1268
1267
|
pair: string;
|
|
1269
1268
|
fiat_currency: string;
|
|
1270
1269
|
};
|
|
1271
1270
|
webhookentryfill: {
|
|
1272
|
-
|
|
1273
|
-
stake_amount: string;
|
|
1271
|
+
userId: string;
|
|
1274
1272
|
stake_currency: string;
|
|
1273
|
+
stake_amount: string;
|
|
1275
1274
|
event: string;
|
|
1276
|
-
|
|
1275
|
+
traderId: any;
|
|
1277
1276
|
pair: string;
|
|
1278
1277
|
trade_id: string;
|
|
1279
1278
|
open_rate: string;
|
|
@@ -1282,10 +1281,10 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1282
1281
|
};
|
|
1283
1282
|
webhookexit: {
|
|
1284
1283
|
limit: string;
|
|
1285
|
-
|
|
1284
|
+
userId: string;
|
|
1286
1285
|
stake_currency: string;
|
|
1287
1286
|
event: string;
|
|
1288
|
-
|
|
1287
|
+
traderId: any;
|
|
1289
1288
|
pair: string;
|
|
1290
1289
|
fiat_currency: string;
|
|
1291
1290
|
trade_id: string;
|
|
@@ -1300,22 +1299,23 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1300
1299
|
};
|
|
1301
1300
|
webhookexitcancel: {
|
|
1302
1301
|
limit: string;
|
|
1303
|
-
|
|
1302
|
+
userId: string;
|
|
1304
1303
|
stake_currency: string;
|
|
1305
1304
|
event: string;
|
|
1306
|
-
|
|
1305
|
+
traderId: any;
|
|
1307
1306
|
pair: string;
|
|
1308
1307
|
profit_amount: string;
|
|
1309
1308
|
profit_ratio: string;
|
|
1310
1309
|
};
|
|
1311
1310
|
webhookexitfill: {
|
|
1312
|
-
traderId: any;
|
|
1313
|
-
event: string;
|
|
1314
1311
|
userId: string;
|
|
1312
|
+
event: string;
|
|
1313
|
+
traderId: any;
|
|
1315
1314
|
pair: string;
|
|
1316
1315
|
close_rate: string;
|
|
1317
1316
|
};
|
|
1318
1317
|
} | undefined;
|
|
1318
|
+
reset?: boolean | undefined;
|
|
1319
1319
|
host: string;
|
|
1320
1320
|
name: any;
|
|
1321
1321
|
provider: "docker";
|
|
@@ -1325,20 +1325,20 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1325
1325
|
_id: string | {};
|
|
1326
1326
|
createdAt: any;
|
|
1327
1327
|
updatedAt: any;
|
|
1328
|
-
|
|
1329
|
-
strategyId: string | {};
|
|
1330
|
-
stake_amount: string | number;
|
|
1331
|
-
stake_currency: string;
|
|
1332
|
-
exchangeId: any;
|
|
1333
|
-
userId: any;
|
|
1328
|
+
connected: boolean;
|
|
1334
1329
|
which: string;
|
|
1330
|
+
userId: any;
|
|
1331
|
+
"traders/pods": any;
|
|
1335
1332
|
exchange: any;
|
|
1336
|
-
|
|
1333
|
+
exchangeId: any;
|
|
1334
|
+
stake_currency: string;
|
|
1335
|
+
stake_amount: string | number;
|
|
1337
1336
|
dry_run: boolean;
|
|
1338
1337
|
handling: string;
|
|
1339
1338
|
initial_state: string;
|
|
1340
1339
|
pairlists: any;
|
|
1341
1340
|
strategy: any;
|
|
1341
|
+
strategyId: string | {};
|
|
1342
1342
|
entry_pricing: {
|
|
1343
1343
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1344
1344
|
use_order_book?: boolean | undefined;
|
|
@@ -1358,45 +1358,41 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1358
1358
|
api_server: {
|
|
1359
1359
|
password: string;
|
|
1360
1360
|
enabled: boolean;
|
|
1361
|
+
username: string;
|
|
1361
1362
|
listen_ip_address: string;
|
|
1362
1363
|
listen_port: number;
|
|
1363
1364
|
verbosity: string;
|
|
1364
1365
|
jwt_secret_key: string;
|
|
1365
1366
|
CORS_origins: string[];
|
|
1366
|
-
username: string;
|
|
1367
1367
|
};
|
|
1368
1368
|
pod: string;
|
|
1369
1369
|
}> | undefined;
|
|
1370
1370
|
_id: string | {};
|
|
1371
1371
|
createdAt: any;
|
|
1372
1372
|
updatedAt: any;
|
|
1373
|
-
traderId: any;
|
|
1374
1373
|
userId: any;
|
|
1374
|
+
traderId: any;
|
|
1375
1375
|
action: string;
|
|
1376
1376
|
result: any;
|
|
1377
1377
|
}, HookContext<TradersPodsApiService<import("./api.class").TradersPodsApiParams>>>;
|
|
1378
1378
|
export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
1379
|
-
options?: any;
|
|
1380
1379
|
'traders/pods'?: Partial<{
|
|
1381
1380
|
host?: string | undefined;
|
|
1382
1381
|
stop?: boolean | undefined;
|
|
1383
1382
|
provider: "docker";
|
|
1384
1383
|
_id: string | {};
|
|
1385
1384
|
options: any;
|
|
1386
|
-
strategyId: string | {};
|
|
1387
|
-
exchangeId: string;
|
|
1388
1385
|
exchange: Partial<{
|
|
1389
1386
|
password?: string | undefined;
|
|
1390
1387
|
name?: any;
|
|
1391
1388
|
apiKey?: string | undefined;
|
|
1389
|
+
token?: string | undefined;
|
|
1392
1390
|
secret?: string | undefined;
|
|
1393
1391
|
avatar?: any;
|
|
1394
1392
|
createdAt?: any;
|
|
1395
1393
|
updatedAt?: any;
|
|
1396
|
-
|
|
1397
|
-
which?: string | undefined;
|
|
1394
|
+
login?: string | undefined;
|
|
1398
1395
|
connected?: boolean | undefined;
|
|
1399
|
-
token?: string | undefined;
|
|
1400
1396
|
downloaded?: {
|
|
1401
1397
|
updatedAt: any;
|
|
1402
1398
|
size: string;
|
|
@@ -1424,15 +1420,17 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1424
1420
|
}[] | undefined;
|
|
1425
1421
|
whitelist?: any[] | undefined;
|
|
1426
1422
|
ccxt_async_config?: any;
|
|
1423
|
+
which?: string | undefined;
|
|
1427
1424
|
requiredCredentials?: any;
|
|
1428
1425
|
uid?: string | undefined;
|
|
1429
|
-
login?: string | undefined;
|
|
1430
1426
|
twofa?: string | undefined;
|
|
1431
1427
|
privateKey?: string | undefined;
|
|
1432
1428
|
walletAddress?: string | undefined;
|
|
1429
|
+
userId?: string | {} | undefined;
|
|
1433
1430
|
__v?: any;
|
|
1434
1431
|
_id: string | {};
|
|
1435
1432
|
}>;
|
|
1433
|
+
exchangeId: string;
|
|
1436
1434
|
strategy: Partial<{
|
|
1437
1435
|
_id?: string | {} | undefined;
|
|
1438
1436
|
traders?: {
|
|
@@ -1444,19 +1442,19 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1444
1442
|
chat_id: any;
|
|
1445
1443
|
allow_custom_messages: boolean;
|
|
1446
1444
|
notification_settings: {
|
|
1447
|
-
status: "silent" | "on" | "off";
|
|
1448
1445
|
entry: "silent" | "on" | "off";
|
|
1449
1446
|
exit: {
|
|
1447
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1450
1448
|
roi: "silent" | "on" | "off";
|
|
1451
1449
|
emergency_exit: "silent" | "on" | "off";
|
|
1452
1450
|
force_exit: "silent" | "on" | "off";
|
|
1453
1451
|
exit_signal: "silent" | "on" | "off";
|
|
1454
1452
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
1455
1453
|
stop_loss: "silent" | "on" | "off";
|
|
1456
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1457
1454
|
custom_exit: "silent" | "on" | "off";
|
|
1458
1455
|
partial_exit: "silent" | "on" | "off";
|
|
1459
1456
|
};
|
|
1457
|
+
status: "silent" | "on" | "off";
|
|
1460
1458
|
warning: "silent" | "on" | "off";
|
|
1461
1459
|
startup: "silent" | "on" | "off";
|
|
1462
1460
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -1471,8 +1469,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1471
1469
|
reload: boolean;
|
|
1472
1470
|
balance_dust_level: number;
|
|
1473
1471
|
} | undefined;
|
|
1474
|
-
dry_run_wallet?: number | undefined;
|
|
1475
|
-
max_open_trades?: number | undefined;
|
|
1476
1472
|
plugins?: {
|
|
1477
1473
|
number_assets?: number | undefined;
|
|
1478
1474
|
refresh_period?: number | undefined;
|
|
@@ -1481,6 +1477,8 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1481
1477
|
removeRecentlyListed?: boolean | undefined;
|
|
1482
1478
|
removeRecentlyListedDays?: number | undefined;
|
|
1483
1479
|
} | undefined;
|
|
1480
|
+
dry_run_wallet?: number | undefined;
|
|
1481
|
+
max_open_trades?: number | undefined;
|
|
1484
1482
|
fiat_display_currency?: string | undefined;
|
|
1485
1483
|
unfilledtimeout?: {
|
|
1486
1484
|
entry: number;
|
|
@@ -1494,37 +1492,36 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1494
1492
|
enabled: boolean;
|
|
1495
1493
|
format: string;
|
|
1496
1494
|
webhookstatus: {
|
|
1497
|
-
|
|
1495
|
+
userId: string;
|
|
1498
1496
|
event: string;
|
|
1499
1497
|
status: string;
|
|
1500
|
-
|
|
1498
|
+
traderId: any;
|
|
1501
1499
|
};
|
|
1502
1500
|
webhookentry: {
|
|
1503
|
-
|
|
1504
|
-
traderId: any;
|
|
1505
|
-
stake_amount: string;
|
|
1501
|
+
userId: string;
|
|
1506
1502
|
stake_currency: string;
|
|
1503
|
+
stake_amount: string;
|
|
1507
1504
|
event: string;
|
|
1508
|
-
|
|
1505
|
+
traderId: any;
|
|
1509
1506
|
pair: string;
|
|
1510
1507
|
fiat_currency: string;
|
|
1511
1508
|
};
|
|
1512
1509
|
webhookentrycancel: {
|
|
1513
1510
|
limit: string;
|
|
1514
|
-
|
|
1515
|
-
stake_amount: string;
|
|
1511
|
+
userId: string;
|
|
1516
1512
|
stake_currency: string;
|
|
1513
|
+
stake_amount: string;
|
|
1517
1514
|
event: string;
|
|
1518
|
-
|
|
1515
|
+
traderId: any;
|
|
1519
1516
|
pair: string;
|
|
1520
1517
|
fiat_currency: string;
|
|
1521
1518
|
};
|
|
1522
1519
|
webhookentryfill: {
|
|
1523
|
-
|
|
1524
|
-
stake_amount: string;
|
|
1520
|
+
userId: string;
|
|
1525
1521
|
stake_currency: string;
|
|
1522
|
+
stake_amount: string;
|
|
1526
1523
|
event: string;
|
|
1527
|
-
|
|
1524
|
+
traderId: any;
|
|
1528
1525
|
pair: string;
|
|
1529
1526
|
trade_id: string;
|
|
1530
1527
|
open_rate: string;
|
|
@@ -1533,10 +1530,10 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1533
1530
|
};
|
|
1534
1531
|
webhookexit: {
|
|
1535
1532
|
limit: string;
|
|
1536
|
-
|
|
1533
|
+
userId: string;
|
|
1537
1534
|
stake_currency: string;
|
|
1538
1535
|
event: string;
|
|
1539
|
-
|
|
1536
|
+
traderId: any;
|
|
1540
1537
|
pair: string;
|
|
1541
1538
|
fiat_currency: string;
|
|
1542
1539
|
trade_id: string;
|
|
@@ -1551,22 +1548,23 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1551
1548
|
};
|
|
1552
1549
|
webhookexitcancel: {
|
|
1553
1550
|
limit: string;
|
|
1554
|
-
|
|
1551
|
+
userId: string;
|
|
1555
1552
|
stake_currency: string;
|
|
1556
1553
|
event: string;
|
|
1557
|
-
|
|
1554
|
+
traderId: any;
|
|
1558
1555
|
pair: string;
|
|
1559
1556
|
profit_amount: string;
|
|
1560
1557
|
profit_ratio: string;
|
|
1561
1558
|
};
|
|
1562
1559
|
webhookexitfill: {
|
|
1563
|
-
traderId: any;
|
|
1564
|
-
event: string;
|
|
1565
1560
|
userId: string;
|
|
1561
|
+
event: string;
|
|
1562
|
+
traderId: any;
|
|
1566
1563
|
pair: string;
|
|
1567
1564
|
close_rate: string;
|
|
1568
1565
|
};
|
|
1569
1566
|
} | undefined;
|
|
1567
|
+
reset?: boolean | undefined;
|
|
1570
1568
|
host: string;
|
|
1571
1569
|
name: any;
|
|
1572
1570
|
provider: "docker";
|
|
@@ -1576,20 +1574,20 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1576
1574
|
_id: string | {};
|
|
1577
1575
|
createdAt: any;
|
|
1578
1576
|
updatedAt: any;
|
|
1579
|
-
|
|
1580
|
-
strategyId: string | {};
|
|
1581
|
-
stake_amount: string | number;
|
|
1582
|
-
stake_currency: string;
|
|
1583
|
-
exchangeId: any;
|
|
1584
|
-
userId: any;
|
|
1577
|
+
connected: boolean;
|
|
1585
1578
|
which: string;
|
|
1579
|
+
userId: any;
|
|
1580
|
+
"traders/pods": any;
|
|
1586
1581
|
exchange: any;
|
|
1587
|
-
|
|
1582
|
+
exchangeId: any;
|
|
1583
|
+
stake_currency: string;
|
|
1584
|
+
stake_amount: string | number;
|
|
1588
1585
|
dry_run: boolean;
|
|
1589
1586
|
handling: string;
|
|
1590
1587
|
initial_state: string;
|
|
1591
1588
|
pairlists: any;
|
|
1592
1589
|
strategy: any;
|
|
1590
|
+
strategyId: string | {};
|
|
1593
1591
|
entry_pricing: {
|
|
1594
1592
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1595
1593
|
use_order_book?: boolean | undefined;
|
|
@@ -1609,35 +1607,34 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1609
1607
|
api_server: {
|
|
1610
1608
|
password: string;
|
|
1611
1609
|
enabled: boolean;
|
|
1610
|
+
username: string;
|
|
1612
1611
|
listen_ip_address: string;
|
|
1613
1612
|
listen_port: number;
|
|
1614
1613
|
verbosity: string;
|
|
1615
1614
|
jwt_secret_key: string;
|
|
1616
1615
|
CORS_origins: string[];
|
|
1617
|
-
username: string;
|
|
1618
1616
|
};
|
|
1619
1617
|
pod: string;
|
|
1620
1618
|
}[] | undefined;
|
|
1621
1619
|
createdAt?: any;
|
|
1622
1620
|
updatedAt?: any;
|
|
1621
|
+
userId?: string | {} | undefined;
|
|
1623
1622
|
'strategies/templates'?: {
|
|
1624
1623
|
_id?: string | {} | undefined;
|
|
1624
|
+
createdAt?: any;
|
|
1625
1625
|
values: any;
|
|
1626
1626
|
name: string;
|
|
1627
|
-
createdAt: any;
|
|
1628
1627
|
description: string;
|
|
1629
1628
|
type: string;
|
|
1630
1629
|
} | undefined;
|
|
1630
|
+
file?: any;
|
|
1631
|
+
templateId?: string | {} | undefined;
|
|
1632
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
1631
1633
|
stoploss?: number | undefined;
|
|
1632
1634
|
minimal_roi?: {
|
|
1633
1635
|
minutes: number;
|
|
1634
1636
|
profit: number;
|
|
1635
1637
|
}[] | undefined;
|
|
1636
|
-
results?: unknown;
|
|
1637
|
-
userId?: string | {} | undefined;
|
|
1638
|
-
file?: any;
|
|
1639
|
-
templateId?: string | {} | undefined;
|
|
1640
|
-
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
1641
1638
|
exit_sell_signal?: boolean | undefined;
|
|
1642
1639
|
exit_profit_only?: boolean | undefined;
|
|
1643
1640
|
exit_profit_offset?: number | undefined;
|
|
@@ -1646,10 +1643,10 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1646
1643
|
stoploss?: string | undefined;
|
|
1647
1644
|
entry?: "Limit" | "Market" | undefined;
|
|
1648
1645
|
exit?: "Limit" | "Market" | undefined;
|
|
1649
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
1650
1646
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
1651
1647
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
1652
1648
|
forcesell?: "Limit" | "Market" | undefined;
|
|
1649
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
1653
1650
|
stoploss_on_exchange_interval?: number | undefined;
|
|
1654
1651
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
1655
1652
|
} | undefined;
|
|
@@ -1681,10 +1678,12 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1681
1678
|
}[] | undefined;
|
|
1682
1679
|
indicators?: unknown[] | undefined;
|
|
1683
1680
|
code?: unknown;
|
|
1681
|
+
results?: unknown;
|
|
1684
1682
|
configured?: boolean | undefined;
|
|
1685
1683
|
name: any;
|
|
1686
1684
|
'strategies/indicators': any;
|
|
1687
1685
|
}>;
|
|
1686
|
+
strategyId: string | {};
|
|
1688
1687
|
pod: any;
|
|
1689
1688
|
trader: Partial<{
|
|
1690
1689
|
telegram?: {
|
|
@@ -1695,19 +1694,19 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1695
1694
|
chat_id: any;
|
|
1696
1695
|
allow_custom_messages: boolean;
|
|
1697
1696
|
notification_settings: {
|
|
1698
|
-
status: "silent" | "on" | "off";
|
|
1699
1697
|
entry: "silent" | "on" | "off";
|
|
1700
1698
|
exit: {
|
|
1699
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1701
1700
|
roi: "silent" | "on" | "off";
|
|
1702
1701
|
emergency_exit: "silent" | "on" | "off";
|
|
1703
1702
|
force_exit: "silent" | "on" | "off";
|
|
1704
1703
|
exit_signal: "silent" | "on" | "off";
|
|
1705
1704
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
1706
1705
|
stop_loss: "silent" | "on" | "off";
|
|
1707
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1708
1706
|
custom_exit: "silent" | "on" | "off";
|
|
1709
1707
|
partial_exit: "silent" | "on" | "off";
|
|
1710
1708
|
};
|
|
1709
|
+
status: "silent" | "on" | "off";
|
|
1711
1710
|
warning: "silent" | "on" | "off";
|
|
1712
1711
|
startup: "silent" | "on" | "off";
|
|
1713
1712
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -1722,8 +1721,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1722
1721
|
reload: boolean;
|
|
1723
1722
|
balance_dust_level: number;
|
|
1724
1723
|
} | undefined;
|
|
1725
|
-
dry_run_wallet?: number | undefined;
|
|
1726
|
-
max_open_trades?: number | undefined;
|
|
1727
1724
|
plugins?: {
|
|
1728
1725
|
number_assets?: number | undefined;
|
|
1729
1726
|
refresh_period?: number | undefined;
|
|
@@ -1732,6 +1729,8 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1732
1729
|
removeRecentlyListed?: boolean | undefined;
|
|
1733
1730
|
removeRecentlyListedDays?: number | undefined;
|
|
1734
1731
|
} | undefined;
|
|
1732
|
+
dry_run_wallet?: number | undefined;
|
|
1733
|
+
max_open_trades?: number | undefined;
|
|
1735
1734
|
fiat_display_currency?: string | undefined;
|
|
1736
1735
|
unfilledtimeout?: {
|
|
1737
1736
|
entry: number;
|
|
@@ -1745,37 +1744,36 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1745
1744
|
enabled: boolean;
|
|
1746
1745
|
format: string;
|
|
1747
1746
|
webhookstatus: {
|
|
1748
|
-
|
|
1747
|
+
userId: string;
|
|
1749
1748
|
event: string;
|
|
1750
1749
|
status: string;
|
|
1751
|
-
|
|
1750
|
+
traderId: any;
|
|
1752
1751
|
};
|
|
1753
1752
|
webhookentry: {
|
|
1754
|
-
|
|
1755
|
-
traderId: any;
|
|
1756
|
-
stake_amount: string;
|
|
1753
|
+
userId: string;
|
|
1757
1754
|
stake_currency: string;
|
|
1755
|
+
stake_amount: string;
|
|
1758
1756
|
event: string;
|
|
1759
|
-
|
|
1757
|
+
traderId: any;
|
|
1760
1758
|
pair: string;
|
|
1761
1759
|
fiat_currency: string;
|
|
1762
1760
|
};
|
|
1763
1761
|
webhookentrycancel: {
|
|
1764
1762
|
limit: string;
|
|
1765
|
-
|
|
1766
|
-
stake_amount: string;
|
|
1763
|
+
userId: string;
|
|
1767
1764
|
stake_currency: string;
|
|
1765
|
+
stake_amount: string;
|
|
1768
1766
|
event: string;
|
|
1769
|
-
|
|
1767
|
+
traderId: any;
|
|
1770
1768
|
pair: string;
|
|
1771
1769
|
fiat_currency: string;
|
|
1772
1770
|
};
|
|
1773
1771
|
webhookentryfill: {
|
|
1774
|
-
|
|
1775
|
-
stake_amount: string;
|
|
1772
|
+
userId: string;
|
|
1776
1773
|
stake_currency: string;
|
|
1774
|
+
stake_amount: string;
|
|
1777
1775
|
event: string;
|
|
1778
|
-
|
|
1776
|
+
traderId: any;
|
|
1779
1777
|
pair: string;
|
|
1780
1778
|
trade_id: string;
|
|
1781
1779
|
open_rate: string;
|
|
@@ -1784,10 +1782,10 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1784
1782
|
};
|
|
1785
1783
|
webhookexit: {
|
|
1786
1784
|
limit: string;
|
|
1787
|
-
|
|
1785
|
+
userId: string;
|
|
1788
1786
|
stake_currency: string;
|
|
1789
1787
|
event: string;
|
|
1790
|
-
|
|
1788
|
+
traderId: any;
|
|
1791
1789
|
pair: string;
|
|
1792
1790
|
fiat_currency: string;
|
|
1793
1791
|
trade_id: string;
|
|
@@ -1802,22 +1800,23 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1802
1800
|
};
|
|
1803
1801
|
webhookexitcancel: {
|
|
1804
1802
|
limit: string;
|
|
1805
|
-
|
|
1803
|
+
userId: string;
|
|
1806
1804
|
stake_currency: string;
|
|
1807
1805
|
event: string;
|
|
1808
|
-
|
|
1806
|
+
traderId: any;
|
|
1809
1807
|
pair: string;
|
|
1810
1808
|
profit_amount: string;
|
|
1811
1809
|
profit_ratio: string;
|
|
1812
1810
|
};
|
|
1813
1811
|
webhookexitfill: {
|
|
1814
|
-
traderId: any;
|
|
1815
|
-
event: string;
|
|
1816
1812
|
userId: string;
|
|
1813
|
+
event: string;
|
|
1814
|
+
traderId: any;
|
|
1817
1815
|
pair: string;
|
|
1818
1816
|
close_rate: string;
|
|
1819
1817
|
};
|
|
1820
1818
|
} | undefined;
|
|
1819
|
+
reset?: boolean | undefined;
|
|
1821
1820
|
host: string;
|
|
1822
1821
|
name: any;
|
|
1823
1822
|
provider: "docker";
|
|
@@ -1827,20 +1826,20 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1827
1826
|
_id: string | {};
|
|
1828
1827
|
createdAt: any;
|
|
1829
1828
|
updatedAt: any;
|
|
1830
|
-
|
|
1831
|
-
strategyId: string | {};
|
|
1832
|
-
stake_amount: string | number;
|
|
1833
|
-
stake_currency: string;
|
|
1834
|
-
exchangeId: any;
|
|
1835
|
-
userId: any;
|
|
1829
|
+
connected: boolean;
|
|
1836
1830
|
which: string;
|
|
1831
|
+
userId: any;
|
|
1832
|
+
"traders/pods": any;
|
|
1837
1833
|
exchange: any;
|
|
1838
|
-
|
|
1834
|
+
exchangeId: any;
|
|
1835
|
+
stake_currency: string;
|
|
1836
|
+
stake_amount: string | number;
|
|
1839
1837
|
dry_run: boolean;
|
|
1840
1838
|
handling: string;
|
|
1841
1839
|
initial_state: string;
|
|
1842
1840
|
pairlists: any;
|
|
1843
1841
|
strategy: any;
|
|
1842
|
+
strategyId: string | {};
|
|
1844
1843
|
entry_pricing: {
|
|
1845
1844
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1846
1845
|
use_order_book?: boolean | undefined;
|
|
@@ -1860,16 +1859,17 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1860
1859
|
api_server: {
|
|
1861
1860
|
password: string;
|
|
1862
1861
|
enabled: boolean;
|
|
1862
|
+
username: string;
|
|
1863
1863
|
listen_ip_address: string;
|
|
1864
1864
|
listen_port: number;
|
|
1865
1865
|
verbosity: string;
|
|
1866
1866
|
jwt_secret_key: string;
|
|
1867
1867
|
CORS_origins: string[];
|
|
1868
|
-
username: string;
|
|
1869
1868
|
};
|
|
1870
1869
|
pod: string;
|
|
1871
1870
|
}>;
|
|
1872
1871
|
}> | undefined;
|
|
1872
|
+
options?: any;
|
|
1873
1873
|
trader?: Partial<{
|
|
1874
1874
|
telegram?: {
|
|
1875
1875
|
access_hash?: string | null | undefined;
|
|
@@ -1879,19 +1879,19 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1879
1879
|
chat_id: any;
|
|
1880
1880
|
allow_custom_messages: boolean;
|
|
1881
1881
|
notification_settings: {
|
|
1882
|
-
status: "silent" | "on" | "off";
|
|
1883
1882
|
entry: "silent" | "on" | "off";
|
|
1884
1883
|
exit: {
|
|
1884
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1885
1885
|
roi: "silent" | "on" | "off";
|
|
1886
1886
|
emergency_exit: "silent" | "on" | "off";
|
|
1887
1887
|
force_exit: "silent" | "on" | "off";
|
|
1888
1888
|
exit_signal: "silent" | "on" | "off";
|
|
1889
1889
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
1890
1890
|
stop_loss: "silent" | "on" | "off";
|
|
1891
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1892
1891
|
custom_exit: "silent" | "on" | "off";
|
|
1893
1892
|
partial_exit: "silent" | "on" | "off";
|
|
1894
1893
|
};
|
|
1894
|
+
status: "silent" | "on" | "off";
|
|
1895
1895
|
warning: "silent" | "on" | "off";
|
|
1896
1896
|
startup: "silent" | "on" | "off";
|
|
1897
1897
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -1905,9 +1905,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1905
1905
|
};
|
|
1906
1906
|
reload: boolean;
|
|
1907
1907
|
balance_dust_level: number;
|
|
1908
|
-
} | undefined;
|
|
1909
|
-
dry_run_wallet?: number | undefined;
|
|
1910
|
-
max_open_trades?: number | undefined;
|
|
1908
|
+
} | undefined;
|
|
1911
1909
|
plugins?: {
|
|
1912
1910
|
number_assets?: number | undefined;
|
|
1913
1911
|
refresh_period?: number | undefined;
|
|
@@ -1916,6 +1914,8 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1916
1914
|
removeRecentlyListed?: boolean | undefined;
|
|
1917
1915
|
removeRecentlyListedDays?: number | undefined;
|
|
1918
1916
|
} | undefined;
|
|
1917
|
+
dry_run_wallet?: number | undefined;
|
|
1918
|
+
max_open_trades?: number | undefined;
|
|
1919
1919
|
fiat_display_currency?: string | undefined;
|
|
1920
1920
|
unfilledtimeout?: {
|
|
1921
1921
|
entry: number;
|
|
@@ -1929,37 +1929,36 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1929
1929
|
enabled: boolean;
|
|
1930
1930
|
format: string;
|
|
1931
1931
|
webhookstatus: {
|
|
1932
|
-
|
|
1932
|
+
userId: string;
|
|
1933
1933
|
event: string;
|
|
1934
1934
|
status: string;
|
|
1935
|
-
|
|
1935
|
+
traderId: any;
|
|
1936
1936
|
};
|
|
1937
1937
|
webhookentry: {
|
|
1938
|
-
|
|
1939
|
-
traderId: any;
|
|
1940
|
-
stake_amount: string;
|
|
1938
|
+
userId: string;
|
|
1941
1939
|
stake_currency: string;
|
|
1940
|
+
stake_amount: string;
|
|
1942
1941
|
event: string;
|
|
1943
|
-
|
|
1942
|
+
traderId: any;
|
|
1944
1943
|
pair: string;
|
|
1945
1944
|
fiat_currency: string;
|
|
1946
1945
|
};
|
|
1947
1946
|
webhookentrycancel: {
|
|
1948
1947
|
limit: string;
|
|
1949
|
-
|
|
1950
|
-
stake_amount: string;
|
|
1948
|
+
userId: string;
|
|
1951
1949
|
stake_currency: string;
|
|
1950
|
+
stake_amount: string;
|
|
1952
1951
|
event: string;
|
|
1953
|
-
|
|
1952
|
+
traderId: any;
|
|
1954
1953
|
pair: string;
|
|
1955
1954
|
fiat_currency: string;
|
|
1956
1955
|
};
|
|
1957
1956
|
webhookentryfill: {
|
|
1958
|
-
|
|
1959
|
-
stake_amount: string;
|
|
1957
|
+
userId: string;
|
|
1960
1958
|
stake_currency: string;
|
|
1959
|
+
stake_amount: string;
|
|
1961
1960
|
event: string;
|
|
1962
|
-
|
|
1961
|
+
traderId: any;
|
|
1963
1962
|
pair: string;
|
|
1964
1963
|
trade_id: string;
|
|
1965
1964
|
open_rate: string;
|
|
@@ -1968,10 +1967,10 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1968
1967
|
};
|
|
1969
1968
|
webhookexit: {
|
|
1970
1969
|
limit: string;
|
|
1971
|
-
|
|
1970
|
+
userId: string;
|
|
1972
1971
|
stake_currency: string;
|
|
1973
1972
|
event: string;
|
|
1974
|
-
|
|
1973
|
+
traderId: any;
|
|
1975
1974
|
pair: string;
|
|
1976
1975
|
fiat_currency: string;
|
|
1977
1976
|
trade_id: string;
|
|
@@ -1986,22 +1985,23 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1986
1985
|
};
|
|
1987
1986
|
webhookexitcancel: {
|
|
1988
1987
|
limit: string;
|
|
1989
|
-
|
|
1988
|
+
userId: string;
|
|
1990
1989
|
stake_currency: string;
|
|
1991
1990
|
event: string;
|
|
1992
|
-
|
|
1991
|
+
traderId: any;
|
|
1993
1992
|
pair: string;
|
|
1994
1993
|
profit_amount: string;
|
|
1995
1994
|
profit_ratio: string;
|
|
1996
1995
|
};
|
|
1997
1996
|
webhookexitfill: {
|
|
1998
|
-
traderId: any;
|
|
1999
|
-
event: string;
|
|
2000
1997
|
userId: string;
|
|
1998
|
+
event: string;
|
|
1999
|
+
traderId: any;
|
|
2001
2000
|
pair: string;
|
|
2002
2001
|
close_rate: string;
|
|
2003
2002
|
};
|
|
2004
2003
|
} | undefined;
|
|
2004
|
+
reset?: boolean | undefined;
|
|
2005
2005
|
host: string;
|
|
2006
2006
|
name: any;
|
|
2007
2007
|
provider: "docker";
|
|
@@ -2011,20 +2011,20 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
2011
2011
|
_id: string | {};
|
|
2012
2012
|
createdAt: any;
|
|
2013
2013
|
updatedAt: any;
|
|
2014
|
-
|
|
2015
|
-
strategyId: string | {};
|
|
2016
|
-
stake_amount: string | number;
|
|
2017
|
-
stake_currency: string;
|
|
2018
|
-
exchangeId: any;
|
|
2019
|
-
userId: any;
|
|
2014
|
+
connected: boolean;
|
|
2020
2015
|
which: string;
|
|
2016
|
+
userId: any;
|
|
2017
|
+
"traders/pods": any;
|
|
2021
2018
|
exchange: any;
|
|
2022
|
-
|
|
2019
|
+
exchangeId: any;
|
|
2020
|
+
stake_currency: string;
|
|
2021
|
+
stake_amount: string | number;
|
|
2023
2022
|
dry_run: boolean;
|
|
2024
2023
|
handling: string;
|
|
2025
2024
|
initial_state: string;
|
|
2026
2025
|
pairlists: any;
|
|
2027
2026
|
strategy: any;
|
|
2027
|
+
strategyId: string | {};
|
|
2028
2028
|
entry_pricing: {
|
|
2029
2029
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2030
2030
|
use_order_book?: boolean | undefined;
|
|
@@ -2044,20 +2044,20 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
2044
2044
|
api_server: {
|
|
2045
2045
|
password: string;
|
|
2046
2046
|
enabled: boolean;
|
|
2047
|
+
username: string;
|
|
2047
2048
|
listen_ip_address: string;
|
|
2048
2049
|
listen_port: number;
|
|
2049
2050
|
verbosity: string;
|
|
2050
2051
|
jwt_secret_key: string;
|
|
2051
2052
|
CORS_origins: string[];
|
|
2052
|
-
username: string;
|
|
2053
2053
|
};
|
|
2054
2054
|
pod: string;
|
|
2055
2055
|
}> | undefined;
|
|
2056
2056
|
_id: string | {};
|
|
2057
2057
|
createdAt: any;
|
|
2058
2058
|
updatedAt: any;
|
|
2059
|
-
traderId: any;
|
|
2060
2059
|
userId: any;
|
|
2060
|
+
traderId: any;
|
|
2061
2061
|
action: string;
|
|
2062
2062
|
result: any;
|
|
2063
2063
|
}, HookContext<TradersPodsApiService<import("./api.class").TradersPodsApiParams>>>;
|
|
@@ -2118,7 +2118,6 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2118
2118
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2119
2119
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
2120
2120
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
2121
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
2122
2121
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
2123
2122
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
2124
2123
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2243,6 +2242,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2243
2242
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
2244
2243
|
}>>;
|
|
2245
2244
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
2245
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2246
2246
|
host: import("@feathersjs/typebox").TString<string>;
|
|
2247
2247
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
2248
2248
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -2304,7 +2304,6 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2304
2304
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2305
2305
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
2306
2306
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
2307
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
2308
2307
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
2309
2308
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
2310
2309
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2429,6 +2428,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2429
2428
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
2430
2429
|
}>>;
|
|
2431
2430
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
2431
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2432
2432
|
host: import("@feathersjs/typebox").TString<string>;
|
|
2433
2433
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
2434
2434
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -2596,7 +2596,6 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2596
2596
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2597
2597
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
2598
2598
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
2599
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
2600
2599
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
2601
2600
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
2602
2601
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2721,6 +2720,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2721
2720
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
2722
2721
|
}>>;
|
|
2723
2722
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
2723
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2724
2724
|
host: import("@feathersjs/typebox").TString<string>;
|
|
2725
2725
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
2726
2726
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -2731,7 +2731,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2731
2731
|
name: import("@feathersjs/typebox").TString<string>;
|
|
2732
2732
|
type: import("@feathersjs/typebox").TString<string>;
|
|
2733
2733
|
description: import("@feathersjs/typebox").TString<string>;
|
|
2734
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
2734
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2735
2735
|
values: import("@feathersjs/typebox").TAny;
|
|
2736
2736
|
}>>>;
|
|
2737
2737
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -2750,27 +2750,23 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2750
2750
|
export type TradersPodsApiData = Static<typeof tradersPodsApiDataSchema>;
|
|
2751
2751
|
export declare const tradersPodsApiDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
2752
2752
|
export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Resolver<{
|
|
2753
|
-
options?: any;
|
|
2754
2753
|
'traders/pods'?: Partial<{
|
|
2755
2754
|
host?: string | undefined;
|
|
2756
2755
|
stop?: boolean | undefined;
|
|
2757
2756
|
provider: "docker";
|
|
2758
2757
|
_id: string | {};
|
|
2759
2758
|
options: any;
|
|
2760
|
-
strategyId: string | {};
|
|
2761
|
-
exchangeId: string;
|
|
2762
2759
|
exchange: Partial<{
|
|
2763
2760
|
password?: string | undefined;
|
|
2764
2761
|
name?: any;
|
|
2765
2762
|
apiKey?: string | undefined;
|
|
2763
|
+
token?: string | undefined;
|
|
2766
2764
|
secret?: string | undefined;
|
|
2767
2765
|
avatar?: any;
|
|
2768
2766
|
createdAt?: any;
|
|
2769
2767
|
updatedAt?: any;
|
|
2770
|
-
|
|
2771
|
-
which?: string | undefined;
|
|
2768
|
+
login?: string | undefined;
|
|
2772
2769
|
connected?: boolean | undefined;
|
|
2773
|
-
token?: string | undefined;
|
|
2774
2770
|
downloaded?: {
|
|
2775
2771
|
updatedAt: any;
|
|
2776
2772
|
size: string;
|
|
@@ -2798,15 +2794,17 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2798
2794
|
}[] | undefined;
|
|
2799
2795
|
whitelist?: any[] | undefined;
|
|
2800
2796
|
ccxt_async_config?: any;
|
|
2797
|
+
which?: string | undefined;
|
|
2801
2798
|
requiredCredentials?: any;
|
|
2802
2799
|
uid?: string | undefined;
|
|
2803
|
-
login?: string | undefined;
|
|
2804
2800
|
twofa?: string | undefined;
|
|
2805
2801
|
privateKey?: string | undefined;
|
|
2806
2802
|
walletAddress?: string | undefined;
|
|
2803
|
+
userId?: string | {} | undefined;
|
|
2807
2804
|
__v?: any;
|
|
2808
2805
|
_id: string | {};
|
|
2809
2806
|
}>;
|
|
2807
|
+
exchangeId: string;
|
|
2810
2808
|
strategy: Partial<{
|
|
2811
2809
|
_id?: string | {} | undefined;
|
|
2812
2810
|
traders?: {
|
|
@@ -2818,19 +2816,19 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2818
2816
|
chat_id: any;
|
|
2819
2817
|
allow_custom_messages: boolean;
|
|
2820
2818
|
notification_settings: {
|
|
2821
|
-
status: "silent" | "on" | "off";
|
|
2822
2819
|
entry: "silent" | "on" | "off";
|
|
2823
2820
|
exit: {
|
|
2821
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
2824
2822
|
roi: "silent" | "on" | "off";
|
|
2825
2823
|
emergency_exit: "silent" | "on" | "off";
|
|
2826
2824
|
force_exit: "silent" | "on" | "off";
|
|
2827
2825
|
exit_signal: "silent" | "on" | "off";
|
|
2828
2826
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
2829
2827
|
stop_loss: "silent" | "on" | "off";
|
|
2830
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
2831
2828
|
custom_exit: "silent" | "on" | "off";
|
|
2832
2829
|
partial_exit: "silent" | "on" | "off";
|
|
2833
2830
|
};
|
|
2831
|
+
status: "silent" | "on" | "off";
|
|
2834
2832
|
warning: "silent" | "on" | "off";
|
|
2835
2833
|
startup: "silent" | "on" | "off";
|
|
2836
2834
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -2845,8 +2843,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2845
2843
|
reload: boolean;
|
|
2846
2844
|
balance_dust_level: number;
|
|
2847
2845
|
} | undefined;
|
|
2848
|
-
dry_run_wallet?: number | undefined;
|
|
2849
|
-
max_open_trades?: number | undefined;
|
|
2850
2846
|
plugins?: {
|
|
2851
2847
|
number_assets?: number | undefined;
|
|
2852
2848
|
refresh_period?: number | undefined;
|
|
@@ -2855,6 +2851,8 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2855
2851
|
removeRecentlyListed?: boolean | undefined;
|
|
2856
2852
|
removeRecentlyListedDays?: number | undefined;
|
|
2857
2853
|
} | undefined;
|
|
2854
|
+
dry_run_wallet?: number | undefined;
|
|
2855
|
+
max_open_trades?: number | undefined;
|
|
2858
2856
|
fiat_display_currency?: string | undefined;
|
|
2859
2857
|
unfilledtimeout?: {
|
|
2860
2858
|
entry: number;
|
|
@@ -2868,37 +2866,36 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2868
2866
|
enabled: boolean;
|
|
2869
2867
|
format: string;
|
|
2870
2868
|
webhookstatus: {
|
|
2871
|
-
|
|
2869
|
+
userId: string;
|
|
2872
2870
|
event: string;
|
|
2873
2871
|
status: string;
|
|
2874
|
-
|
|
2872
|
+
traderId: any;
|
|
2875
2873
|
};
|
|
2876
2874
|
webhookentry: {
|
|
2877
|
-
|
|
2878
|
-
traderId: any;
|
|
2879
|
-
stake_amount: string;
|
|
2875
|
+
userId: string;
|
|
2880
2876
|
stake_currency: string;
|
|
2877
|
+
stake_amount: string;
|
|
2881
2878
|
event: string;
|
|
2882
|
-
|
|
2879
|
+
traderId: any;
|
|
2883
2880
|
pair: string;
|
|
2884
2881
|
fiat_currency: string;
|
|
2885
2882
|
};
|
|
2886
2883
|
webhookentrycancel: {
|
|
2887
2884
|
limit: string;
|
|
2888
|
-
|
|
2889
|
-
stake_amount: string;
|
|
2885
|
+
userId: string;
|
|
2890
2886
|
stake_currency: string;
|
|
2887
|
+
stake_amount: string;
|
|
2891
2888
|
event: string;
|
|
2892
|
-
|
|
2889
|
+
traderId: any;
|
|
2893
2890
|
pair: string;
|
|
2894
2891
|
fiat_currency: string;
|
|
2895
2892
|
};
|
|
2896
2893
|
webhookentryfill: {
|
|
2897
|
-
|
|
2898
|
-
stake_amount: string;
|
|
2894
|
+
userId: string;
|
|
2899
2895
|
stake_currency: string;
|
|
2896
|
+
stake_amount: string;
|
|
2900
2897
|
event: string;
|
|
2901
|
-
|
|
2898
|
+
traderId: any;
|
|
2902
2899
|
pair: string;
|
|
2903
2900
|
trade_id: string;
|
|
2904
2901
|
open_rate: string;
|
|
@@ -2907,10 +2904,10 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2907
2904
|
};
|
|
2908
2905
|
webhookexit: {
|
|
2909
2906
|
limit: string;
|
|
2910
|
-
|
|
2907
|
+
userId: string;
|
|
2911
2908
|
stake_currency: string;
|
|
2912
2909
|
event: string;
|
|
2913
|
-
|
|
2910
|
+
traderId: any;
|
|
2914
2911
|
pair: string;
|
|
2915
2912
|
fiat_currency: string;
|
|
2916
2913
|
trade_id: string;
|
|
@@ -2925,22 +2922,23 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2925
2922
|
};
|
|
2926
2923
|
webhookexitcancel: {
|
|
2927
2924
|
limit: string;
|
|
2928
|
-
|
|
2925
|
+
userId: string;
|
|
2929
2926
|
stake_currency: string;
|
|
2930
2927
|
event: string;
|
|
2931
|
-
|
|
2928
|
+
traderId: any;
|
|
2932
2929
|
pair: string;
|
|
2933
2930
|
profit_amount: string;
|
|
2934
2931
|
profit_ratio: string;
|
|
2935
2932
|
};
|
|
2936
2933
|
webhookexitfill: {
|
|
2937
|
-
traderId: any;
|
|
2938
|
-
event: string;
|
|
2939
2934
|
userId: string;
|
|
2935
|
+
event: string;
|
|
2936
|
+
traderId: any;
|
|
2940
2937
|
pair: string;
|
|
2941
2938
|
close_rate: string;
|
|
2942
2939
|
};
|
|
2943
2940
|
} | undefined;
|
|
2941
|
+
reset?: boolean | undefined;
|
|
2944
2942
|
host: string;
|
|
2945
2943
|
name: any;
|
|
2946
2944
|
provider: "docker";
|
|
@@ -2950,20 +2948,20 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2950
2948
|
_id: string | {};
|
|
2951
2949
|
createdAt: any;
|
|
2952
2950
|
updatedAt: any;
|
|
2953
|
-
|
|
2954
|
-
strategyId: string | {};
|
|
2955
|
-
stake_amount: string | number;
|
|
2956
|
-
stake_currency: string;
|
|
2957
|
-
exchangeId: any;
|
|
2958
|
-
userId: any;
|
|
2951
|
+
connected: boolean;
|
|
2959
2952
|
which: string;
|
|
2953
|
+
userId: any;
|
|
2954
|
+
"traders/pods": any;
|
|
2960
2955
|
exchange: any;
|
|
2961
|
-
|
|
2956
|
+
exchangeId: any;
|
|
2957
|
+
stake_currency: string;
|
|
2958
|
+
stake_amount: string | number;
|
|
2962
2959
|
dry_run: boolean;
|
|
2963
2960
|
handling: string;
|
|
2964
2961
|
initial_state: string;
|
|
2965
2962
|
pairlists: any;
|
|
2966
2963
|
strategy: any;
|
|
2964
|
+
strategyId: string | {};
|
|
2967
2965
|
entry_pricing: {
|
|
2968
2966
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2969
2967
|
use_order_book?: boolean | undefined;
|
|
@@ -2983,35 +2981,34 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2983
2981
|
api_server: {
|
|
2984
2982
|
password: string;
|
|
2985
2983
|
enabled: boolean;
|
|
2984
|
+
username: string;
|
|
2986
2985
|
listen_ip_address: string;
|
|
2987
2986
|
listen_port: number;
|
|
2988
2987
|
verbosity: string;
|
|
2989
2988
|
jwt_secret_key: string;
|
|
2990
2989
|
CORS_origins: string[];
|
|
2991
|
-
username: string;
|
|
2992
2990
|
};
|
|
2993
2991
|
pod: string;
|
|
2994
2992
|
}[] | undefined;
|
|
2995
2993
|
createdAt?: any;
|
|
2996
2994
|
updatedAt?: any;
|
|
2995
|
+
userId?: string | {} | undefined;
|
|
2997
2996
|
'strategies/templates'?: {
|
|
2998
2997
|
_id?: string | {} | undefined;
|
|
2998
|
+
createdAt?: any;
|
|
2999
2999
|
values: any;
|
|
3000
3000
|
name: string;
|
|
3001
|
-
createdAt: any;
|
|
3002
3001
|
description: string;
|
|
3003
3002
|
type: string;
|
|
3004
3003
|
} | undefined;
|
|
3004
|
+
file?: any;
|
|
3005
|
+
templateId?: string | {} | undefined;
|
|
3006
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
3005
3007
|
stoploss?: number | undefined;
|
|
3006
3008
|
minimal_roi?: {
|
|
3007
3009
|
minutes: number;
|
|
3008
3010
|
profit: number;
|
|
3009
3011
|
}[] | undefined;
|
|
3010
|
-
results?: unknown;
|
|
3011
|
-
userId?: string | {} | undefined;
|
|
3012
|
-
file?: any;
|
|
3013
|
-
templateId?: string | {} | undefined;
|
|
3014
|
-
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
3015
3012
|
exit_sell_signal?: boolean | undefined;
|
|
3016
3013
|
exit_profit_only?: boolean | undefined;
|
|
3017
3014
|
exit_profit_offset?: number | undefined;
|
|
@@ -3020,10 +3017,10 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3020
3017
|
stoploss?: string | undefined;
|
|
3021
3018
|
entry?: "Limit" | "Market" | undefined;
|
|
3022
3019
|
exit?: "Limit" | "Market" | undefined;
|
|
3023
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
3024
3020
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
3025
3021
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
3026
3022
|
forcesell?: "Limit" | "Market" | undefined;
|
|
3023
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
3027
3024
|
stoploss_on_exchange_interval?: number | undefined;
|
|
3028
3025
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
3029
3026
|
} | undefined;
|
|
@@ -3055,10 +3052,12 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3055
3052
|
}[] | undefined;
|
|
3056
3053
|
indicators?: unknown[] | undefined;
|
|
3057
3054
|
code?: unknown;
|
|
3055
|
+
results?: unknown;
|
|
3058
3056
|
configured?: boolean | undefined;
|
|
3059
3057
|
name: any;
|
|
3060
3058
|
'strategies/indicators': any;
|
|
3061
3059
|
}>;
|
|
3060
|
+
strategyId: string | {};
|
|
3062
3061
|
pod: any;
|
|
3063
3062
|
trader: Partial<{
|
|
3064
3063
|
telegram?: {
|
|
@@ -3069,19 +3068,19 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3069
3068
|
chat_id: any;
|
|
3070
3069
|
allow_custom_messages: boolean;
|
|
3071
3070
|
notification_settings: {
|
|
3072
|
-
status: "silent" | "on" | "off";
|
|
3073
3071
|
entry: "silent" | "on" | "off";
|
|
3074
3072
|
exit: {
|
|
3073
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
3075
3074
|
roi: "silent" | "on" | "off";
|
|
3076
3075
|
emergency_exit: "silent" | "on" | "off";
|
|
3077
3076
|
force_exit: "silent" | "on" | "off";
|
|
3078
3077
|
exit_signal: "silent" | "on" | "off";
|
|
3079
3078
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
3080
3079
|
stop_loss: "silent" | "on" | "off";
|
|
3081
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
3082
3080
|
custom_exit: "silent" | "on" | "off";
|
|
3083
3081
|
partial_exit: "silent" | "on" | "off";
|
|
3084
3082
|
};
|
|
3083
|
+
status: "silent" | "on" | "off";
|
|
3085
3084
|
warning: "silent" | "on" | "off";
|
|
3086
3085
|
startup: "silent" | "on" | "off";
|
|
3087
3086
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -3096,8 +3095,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3096
3095
|
reload: boolean;
|
|
3097
3096
|
balance_dust_level: number;
|
|
3098
3097
|
} | undefined;
|
|
3099
|
-
dry_run_wallet?: number | undefined;
|
|
3100
|
-
max_open_trades?: number | undefined;
|
|
3101
3098
|
plugins?: {
|
|
3102
3099
|
number_assets?: number | undefined;
|
|
3103
3100
|
refresh_period?: number | undefined;
|
|
@@ -3106,6 +3103,8 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3106
3103
|
removeRecentlyListed?: boolean | undefined;
|
|
3107
3104
|
removeRecentlyListedDays?: number | undefined;
|
|
3108
3105
|
} | undefined;
|
|
3106
|
+
dry_run_wallet?: number | undefined;
|
|
3107
|
+
max_open_trades?: number | undefined;
|
|
3109
3108
|
fiat_display_currency?: string | undefined;
|
|
3110
3109
|
unfilledtimeout?: {
|
|
3111
3110
|
entry: number;
|
|
@@ -3119,37 +3118,36 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3119
3118
|
enabled: boolean;
|
|
3120
3119
|
format: string;
|
|
3121
3120
|
webhookstatus: {
|
|
3122
|
-
|
|
3121
|
+
userId: string;
|
|
3123
3122
|
event: string;
|
|
3124
3123
|
status: string;
|
|
3125
|
-
|
|
3124
|
+
traderId: any;
|
|
3126
3125
|
};
|
|
3127
3126
|
webhookentry: {
|
|
3128
|
-
|
|
3129
|
-
traderId: any;
|
|
3130
|
-
stake_amount: string;
|
|
3127
|
+
userId: string;
|
|
3131
3128
|
stake_currency: string;
|
|
3129
|
+
stake_amount: string;
|
|
3132
3130
|
event: string;
|
|
3133
|
-
|
|
3131
|
+
traderId: any;
|
|
3134
3132
|
pair: string;
|
|
3135
3133
|
fiat_currency: string;
|
|
3136
3134
|
};
|
|
3137
3135
|
webhookentrycancel: {
|
|
3138
3136
|
limit: string;
|
|
3139
|
-
|
|
3140
|
-
stake_amount: string;
|
|
3137
|
+
userId: string;
|
|
3141
3138
|
stake_currency: string;
|
|
3139
|
+
stake_amount: string;
|
|
3142
3140
|
event: string;
|
|
3143
|
-
|
|
3141
|
+
traderId: any;
|
|
3144
3142
|
pair: string;
|
|
3145
3143
|
fiat_currency: string;
|
|
3146
3144
|
};
|
|
3147
3145
|
webhookentryfill: {
|
|
3148
|
-
|
|
3149
|
-
stake_amount: string;
|
|
3146
|
+
userId: string;
|
|
3150
3147
|
stake_currency: string;
|
|
3148
|
+
stake_amount: string;
|
|
3151
3149
|
event: string;
|
|
3152
|
-
|
|
3150
|
+
traderId: any;
|
|
3153
3151
|
pair: string;
|
|
3154
3152
|
trade_id: string;
|
|
3155
3153
|
open_rate: string;
|
|
@@ -3158,10 +3156,10 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3158
3156
|
};
|
|
3159
3157
|
webhookexit: {
|
|
3160
3158
|
limit: string;
|
|
3161
|
-
|
|
3159
|
+
userId: string;
|
|
3162
3160
|
stake_currency: string;
|
|
3163
3161
|
event: string;
|
|
3164
|
-
|
|
3162
|
+
traderId: any;
|
|
3165
3163
|
pair: string;
|
|
3166
3164
|
fiat_currency: string;
|
|
3167
3165
|
trade_id: string;
|
|
@@ -3176,22 +3174,23 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3176
3174
|
};
|
|
3177
3175
|
webhookexitcancel: {
|
|
3178
3176
|
limit: string;
|
|
3179
|
-
|
|
3177
|
+
userId: string;
|
|
3180
3178
|
stake_currency: string;
|
|
3181
3179
|
event: string;
|
|
3182
|
-
|
|
3180
|
+
traderId: any;
|
|
3183
3181
|
pair: string;
|
|
3184
3182
|
profit_amount: string;
|
|
3185
3183
|
profit_ratio: string;
|
|
3186
3184
|
};
|
|
3187
3185
|
webhookexitfill: {
|
|
3188
|
-
traderId: any;
|
|
3189
|
-
event: string;
|
|
3190
3186
|
userId: string;
|
|
3187
|
+
event: string;
|
|
3188
|
+
traderId: any;
|
|
3191
3189
|
pair: string;
|
|
3192
3190
|
close_rate: string;
|
|
3193
3191
|
};
|
|
3194
3192
|
} | undefined;
|
|
3193
|
+
reset?: boolean | undefined;
|
|
3195
3194
|
host: string;
|
|
3196
3195
|
name: any;
|
|
3197
3196
|
provider: "docker";
|
|
@@ -3201,20 +3200,20 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3201
3200
|
_id: string | {};
|
|
3202
3201
|
createdAt: any;
|
|
3203
3202
|
updatedAt: any;
|
|
3204
|
-
|
|
3205
|
-
strategyId: string | {};
|
|
3206
|
-
stake_amount: string | number;
|
|
3207
|
-
stake_currency: string;
|
|
3208
|
-
exchangeId: any;
|
|
3209
|
-
userId: any;
|
|
3203
|
+
connected: boolean;
|
|
3210
3204
|
which: string;
|
|
3205
|
+
userId: any;
|
|
3206
|
+
"traders/pods": any;
|
|
3211
3207
|
exchange: any;
|
|
3212
|
-
|
|
3208
|
+
exchangeId: any;
|
|
3209
|
+
stake_currency: string;
|
|
3210
|
+
stake_amount: string | number;
|
|
3213
3211
|
dry_run: boolean;
|
|
3214
3212
|
handling: string;
|
|
3215
3213
|
initial_state: string;
|
|
3216
3214
|
pairlists: any;
|
|
3217
3215
|
strategy: any;
|
|
3216
|
+
strategyId: string | {};
|
|
3218
3217
|
entry_pricing: {
|
|
3219
3218
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
3220
3219
|
use_order_book?: boolean | undefined;
|
|
@@ -3234,16 +3233,17 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3234
3233
|
api_server: {
|
|
3235
3234
|
password: string;
|
|
3236
3235
|
enabled: boolean;
|
|
3236
|
+
username: string;
|
|
3237
3237
|
listen_ip_address: string;
|
|
3238
3238
|
listen_port: number;
|
|
3239
3239
|
verbosity: string;
|
|
3240
3240
|
jwt_secret_key: string;
|
|
3241
3241
|
CORS_origins: string[];
|
|
3242
|
-
username: string;
|
|
3243
3242
|
};
|
|
3244
3243
|
pod: string;
|
|
3245
3244
|
}>;
|
|
3246
3245
|
}> | undefined;
|
|
3246
|
+
options?: any;
|
|
3247
3247
|
trader?: Partial<{
|
|
3248
3248
|
telegram?: {
|
|
3249
3249
|
access_hash?: string | null | undefined;
|
|
@@ -3253,19 +3253,19 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3253
3253
|
chat_id: any;
|
|
3254
3254
|
allow_custom_messages: boolean;
|
|
3255
3255
|
notification_settings: {
|
|
3256
|
-
status: "silent" | "on" | "off";
|
|
3257
3256
|
entry: "silent" | "on" | "off";
|
|
3258
3257
|
exit: {
|
|
3258
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
3259
3259
|
roi: "silent" | "on" | "off";
|
|
3260
3260
|
emergency_exit: "silent" | "on" | "off";
|
|
3261
3261
|
force_exit: "silent" | "on" | "off";
|
|
3262
3262
|
exit_signal: "silent" | "on" | "off";
|
|
3263
3263
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
3264
3264
|
stop_loss: "silent" | "on" | "off";
|
|
3265
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
3266
3265
|
custom_exit: "silent" | "on" | "off";
|
|
3267
3266
|
partial_exit: "silent" | "on" | "off";
|
|
3268
3267
|
};
|
|
3268
|
+
status: "silent" | "on" | "off";
|
|
3269
3269
|
warning: "silent" | "on" | "off";
|
|
3270
3270
|
startup: "silent" | "on" | "off";
|
|
3271
3271
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -3280,8 +3280,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3280
3280
|
reload: boolean;
|
|
3281
3281
|
balance_dust_level: number;
|
|
3282
3282
|
} | undefined;
|
|
3283
|
-
dry_run_wallet?: number | undefined;
|
|
3284
|
-
max_open_trades?: number | undefined;
|
|
3285
3283
|
plugins?: {
|
|
3286
3284
|
number_assets?: number | undefined;
|
|
3287
3285
|
refresh_period?: number | undefined;
|
|
@@ -3290,6 +3288,8 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3290
3288
|
removeRecentlyListed?: boolean | undefined;
|
|
3291
3289
|
removeRecentlyListedDays?: number | undefined;
|
|
3292
3290
|
} | undefined;
|
|
3291
|
+
dry_run_wallet?: number | undefined;
|
|
3292
|
+
max_open_trades?: number | undefined;
|
|
3293
3293
|
fiat_display_currency?: string | undefined;
|
|
3294
3294
|
unfilledtimeout?: {
|
|
3295
3295
|
entry: number;
|
|
@@ -3303,37 +3303,36 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3303
3303
|
enabled: boolean;
|
|
3304
3304
|
format: string;
|
|
3305
3305
|
webhookstatus: {
|
|
3306
|
-
|
|
3306
|
+
userId: string;
|
|
3307
3307
|
event: string;
|
|
3308
3308
|
status: string;
|
|
3309
|
-
|
|
3309
|
+
traderId: any;
|
|
3310
3310
|
};
|
|
3311
3311
|
webhookentry: {
|
|
3312
|
-
|
|
3313
|
-
traderId: any;
|
|
3314
|
-
stake_amount: string;
|
|
3312
|
+
userId: string;
|
|
3315
3313
|
stake_currency: string;
|
|
3314
|
+
stake_amount: string;
|
|
3316
3315
|
event: string;
|
|
3317
|
-
|
|
3316
|
+
traderId: any;
|
|
3318
3317
|
pair: string;
|
|
3319
3318
|
fiat_currency: string;
|
|
3320
3319
|
};
|
|
3321
3320
|
webhookentrycancel: {
|
|
3322
3321
|
limit: string;
|
|
3323
|
-
|
|
3324
|
-
stake_amount: string;
|
|
3322
|
+
userId: string;
|
|
3325
3323
|
stake_currency: string;
|
|
3324
|
+
stake_amount: string;
|
|
3326
3325
|
event: string;
|
|
3327
|
-
|
|
3326
|
+
traderId: any;
|
|
3328
3327
|
pair: string;
|
|
3329
3328
|
fiat_currency: string;
|
|
3330
3329
|
};
|
|
3331
3330
|
webhookentryfill: {
|
|
3332
|
-
|
|
3333
|
-
stake_amount: string;
|
|
3331
|
+
userId: string;
|
|
3334
3332
|
stake_currency: string;
|
|
3333
|
+
stake_amount: string;
|
|
3335
3334
|
event: string;
|
|
3336
|
-
|
|
3335
|
+
traderId: any;
|
|
3337
3336
|
pair: string;
|
|
3338
3337
|
trade_id: string;
|
|
3339
3338
|
open_rate: string;
|
|
@@ -3342,10 +3341,10 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3342
3341
|
};
|
|
3343
3342
|
webhookexit: {
|
|
3344
3343
|
limit: string;
|
|
3345
|
-
|
|
3344
|
+
userId: string;
|
|
3346
3345
|
stake_currency: string;
|
|
3347
3346
|
event: string;
|
|
3348
|
-
|
|
3347
|
+
traderId: any;
|
|
3349
3348
|
pair: string;
|
|
3350
3349
|
fiat_currency: string;
|
|
3351
3350
|
trade_id: string;
|
|
@@ -3360,22 +3359,23 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3360
3359
|
};
|
|
3361
3360
|
webhookexitcancel: {
|
|
3362
3361
|
limit: string;
|
|
3363
|
-
|
|
3362
|
+
userId: string;
|
|
3364
3363
|
stake_currency: string;
|
|
3365
3364
|
event: string;
|
|
3366
|
-
|
|
3365
|
+
traderId: any;
|
|
3367
3366
|
pair: string;
|
|
3368
3367
|
profit_amount: string;
|
|
3369
3368
|
profit_ratio: string;
|
|
3370
3369
|
};
|
|
3371
3370
|
webhookexitfill: {
|
|
3372
|
-
traderId: any;
|
|
3373
|
-
event: string;
|
|
3374
3371
|
userId: string;
|
|
3372
|
+
event: string;
|
|
3373
|
+
traderId: any;
|
|
3375
3374
|
pair: string;
|
|
3376
3375
|
close_rate: string;
|
|
3377
3376
|
};
|
|
3378
3377
|
} | undefined;
|
|
3378
|
+
reset?: boolean | undefined;
|
|
3379
3379
|
host: string;
|
|
3380
3380
|
name: any;
|
|
3381
3381
|
provider: "docker";
|
|
@@ -3383,22 +3383,22 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3383
3383
|
secret: string;
|
|
3384
3384
|
key: string;
|
|
3385
3385
|
_id: string | {};
|
|
3386
|
-
createdAt: any;
|
|
3387
|
-
updatedAt: any;
|
|
3388
|
-
|
|
3389
|
-
strategyId: string | {};
|
|
3390
|
-
stake_amount: string | number;
|
|
3391
|
-
stake_currency: string;
|
|
3392
|
-
exchangeId: any;
|
|
3393
|
-
userId: any;
|
|
3386
|
+
createdAt: any;
|
|
3387
|
+
updatedAt: any;
|
|
3388
|
+
connected: boolean;
|
|
3394
3389
|
which: string;
|
|
3390
|
+
userId: any;
|
|
3391
|
+
"traders/pods": any;
|
|
3395
3392
|
exchange: any;
|
|
3396
|
-
|
|
3393
|
+
exchangeId: any;
|
|
3394
|
+
stake_currency: string;
|
|
3395
|
+
stake_amount: string | number;
|
|
3397
3396
|
dry_run: boolean;
|
|
3398
3397
|
handling: string;
|
|
3399
3398
|
initial_state: string;
|
|
3400
3399
|
pairlists: any;
|
|
3401
3400
|
strategy: any;
|
|
3401
|
+
strategyId: string | {};
|
|
3402
3402
|
entry_pricing: {
|
|
3403
3403
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
3404
3404
|
use_order_book?: boolean | undefined;
|
|
@@ -3418,20 +3418,20 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3418
3418
|
api_server: {
|
|
3419
3419
|
password: string;
|
|
3420
3420
|
enabled: boolean;
|
|
3421
|
+
username: string;
|
|
3421
3422
|
listen_ip_address: string;
|
|
3422
3423
|
listen_port: number;
|
|
3423
3424
|
verbosity: string;
|
|
3424
3425
|
jwt_secret_key: string;
|
|
3425
3426
|
CORS_origins: string[];
|
|
3426
|
-
username: string;
|
|
3427
3427
|
};
|
|
3428
3428
|
pod: string;
|
|
3429
3429
|
}> | undefined;
|
|
3430
3430
|
_id: string | {};
|
|
3431
3431
|
createdAt: any;
|
|
3432
3432
|
updatedAt: any;
|
|
3433
|
-
traderId: any;
|
|
3434
3433
|
userId: any;
|
|
3434
|
+
traderId: any;
|
|
3435
3435
|
action: string;
|
|
3436
3436
|
result: any;
|
|
3437
3437
|
}, HookContext<TradersPodsApiService<import("./api.class").TradersPodsApiParams>>>;
|
|
@@ -3492,7 +3492,6 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3492
3492
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3493
3493
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
3494
3494
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
3495
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
3496
3495
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
3497
3496
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
3498
3497
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3617,6 +3616,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3617
3616
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
3618
3617
|
}>>;
|
|
3619
3618
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
3619
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3620
3620
|
host: import("@feathersjs/typebox").TString<string>;
|
|
3621
3621
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
3622
3622
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -3678,7 +3678,6 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3678
3678
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3679
3679
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
3680
3680
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
3681
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
3682
3681
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
3683
3682
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
3684
3683
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3803,6 +3802,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3803
3802
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
3804
3803
|
}>>;
|
|
3805
3804
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
3805
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3806
3806
|
host: import("@feathersjs/typebox").TString<string>;
|
|
3807
3807
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
3808
3808
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -3970,7 +3970,6 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3970
3970
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3971
3971
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
3972
3972
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
3973
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
3974
3973
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
3975
3974
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
3976
3975
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -4095,6 +4094,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
4095
4094
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
4096
4095
|
}>>;
|
|
4097
4096
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
4097
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4098
4098
|
host: import("@feathersjs/typebox").TString<string>;
|
|
4099
4099
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
4100
4100
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -4105,7 +4105,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
4105
4105
|
name: import("@feathersjs/typebox").TString<string>;
|
|
4106
4106
|
type: import("@feathersjs/typebox").TString<string>;
|
|
4107
4107
|
description: import("@feathersjs/typebox").TString<string>;
|
|
4108
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
4108
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
4109
4109
|
values: import("@feathersjs/typebox").TAny;
|
|
4110
4110
|
}>>>;
|
|
4111
4111
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -4124,27 +4124,23 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
4124
4124
|
export type TradersPodsApiPatch = Static<typeof tradersPodsApiPatchSchema>;
|
|
4125
4125
|
export declare const tradersPodsApiPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
4126
4126
|
export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
4127
|
-
options?: any;
|
|
4128
4127
|
'traders/pods'?: Partial<{
|
|
4129
4128
|
host?: string | undefined;
|
|
4130
4129
|
stop?: boolean | undefined;
|
|
4131
4130
|
provider: "docker";
|
|
4132
4131
|
_id: string | {};
|
|
4133
4132
|
options: any;
|
|
4134
|
-
strategyId: string | {};
|
|
4135
|
-
exchangeId: string;
|
|
4136
4133
|
exchange: Partial<{
|
|
4137
4134
|
password?: string | undefined;
|
|
4138
4135
|
name?: any;
|
|
4139
4136
|
apiKey?: string | undefined;
|
|
4137
|
+
token?: string | undefined;
|
|
4140
4138
|
secret?: string | undefined;
|
|
4141
4139
|
avatar?: any;
|
|
4142
4140
|
createdAt?: any;
|
|
4143
4141
|
updatedAt?: any;
|
|
4144
|
-
|
|
4145
|
-
which?: string | undefined;
|
|
4142
|
+
login?: string | undefined;
|
|
4146
4143
|
connected?: boolean | undefined;
|
|
4147
|
-
token?: string | undefined;
|
|
4148
4144
|
downloaded?: {
|
|
4149
4145
|
updatedAt: any;
|
|
4150
4146
|
size: string;
|
|
@@ -4172,15 +4168,17 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4172
4168
|
}[] | undefined;
|
|
4173
4169
|
whitelist?: any[] | undefined;
|
|
4174
4170
|
ccxt_async_config?: any;
|
|
4171
|
+
which?: string | undefined;
|
|
4175
4172
|
requiredCredentials?: any;
|
|
4176
4173
|
uid?: string | undefined;
|
|
4177
|
-
login?: string | undefined;
|
|
4178
4174
|
twofa?: string | undefined;
|
|
4179
4175
|
privateKey?: string | undefined;
|
|
4180
4176
|
walletAddress?: string | undefined;
|
|
4177
|
+
userId?: string | {} | undefined;
|
|
4181
4178
|
__v?: any;
|
|
4182
4179
|
_id: string | {};
|
|
4183
4180
|
}>;
|
|
4181
|
+
exchangeId: string;
|
|
4184
4182
|
strategy: Partial<{
|
|
4185
4183
|
_id?: string | {} | undefined;
|
|
4186
4184
|
traders?: {
|
|
@@ -4192,19 +4190,19 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4192
4190
|
chat_id: any;
|
|
4193
4191
|
allow_custom_messages: boolean;
|
|
4194
4192
|
notification_settings: {
|
|
4195
|
-
status: "silent" | "on" | "off";
|
|
4196
4193
|
entry: "silent" | "on" | "off";
|
|
4197
4194
|
exit: {
|
|
4195
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
4198
4196
|
roi: "silent" | "on" | "off";
|
|
4199
4197
|
emergency_exit: "silent" | "on" | "off";
|
|
4200
4198
|
force_exit: "silent" | "on" | "off";
|
|
4201
4199
|
exit_signal: "silent" | "on" | "off";
|
|
4202
4200
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
4203
4201
|
stop_loss: "silent" | "on" | "off";
|
|
4204
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
4205
4202
|
custom_exit: "silent" | "on" | "off";
|
|
4206
4203
|
partial_exit: "silent" | "on" | "off";
|
|
4207
4204
|
};
|
|
4205
|
+
status: "silent" | "on" | "off";
|
|
4208
4206
|
warning: "silent" | "on" | "off";
|
|
4209
4207
|
startup: "silent" | "on" | "off";
|
|
4210
4208
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -4219,8 +4217,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4219
4217
|
reload: boolean;
|
|
4220
4218
|
balance_dust_level: number;
|
|
4221
4219
|
} | undefined;
|
|
4222
|
-
dry_run_wallet?: number | undefined;
|
|
4223
|
-
max_open_trades?: number | undefined;
|
|
4224
4220
|
plugins?: {
|
|
4225
4221
|
number_assets?: number | undefined;
|
|
4226
4222
|
refresh_period?: number | undefined;
|
|
@@ -4229,6 +4225,8 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4229
4225
|
removeRecentlyListed?: boolean | undefined;
|
|
4230
4226
|
removeRecentlyListedDays?: number | undefined;
|
|
4231
4227
|
} | undefined;
|
|
4228
|
+
dry_run_wallet?: number | undefined;
|
|
4229
|
+
max_open_trades?: number | undefined;
|
|
4232
4230
|
fiat_display_currency?: string | undefined;
|
|
4233
4231
|
unfilledtimeout?: {
|
|
4234
4232
|
entry: number;
|
|
@@ -4242,37 +4240,36 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4242
4240
|
enabled: boolean;
|
|
4243
4241
|
format: string;
|
|
4244
4242
|
webhookstatus: {
|
|
4245
|
-
|
|
4243
|
+
userId: string;
|
|
4246
4244
|
event: string;
|
|
4247
4245
|
status: string;
|
|
4248
|
-
|
|
4246
|
+
traderId: any;
|
|
4249
4247
|
};
|
|
4250
4248
|
webhookentry: {
|
|
4251
|
-
|
|
4252
|
-
traderId: any;
|
|
4253
|
-
stake_amount: string;
|
|
4249
|
+
userId: string;
|
|
4254
4250
|
stake_currency: string;
|
|
4251
|
+
stake_amount: string;
|
|
4255
4252
|
event: string;
|
|
4256
|
-
|
|
4253
|
+
traderId: any;
|
|
4257
4254
|
pair: string;
|
|
4258
4255
|
fiat_currency: string;
|
|
4259
4256
|
};
|
|
4260
4257
|
webhookentrycancel: {
|
|
4261
4258
|
limit: string;
|
|
4262
|
-
|
|
4263
|
-
stake_amount: string;
|
|
4259
|
+
userId: string;
|
|
4264
4260
|
stake_currency: string;
|
|
4261
|
+
stake_amount: string;
|
|
4265
4262
|
event: string;
|
|
4266
|
-
|
|
4263
|
+
traderId: any;
|
|
4267
4264
|
pair: string;
|
|
4268
4265
|
fiat_currency: string;
|
|
4269
4266
|
};
|
|
4270
4267
|
webhookentryfill: {
|
|
4271
|
-
|
|
4272
|
-
stake_amount: string;
|
|
4268
|
+
userId: string;
|
|
4273
4269
|
stake_currency: string;
|
|
4270
|
+
stake_amount: string;
|
|
4274
4271
|
event: string;
|
|
4275
|
-
|
|
4272
|
+
traderId: any;
|
|
4276
4273
|
pair: string;
|
|
4277
4274
|
trade_id: string;
|
|
4278
4275
|
open_rate: string;
|
|
@@ -4281,10 +4278,10 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4281
4278
|
};
|
|
4282
4279
|
webhookexit: {
|
|
4283
4280
|
limit: string;
|
|
4284
|
-
|
|
4281
|
+
userId: string;
|
|
4285
4282
|
stake_currency: string;
|
|
4286
4283
|
event: string;
|
|
4287
|
-
|
|
4284
|
+
traderId: any;
|
|
4288
4285
|
pair: string;
|
|
4289
4286
|
fiat_currency: string;
|
|
4290
4287
|
trade_id: string;
|
|
@@ -4299,22 +4296,23 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4299
4296
|
};
|
|
4300
4297
|
webhookexitcancel: {
|
|
4301
4298
|
limit: string;
|
|
4302
|
-
|
|
4299
|
+
userId: string;
|
|
4303
4300
|
stake_currency: string;
|
|
4304
4301
|
event: string;
|
|
4305
|
-
|
|
4302
|
+
traderId: any;
|
|
4306
4303
|
pair: string;
|
|
4307
4304
|
profit_amount: string;
|
|
4308
4305
|
profit_ratio: string;
|
|
4309
4306
|
};
|
|
4310
4307
|
webhookexitfill: {
|
|
4311
|
-
traderId: any;
|
|
4312
|
-
event: string;
|
|
4313
4308
|
userId: string;
|
|
4309
|
+
event: string;
|
|
4310
|
+
traderId: any;
|
|
4314
4311
|
pair: string;
|
|
4315
4312
|
close_rate: string;
|
|
4316
4313
|
};
|
|
4317
4314
|
} | undefined;
|
|
4315
|
+
reset?: boolean | undefined;
|
|
4318
4316
|
host: string;
|
|
4319
4317
|
name: any;
|
|
4320
4318
|
provider: "docker";
|
|
@@ -4324,20 +4322,20 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4324
4322
|
_id: string | {};
|
|
4325
4323
|
createdAt: any;
|
|
4326
4324
|
updatedAt: any;
|
|
4327
|
-
|
|
4328
|
-
strategyId: string | {};
|
|
4329
|
-
stake_amount: string | number;
|
|
4330
|
-
stake_currency: string;
|
|
4331
|
-
exchangeId: any;
|
|
4332
|
-
userId: any;
|
|
4325
|
+
connected: boolean;
|
|
4333
4326
|
which: string;
|
|
4327
|
+
userId: any;
|
|
4328
|
+
"traders/pods": any;
|
|
4334
4329
|
exchange: any;
|
|
4335
|
-
|
|
4330
|
+
exchangeId: any;
|
|
4331
|
+
stake_currency: string;
|
|
4332
|
+
stake_amount: string | number;
|
|
4336
4333
|
dry_run: boolean;
|
|
4337
4334
|
handling: string;
|
|
4338
4335
|
initial_state: string;
|
|
4339
4336
|
pairlists: any;
|
|
4340
4337
|
strategy: any;
|
|
4338
|
+
strategyId: string | {};
|
|
4341
4339
|
entry_pricing: {
|
|
4342
4340
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
4343
4341
|
use_order_book?: boolean | undefined;
|
|
@@ -4357,35 +4355,34 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4357
4355
|
api_server: {
|
|
4358
4356
|
password: string;
|
|
4359
4357
|
enabled: boolean;
|
|
4358
|
+
username: string;
|
|
4360
4359
|
listen_ip_address: string;
|
|
4361
4360
|
listen_port: number;
|
|
4362
4361
|
verbosity: string;
|
|
4363
4362
|
jwt_secret_key: string;
|
|
4364
4363
|
CORS_origins: string[];
|
|
4365
|
-
username: string;
|
|
4366
4364
|
};
|
|
4367
4365
|
pod: string;
|
|
4368
4366
|
}[] | undefined;
|
|
4369
4367
|
createdAt?: any;
|
|
4370
4368
|
updatedAt?: any;
|
|
4369
|
+
userId?: string | {} | undefined;
|
|
4371
4370
|
'strategies/templates'?: {
|
|
4372
4371
|
_id?: string | {} | undefined;
|
|
4372
|
+
createdAt?: any;
|
|
4373
4373
|
values: any;
|
|
4374
4374
|
name: string;
|
|
4375
|
-
createdAt: any;
|
|
4376
4375
|
description: string;
|
|
4377
4376
|
type: string;
|
|
4378
4377
|
} | undefined;
|
|
4378
|
+
file?: any;
|
|
4379
|
+
templateId?: string | {} | undefined;
|
|
4380
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
4379
4381
|
stoploss?: number | undefined;
|
|
4380
4382
|
minimal_roi?: {
|
|
4381
4383
|
minutes: number;
|
|
4382
4384
|
profit: number;
|
|
4383
4385
|
}[] | undefined;
|
|
4384
|
-
results?: unknown;
|
|
4385
|
-
userId?: string | {} | undefined;
|
|
4386
|
-
file?: any;
|
|
4387
|
-
templateId?: string | {} | undefined;
|
|
4388
|
-
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
4389
4386
|
exit_sell_signal?: boolean | undefined;
|
|
4390
4387
|
exit_profit_only?: boolean | undefined;
|
|
4391
4388
|
exit_profit_offset?: number | undefined;
|
|
@@ -4394,10 +4391,10 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4394
4391
|
stoploss?: string | undefined;
|
|
4395
4392
|
entry?: "Limit" | "Market" | undefined;
|
|
4396
4393
|
exit?: "Limit" | "Market" | undefined;
|
|
4397
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
4398
4394
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
4399
4395
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
4400
4396
|
forcesell?: "Limit" | "Market" | undefined;
|
|
4397
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
4401
4398
|
stoploss_on_exchange_interval?: number | undefined;
|
|
4402
4399
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
4403
4400
|
} | undefined;
|
|
@@ -4429,10 +4426,12 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4429
4426
|
}[] | undefined;
|
|
4430
4427
|
indicators?: unknown[] | undefined;
|
|
4431
4428
|
code?: unknown;
|
|
4429
|
+
results?: unknown;
|
|
4432
4430
|
configured?: boolean | undefined;
|
|
4433
4431
|
name: any;
|
|
4434
4432
|
'strategies/indicators': any;
|
|
4435
4433
|
}>;
|
|
4434
|
+
strategyId: string | {};
|
|
4436
4435
|
pod: any;
|
|
4437
4436
|
trader: Partial<{
|
|
4438
4437
|
telegram?: {
|
|
@@ -4443,19 +4442,19 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4443
4442
|
chat_id: any;
|
|
4444
4443
|
allow_custom_messages: boolean;
|
|
4445
4444
|
notification_settings: {
|
|
4446
|
-
status: "silent" | "on" | "off";
|
|
4447
4445
|
entry: "silent" | "on" | "off";
|
|
4448
4446
|
exit: {
|
|
4447
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
4449
4448
|
roi: "silent" | "on" | "off";
|
|
4450
4449
|
emergency_exit: "silent" | "on" | "off";
|
|
4451
4450
|
force_exit: "silent" | "on" | "off";
|
|
4452
4451
|
exit_signal: "silent" | "on" | "off";
|
|
4453
4452
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
4454
4453
|
stop_loss: "silent" | "on" | "off";
|
|
4455
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
4456
4454
|
custom_exit: "silent" | "on" | "off";
|
|
4457
4455
|
partial_exit: "silent" | "on" | "off";
|
|
4458
4456
|
};
|
|
4457
|
+
status: "silent" | "on" | "off";
|
|
4459
4458
|
warning: "silent" | "on" | "off";
|
|
4460
4459
|
startup: "silent" | "on" | "off";
|
|
4461
4460
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -4470,8 +4469,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4470
4469
|
reload: boolean;
|
|
4471
4470
|
balance_dust_level: number;
|
|
4472
4471
|
} | undefined;
|
|
4473
|
-
dry_run_wallet?: number | undefined;
|
|
4474
|
-
max_open_trades?: number | undefined;
|
|
4475
4472
|
plugins?: {
|
|
4476
4473
|
number_assets?: number | undefined;
|
|
4477
4474
|
refresh_period?: number | undefined;
|
|
@@ -4480,6 +4477,8 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4480
4477
|
removeRecentlyListed?: boolean | undefined;
|
|
4481
4478
|
removeRecentlyListedDays?: number | undefined;
|
|
4482
4479
|
} | undefined;
|
|
4480
|
+
dry_run_wallet?: number | undefined;
|
|
4481
|
+
max_open_trades?: number | undefined;
|
|
4483
4482
|
fiat_display_currency?: string | undefined;
|
|
4484
4483
|
unfilledtimeout?: {
|
|
4485
4484
|
entry: number;
|
|
@@ -4493,37 +4492,36 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4493
4492
|
enabled: boolean;
|
|
4494
4493
|
format: string;
|
|
4495
4494
|
webhookstatus: {
|
|
4496
|
-
|
|
4495
|
+
userId: string;
|
|
4497
4496
|
event: string;
|
|
4498
4497
|
status: string;
|
|
4499
|
-
|
|
4498
|
+
traderId: any;
|
|
4500
4499
|
};
|
|
4501
4500
|
webhookentry: {
|
|
4502
|
-
|
|
4503
|
-
traderId: any;
|
|
4504
|
-
stake_amount: string;
|
|
4501
|
+
userId: string;
|
|
4505
4502
|
stake_currency: string;
|
|
4503
|
+
stake_amount: string;
|
|
4506
4504
|
event: string;
|
|
4507
|
-
|
|
4505
|
+
traderId: any;
|
|
4508
4506
|
pair: string;
|
|
4509
4507
|
fiat_currency: string;
|
|
4510
4508
|
};
|
|
4511
4509
|
webhookentrycancel: {
|
|
4512
4510
|
limit: string;
|
|
4513
|
-
|
|
4514
|
-
stake_amount: string;
|
|
4511
|
+
userId: string;
|
|
4515
4512
|
stake_currency: string;
|
|
4513
|
+
stake_amount: string;
|
|
4516
4514
|
event: string;
|
|
4517
|
-
|
|
4515
|
+
traderId: any;
|
|
4518
4516
|
pair: string;
|
|
4519
4517
|
fiat_currency: string;
|
|
4520
4518
|
};
|
|
4521
4519
|
webhookentryfill: {
|
|
4522
|
-
|
|
4523
|
-
stake_amount: string;
|
|
4520
|
+
userId: string;
|
|
4524
4521
|
stake_currency: string;
|
|
4522
|
+
stake_amount: string;
|
|
4525
4523
|
event: string;
|
|
4526
|
-
|
|
4524
|
+
traderId: any;
|
|
4527
4525
|
pair: string;
|
|
4528
4526
|
trade_id: string;
|
|
4529
4527
|
open_rate: string;
|
|
@@ -4532,10 +4530,10 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4532
4530
|
};
|
|
4533
4531
|
webhookexit: {
|
|
4534
4532
|
limit: string;
|
|
4535
|
-
|
|
4533
|
+
userId: string;
|
|
4536
4534
|
stake_currency: string;
|
|
4537
4535
|
event: string;
|
|
4538
|
-
|
|
4536
|
+
traderId: any;
|
|
4539
4537
|
pair: string;
|
|
4540
4538
|
fiat_currency: string;
|
|
4541
4539
|
trade_id: string;
|
|
@@ -4550,22 +4548,23 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4550
4548
|
};
|
|
4551
4549
|
webhookexitcancel: {
|
|
4552
4550
|
limit: string;
|
|
4553
|
-
|
|
4551
|
+
userId: string;
|
|
4554
4552
|
stake_currency: string;
|
|
4555
4553
|
event: string;
|
|
4556
|
-
|
|
4554
|
+
traderId: any;
|
|
4557
4555
|
pair: string;
|
|
4558
4556
|
profit_amount: string;
|
|
4559
4557
|
profit_ratio: string;
|
|
4560
4558
|
};
|
|
4561
4559
|
webhookexitfill: {
|
|
4562
|
-
traderId: any;
|
|
4563
|
-
event: string;
|
|
4564
4560
|
userId: string;
|
|
4561
|
+
event: string;
|
|
4562
|
+
traderId: any;
|
|
4565
4563
|
pair: string;
|
|
4566
4564
|
close_rate: string;
|
|
4567
4565
|
};
|
|
4568
4566
|
} | undefined;
|
|
4567
|
+
reset?: boolean | undefined;
|
|
4569
4568
|
host: string;
|
|
4570
4569
|
name: any;
|
|
4571
4570
|
provider: "docker";
|
|
@@ -4575,20 +4574,20 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4575
4574
|
_id: string | {};
|
|
4576
4575
|
createdAt: any;
|
|
4577
4576
|
updatedAt: any;
|
|
4578
|
-
|
|
4579
|
-
strategyId: string | {};
|
|
4580
|
-
stake_amount: string | number;
|
|
4581
|
-
stake_currency: string;
|
|
4582
|
-
exchangeId: any;
|
|
4583
|
-
userId: any;
|
|
4577
|
+
connected: boolean;
|
|
4584
4578
|
which: string;
|
|
4579
|
+
userId: any;
|
|
4580
|
+
"traders/pods": any;
|
|
4585
4581
|
exchange: any;
|
|
4586
|
-
|
|
4582
|
+
exchangeId: any;
|
|
4583
|
+
stake_currency: string;
|
|
4584
|
+
stake_amount: string | number;
|
|
4587
4585
|
dry_run: boolean;
|
|
4588
4586
|
handling: string;
|
|
4589
4587
|
initial_state: string;
|
|
4590
4588
|
pairlists: any;
|
|
4591
4589
|
strategy: any;
|
|
4590
|
+
strategyId: string | {};
|
|
4592
4591
|
entry_pricing: {
|
|
4593
4592
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
4594
4593
|
use_order_book?: boolean | undefined;
|
|
@@ -4608,16 +4607,17 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4608
4607
|
api_server: {
|
|
4609
4608
|
password: string;
|
|
4610
4609
|
enabled: boolean;
|
|
4610
|
+
username: string;
|
|
4611
4611
|
listen_ip_address: string;
|
|
4612
4612
|
listen_port: number;
|
|
4613
4613
|
verbosity: string;
|
|
4614
4614
|
jwt_secret_key: string;
|
|
4615
4615
|
CORS_origins: string[];
|
|
4616
|
-
username: string;
|
|
4617
4616
|
};
|
|
4618
4617
|
pod: string;
|
|
4619
4618
|
}>;
|
|
4620
4619
|
}> | undefined;
|
|
4620
|
+
options?: any;
|
|
4621
4621
|
trader?: Partial<{
|
|
4622
4622
|
telegram?: {
|
|
4623
4623
|
access_hash?: string | null | undefined;
|
|
@@ -4627,19 +4627,19 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4627
4627
|
chat_id: any;
|
|
4628
4628
|
allow_custom_messages: boolean;
|
|
4629
4629
|
notification_settings: {
|
|
4630
|
-
status: "silent" | "on" | "off";
|
|
4631
4630
|
entry: "silent" | "on" | "off";
|
|
4632
4631
|
exit: {
|
|
4632
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
4633
4633
|
roi: "silent" | "on" | "off";
|
|
4634
4634
|
emergency_exit: "silent" | "on" | "off";
|
|
4635
4635
|
force_exit: "silent" | "on" | "off";
|
|
4636
4636
|
exit_signal: "silent" | "on" | "off";
|
|
4637
4637
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
4638
4638
|
stop_loss: "silent" | "on" | "off";
|
|
4639
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
4640
4639
|
custom_exit: "silent" | "on" | "off";
|
|
4641
4640
|
partial_exit: "silent" | "on" | "off";
|
|
4642
4641
|
};
|
|
4642
|
+
status: "silent" | "on" | "off";
|
|
4643
4643
|
warning: "silent" | "on" | "off";
|
|
4644
4644
|
startup: "silent" | "on" | "off";
|
|
4645
4645
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -4654,8 +4654,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4654
4654
|
reload: boolean;
|
|
4655
4655
|
balance_dust_level: number;
|
|
4656
4656
|
} | undefined;
|
|
4657
|
-
dry_run_wallet?: number | undefined;
|
|
4658
|
-
max_open_trades?: number | undefined;
|
|
4659
4657
|
plugins?: {
|
|
4660
4658
|
number_assets?: number | undefined;
|
|
4661
4659
|
refresh_period?: number | undefined;
|
|
@@ -4664,6 +4662,8 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4664
4662
|
removeRecentlyListed?: boolean | undefined;
|
|
4665
4663
|
removeRecentlyListedDays?: number | undefined;
|
|
4666
4664
|
} | undefined;
|
|
4665
|
+
dry_run_wallet?: number | undefined;
|
|
4666
|
+
max_open_trades?: number | undefined;
|
|
4667
4667
|
fiat_display_currency?: string | undefined;
|
|
4668
4668
|
unfilledtimeout?: {
|
|
4669
4669
|
entry: number;
|
|
@@ -4677,37 +4677,36 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4677
4677
|
enabled: boolean;
|
|
4678
4678
|
format: string;
|
|
4679
4679
|
webhookstatus: {
|
|
4680
|
-
|
|
4680
|
+
userId: string;
|
|
4681
4681
|
event: string;
|
|
4682
4682
|
status: string;
|
|
4683
|
-
|
|
4683
|
+
traderId: any;
|
|
4684
4684
|
};
|
|
4685
4685
|
webhookentry: {
|
|
4686
|
-
|
|
4687
|
-
traderId: any;
|
|
4688
|
-
stake_amount: string;
|
|
4686
|
+
userId: string;
|
|
4689
4687
|
stake_currency: string;
|
|
4688
|
+
stake_amount: string;
|
|
4690
4689
|
event: string;
|
|
4691
|
-
|
|
4690
|
+
traderId: any;
|
|
4692
4691
|
pair: string;
|
|
4693
4692
|
fiat_currency: string;
|
|
4694
4693
|
};
|
|
4695
4694
|
webhookentrycancel: {
|
|
4696
4695
|
limit: string;
|
|
4697
|
-
|
|
4698
|
-
stake_amount: string;
|
|
4696
|
+
userId: string;
|
|
4699
4697
|
stake_currency: string;
|
|
4698
|
+
stake_amount: string;
|
|
4700
4699
|
event: string;
|
|
4701
|
-
|
|
4700
|
+
traderId: any;
|
|
4702
4701
|
pair: string;
|
|
4703
4702
|
fiat_currency: string;
|
|
4704
4703
|
};
|
|
4705
4704
|
webhookentryfill: {
|
|
4706
|
-
|
|
4707
|
-
stake_amount: string;
|
|
4705
|
+
userId: string;
|
|
4708
4706
|
stake_currency: string;
|
|
4707
|
+
stake_amount: string;
|
|
4709
4708
|
event: string;
|
|
4710
|
-
|
|
4709
|
+
traderId: any;
|
|
4711
4710
|
pair: string;
|
|
4712
4711
|
trade_id: string;
|
|
4713
4712
|
open_rate: string;
|
|
@@ -4716,10 +4715,10 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4716
4715
|
};
|
|
4717
4716
|
webhookexit: {
|
|
4718
4717
|
limit: string;
|
|
4719
|
-
|
|
4718
|
+
userId: string;
|
|
4720
4719
|
stake_currency: string;
|
|
4721
4720
|
event: string;
|
|
4722
|
-
|
|
4721
|
+
traderId: any;
|
|
4723
4722
|
pair: string;
|
|
4724
4723
|
fiat_currency: string;
|
|
4725
4724
|
trade_id: string;
|
|
@@ -4734,22 +4733,23 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4734
4733
|
};
|
|
4735
4734
|
webhookexitcancel: {
|
|
4736
4735
|
limit: string;
|
|
4737
|
-
|
|
4736
|
+
userId: string;
|
|
4738
4737
|
stake_currency: string;
|
|
4739
4738
|
event: string;
|
|
4740
|
-
|
|
4739
|
+
traderId: any;
|
|
4741
4740
|
pair: string;
|
|
4742
4741
|
profit_amount: string;
|
|
4743
4742
|
profit_ratio: string;
|
|
4744
4743
|
};
|
|
4745
4744
|
webhookexitfill: {
|
|
4746
|
-
traderId: any;
|
|
4747
|
-
event: string;
|
|
4748
4745
|
userId: string;
|
|
4746
|
+
event: string;
|
|
4747
|
+
traderId: any;
|
|
4749
4748
|
pair: string;
|
|
4750
4749
|
close_rate: string;
|
|
4751
4750
|
};
|
|
4752
4751
|
} | undefined;
|
|
4752
|
+
reset?: boolean | undefined;
|
|
4753
4753
|
host: string;
|
|
4754
4754
|
name: any;
|
|
4755
4755
|
provider: "docker";
|
|
@@ -4759,20 +4759,20 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4759
4759
|
_id: string | {};
|
|
4760
4760
|
createdAt: any;
|
|
4761
4761
|
updatedAt: any;
|
|
4762
|
-
|
|
4763
|
-
strategyId: string | {};
|
|
4764
|
-
stake_amount: string | number;
|
|
4765
|
-
stake_currency: string;
|
|
4766
|
-
exchangeId: any;
|
|
4767
|
-
userId: any;
|
|
4762
|
+
connected: boolean;
|
|
4768
4763
|
which: string;
|
|
4764
|
+
userId: any;
|
|
4765
|
+
"traders/pods": any;
|
|
4769
4766
|
exchange: any;
|
|
4770
|
-
|
|
4767
|
+
exchangeId: any;
|
|
4768
|
+
stake_currency: string;
|
|
4769
|
+
stake_amount: string | number;
|
|
4771
4770
|
dry_run: boolean;
|
|
4772
4771
|
handling: string;
|
|
4773
4772
|
initial_state: string;
|
|
4774
4773
|
pairlists: any;
|
|
4775
4774
|
strategy: any;
|
|
4775
|
+
strategyId: string | {};
|
|
4776
4776
|
entry_pricing: {
|
|
4777
4777
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
4778
4778
|
use_order_book?: boolean | undefined;
|
|
@@ -4792,20 +4792,20 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4792
4792
|
api_server: {
|
|
4793
4793
|
password: string;
|
|
4794
4794
|
enabled: boolean;
|
|
4795
|
+
username: string;
|
|
4795
4796
|
listen_ip_address: string;
|
|
4796
4797
|
listen_port: number;
|
|
4797
4798
|
verbosity: string;
|
|
4798
4799
|
jwt_secret_key: string;
|
|
4799
4800
|
CORS_origins: string[];
|
|
4800
|
-
username: string;
|
|
4801
4801
|
};
|
|
4802
4802
|
pod: string;
|
|
4803
4803
|
}> | undefined;
|
|
4804
4804
|
_id: string | {};
|
|
4805
4805
|
createdAt: any;
|
|
4806
4806
|
updatedAt: any;
|
|
4807
|
-
traderId: any;
|
|
4808
4807
|
userId: any;
|
|
4808
|
+
traderId: any;
|
|
4809
4809
|
action: string;
|
|
4810
4810
|
result: any;
|
|
4811
4811
|
}, HookContext<TradersPodsApiService<import("./api.class").TradersPodsApiParams>>>;
|
|
@@ -4866,7 +4866,6 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
4866
4866
|
traderId: import("@feathersjs/typebox").TAny;
|
|
4867
4867
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
4868
4868
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
4869
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
4870
4869
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
4871
4870
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
4872
4871
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -4991,6 +4990,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
4991
4990
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
4992
4991
|
}>>;
|
|
4993
4992
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
4993
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4994
4994
|
host: import("@feathersjs/typebox").TString<string>;
|
|
4995
4995
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
4996
4996
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -5052,7 +5052,6 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5052
5052
|
traderId: import("@feathersjs/typebox").TAny;
|
|
5053
5053
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
5054
5054
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
5055
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
5056
5055
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
5057
5056
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
5058
5057
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -5177,6 +5176,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5177
5176
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
5178
5177
|
}>>;
|
|
5179
5178
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
5179
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
5180
5180
|
host: import("@feathersjs/typebox").TString<string>;
|
|
5181
5181
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
5182
5182
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -5344,7 +5344,6 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5344
5344
|
traderId: import("@feathersjs/typebox").TAny;
|
|
5345
5345
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
5346
5346
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
5347
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
5348
5347
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
5349
5348
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
5350
5349
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -5469,6 +5468,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5469
5468
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
5470
5469
|
}>>;
|
|
5471
5470
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
5471
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
5472
5472
|
host: import("@feathersjs/typebox").TString<string>;
|
|
5473
5473
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
5474
5474
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -5479,7 +5479,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5479
5479
|
name: import("@feathersjs/typebox").TString<string>;
|
|
5480
5480
|
type: import("@feathersjs/typebox").TString<string>;
|
|
5481
5481
|
description: import("@feathersjs/typebox").TString<string>;
|
|
5482
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
5482
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
5483
5483
|
values: import("@feathersjs/typebox").TAny;
|
|
5484
5484
|
}>>>;
|
|
5485
5485
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -5501,12 +5501,12 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5501
5501
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
5502
5502
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5503
5503
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5504
|
-
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5505
5504
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5505
|
+
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5506
5506
|
action: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5507
5507
|
result: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5508
5508
|
}>;
|
|
5509
|
-
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "
|
|
5509
|
+
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "userId" | "traderId" | "action" | "result")[]>;
|
|
5510
5510
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5511
5511
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5512
5512
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
@@ -5514,8 +5514,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5514
5514
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5515
5515
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5516
5516
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5517
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5518
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5517
|
+
$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<{}>]>>;
|
|
5518
|
+
$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<{}>]>>;
|
|
5519
5519
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5520
5520
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5521
5521
|
} | undefined>]>>]>>;
|
|
@@ -5525,30 +5525,30 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5525
5525
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5526
5526
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5527
5527
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5528
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5529
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5528
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5529
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5530
5530
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5531
5531
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5532
5532
|
} | undefined>]>>]>>;
|
|
5533
|
-
|
|
5533
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5534
5534
|
$gt: import("@feathersjs/typebox").TAny;
|
|
5535
5535
|
$gte: import("@feathersjs/typebox").TAny;
|
|
5536
5536
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5537
5537
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5538
5538
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5539
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5540
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5539
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5540
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5541
5541
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5542
5542
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5543
5543
|
} | undefined>]>>]>>;
|
|
5544
|
-
|
|
5544
|
+
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5545
5545
|
$gt: import("@feathersjs/typebox").TAny;
|
|
5546
5546
|
$gte: import("@feathersjs/typebox").TAny;
|
|
5547
5547
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5548
5548
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5549
5549
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5550
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5551
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5550
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5551
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5552
5552
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5553
5553
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5554
5554
|
} | undefined>]>>]>>;
|
|
@@ -5558,8 +5558,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5558
5558
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
5559
5559
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
5560
5560
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
5561
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5562
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5561
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5562
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5563
5563
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5564
5564
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5565
5565
|
} | undefined>]>>]>>;
|
|
@@ -5569,8 +5569,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5569
5569
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5570
5570
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5571
5571
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5572
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5573
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5572
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5573
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5574
5574
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5575
5575
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5576
5576
|
} | undefined>]>>]>>;
|
|
@@ -5582,8 +5582,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5582
5582
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5583
5583
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5584
5584
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5585
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5586
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5585
|
+
$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<{}>]>>;
|
|
5586
|
+
$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<{}>]>>;
|
|
5587
5587
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5588
5588
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5589
5589
|
} | undefined>]>>]>>;
|
|
@@ -5593,30 +5593,30 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5593
5593
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5594
5594
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5595
5595
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5596
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5597
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5596
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5597
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5598
5598
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5599
5599
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5600
5600
|
} | undefined>]>>]>>;
|
|
5601
|
-
|
|
5601
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5602
5602
|
$gt: import("@feathersjs/typebox").TAny;
|
|
5603
5603
|
$gte: import("@feathersjs/typebox").TAny;
|
|
5604
5604
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5605
5605
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5606
5606
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5607
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5608
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5607
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5608
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5609
5609
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5610
5610
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5611
5611
|
} | undefined>]>>]>>;
|
|
5612
|
-
|
|
5612
|
+
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5613
5613
|
$gt: import("@feathersjs/typebox").TAny;
|
|
5614
5614
|
$gte: import("@feathersjs/typebox").TAny;
|
|
5615
5615
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5616
5616
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5617
5617
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5618
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5619
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5618
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5619
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5620
5620
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5621
5621
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5622
5622
|
} | undefined>]>>]>>;
|
|
@@ -5626,8 +5626,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5626
5626
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
5627
5627
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
5628
5628
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
5629
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5630
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5629
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5630
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5631
5631
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5632
5632
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5633
5633
|
} | undefined>]>>]>>;
|
|
@@ -5637,8 +5637,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5637
5637
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5638
5638
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5639
5639
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5640
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5641
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5640
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5641
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5642
5642
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5643
5643
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5644
5644
|
} | undefined>]>>]>>;
|
|
@@ -5651,8 +5651,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5651
5651
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5652
5652
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5653
5653
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5654
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5655
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5654
|
+
$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<{}>]>>;
|
|
5655
|
+
$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<{}>]>>;
|
|
5656
5656
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5657
5657
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5658
5658
|
} | undefined>]>>]>>;
|
|
@@ -5662,30 +5662,30 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5662
5662
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5663
5663
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5664
5664
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5665
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5666
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5665
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5666
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5667
5667
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5668
5668
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5669
5669
|
} | undefined>]>>]>>;
|
|
5670
|
-
|
|
5670
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5671
5671
|
$gt: import("@feathersjs/typebox").TAny;
|
|
5672
5672
|
$gte: import("@feathersjs/typebox").TAny;
|
|
5673
5673
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5674
5674
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5675
5675
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5676
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5677
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5676
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5677
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5678
5678
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5679
5679
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5680
5680
|
} | undefined>]>>]>>;
|
|
5681
|
-
|
|
5681
|
+
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5682
5682
|
$gt: import("@feathersjs/typebox").TAny;
|
|
5683
5683
|
$gte: import("@feathersjs/typebox").TAny;
|
|
5684
5684
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5685
5685
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5686
5686
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5687
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5688
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5687
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5688
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5689
5689
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5690
5690
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5691
5691
|
} | undefined>]>>]>>;
|
|
@@ -5695,8 +5695,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5695
5695
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
5696
5696
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
5697
5697
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
5698
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5699
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5698
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5699
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5700
5700
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5701
5701
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5702
5702
|
} | undefined>]>>]>>;
|
|
@@ -5706,8 +5706,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5706
5706
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5707
5707
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5708
5708
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5709
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5710
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5709
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5710
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5711
5711
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5712
5712
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5713
5713
|
} | undefined>]>>]>>;
|
|
@@ -5719,8 +5719,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5719
5719
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5720
5720
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5721
5721
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5722
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5723
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5722
|
+
$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<{}>]>>;
|
|
5723
|
+
$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<{}>]>>;
|
|
5724
5724
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5725
5725
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5726
5726
|
} | undefined>]>>]>>;
|
|
@@ -5730,30 +5730,30 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5730
5730
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5731
5731
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5732
5732
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5733
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5734
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5733
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5734
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5735
5735
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5736
5736
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5737
5737
|
} | undefined>]>>]>>;
|
|
5738
|
-
|
|
5738
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5739
5739
|
$gt: import("@feathersjs/typebox").TAny;
|
|
5740
5740
|
$gte: import("@feathersjs/typebox").TAny;
|
|
5741
5741
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5742
5742
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5743
5743
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5744
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5745
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5744
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5745
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5746
5746
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5747
5747
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5748
5748
|
} | undefined>]>>]>>;
|
|
5749
|
-
|
|
5749
|
+
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5750
5750
|
$gt: import("@feathersjs/typebox").TAny;
|
|
5751
5751
|
$gte: import("@feathersjs/typebox").TAny;
|
|
5752
5752
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5753
5753
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5754
5754
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5755
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5756
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5755
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5756
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5757
5757
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5758
5758
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5759
5759
|
} | undefined>]>>]>>;
|
|
@@ -5763,8 +5763,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5763
5763
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
5764
5764
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
5765
5765
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
5766
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5767
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5766
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5767
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5768
5768
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5769
5769
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5770
5770
|
} | undefined>]>>]>>;
|
|
@@ -5774,8 +5774,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5774
5774
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5775
5775
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5776
5776
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5777
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5778
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5777
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5778
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5779
5779
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5780
5780
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5781
5781
|
} | undefined>]>>]>>;
|
|
@@ -5788,12 +5788,12 @@ export declare const tradersPodsApiQueryResolver: import("@feathersjs/schema").R
|
|
|
5788
5788
|
$sort: {
|
|
5789
5789
|
_id?: number | undefined;
|
|
5790
5790
|
createdAt?: number | undefined;
|
|
5791
|
-
traderId?: number | undefined;
|
|
5792
5791
|
userId?: number | undefined;
|
|
5792
|
+
traderId?: number | undefined;
|
|
5793
5793
|
action?: number | undefined;
|
|
5794
5794
|
result?: number | undefined;
|
|
5795
5795
|
};
|
|
5796
|
-
$select: ("_id" | "createdAt" | "
|
|
5796
|
+
$select: ("_id" | "createdAt" | "userId" | "traderId" | "action" | "result")[];
|
|
5797
5797
|
$and: ({
|
|
5798
5798
|
_id?: string | {} | Partial<{
|
|
5799
5799
|
$gt: string | {};
|
|
@@ -5801,20 +5801,20 @@ export declare const tradersPodsApiQueryResolver: import("@feathersjs/schema").R
|
|
|
5801
5801
|
$lt: string | {};
|
|
5802
5802
|
$lte: string | {};
|
|
5803
5803
|
$ne: string | {};
|
|
5804
|
-
$in: (string | {})[];
|
|
5805
|
-
$nin: (string | {})[];
|
|
5804
|
+
$in: string | {} | (string | {})[];
|
|
5805
|
+
$nin: string | {} | (string | {})[];
|
|
5806
5806
|
} & {}> | undefined;
|
|
5807
5807
|
createdAt?: any;
|
|
5808
|
-
traderId?: any;
|
|
5809
5808
|
userId?: any;
|
|
5809
|
+
traderId?: any;
|
|
5810
5810
|
action?: string | Partial<{
|
|
5811
5811
|
$gt: string;
|
|
5812
5812
|
$gte: string;
|
|
5813
5813
|
$lt: string;
|
|
5814
5814
|
$lte: string;
|
|
5815
5815
|
$ne: string;
|
|
5816
|
-
$in: string[];
|
|
5817
|
-
$nin: string[];
|
|
5816
|
+
$in: string | string[];
|
|
5817
|
+
$nin: string | string[];
|
|
5818
5818
|
} & {}> | undefined;
|
|
5819
5819
|
result?: any;
|
|
5820
5820
|
} | {
|
|
@@ -5825,20 +5825,20 @@ export declare const tradersPodsApiQueryResolver: import("@feathersjs/schema").R
|
|
|
5825
5825
|
$lt: string | {};
|
|
5826
5826
|
$lte: string | {};
|
|
5827
5827
|
$ne: string | {};
|
|
5828
|
-
$in: (string | {})[];
|
|
5829
|
-
$nin: (string | {})[];
|
|
5828
|
+
$in: string | {} | (string | {})[];
|
|
5829
|
+
$nin: string | {} | (string | {})[];
|
|
5830
5830
|
} & {}> | undefined;
|
|
5831
5831
|
createdAt?: any;
|
|
5832
|
-
traderId?: any;
|
|
5833
5832
|
userId?: any;
|
|
5833
|
+
traderId?: any;
|
|
5834
5834
|
action?: string | Partial<{
|
|
5835
5835
|
$gt: string;
|
|
5836
5836
|
$gte: string;
|
|
5837
5837
|
$lt: string;
|
|
5838
5838
|
$lte: string;
|
|
5839
5839
|
$ne: string;
|
|
5840
|
-
$in: string[];
|
|
5841
|
-
$nin: string[];
|
|
5840
|
+
$in: string | string[];
|
|
5841
|
+
$nin: string | string[];
|
|
5842
5842
|
} & {}> | undefined;
|
|
5843
5843
|
result?: any;
|
|
5844
5844
|
}[];
|
|
@@ -5850,20 +5850,20 @@ export declare const tradersPodsApiQueryResolver: import("@feathersjs/schema").R
|
|
|
5850
5850
|
$lt: string | {};
|
|
5851
5851
|
$lte: string | {};
|
|
5852
5852
|
$ne: string | {};
|
|
5853
|
-
$in: (string | {})[];
|
|
5854
|
-
$nin: (string | {})[];
|
|
5853
|
+
$in: string | {} | (string | {})[];
|
|
5854
|
+
$nin: string | {} | (string | {})[];
|
|
5855
5855
|
} & {}> | undefined;
|
|
5856
5856
|
createdAt?: any;
|
|
5857
|
-
traderId?: any;
|
|
5858
5857
|
userId?: any;
|
|
5858
|
+
traderId?: any;
|
|
5859
5859
|
action?: string | Partial<{
|
|
5860
5860
|
$gt: string;
|
|
5861
5861
|
$gte: string;
|
|
5862
5862
|
$lt: string;
|
|
5863
5863
|
$lte: string;
|
|
5864
5864
|
$ne: string;
|
|
5865
|
-
$in: string[];
|
|
5866
|
-
$nin: string[];
|
|
5865
|
+
$in: string | string[];
|
|
5866
|
+
$nin: string | string[];
|
|
5867
5867
|
} & {}> | undefined;
|
|
5868
5868
|
result?: any;
|
|
5869
5869
|
}[];
|
|
@@ -5874,20 +5874,20 @@ export declare const tradersPodsApiQueryResolver: import("@feathersjs/schema").R
|
|
|
5874
5874
|
$lt: string | {};
|
|
5875
5875
|
$lte: string | {};
|
|
5876
5876
|
$ne: string | {};
|
|
5877
|
-
$in: (string | {})[];
|
|
5878
|
-
$nin: (string | {})[];
|
|
5877
|
+
$in: string | {} | (string | {})[];
|
|
5878
|
+
$nin: string | {} | (string | {})[];
|
|
5879
5879
|
} & {}> | undefined;
|
|
5880
5880
|
createdAt?: any;
|
|
5881
|
-
traderId?: any;
|
|
5882
5881
|
userId?: any;
|
|
5882
|
+
traderId?: any;
|
|
5883
5883
|
action?: string | Partial<{
|
|
5884
5884
|
$gt: string;
|
|
5885
5885
|
$gte: string;
|
|
5886
5886
|
$lt: string;
|
|
5887
5887
|
$lte: string;
|
|
5888
5888
|
$ne: string;
|
|
5889
|
-
$in: string[];
|
|
5890
|
-
$nin: string[];
|
|
5889
|
+
$in: string | string[];
|
|
5890
|
+
$nin: string | string[];
|
|
5891
5891
|
} & {}> | undefined;
|
|
5892
5892
|
result?: any;
|
|
5893
5893
|
} & {}, HookContext<TradersPodsApiService<import("./api.class").TradersPodsApiParams>>>;
|