@cryptorobot.ai/client 0.0.34 → 0.0.36
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/configuration.d.ts +30 -0
- package/lib/helpers/ccxt.helper.d.ts +1 -0
- package/lib/helpers/mailer.helper.d.ts +14 -0
- package/lib/helpers/reports.helper.d.ts +5 -0
- package/lib/helpers/subscription.helper.d.ts +7 -15
- package/lib/hooks/get-pods-container-inspect.d.ts +2 -0
- package/lib/hooks/whitelist-set-default-by-volume.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +28 -4
- package/lib/services/exchanges/download/download.schema.d.ts +28 -4
- package/lib/services/exchanges/exchanges.schema.d.ts +246 -90
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +28 -4
- package/lib/services/homepage/homepage.schema.d.ts +9 -1
- package/lib/services/messages/messages.schema.d.ts +40 -8
- package/lib/services/strategies/backtest/backtest.schema.d.ts +56 -56
- package/lib/services/strategies/backtest/results/results.schema.d.ts +4 -4
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +4 -4
- package/lib/services/strategies/strategies.schema.d.ts +97 -15
- package/lib/services/traders/pods/api/api.schema.d.ts +56 -32
- package/lib/services/traders/pods/events/events.class.d.ts +1 -1
- package/lib/services/traders/pods/events/events.schema.d.ts +8 -0
- package/lib/services/traders/pods/pods.schema.d.ts +48 -24
- package/lib/services/traders/traders.schema.d.ts +247 -115
- package/lib/services/users/users.schema.d.ts +40 -8
- package/package.json +1 -1
|
@@ -39,6 +39,9 @@ export declare const exchangesTickerSchema: import("@feathersjs/typebox").TObjec
|
|
|
39
39
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
40
40
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
41
41
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
42
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
43
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
44
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
42
45
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
43
46
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
44
47
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -75,6 +78,7 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
75
78
|
updatedAt?: any;
|
|
76
79
|
error?: any;
|
|
77
80
|
login?: string | undefined;
|
|
81
|
+
userId?: string | {} | undefined;
|
|
78
82
|
connected?: boolean | undefined;
|
|
79
83
|
downloaded?: {
|
|
80
84
|
updatedAt: any;
|
|
@@ -104,12 +108,14 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
104
108
|
whitelist?: any[] | undefined;
|
|
105
109
|
ccxt_async_config?: any;
|
|
106
110
|
which?: string | undefined;
|
|
111
|
+
stakeCurrencies?: any[] | undefined;
|
|
112
|
+
popularStakeCurrency?: string | null | undefined;
|
|
113
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
107
114
|
requiredCredentials?: any;
|
|
108
115
|
uid?: string | undefined;
|
|
109
116
|
twofa?: string | undefined;
|
|
110
117
|
privateKey?: string | undefined;
|
|
111
118
|
walletAddress?: string | undefined;
|
|
112
|
-
userId?: string | {} | undefined;
|
|
113
119
|
__v?: any;
|
|
114
120
|
} | undefined;
|
|
115
121
|
symbol: string;
|
|
@@ -131,6 +137,7 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
|
|
|
131
137
|
updatedAt?: any;
|
|
132
138
|
error?: any;
|
|
133
139
|
login?: string | undefined;
|
|
140
|
+
userId?: string | {} | undefined;
|
|
134
141
|
connected?: boolean | undefined;
|
|
135
142
|
downloaded?: {
|
|
136
143
|
updatedAt: any;
|
|
@@ -160,12 +167,14 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
|
|
|
160
167
|
whitelist?: any[] | undefined;
|
|
161
168
|
ccxt_async_config?: any;
|
|
162
169
|
which?: string | undefined;
|
|
170
|
+
stakeCurrencies?: any[] | undefined;
|
|
171
|
+
popularStakeCurrency?: string | null | undefined;
|
|
172
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
163
173
|
requiredCredentials?: any;
|
|
164
174
|
uid?: string | undefined;
|
|
165
175
|
twofa?: string | undefined;
|
|
166
176
|
privateKey?: string | undefined;
|
|
167
177
|
walletAddress?: string | undefined;
|
|
168
|
-
userId?: string | {} | undefined;
|
|
169
178
|
__v?: any;
|
|
170
179
|
} | undefined;
|
|
171
180
|
symbol: string;
|
|
@@ -209,6 +218,9 @@ export declare const exchangesTickerDataSchema: import("@feathersjs/typebox").TP
|
|
|
209
218
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
210
219
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
211
220
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
221
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
222
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
223
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
212
224
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
213
225
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
214
226
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -245,6 +257,7 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
|
|
|
245
257
|
updatedAt?: any;
|
|
246
258
|
error?: any;
|
|
247
259
|
login?: string | undefined;
|
|
260
|
+
userId?: string | {} | undefined;
|
|
248
261
|
connected?: boolean | undefined;
|
|
249
262
|
downloaded?: {
|
|
250
263
|
updatedAt: any;
|
|
@@ -274,12 +287,14 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
|
|
|
274
287
|
whitelist?: any[] | undefined;
|
|
275
288
|
ccxt_async_config?: any;
|
|
276
289
|
which?: string | undefined;
|
|
290
|
+
stakeCurrencies?: any[] | undefined;
|
|
291
|
+
popularStakeCurrency?: string | null | undefined;
|
|
292
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
277
293
|
requiredCredentials?: any;
|
|
278
294
|
uid?: string | undefined;
|
|
279
295
|
twofa?: string | undefined;
|
|
280
296
|
privateKey?: string | undefined;
|
|
281
297
|
walletAddress?: string | undefined;
|
|
282
|
-
userId?: string | {} | undefined;
|
|
283
298
|
__v?: any;
|
|
284
299
|
} | undefined;
|
|
285
300
|
symbol: string;
|
|
@@ -323,6 +338,9 @@ export declare const exchangesTickerPatchSchema: import("@feathersjs/typebox").T
|
|
|
323
338
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
324
339
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
325
340
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
341
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
342
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
343
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
326
344
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
327
345
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
328
346
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -359,6 +377,7 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
|
|
|
359
377
|
updatedAt?: any;
|
|
360
378
|
error?: any;
|
|
361
379
|
login?: string | undefined;
|
|
380
|
+
userId?: string | {} | undefined;
|
|
362
381
|
connected?: boolean | undefined;
|
|
363
382
|
downloaded?: {
|
|
364
383
|
updatedAt: any;
|
|
@@ -388,12 +407,14 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
|
|
|
388
407
|
whitelist?: any[] | undefined;
|
|
389
408
|
ccxt_async_config?: any;
|
|
390
409
|
which?: string | undefined;
|
|
410
|
+
stakeCurrencies?: any[] | undefined;
|
|
411
|
+
popularStakeCurrency?: string | null | undefined;
|
|
412
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
391
413
|
requiredCredentials?: any;
|
|
392
414
|
uid?: string | undefined;
|
|
393
415
|
twofa?: string | undefined;
|
|
394
416
|
privateKey?: string | undefined;
|
|
395
417
|
walletAddress?: string | undefined;
|
|
396
|
-
userId?: string | {} | undefined;
|
|
397
418
|
__v?: any;
|
|
398
419
|
} | undefined;
|
|
399
420
|
symbol: string;
|
|
@@ -437,6 +458,9 @@ export declare const exchangesTickerQueryProperties: import("@feathersjs/typebox
|
|
|
437
458
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
438
459
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
439
460
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
461
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
462
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
463
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
440
464
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
441
465
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
442
466
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -4,40 +4,48 @@ import type { HomepageService } from './homepage.class';
|
|
|
4
4
|
export declare const homepageSchema: import("@feathersjs/typebox").TObject<{
|
|
5
5
|
id: import("@feathersjs/typebox").TNumber;
|
|
6
6
|
trades: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
7
|
+
backtests: import("@feathersjs/typebox").TAny;
|
|
7
8
|
}>;
|
|
8
9
|
export type Homepage = Static<typeof homepageSchema>;
|
|
9
10
|
export declare const homepageValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
10
11
|
export declare const homepageResolver: import("@feathersjs/schema").Resolver<{
|
|
11
12
|
id: number;
|
|
12
13
|
trades: any[];
|
|
14
|
+
backtests: any;
|
|
13
15
|
}, HookContext<HomepageService>>;
|
|
14
16
|
export declare const homepageExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
15
17
|
id: number;
|
|
16
18
|
trades: any[];
|
|
19
|
+
backtests: any;
|
|
17
20
|
}, HookContext<HomepageService>>;
|
|
18
21
|
export declare const homepageDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
19
22
|
id: import("@feathersjs/typebox").TNumber;
|
|
20
23
|
trades: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
21
|
-
|
|
24
|
+
backtests: import("@feathersjs/typebox").TAny;
|
|
25
|
+
}>, ["trades", "backtests"]>;
|
|
22
26
|
export type HomepageData = Static<typeof homepageDataSchema>;
|
|
23
27
|
export declare const homepageDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
24
28
|
export declare const homepageDataResolver: import("@feathersjs/schema").Resolver<{
|
|
25
29
|
id: number;
|
|
26
30
|
trades: any[];
|
|
31
|
+
backtests: any;
|
|
27
32
|
}, HookContext<HomepageService>>;
|
|
28
33
|
export declare const homepagePatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
29
34
|
id: import("@feathersjs/typebox").TNumber;
|
|
30
35
|
trades: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
36
|
+
backtests: import("@feathersjs/typebox").TAny;
|
|
31
37
|
}>>;
|
|
32
38
|
export type HomepagePatch = Static<typeof homepagePatchSchema>;
|
|
33
39
|
export declare const homepagePatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
34
40
|
export declare const homepagePatchResolver: import("@feathersjs/schema").Resolver<{
|
|
35
41
|
id: number;
|
|
36
42
|
trades: any[];
|
|
43
|
+
backtests: any;
|
|
37
44
|
}, HookContext<HomepageService>>;
|
|
38
45
|
export declare const homepageQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
39
46
|
id: import("@feathersjs/typebox").TNumber;
|
|
40
47
|
trades: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
48
|
+
backtests: import("@feathersjs/typebox").TAny;
|
|
41
49
|
}>, ["id", "trades"]>;
|
|
42
50
|
export declare const homepageQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
43
51
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
@@ -45,6 +45,10 @@ export declare const messagesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
45
45
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
46
46
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
47
47
|
}>>;
|
|
48
|
+
trial: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
49
|
+
active: import("@feathersjs/typebox").TBoolean;
|
|
50
|
+
expires: import("@feathersjs/typebox").TString<string>;
|
|
51
|
+
}>>;
|
|
48
52
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
49
53
|
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
50
54
|
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">]>>;
|
|
@@ -86,6 +90,11 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
86
90
|
android?: string | undefined;
|
|
87
91
|
} | undefined;
|
|
88
92
|
country?: string | undefined;
|
|
93
|
+
subscription?: any;
|
|
94
|
+
trial?: {
|
|
95
|
+
active: boolean;
|
|
96
|
+
expires: string;
|
|
97
|
+
} | undefined;
|
|
89
98
|
stripe?: any;
|
|
90
99
|
_id?: string | {} | undefined;
|
|
91
100
|
googleId?: any;
|
|
@@ -101,7 +110,6 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
101
110
|
paymentIntent?: any;
|
|
102
111
|
'stripe.id'?: any;
|
|
103
112
|
customerInfo?: any;
|
|
104
|
-
subscription?: any;
|
|
105
113
|
plan?: string | undefined;
|
|
106
114
|
appearance?: {
|
|
107
115
|
scheme?: string | undefined;
|
|
@@ -127,7 +135,7 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
127
135
|
resetExpires?: number | null | undefined;
|
|
128
136
|
resetAttempts?: number | null | undefined;
|
|
129
137
|
anon?: boolean | undefined;
|
|
130
|
-
onboarding?: "
|
|
138
|
+
onboarding?: "traders" | "strategies" | "telegram" | null | undefined;
|
|
131
139
|
contactId?: string | undefined;
|
|
132
140
|
createdAt?: any;
|
|
133
141
|
updatedAt?: any;
|
|
@@ -159,6 +167,11 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
159
167
|
android?: string | undefined;
|
|
160
168
|
} | undefined;
|
|
161
169
|
country?: string | undefined;
|
|
170
|
+
subscription?: any;
|
|
171
|
+
trial?: {
|
|
172
|
+
active: boolean;
|
|
173
|
+
expires: string;
|
|
174
|
+
} | undefined;
|
|
162
175
|
stripe?: any;
|
|
163
176
|
_id?: string | {} | undefined;
|
|
164
177
|
googleId?: any;
|
|
@@ -174,7 +187,6 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
174
187
|
paymentIntent?: any;
|
|
175
188
|
'stripe.id'?: any;
|
|
176
189
|
customerInfo?: any;
|
|
177
|
-
subscription?: any;
|
|
178
190
|
plan?: string | undefined;
|
|
179
191
|
appearance?: {
|
|
180
192
|
scheme?: string | undefined;
|
|
@@ -200,7 +212,7 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
200
212
|
resetExpires?: number | null | undefined;
|
|
201
213
|
resetAttempts?: number | null | undefined;
|
|
202
214
|
anon?: boolean | undefined;
|
|
203
|
-
onboarding?: "
|
|
215
|
+
onboarding?: "traders" | "strategies" | "telegram" | null | undefined;
|
|
204
216
|
contactId?: string | undefined;
|
|
205
217
|
createdAt?: any;
|
|
206
218
|
updatedAt?: any;
|
|
@@ -266,6 +278,10 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
|
|
|
266
278
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
267
279
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
268
280
|
}>>;
|
|
281
|
+
trial: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
282
|
+
active: import("@feathersjs/typebox").TBoolean;
|
|
283
|
+
expires: import("@feathersjs/typebox").TString<string>;
|
|
284
|
+
}>>;
|
|
269
285
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
270
286
|
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
271
287
|
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">]>>;
|
|
@@ -307,6 +323,11 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
307
323
|
android?: string | undefined;
|
|
308
324
|
} | undefined;
|
|
309
325
|
country?: string | undefined;
|
|
326
|
+
subscription?: any;
|
|
327
|
+
trial?: {
|
|
328
|
+
active: boolean;
|
|
329
|
+
expires: string;
|
|
330
|
+
} | undefined;
|
|
310
331
|
stripe?: any;
|
|
311
332
|
_id?: string | {} | undefined;
|
|
312
333
|
googleId?: any;
|
|
@@ -322,7 +343,6 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
322
343
|
paymentIntent?: any;
|
|
323
344
|
'stripe.id'?: any;
|
|
324
345
|
customerInfo?: any;
|
|
325
|
-
subscription?: any;
|
|
326
346
|
plan?: string | undefined;
|
|
327
347
|
appearance?: {
|
|
328
348
|
scheme?: string | undefined;
|
|
@@ -348,7 +368,7 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
348
368
|
resetExpires?: number | null | undefined;
|
|
349
369
|
resetAttempts?: number | null | undefined;
|
|
350
370
|
anon?: boolean | undefined;
|
|
351
|
-
onboarding?: "
|
|
371
|
+
onboarding?: "traders" | "strategies" | "telegram" | null | undefined;
|
|
352
372
|
contactId?: string | undefined;
|
|
353
373
|
createdAt?: any;
|
|
354
374
|
updatedAt?: any;
|
|
@@ -414,6 +434,10 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
414
434
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
415
435
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
416
436
|
}>>;
|
|
437
|
+
trial: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
438
|
+
active: import("@feathersjs/typebox").TBoolean;
|
|
439
|
+
expires: import("@feathersjs/typebox").TString<string>;
|
|
440
|
+
}>>;
|
|
417
441
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
418
442
|
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
419
443
|
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">]>>;
|
|
@@ -455,6 +479,11 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
455
479
|
android?: string | undefined;
|
|
456
480
|
} | undefined;
|
|
457
481
|
country?: string | undefined;
|
|
482
|
+
subscription?: any;
|
|
483
|
+
trial?: {
|
|
484
|
+
active: boolean;
|
|
485
|
+
expires: string;
|
|
486
|
+
} | undefined;
|
|
458
487
|
stripe?: any;
|
|
459
488
|
_id?: string | {} | undefined;
|
|
460
489
|
googleId?: any;
|
|
@@ -470,7 +499,6 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
470
499
|
paymentIntent?: any;
|
|
471
500
|
'stripe.id'?: any;
|
|
472
501
|
customerInfo?: any;
|
|
473
|
-
subscription?: any;
|
|
474
502
|
plan?: string | undefined;
|
|
475
503
|
appearance?: {
|
|
476
504
|
scheme?: string | undefined;
|
|
@@ -496,7 +524,7 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
496
524
|
resetExpires?: number | null | undefined;
|
|
497
525
|
resetAttempts?: number | null | undefined;
|
|
498
526
|
anon?: boolean | undefined;
|
|
499
|
-
onboarding?: "
|
|
527
|
+
onboarding?: "traders" | "strategies" | "telegram" | null | undefined;
|
|
500
528
|
contactId?: string | undefined;
|
|
501
529
|
createdAt?: any;
|
|
502
530
|
updatedAt?: any;
|
|
@@ -562,6 +590,10 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
562
590
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
563
591
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
564
592
|
}>>;
|
|
593
|
+
trial: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
594
|
+
active: import("@feathersjs/typebox").TBoolean;
|
|
595
|
+
expires: import("@feathersjs/typebox").TString<string>;
|
|
596
|
+
}>>;
|
|
565
597
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
566
598
|
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
567
599
|
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">]>>;
|