@cryptorobot.ai/client 0.0.16 → 0.0.17
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 +9 -0
- package/lib/helpers/logging.helper.d.ts +6 -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/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 +4 -12
- package/lib/services/exchanges/download/download.schema.d.ts +8 -16
- package/lib/services/exchanges/exchanges.schema.d.ts +4 -12
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +4 -12
- package/lib/services/messages/messages.schema.d.ts +8 -0
- package/lib/services/strategies/strategies.schema.d.ts +344 -64
- package/lib/services/traders/pods/api/api.schema.d.ts +1028 -196
- package/lib/services/traders/pods/pods.schema.d.ts +688 -136
- package/lib/services/traders/traders.schema.d.ts +340 -60
- package/lib/services/users/users.schema.d.ts +8 -0
- package/lib/telegram-get-credentials.d.ts +1 -0
- package/package.json +1 -1
|
@@ -38,6 +38,7 @@ export declare const userSchema: import("@feathersjs/typebox").TObject<{
|
|
|
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;
|
|
42
43
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
43
44
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -77,6 +78,7 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
77
78
|
resetShortToken?: string | null | undefined;
|
|
78
79
|
resetExpires?: number | null | undefined;
|
|
79
80
|
resetAttempts?: number | null | undefined;
|
|
81
|
+
anon?: boolean | undefined;
|
|
80
82
|
createdAt?: any;
|
|
81
83
|
updatedAt?: any;
|
|
82
84
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -119,6 +121,7 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
119
121
|
resetShortToken?: string | null | undefined;
|
|
120
122
|
resetExpires?: number | null | undefined;
|
|
121
123
|
resetAttempts?: number | null | undefined;
|
|
124
|
+
anon?: boolean | undefined;
|
|
122
125
|
createdAt?: any;
|
|
123
126
|
updatedAt?: any;
|
|
124
127
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -166,6 +169,7 @@ export declare const userDataSchema: import("@feathersjs/typebox").TPick<import(
|
|
|
166
169
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
167
170
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
168
171
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
172
|
+
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
169
173
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
170
174
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
171
175
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -205,6 +209,7 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
205
209
|
resetShortToken?: string | null | undefined;
|
|
206
210
|
resetExpires?: number | null | undefined;
|
|
207
211
|
resetAttempts?: number | null | undefined;
|
|
212
|
+
anon?: boolean | undefined;
|
|
208
213
|
createdAt?: any;
|
|
209
214
|
updatedAt?: any;
|
|
210
215
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -252,6 +257,7 @@ export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<imp
|
|
|
252
257
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
253
258
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
254
259
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
260
|
+
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
255
261
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
256
262
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
257
263
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -291,6 +297,7 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
291
297
|
resetShortToken?: string | null | undefined;
|
|
292
298
|
resetExpires?: number | null | undefined;
|
|
293
299
|
resetAttempts?: number | null | undefined;
|
|
300
|
+
anon?: boolean | undefined;
|
|
294
301
|
createdAt?: any;
|
|
295
302
|
updatedAt?: any;
|
|
296
303
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -338,6 +345,7 @@ export declare const userQueryProperties: import("@feathersjs/typebox").TPick<im
|
|
|
338
345
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
339
346
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
340
347
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
348
|
+
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
341
349
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
342
350
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
343
351
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|