@cryptorobot.ai/client 0.0.29 → 0.0.31

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.
@@ -13,6 +13,7 @@ export declare const messagesSchema: import("@feathersjs/typebox").TObject<{
13
13
  user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
14
14
  _id: 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
+ appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
16
17
  email: import("@feathersjs/typebox").TString<"email">;
17
18
  name: import("@feathersjs/typebox").TString<string>;
18
19
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -84,6 +85,7 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
84
85
  country?: string | undefined;
85
86
  stripe?: any;
86
87
  googleId?: any;
88
+ appleId?: any;
87
89
  avatar?: string | undefined;
88
90
  title?: string | null | undefined;
89
91
  company?: string | null | undefined;
@@ -153,6 +155,7 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
153
155
  country?: string | undefined;
154
156
  stripe?: any;
155
157
  googleId?: any;
158
+ appleId?: any;
156
159
  avatar?: string | undefined;
157
160
  title?: string | null | undefined;
158
161
  company?: string | null | undefined;
@@ -222,6 +225,7 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
222
225
  user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
223
226
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
224
227
  googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
228
+ appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
225
229
  email: import("@feathersjs/typebox").TString<"email">;
226
230
  name: import("@feathersjs/typebox").TString<string>;
227
231
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -293,6 +297,7 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
293
297
  country?: string | undefined;
294
298
  stripe?: any;
295
299
  googleId?: any;
300
+ appleId?: any;
296
301
  avatar?: string | undefined;
297
302
  title?: string | null | undefined;
298
303
  company?: string | null | undefined;
@@ -362,6 +367,7 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
362
367
  user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
363
368
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
364
369
  googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
370
+ appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
365
371
  email: import("@feathersjs/typebox").TString<"email">;
366
372
  name: import("@feathersjs/typebox").TString<string>;
367
373
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -433,6 +439,7 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
433
439
  country?: string | undefined;
434
440
  stripe?: any;
435
441
  googleId?: any;
442
+ appleId?: any;
436
443
  avatar?: string | undefined;
437
444
  title?: string | null | undefined;
438
445
  company?: string | null | undefined;
@@ -502,6 +509,7 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
502
509
  user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
503
510
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
504
511
  googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
512
+ appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
505
513
  email: import("@feathersjs/typebox").TString<"email">;
506
514
  name: import("@feathersjs/typebox").TString<string>;
507
515
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -24,6 +24,7 @@ export declare const strategiesHyperoptSchema: import("@feathersjs/typebox").TOb
24
24
  updatedAt: import("@feathersjs/typebox").TAny;
25
25
  startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
26
26
  stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
27
+ results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
27
28
  took: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
28
29
  attempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
29
30
  status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -34,6 +35,7 @@ export declare const strategiesHyperoptSchema: import("@feathersjs/typebox").TOb
34
35
  export type StrategiesHyperopt = Static<typeof strategiesHyperoptSchema>;
35
36
  export declare const strategiesHyperoptValidator: import("@feathersjs/schema").Validator<any, any>;
36
37
  export declare const strategiesHyperoptResolver: import("@feathersjs/schema").Resolver<{
38
+ results?: any;
37
39
  exchangeId?: string | {} | undefined;
38
40
  status?: string | undefined;
39
41
  traderId?: string | {} | undefined;
@@ -64,6 +66,7 @@ export declare const strategiesHyperoptResolver: import("@feathersjs/schema").Re
64
66
  epochs: number;
65
67
  }, HookContext<StrategiesHyperoptService<import("./hyperopt.class").StrategiesHyperoptParams>>>;
66
68
  export declare const strategiesHyperoptExternalResolver: import("@feathersjs/schema").Resolver<{
69
+ results?: any;
67
70
  exchangeId?: string | {} | undefined;
68
71
  status?: string | undefined;
69
72
  traderId?: string | {} | undefined;
@@ -116,6 +119,7 @@ export declare const strategiesHyperoptDataSchema: import("@feathersjs/typebox")
116
119
  updatedAt: import("@feathersjs/typebox").TAny;
117
120
  startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
118
121
  stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
122
+ results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
119
123
  took: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
120
124
  attempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
121
125
  status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -126,6 +130,7 @@ export declare const strategiesHyperoptDataSchema: import("@feathersjs/typebox")
126
130
  export type StrategiesHyperoptData = Static<typeof strategiesHyperoptDataSchema>;
127
131
  export declare const strategiesHyperoptDataValidator: import("@feathersjs/schema").Validator<any, any>;
128
132
  export declare const strategiesHyperoptDataResolver: import("@feathersjs/schema").Resolver<{
133
+ results?: any;
129
134
  exchangeId?: string | {} | undefined;
130
135
  status?: string | undefined;
131
136
  traderId?: string | {} | undefined;
@@ -178,6 +183,7 @@ export declare const strategiesHyperoptPatchSchema: import("@feathersjs/typebox"
178
183
  updatedAt: import("@feathersjs/typebox").TAny;
179
184
  startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
180
185
  stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
186
+ results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
181
187
  took: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
182
188
  attempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
183
189
  status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -188,6 +194,7 @@ export declare const strategiesHyperoptPatchSchema: import("@feathersjs/typebox"
188
194
  export type StrategiesHyperoptPatch = Static<typeof strategiesHyperoptPatchSchema>;
189
195
  export declare const strategiesHyperoptPatchValidator: import("@feathersjs/schema").Validator<any, any>;
190
196
  export declare const strategiesHyperoptPatchResolver: import("@feathersjs/schema").Resolver<{
197
+ results?: any;
191
198
  exchangeId?: string | {} | undefined;
192
199
  status?: string | undefined;
193
200
  traderId?: string | {} | undefined;
@@ -240,25 +247,27 @@ export declare const strategiesHyperoptQueryProperties: import("@feathersjs/type
240
247
  updatedAt: import("@feathersjs/typebox").TAny;
241
248
  startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
242
249
  stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
250
+ results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
243
251
  took: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
244
252
  attempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
245
253
  status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
246
254
  job: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
247
255
  jobName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
248
256
  }>>;
249
- }>, ["_id", "strategyId", "status", "createdAt", "jobId", "progress"]>;
257
+ }>, ["_id", "strategyId", "status", "createdAt", "results", "jobId", "progress"]>;
250
258
  export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
251
259
  $limit: import("@feathersjs/typebox").TNumber;
252
260
  $skip: import("@feathersjs/typebox").TNumber;
253
261
  $sort: import("@feathersjs/typebox").TObject<{
254
262
  _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
255
263
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
264
+ results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
256
265
  strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
257
266
  status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
258
267
  jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
259
268
  progress: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
260
269
  }>;
261
- $select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "strategyId" | "status" | "jobId" | "progress")[]>;
270
+ $select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "results" | "strategyId" | "status" | "jobId" | "progress")[]>;
262
271
  $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
263
272
  _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
264
273
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
@@ -282,6 +291,17 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
282
291
  }>, import("@feathersjs/typebox").TObject<{
283
292
  [key: string]: import("@feathersjs/typebox").TSchema;
284
293
  } | undefined>]>>]>>;
294
+ results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
295
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
296
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
297
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
298
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
299
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
300
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
301
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
302
+ }>, import("@feathersjs/typebox").TObject<{
303
+ [key: string]: import("@feathersjs/typebox").TSchema;
304
+ } | undefined>]>>]>>;
285
305
  strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
286
306
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
287
307
  $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
@@ -350,6 +370,17 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
350
370
  }>, import("@feathersjs/typebox").TObject<{
351
371
  [key: string]: import("@feathersjs/typebox").TSchema;
352
372
  } | undefined>]>>]>>;
373
+ results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
374
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
375
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
376
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
377
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
378
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
379
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
380
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
381
+ }>, import("@feathersjs/typebox").TObject<{
382
+ [key: string]: import("@feathersjs/typebox").TSchema;
383
+ } | undefined>]>>]>>;
353
384
  strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
354
385
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
355
386
  $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
@@ -419,6 +450,17 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
419
450
  }>, import("@feathersjs/typebox").TObject<{
420
451
  [key: string]: import("@feathersjs/typebox").TSchema;
421
452
  } | undefined>]>>]>>;
453
+ results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
454
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
455
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
456
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
457
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
458
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
459
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
460
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
461
+ }>, import("@feathersjs/typebox").TObject<{
462
+ [key: string]: import("@feathersjs/typebox").TSchema;
463
+ } | undefined>]>>]>>;
422
464
  strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
423
465
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
424
466
  $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
@@ -487,6 +529,17 @@ export declare const strategiesHyperoptQuerySchema: import("@feathersjs/typebox"
487
529
  }>, import("@feathersjs/typebox").TObject<{
488
530
  [key: string]: import("@feathersjs/typebox").TSchema;
489
531
  } | undefined>]>>]>>;
532
+ results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
533
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
534
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
535
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
536
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
537
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
538
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
539
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
540
+ }>, import("@feathersjs/typebox").TObject<{
541
+ [key: string]: import("@feathersjs/typebox").TSchema;
542
+ } | undefined>]>>]>>;
490
543
  strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
491
544
  $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
492
545
  $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
@@ -540,12 +593,13 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
540
593
  $sort: {
541
594
  _id?: number | undefined;
542
595
  createdAt?: number | undefined;
596
+ results?: number | undefined;
543
597
  strategyId?: number | undefined;
544
598
  status?: number | undefined;
545
599
  jobId?: number | undefined;
546
600
  progress?: number | undefined;
547
601
  };
548
- $select: ("_id" | "createdAt" | "strategyId" | "status" | "jobId" | "progress")[];
602
+ $select: ("_id" | "createdAt" | "results" | "strategyId" | "status" | "jobId" | "progress")[];
549
603
  $and: ({
550
604
  _id?: string | {} | Partial<{
551
605
  $gt: string | {};
@@ -557,6 +611,7 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
557
611
  $nin: string | {} | (string | {})[];
558
612
  } & {}> | undefined;
559
613
  createdAt?: any;
614
+ results?: any;
560
615
  strategyId?: string | {} | Partial<{
561
616
  $gt: string | {};
562
617
  $gte: string | {};
@@ -597,6 +652,7 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
597
652
  $nin: string | {} | (string | {})[];
598
653
  } & {}> | undefined;
599
654
  createdAt?: any;
655
+ results?: any;
600
656
  strategyId?: string | {} | Partial<{
601
657
  $gt: string | {};
602
658
  $gte: string | {};
@@ -638,6 +694,7 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
638
694
  $nin: string | {} | (string | {})[];
639
695
  } & {}> | undefined;
640
696
  createdAt?: any;
697
+ results?: any;
641
698
  strategyId?: string | {} | Partial<{
642
699
  $gt: string | {};
643
700
  $gte: string | {};
@@ -678,6 +735,7 @@ export declare const strategiesHyperoptQueryResolver: import("@feathersjs/schema
678
735
  $nin: string | {} | (string | {})[];
679
736
  } & {}> | undefined;
680
737
  createdAt?: any;
738
+ results?: any;
681
739
  strategyId?: string | {} | Partial<{
682
740
  $gt: string | {};
683
741
  $gte: string | {};
@@ -4,6 +4,7 @@ import type { UserService } from './users.class';
4
4
  export declare const userSchema: import("@feathersjs/typebox").TObject<{
5
5
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
6
6
  googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
7
+ appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
7
8
  email: import("@feathersjs/typebox").TString<"email">;
8
9
  name: import("@feathersjs/typebox").TString<string>;
9
10
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -68,6 +69,7 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
68
69
  country?: string | undefined;
69
70
  stripe?: any;
70
71
  googleId?: any;
72
+ appleId?: any;
71
73
  avatar?: string | undefined;
72
74
  title?: string | null | undefined;
73
75
  company?: string | null | undefined;
@@ -123,6 +125,7 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
123
125
  country?: string | undefined;
124
126
  stripe?: any;
125
127
  googleId?: any;
128
+ appleId?: any;
126
129
  avatar?: string | undefined;
127
130
  title?: string | null | undefined;
128
131
  company?: string | null | undefined;
@@ -171,6 +174,7 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
171
174
  export declare const userDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
172
175
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
173
176
  googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
177
+ appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
174
178
  email: import("@feathersjs/typebox").TString<"email">;
175
179
  name: import("@feathersjs/typebox").TString<string>;
176
180
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -235,6 +239,7 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
235
239
  country?: string | undefined;
236
240
  stripe?: any;
237
241
  googleId?: any;
242
+ appleId?: any;
238
243
  avatar?: string | undefined;
239
244
  title?: string | null | undefined;
240
245
  company?: string | null | undefined;
@@ -283,6 +288,7 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
283
288
  export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
284
289
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
285
290
  googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
291
+ appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
286
292
  email: import("@feathersjs/typebox").TString<"email">;
287
293
  name: import("@feathersjs/typebox").TString<string>;
288
294
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -347,6 +353,7 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
347
353
  country?: string | undefined;
348
354
  stripe?: any;
349
355
  googleId?: any;
356
+ appleId?: any;
350
357
  avatar?: string | undefined;
351
358
  title?: string | null | undefined;
352
359
  company?: string | null | undefined;
@@ -395,6 +402,7 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
395
402
  export declare const userQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
396
403
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
397
404
  googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
405
+ appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
398
406
  email: import("@feathersjs/typebox").TString<"email">;
399
407
  name: import("@feathersjs/typebox").TString<string>;
400
408
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cryptorobot.ai/client",
3
3
  "description": "A typed client for the cryptorobot.ai platform",
4
- "version": "0.0.29",
4
+ "version": "0.0.31",
5
5
  "homepage": "",
6
6
  "keywords": [
7
7
  "cryptocurrency",