@cryptorobot.ai/client 0.0.31 → 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 +48 -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 +254 -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,12 @@ 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>;
|
|
32
|
+
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
31
33
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
32
34
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
33
35
|
appearance: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
@@ -44,10 +46,11 @@ export declare const messagesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
44
46
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
45
47
|
}>>;
|
|
46
48
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
49
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
47
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">]>>;
|
|
48
51
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
49
52
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
50
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
53
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
51
54
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
52
55
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
53
56
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -84,6 +87,7 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
84
87
|
} | undefined;
|
|
85
88
|
country?: string | undefined;
|
|
86
89
|
stripe?: any;
|
|
90
|
+
_id?: string | {} | undefined;
|
|
87
91
|
googleId?: any;
|
|
88
92
|
appleId?: any;
|
|
89
93
|
avatar?: string | undefined;
|
|
@@ -92,9 +96,11 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
92
96
|
language?: string | undefined;
|
|
93
97
|
about?: string | null | undefined;
|
|
94
98
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
95
|
-
payment?: "stripe" | undefined;
|
|
99
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
96
100
|
yearly?: boolean | undefined;
|
|
97
101
|
paymentIntent?: any;
|
|
102
|
+
'stripe.id'?: any;
|
|
103
|
+
customerInfo?: any;
|
|
98
104
|
subscription?: any;
|
|
99
105
|
plan?: string | undefined;
|
|
100
106
|
appearance?: {
|
|
@@ -106,9 +112,11 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
106
112
|
hyperopt?: any;
|
|
107
113
|
} | undefined;
|
|
108
114
|
$inc?: any;
|
|
115
|
+
$aggregate?: any;
|
|
109
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;
|
|
110
117
|
timezone?: string | undefined;
|
|
111
118
|
subscribe?: string | undefined;
|
|
119
|
+
isVerified?: boolean | undefined;
|
|
112
120
|
verifyToken?: string | null | undefined;
|
|
113
121
|
verifyTokenShort?: string | null | undefined;
|
|
114
122
|
verifyShortToken?: string | null | undefined;
|
|
@@ -126,8 +134,6 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
126
134
|
skipEmailVerification?: boolean | undefined;
|
|
127
135
|
email: string;
|
|
128
136
|
name: string;
|
|
129
|
-
_id: string | {};
|
|
130
|
-
isVerified: boolean;
|
|
131
137
|
agreements: boolean;
|
|
132
138
|
bootstrap: any;
|
|
133
139
|
} | undefined;
|
|
@@ -154,6 +160,7 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
154
160
|
} | undefined;
|
|
155
161
|
country?: string | undefined;
|
|
156
162
|
stripe?: any;
|
|
163
|
+
_id?: string | {} | undefined;
|
|
157
164
|
googleId?: any;
|
|
158
165
|
appleId?: any;
|
|
159
166
|
avatar?: string | undefined;
|
|
@@ -162,9 +169,11 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
162
169
|
language?: string | undefined;
|
|
163
170
|
about?: string | null | undefined;
|
|
164
171
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
165
|
-
payment?: "stripe" | undefined;
|
|
172
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
166
173
|
yearly?: boolean | undefined;
|
|
167
174
|
paymentIntent?: any;
|
|
175
|
+
'stripe.id'?: any;
|
|
176
|
+
customerInfo?: any;
|
|
168
177
|
subscription?: any;
|
|
169
178
|
plan?: string | undefined;
|
|
170
179
|
appearance?: {
|
|
@@ -176,9 +185,11 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
176
185
|
hyperopt?: any;
|
|
177
186
|
} | undefined;
|
|
178
187
|
$inc?: any;
|
|
188
|
+
$aggregate?: any;
|
|
179
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;
|
|
180
190
|
timezone?: string | undefined;
|
|
181
191
|
subscribe?: string | undefined;
|
|
192
|
+
isVerified?: boolean | undefined;
|
|
182
193
|
verifyToken?: string | null | undefined;
|
|
183
194
|
verifyTokenShort?: string | null | undefined;
|
|
184
195
|
verifyShortToken?: string | null | undefined;
|
|
@@ -196,8 +207,6 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
196
207
|
skipEmailVerification?: boolean | undefined;
|
|
197
208
|
email: string;
|
|
198
209
|
name: string;
|
|
199
|
-
_id: string | {};
|
|
200
|
-
isVerified: boolean;
|
|
201
210
|
agreements: boolean;
|
|
202
211
|
bootstrap: any;
|
|
203
212
|
} | undefined;
|
|
@@ -223,7 +232,7 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
|
|
|
223
232
|
time: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
224
233
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
225
234
|
user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
226
|
-
_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<{}>]>]>>;
|
|
227
236
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
228
237
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
229
238
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -236,10 +245,12 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
|
|
|
236
245
|
language: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
237
246
|
about: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
238
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">]>>;
|
|
239
|
-
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">]>>;
|
|
240
249
|
yearly: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
241
250
|
paymentIntent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
242
251
|
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
252
|
+
'stripe.id': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
253
|
+
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
243
254
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
244
255
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
245
256
|
appearance: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
@@ -256,10 +267,11 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
|
|
|
256
267
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
257
268
|
}>>;
|
|
258
269
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
270
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
259
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">]>>;
|
|
260
272
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
261
273
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
262
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
274
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
263
275
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
264
276
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
265
277
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -296,6 +308,7 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
296
308
|
} | undefined;
|
|
297
309
|
country?: string | undefined;
|
|
298
310
|
stripe?: any;
|
|
311
|
+
_id?: string | {} | undefined;
|
|
299
312
|
googleId?: any;
|
|
300
313
|
appleId?: any;
|
|
301
314
|
avatar?: string | undefined;
|
|
@@ -304,9 +317,11 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
304
317
|
language?: string | undefined;
|
|
305
318
|
about?: string | null | undefined;
|
|
306
319
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
307
|
-
payment?: "stripe" | undefined;
|
|
320
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
308
321
|
yearly?: boolean | undefined;
|
|
309
322
|
paymentIntent?: any;
|
|
323
|
+
'stripe.id'?: any;
|
|
324
|
+
customerInfo?: any;
|
|
310
325
|
subscription?: any;
|
|
311
326
|
plan?: string | undefined;
|
|
312
327
|
appearance?: {
|
|
@@ -318,9 +333,11 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
318
333
|
hyperopt?: any;
|
|
319
334
|
} | undefined;
|
|
320
335
|
$inc?: any;
|
|
336
|
+
$aggregate?: any;
|
|
321
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;
|
|
322
338
|
timezone?: string | undefined;
|
|
323
339
|
subscribe?: string | undefined;
|
|
340
|
+
isVerified?: boolean | undefined;
|
|
324
341
|
verifyToken?: string | null | undefined;
|
|
325
342
|
verifyTokenShort?: string | null | undefined;
|
|
326
343
|
verifyShortToken?: string | null | undefined;
|
|
@@ -338,8 +355,6 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
338
355
|
skipEmailVerification?: boolean | undefined;
|
|
339
356
|
email: string;
|
|
340
357
|
name: string;
|
|
341
|
-
_id: string | {};
|
|
342
|
-
isVerified: boolean;
|
|
343
358
|
agreements: boolean;
|
|
344
359
|
bootstrap: any;
|
|
345
360
|
} | undefined;
|
|
@@ -365,7 +380,7 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
365
380
|
time: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
366
381
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
367
382
|
user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
368
|
-
_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<{}>]>]>>;
|
|
369
384
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
370
385
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
371
386
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -378,10 +393,12 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
378
393
|
language: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
379
394
|
about: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
380
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">]>>;
|
|
381
|
-
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">]>>;
|
|
382
397
|
yearly: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
383
398
|
paymentIntent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
384
399
|
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
400
|
+
'stripe.id': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
401
|
+
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
385
402
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
386
403
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
387
404
|
appearance: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
@@ -398,10 +415,11 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
398
415
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
399
416
|
}>>;
|
|
400
417
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
418
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
401
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">]>>;
|
|
402
420
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
403
421
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
404
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
422
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
405
423
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
406
424
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
407
425
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -438,6 +456,7 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
438
456
|
} | undefined;
|
|
439
457
|
country?: string | undefined;
|
|
440
458
|
stripe?: any;
|
|
459
|
+
_id?: string | {} | undefined;
|
|
441
460
|
googleId?: any;
|
|
442
461
|
appleId?: any;
|
|
443
462
|
avatar?: string | undefined;
|
|
@@ -446,9 +465,11 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
446
465
|
language?: string | undefined;
|
|
447
466
|
about?: string | null | undefined;
|
|
448
467
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
449
|
-
payment?: "stripe" | undefined;
|
|
468
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
450
469
|
yearly?: boolean | undefined;
|
|
451
470
|
paymentIntent?: any;
|
|
471
|
+
'stripe.id'?: any;
|
|
472
|
+
customerInfo?: any;
|
|
452
473
|
subscription?: any;
|
|
453
474
|
plan?: string | undefined;
|
|
454
475
|
appearance?: {
|
|
@@ -460,9 +481,11 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
460
481
|
hyperopt?: any;
|
|
461
482
|
} | undefined;
|
|
462
483
|
$inc?: any;
|
|
484
|
+
$aggregate?: any;
|
|
463
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;
|
|
464
486
|
timezone?: string | undefined;
|
|
465
487
|
subscribe?: string | undefined;
|
|
488
|
+
isVerified?: boolean | undefined;
|
|
466
489
|
verifyToken?: string | null | undefined;
|
|
467
490
|
verifyTokenShort?: string | null | undefined;
|
|
468
491
|
verifyShortToken?: string | null | undefined;
|
|
@@ -480,8 +503,6 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
480
503
|
skipEmailVerification?: boolean | undefined;
|
|
481
504
|
email: string;
|
|
482
505
|
name: string;
|
|
483
|
-
_id: string | {};
|
|
484
|
-
isVerified: boolean;
|
|
485
506
|
agreements: boolean;
|
|
486
507
|
bootstrap: any;
|
|
487
508
|
} | undefined;
|
|
@@ -507,7 +528,7 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
507
528
|
time: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
508
529
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
509
530
|
user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
510
|
-
_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<{}>]>]>>;
|
|
511
532
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
512
533
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
513
534
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -520,10 +541,12 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
520
541
|
language: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
521
542
|
about: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
522
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">]>>;
|
|
523
|
-
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">]>>;
|
|
524
545
|
yearly: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
525
546
|
paymentIntent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
526
547
|
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
548
|
+
'stripe.id': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
549
|
+
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
527
550
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
528
551
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
529
552
|
appearance: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
@@ -540,10 +563,11 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
540
563
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
541
564
|
}>>;
|
|
542
565
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
566
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
543
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">]>>;
|
|
544
568
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
545
569
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
546
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
570
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
547
571
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
548
572
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
549
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;
|