@cryptorobot.ai/client 0.0.32 → 0.0.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/app.d.ts +1 -0
- package/lib/client.d.ts +2 -0
- package/lib/client.js +7 -5
- package/lib/configuration.d.ts +12 -1
- package/lib/helpers/app.helper.d.ts +1 -0
- package/lib/helpers/ccxt.helper.d.ts +2 -0
- package/lib/helpers/deployments.helper.d.ts +1 -1
- package/lib/helpers/funnel.helper.d.ts +2 -0
- package/lib/helpers/push-notification.helper.d.ts +1 -0
- package/lib/hooks/application/setup-ccxt-load-marketplaces-mocked.d.ts +3 -0
- package/lib/hooks/application/setup-fs.d.ts +3 -0
- package/lib/hooks/revenuecat-is-subscription-active.d.ts +2 -0
- package/lib/services/auth-management/auth-management.shared.js +1 -12
- package/lib/services/config/config.class.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.class.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.schema.d.ts +32 -24
- package/lib/services/exchanges/download/download.schema.d.ts +32 -24
- package/lib/services/exchanges/exchanges.d.ts +1 -0
- package/lib/services/exchanges/exchanges.schema.d.ts +85 -77
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +32 -24
- package/lib/services/index.d.ts +1 -1
- package/lib/services/messages/messages.schema.d.ts +40 -24
- package/lib/services/strategies/backtest/backtest.d.ts +1 -0
- package/lib/services/strategies/backtest/backtest.schema.d.ts +133 -197
- package/lib/services/strategies/indicators/indicators.schema.d.ts +61 -61
- package/lib/services/strategies/strategies.d.ts +1 -0
- package/lib/services/strategies/strategies.schema.d.ts +32 -16
- package/lib/services/strategies/templates/templates.schema.d.ts +9 -1
- package/lib/services/stripe/webhooks/webhooks.class.d.ts +26 -0
- package/lib/services/stripe/webhooks/webhooks.d.ts +9 -0
- package/lib/services/stripe/webhooks/webhooks.shared.d.ts +13 -0
- package/lib/services/stripe/webhooks/webhooks.shared.js +13 -0
- package/lib/services/traders/pods/api/api.schema.d.ts +112 -72
- package/lib/services/traders/pods/pods.schema.d.ts +88 -56
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +217 -3
- package/lib/services/traders/traders.schema.d.ts +141 -133
- package/lib/services/users/users.d.ts +1 -0
- package/lib/services/users/users.helper.d.ts +1 -1
- package/lib/services/users/users.schema.d.ts +196 -80
- package/package.json +1 -1
|
@@ -11,7 +11,7 @@ export declare const messagesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
11
11
|
time: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
12
12
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
13
13
|
user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
14
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]
|
|
14
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
15
15
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
16
16
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
17
17
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -24,10 +24,11 @@ export declare const messagesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
24
24
|
language: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
25
25
|
about: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
26
26
|
profile: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"conservative">, import("@feathersjs/typebox").TLiteral<"moderate">, import("@feathersjs/typebox").TLiteral<"aggressive">]>>;
|
|
27
|
-
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">]>>;
|
|
27
|
+
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">, import("@feathersjs/typebox").TLiteral<"revenuecat">]>>;
|
|
28
28
|
yearly: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
29
29
|
paymentIntent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
30
30
|
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
31
|
+
'stripe.id': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
31
32
|
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
32
33
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
33
34
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -45,10 +46,11 @@ export declare const messagesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
45
46
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
46
47
|
}>>;
|
|
47
48
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
49
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
48
50
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
49
51
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
50
52
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
51
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
53
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
52
54
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
53
55
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
54
56
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -85,6 +87,7 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
85
87
|
} | undefined;
|
|
86
88
|
country?: string | undefined;
|
|
87
89
|
stripe?: any;
|
|
90
|
+
_id?: string | {} | undefined;
|
|
88
91
|
googleId?: any;
|
|
89
92
|
appleId?: any;
|
|
90
93
|
avatar?: string | undefined;
|
|
@@ -93,9 +96,10 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
93
96
|
language?: string | undefined;
|
|
94
97
|
about?: string | null | undefined;
|
|
95
98
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
96
|
-
payment?: "stripe" | undefined;
|
|
99
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
97
100
|
yearly?: boolean | undefined;
|
|
98
101
|
paymentIntent?: any;
|
|
102
|
+
'stripe.id'?: any;
|
|
99
103
|
customerInfo?: any;
|
|
100
104
|
subscription?: any;
|
|
101
105
|
plan?: string | undefined;
|
|
@@ -108,9 +112,11 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
108
112
|
hyperopt?: any;
|
|
109
113
|
} | undefined;
|
|
110
114
|
$inc?: any;
|
|
115
|
+
$aggregate?: any;
|
|
111
116
|
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
112
117
|
timezone?: string | undefined;
|
|
113
118
|
subscribe?: string | undefined;
|
|
119
|
+
isVerified?: boolean | undefined;
|
|
114
120
|
verifyToken?: string | null | undefined;
|
|
115
121
|
verifyTokenShort?: string | null | undefined;
|
|
116
122
|
verifyShortToken?: string | null | undefined;
|
|
@@ -128,8 +134,6 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
128
134
|
skipEmailVerification?: boolean | undefined;
|
|
129
135
|
email: string;
|
|
130
136
|
name: string;
|
|
131
|
-
_id: string | {};
|
|
132
|
-
isVerified: boolean;
|
|
133
137
|
agreements: boolean;
|
|
134
138
|
bootstrap: any;
|
|
135
139
|
} | undefined;
|
|
@@ -156,6 +160,7 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
156
160
|
} | undefined;
|
|
157
161
|
country?: string | undefined;
|
|
158
162
|
stripe?: any;
|
|
163
|
+
_id?: string | {} | undefined;
|
|
159
164
|
googleId?: any;
|
|
160
165
|
appleId?: any;
|
|
161
166
|
avatar?: string | undefined;
|
|
@@ -164,9 +169,10 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
164
169
|
language?: string | undefined;
|
|
165
170
|
about?: string | null | undefined;
|
|
166
171
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
167
|
-
payment?: "stripe" | undefined;
|
|
172
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
168
173
|
yearly?: boolean | undefined;
|
|
169
174
|
paymentIntent?: any;
|
|
175
|
+
'stripe.id'?: any;
|
|
170
176
|
customerInfo?: any;
|
|
171
177
|
subscription?: any;
|
|
172
178
|
plan?: string | undefined;
|
|
@@ -179,9 +185,11 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
179
185
|
hyperopt?: any;
|
|
180
186
|
} | undefined;
|
|
181
187
|
$inc?: any;
|
|
188
|
+
$aggregate?: any;
|
|
182
189
|
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
183
190
|
timezone?: string | undefined;
|
|
184
191
|
subscribe?: string | undefined;
|
|
192
|
+
isVerified?: boolean | undefined;
|
|
185
193
|
verifyToken?: string | null | undefined;
|
|
186
194
|
verifyTokenShort?: string | null | undefined;
|
|
187
195
|
verifyShortToken?: string | null | undefined;
|
|
@@ -199,8 +207,6 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
199
207
|
skipEmailVerification?: boolean | undefined;
|
|
200
208
|
email: string;
|
|
201
209
|
name: string;
|
|
202
|
-
_id: string | {};
|
|
203
|
-
isVerified: boolean;
|
|
204
210
|
agreements: boolean;
|
|
205
211
|
bootstrap: any;
|
|
206
212
|
} | undefined;
|
|
@@ -226,7 +232,7 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
|
|
|
226
232
|
time: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
227
233
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
228
234
|
user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
229
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]
|
|
235
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
230
236
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
231
237
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
232
238
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -239,10 +245,11 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
|
|
|
239
245
|
language: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
240
246
|
about: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
241
247
|
profile: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"conservative">, import("@feathersjs/typebox").TLiteral<"moderate">, import("@feathersjs/typebox").TLiteral<"aggressive">]>>;
|
|
242
|
-
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">]>>;
|
|
248
|
+
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">, import("@feathersjs/typebox").TLiteral<"revenuecat">]>>;
|
|
243
249
|
yearly: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
244
250
|
paymentIntent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
245
251
|
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
252
|
+
'stripe.id': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
246
253
|
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
247
254
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
248
255
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -260,10 +267,11 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
|
|
|
260
267
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
261
268
|
}>>;
|
|
262
269
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
270
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
263
271
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
264
272
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
265
273
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
266
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
274
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
267
275
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
268
276
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
269
277
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -300,6 +308,7 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
300
308
|
} | undefined;
|
|
301
309
|
country?: string | undefined;
|
|
302
310
|
stripe?: any;
|
|
311
|
+
_id?: string | {} | undefined;
|
|
303
312
|
googleId?: any;
|
|
304
313
|
appleId?: any;
|
|
305
314
|
avatar?: string | undefined;
|
|
@@ -308,9 +317,10 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
308
317
|
language?: string | undefined;
|
|
309
318
|
about?: string | null | undefined;
|
|
310
319
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
311
|
-
payment?: "stripe" | undefined;
|
|
320
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
312
321
|
yearly?: boolean | undefined;
|
|
313
322
|
paymentIntent?: any;
|
|
323
|
+
'stripe.id'?: any;
|
|
314
324
|
customerInfo?: any;
|
|
315
325
|
subscription?: any;
|
|
316
326
|
plan?: string | undefined;
|
|
@@ -323,9 +333,11 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
323
333
|
hyperopt?: any;
|
|
324
334
|
} | undefined;
|
|
325
335
|
$inc?: any;
|
|
336
|
+
$aggregate?: any;
|
|
326
337
|
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
327
338
|
timezone?: string | undefined;
|
|
328
339
|
subscribe?: string | undefined;
|
|
340
|
+
isVerified?: boolean | undefined;
|
|
329
341
|
verifyToken?: string | null | undefined;
|
|
330
342
|
verifyTokenShort?: string | null | undefined;
|
|
331
343
|
verifyShortToken?: string | null | undefined;
|
|
@@ -343,8 +355,6 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
343
355
|
skipEmailVerification?: boolean | undefined;
|
|
344
356
|
email: string;
|
|
345
357
|
name: string;
|
|
346
|
-
_id: string | {};
|
|
347
|
-
isVerified: boolean;
|
|
348
358
|
agreements: boolean;
|
|
349
359
|
bootstrap: any;
|
|
350
360
|
} | undefined;
|
|
@@ -370,7 +380,7 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
370
380
|
time: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
371
381
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
372
382
|
user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
373
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]
|
|
383
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
374
384
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
375
385
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
376
386
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -383,10 +393,11 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
383
393
|
language: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
384
394
|
about: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
385
395
|
profile: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"conservative">, import("@feathersjs/typebox").TLiteral<"moderate">, import("@feathersjs/typebox").TLiteral<"aggressive">]>>;
|
|
386
|
-
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">]>>;
|
|
396
|
+
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">, import("@feathersjs/typebox").TLiteral<"revenuecat">]>>;
|
|
387
397
|
yearly: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
388
398
|
paymentIntent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
389
399
|
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
400
|
+
'stripe.id': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
390
401
|
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
391
402
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
392
403
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -404,10 +415,11 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
404
415
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
405
416
|
}>>;
|
|
406
417
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
418
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
407
419
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
408
420
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
409
421
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
410
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
422
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
411
423
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
412
424
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
413
425
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -444,6 +456,7 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
444
456
|
} | undefined;
|
|
445
457
|
country?: string | undefined;
|
|
446
458
|
stripe?: any;
|
|
459
|
+
_id?: string | {} | undefined;
|
|
447
460
|
googleId?: any;
|
|
448
461
|
appleId?: any;
|
|
449
462
|
avatar?: string | undefined;
|
|
@@ -452,9 +465,10 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
452
465
|
language?: string | undefined;
|
|
453
466
|
about?: string | null | undefined;
|
|
454
467
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
455
|
-
payment?: "stripe" | undefined;
|
|
468
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
456
469
|
yearly?: boolean | undefined;
|
|
457
470
|
paymentIntent?: any;
|
|
471
|
+
'stripe.id'?: any;
|
|
458
472
|
customerInfo?: any;
|
|
459
473
|
subscription?: any;
|
|
460
474
|
plan?: string | undefined;
|
|
@@ -467,9 +481,11 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
467
481
|
hyperopt?: any;
|
|
468
482
|
} | undefined;
|
|
469
483
|
$inc?: any;
|
|
484
|
+
$aggregate?: any;
|
|
470
485
|
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
471
486
|
timezone?: string | undefined;
|
|
472
487
|
subscribe?: string | undefined;
|
|
488
|
+
isVerified?: boolean | undefined;
|
|
473
489
|
verifyToken?: string | null | undefined;
|
|
474
490
|
verifyTokenShort?: string | null | undefined;
|
|
475
491
|
verifyShortToken?: string | null | undefined;
|
|
@@ -487,8 +503,6 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
487
503
|
skipEmailVerification?: boolean | undefined;
|
|
488
504
|
email: string;
|
|
489
505
|
name: string;
|
|
490
|
-
_id: string | {};
|
|
491
|
-
isVerified: boolean;
|
|
492
506
|
agreements: boolean;
|
|
493
507
|
bootstrap: any;
|
|
494
508
|
} | undefined;
|
|
@@ -514,7 +528,7 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
514
528
|
time: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
515
529
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
516
530
|
user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
517
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]
|
|
531
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
518
532
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
519
533
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
520
534
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -527,10 +541,11 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
527
541
|
language: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
528
542
|
about: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
529
543
|
profile: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"conservative">, import("@feathersjs/typebox").TLiteral<"moderate">, import("@feathersjs/typebox").TLiteral<"aggressive">]>>;
|
|
530
|
-
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">]>>;
|
|
544
|
+
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">, import("@feathersjs/typebox").TLiteral<"revenuecat">]>>;
|
|
531
545
|
yearly: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
532
546
|
paymentIntent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
533
547
|
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
548
|
+
'stripe.id': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
534
549
|
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
535
550
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
536
551
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -548,10 +563,11 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
548
563
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
549
564
|
}>>;
|
|
550
565
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
566
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
551
567
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
552
568
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
553
569
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
554
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
570
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
555
571
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
556
572
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
557
573
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -4,6 +4,7 @@ import { strategiesBacktestPath } from './backtest.shared';
|
|
|
4
4
|
export * from './backtest.class';
|
|
5
5
|
export * from './backtest.schema';
|
|
6
6
|
export declare const strategiesBacktest: (app: Application) => void;
|
|
7
|
+
export declare const hooks: any;
|
|
7
8
|
declare module '../../../declarations' {
|
|
8
9
|
interface ServiceTypes {
|
|
9
10
|
[strategiesBacktestPath]: StrategiesBacktestService;
|