@cryptorobot.ai/client 0.0.16 → 0.0.18
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 +17 -0
- package/lib/helpers/app.helper.d.ts +4 -0
- package/lib/helpers/logging.helper.d.ts +7 -6
- package/lib/helpers/queue.helper.d.ts +5 -0
- package/lib/helpers/telegram.helper.d.ts +7 -0
- package/lib/helpers/trader.helper.d.ts +2 -0
- package/lib/hooks/bootstrap-user-telegram.d.ts +2 -0
- package/lib/hooks/bootstrap-user-traders.d.ts +2 -0
- package/lib/hooks/init-data-folder.d.ts +2 -0
- package/lib/hooks/setup-aws-sdk.d.ts +2 -0
- package/lib/hooks/setup-cronjobs.d.ts +2 -0
- package/lib/hooks/setup-queues.d.ts +3 -0
- package/lib/hooks/setup-telegram-client.d.ts +3 -0
- package/lib/hooks/telegram-create-group.d.ts +2 -0
- package/lib/hooks/telegram-delete-group.d.ts +2 -0
- package/lib/hooks/telegram-update-group.d.ts +2 -0
- package/lib/hooks/tickers-fetch.d.ts +1 -1
- package/lib/hooks/traders/pods-process-worker.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.schema.d.ts +12 -44
- package/lib/services/exchanges/download/download.schema.d.ts +16 -48
- package/lib/services/exchanges/exchanges.schema.d.ts +12 -44
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +12 -44
- package/lib/services/messages/messages.schema.d.ts +24 -8
- package/lib/services/strategies/strategies.schema.d.ts +384 -104
- package/lib/services/traders/pods/api/api.schema.d.ts +1076 -268
- package/lib/services/traders/pods/pods.schema.d.ts +736 -208
- package/lib/services/traders/traders.schema.d.ts +340 -60
- package/lib/services/users/users.schema.d.ts +24 -8
- package/lib/telegram-get-credentials.d.ts +1 -0
- package/package.json +1 -1
|
@@ -32,13 +32,15 @@ export declare const userSchema: import("@feathersjs/typebox").TObject<{
|
|
|
32
32
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
33
33
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
34
34
|
verifyExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
35
|
-
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
35
|
+
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
36
36
|
resetToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
37
37
|
resetShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
38
38
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
39
39
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
40
40
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
41
|
+
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
41
42
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
43
|
+
onboarding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TLiteral<"strategies">, import("@feathersjs/typebox").TLiteral<"traders">, import("@feathersjs/typebox").TLiteral<"telegram">]>>;
|
|
42
44
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
43
45
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
44
46
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -72,11 +74,13 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
72
74
|
verifyTokenShort?: string | null | undefined;
|
|
73
75
|
verifyShortToken?: string | null | undefined;
|
|
74
76
|
verifyExpires?: number | null | undefined;
|
|
75
|
-
verifyChanges?:
|
|
77
|
+
verifyChanges?: any;
|
|
76
78
|
resetToken?: string | null | undefined;
|
|
77
79
|
resetShortToken?: string | null | undefined;
|
|
78
80
|
resetExpires?: number | null | undefined;
|
|
79
81
|
resetAttempts?: number | null | undefined;
|
|
82
|
+
anon?: boolean | undefined;
|
|
83
|
+
onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
|
|
80
84
|
createdAt?: any;
|
|
81
85
|
updatedAt?: any;
|
|
82
86
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -114,11 +118,13 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
114
118
|
verifyTokenShort?: string | null | undefined;
|
|
115
119
|
verifyShortToken?: string | null | undefined;
|
|
116
120
|
verifyExpires?: number | null | undefined;
|
|
117
|
-
verifyChanges?:
|
|
121
|
+
verifyChanges?: any;
|
|
118
122
|
resetToken?: string | null | undefined;
|
|
119
123
|
resetShortToken?: string | null | undefined;
|
|
120
124
|
resetExpires?: number | null | undefined;
|
|
121
125
|
resetAttempts?: number | null | undefined;
|
|
126
|
+
anon?: boolean | undefined;
|
|
127
|
+
onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
|
|
122
128
|
createdAt?: any;
|
|
123
129
|
updatedAt?: any;
|
|
124
130
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -160,13 +166,15 @@ export declare const userDataSchema: import("@feathersjs/typebox").TPick<import(
|
|
|
160
166
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
161
167
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
162
168
|
verifyExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
163
|
-
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
169
|
+
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
164
170
|
resetToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
165
171
|
resetShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
166
172
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
167
173
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
168
174
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
175
|
+
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
169
176
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
177
|
+
onboarding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TLiteral<"strategies">, import("@feathersjs/typebox").TLiteral<"traders">, import("@feathersjs/typebox").TLiteral<"telegram">]>>;
|
|
170
178
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
171
179
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
172
180
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -200,11 +208,13 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
200
208
|
verifyTokenShort?: string | null | undefined;
|
|
201
209
|
verifyShortToken?: string | null | undefined;
|
|
202
210
|
verifyExpires?: number | null | undefined;
|
|
203
|
-
verifyChanges?:
|
|
211
|
+
verifyChanges?: any;
|
|
204
212
|
resetToken?: string | null | undefined;
|
|
205
213
|
resetShortToken?: string | null | undefined;
|
|
206
214
|
resetExpires?: number | null | undefined;
|
|
207
215
|
resetAttempts?: number | null | undefined;
|
|
216
|
+
anon?: boolean | undefined;
|
|
217
|
+
onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
|
|
208
218
|
createdAt?: any;
|
|
209
219
|
updatedAt?: any;
|
|
210
220
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -246,13 +256,15 @@ export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<imp
|
|
|
246
256
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
247
257
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
248
258
|
verifyExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
249
|
-
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
259
|
+
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
250
260
|
resetToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
251
261
|
resetShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
252
262
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
253
263
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
254
264
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
265
|
+
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
255
266
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
267
|
+
onboarding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TLiteral<"strategies">, import("@feathersjs/typebox").TLiteral<"traders">, import("@feathersjs/typebox").TLiteral<"telegram">]>>;
|
|
256
268
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
257
269
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
258
270
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -286,11 +298,13 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
286
298
|
verifyTokenShort?: string | null | undefined;
|
|
287
299
|
verifyShortToken?: string | null | undefined;
|
|
288
300
|
verifyExpires?: number | null | undefined;
|
|
289
|
-
verifyChanges?:
|
|
301
|
+
verifyChanges?: any;
|
|
290
302
|
resetToken?: string | null | undefined;
|
|
291
303
|
resetShortToken?: string | null | undefined;
|
|
292
304
|
resetExpires?: number | null | undefined;
|
|
293
305
|
resetAttempts?: number | null | undefined;
|
|
306
|
+
anon?: boolean | undefined;
|
|
307
|
+
onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
|
|
294
308
|
createdAt?: any;
|
|
295
309
|
updatedAt?: any;
|
|
296
310
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -332,13 +346,15 @@ export declare const userQueryProperties: import("@feathersjs/typebox").TPick<im
|
|
|
332
346
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
333
347
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
334
348
|
verifyExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
335
|
-
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").
|
|
349
|
+
verifyChanges: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
336
350
|
resetToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
337
351
|
resetShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
338
352
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
339
353
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
340
354
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
355
|
+
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
341
356
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
357
|
+
onboarding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TLiteral<"strategies">, import("@feathersjs/typebox").TLiteral<"traders">, import("@feathersjs/typebox").TLiteral<"telegram">]>>;
|
|
342
358
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
343
359
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
344
360
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|