@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
|
@@ -47,6 +47,7 @@ export declare const messagesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
47
47
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
48
48
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
49
49
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
50
|
+
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
50
51
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
51
52
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
52
53
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -91,6 +92,7 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
91
92
|
resetShortToken?: string | null | undefined;
|
|
92
93
|
resetExpires?: number | null | undefined;
|
|
93
94
|
resetAttempts?: number | null | undefined;
|
|
95
|
+
anon?: boolean | undefined;
|
|
94
96
|
createdAt?: any;
|
|
95
97
|
updatedAt?: any;
|
|
96
98
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -145,6 +147,7 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
145
147
|
resetShortToken?: string | null | undefined;
|
|
146
148
|
resetExpires?: number | null | undefined;
|
|
147
149
|
resetAttempts?: number | null | undefined;
|
|
150
|
+
anon?: boolean | undefined;
|
|
148
151
|
createdAt?: any;
|
|
149
152
|
updatedAt?: any;
|
|
150
153
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -211,6 +214,7 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
|
|
|
211
214
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
212
215
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
213
216
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
217
|
+
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
214
218
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
215
219
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
216
220
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -255,6 +259,7 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
255
259
|
resetShortToken?: string | null | undefined;
|
|
256
260
|
resetExpires?: number | null | undefined;
|
|
257
261
|
resetAttempts?: number | null | undefined;
|
|
262
|
+
anon?: boolean | undefined;
|
|
258
263
|
createdAt?: any;
|
|
259
264
|
updatedAt?: any;
|
|
260
265
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -321,6 +326,7 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
321
326
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
322
327
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
323
328
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
329
|
+
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
324
330
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
325
331
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
326
332
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -365,6 +371,7 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
365
371
|
resetShortToken?: string | null | undefined;
|
|
366
372
|
resetExpires?: number | null | undefined;
|
|
367
373
|
resetAttempts?: number | null | undefined;
|
|
374
|
+
anon?: boolean | undefined;
|
|
368
375
|
createdAt?: any;
|
|
369
376
|
updatedAt?: any;
|
|
370
377
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -431,6 +438,7 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
431
438
|
resetExpires: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
432
439
|
resetAttempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TNumber]>>;
|
|
433
440
|
agreements: import("@feathersjs/typebox").TBoolean;
|
|
441
|
+
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
434
442
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
435
443
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
436
444
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|