@cryptorobot.ai/client 1.26.0-dev.1029 → 1.26.0-dev.1030

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.
Files changed (23) hide show
  1. package/lib/src/services/advisor/advisor.schema.d.ts +1 -1
  2. package/lib/src/services/advisor/messages/messages.schema.d.ts +144 -144
  3. package/lib/src/services/agents/sessions/sessions.schema.d.ts +143 -143
  4. package/lib/src/services/autotune/usage/usage.schema.d.ts +3 -3
  5. package/lib/src/services/blog/sitemaps/pages/pages.schema.d.ts +72 -72
  6. package/lib/src/services/copilot/concerns/concerns.schema.d.ts +8 -8
  7. package/lib/src/services/models/pods/events/events.schema.d.ts +3 -3
  8. package/lib/src/services/models/signals/subscriptions/subscriptions.schema.d.ts +3 -3
  9. package/lib/src/services/security/events/security-events.schema.d.ts +70 -70
  10. package/lib/src/services/snapshot/snapshot.schema.d.ts +336 -336
  11. package/lib/src/services/strategies/backtest/backtest.schema.d.ts +231 -135
  12. package/lib/src/services/strategies/generate/generate.schema.d.ts +80 -80
  13. package/lib/src/services/strategies/history/history.schema.d.ts +152 -152
  14. package/lib/src/services/strategies/research/research.schema.d.ts +72 -72
  15. package/lib/src/services/tax/sessions/sessions.schema.d.ts +72 -72
  16. package/lib/src/services/tokens/tokens.schema.d.ts +72 -72
  17. package/lib/src/services/traders/pods/api/api.schema.d.ts +8 -8
  18. package/lib/src/services/traders/pods/events/events.schema.d.ts +144 -144
  19. package/lib/src/services/traders/pods/pods.schema.d.ts +73 -73
  20. package/lib/src/services/traders/pods/webhooks/webhooks.schema.d.ts +144 -144
  21. package/lib/src/services/users/access/access.schema.d.ts +70 -70
  22. package/lib/src/services/users/sessions/sessions.schema.d.ts +70 -70
  23. package/package.json +1 -1
@@ -3,7 +3,7 @@ import type { HookContext } from '../../../declarations';
3
3
  import type { UsersAccessService } from './access.class';
4
4
  export declare const usersAccessSchema: import("@feathersjs/typebox").TObject<{
5
5
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6
- userId: import("@feathersjs/typebox").TString<string>;
6
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
7
7
  strategy: import("@feathersjs/typebox").TString<string>;
8
8
  ip: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
9
9
  userAgent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -13,7 +13,7 @@ export type UsersAccess = Static<typeof usersAccessSchema>;
13
13
  export declare const usersAccessValidator: import("@feathersjs/schema").Validator<any, any>;
14
14
  export declare const usersAccessResolver: import("@feathersjs/schema").Resolver<{
15
15
  _id: string | {};
16
- userId: string;
16
+ userId: string | {};
17
17
  strategy: string;
18
18
  ip?: string | undefined;
19
19
  userAgent?: string | undefined;
@@ -21,14 +21,14 @@ export declare const usersAccessResolver: import("@feathersjs/schema").Resolver<
21
21
  }, HookContext<UsersAccessService<import("./access.class").UsersAccessParams>>>;
22
22
  export declare const usersAccessExternalResolver: import("@feathersjs/schema").Resolver<{
23
23
  _id: string | {};
24
- userId: string;
24
+ userId: string | {};
25
25
  strategy: string;
26
26
  ip?: string | undefined;
27
27
  userAgent?: string | undefined;
28
28
  createdAt?: any;
29
29
  }, HookContext<UsersAccessService<import("./access.class").UsersAccessParams>>>;
30
30
  export declare const usersAccessDataSchema: import("@feathersjs/typebox").TObject<{
31
- userId: import("@feathersjs/typebox").TString<string>;
31
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
32
32
  strategy: import("@feathersjs/typebox").TString<string>;
33
33
  ip: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
34
34
  userAgent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -37,7 +37,7 @@ export type UsersAccessData = Static<typeof usersAccessDataSchema>;
37
37
  export declare const usersAccessDataValidator: import("@feathersjs/schema").Validator<any, any>;
38
38
  export declare const usersAccessDataResolver: import("@feathersjs/schema").Resolver<{
39
39
  _id: string | {};
40
- userId: string;
40
+ userId: string | {};
41
41
  strategy: string;
42
42
  ip?: string | undefined;
43
43
  userAgent?: string | undefined;
@@ -57,7 +57,7 @@ export declare const usersAccessPatchResolver: import("@feathersjs/schema").Reso
57
57
  }>, HookContext<UsersAccessService<import("./access.class").UsersAccessParams>>>;
58
58
  export declare const usersAccessQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
59
59
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
60
- userId: import("@feathersjs/typebox").TString<string>;
60
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
61
61
  strategy: import("@feathersjs/typebox").TString<string>;
62
62
  ip: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
63
63
  userAgent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -107,14 +107,14 @@ export declare const usersAccessQuerySchema: import("@feathersjs/typebox").TInte
107
107
  }>, import("@feathersjs/typebox").TObject<{
108
108
  [key: string]: import("@feathersjs/typebox").TSchema;
109
109
  } | undefined>]>>]>>;
110
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
111
- $gt: import("@feathersjs/typebox").TString<string>;
112
- $gte: import("@feathersjs/typebox").TString<string>;
113
- $lt: import("@feathersjs/typebox").TString<string>;
114
- $lte: import("@feathersjs/typebox").TString<string>;
115
- $ne: import("@feathersjs/typebox").TString<string>;
116
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
117
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
110
+ userId: 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<{
111
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
112
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
113
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
114
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
115
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
116
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
117
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
118
118
  }>, import("@feathersjs/typebox").TObject<{
119
119
  [key: string]: import("@feathersjs/typebox").TSchema;
120
120
  } | undefined>]>>]>>;
@@ -153,14 +153,14 @@ export declare const usersAccessQuerySchema: import("@feathersjs/typebox").TInte
153
153
  }>, import("@feathersjs/typebox").TObject<{
154
154
  [key: string]: import("@feathersjs/typebox").TSchema;
155
155
  } | undefined>]>>]>>;
156
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
157
- $gt: import("@feathersjs/typebox").TString<string>;
158
- $gte: import("@feathersjs/typebox").TString<string>;
159
- $lt: import("@feathersjs/typebox").TString<string>;
160
- $lte: import("@feathersjs/typebox").TString<string>;
161
- $ne: import("@feathersjs/typebox").TString<string>;
162
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
163
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
156
+ userId: 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<{
157
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
158
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
159
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
160
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
161
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
162
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
163
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
164
164
  }>, import("@feathersjs/typebox").TObject<{
165
165
  [key: string]: import("@feathersjs/typebox").TSchema;
166
166
  } | undefined>]>>]>>;
@@ -200,14 +200,14 @@ export declare const usersAccessQuerySchema: import("@feathersjs/typebox").TInte
200
200
  }>, import("@feathersjs/typebox").TObject<{
201
201
  [key: string]: import("@feathersjs/typebox").TSchema;
202
202
  } | undefined>]>>]>>;
203
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
204
- $gt: import("@feathersjs/typebox").TString<string>;
205
- $gte: import("@feathersjs/typebox").TString<string>;
206
- $lt: import("@feathersjs/typebox").TString<string>;
207
- $lte: import("@feathersjs/typebox").TString<string>;
208
- $ne: import("@feathersjs/typebox").TString<string>;
209
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
210
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
203
+ userId: 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<{
204
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
205
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
206
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
207
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
208
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
209
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
210
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
211
211
  }>, import("@feathersjs/typebox").TObject<{
212
212
  [key: string]: import("@feathersjs/typebox").TSchema;
213
213
  } | undefined>]>>]>>;
@@ -246,14 +246,14 @@ export declare const usersAccessQuerySchema: import("@feathersjs/typebox").TInte
246
246
  }>, import("@feathersjs/typebox").TObject<{
247
247
  [key: string]: import("@feathersjs/typebox").TSchema;
248
248
  } | undefined>]>>]>>;
249
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
250
- $gt: import("@feathersjs/typebox").TString<string>;
251
- $gte: import("@feathersjs/typebox").TString<string>;
252
- $lt: import("@feathersjs/typebox").TString<string>;
253
- $lte: import("@feathersjs/typebox").TString<string>;
254
- $ne: import("@feathersjs/typebox").TString<string>;
255
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
256
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
249
+ userId: 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<{
250
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
251
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
252
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
253
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
254
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
255
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
256
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
257
257
  }>, import("@feathersjs/typebox").TObject<{
258
258
  [key: string]: import("@feathersjs/typebox").TSchema;
259
259
  } | undefined>]>>]>>;
@@ -291,14 +291,14 @@ export declare const usersAccessQueryResolver: import("@feathersjs/schema").Reso
291
291
  $nin: string | string[];
292
292
  } & {}> | undefined;
293
293
  userId?: string | Partial<{
294
- $gt: string;
295
- $gte: string;
296
- $lt: string;
297
- $lte: string;
298
- $ne: string;
299
- $in: string | string[];
300
- $nin: string | string[];
301
- } & {}> | undefined;
294
+ $gt: string | {};
295
+ $gte: string | {};
296
+ $lt: string | {};
297
+ $lte: string | {};
298
+ $ne: string | {};
299
+ $in: string | (string | {})[] | {};
300
+ $nin: string | (string | {})[] | {};
301
+ } & {}> | {} | undefined;
302
302
  } | {
303
303
  $or: {
304
304
  _id?: string | Partial<{
@@ -321,14 +321,14 @@ export declare const usersAccessQueryResolver: import("@feathersjs/schema").Reso
321
321
  $nin: string | string[];
322
322
  } & {}> | undefined;
323
323
  userId?: string | Partial<{
324
- $gt: string;
325
- $gte: string;
326
- $lt: string;
327
- $lte: string;
328
- $ne: string;
329
- $in: string | string[];
330
- $nin: string | string[];
331
- } & {}> | undefined;
324
+ $gt: string | {};
325
+ $gte: string | {};
326
+ $lt: string | {};
327
+ $lte: string | {};
328
+ $ne: string | {};
329
+ $in: string | (string | {})[] | {};
330
+ $nin: string | (string | {})[] | {};
331
+ } & {}> | {} | undefined;
332
332
  }[];
333
333
  })[];
334
334
  $or: {
@@ -352,14 +352,14 @@ export declare const usersAccessQueryResolver: import("@feathersjs/schema").Reso
352
352
  $nin: string | string[];
353
353
  } & {}> | undefined;
354
354
  userId?: string | Partial<{
355
- $gt: string;
356
- $gte: string;
357
- $lt: string;
358
- $lte: string;
359
- $ne: string;
360
- $in: string | string[];
361
- $nin: string | string[];
362
- } & {}> | undefined;
355
+ $gt: string | {};
356
+ $gte: string | {};
357
+ $lt: string | {};
358
+ $lte: string | {};
359
+ $ne: string | {};
360
+ $in: string | (string | {})[] | {};
361
+ $nin: string | (string | {})[] | {};
362
+ } & {}> | {} | undefined;
363
363
  }[];
364
364
  }> & {
365
365
  _id?: string | Partial<{
@@ -382,12 +382,12 @@ export declare const usersAccessQueryResolver: import("@feathersjs/schema").Reso
382
382
  $nin: string | string[];
383
383
  } & {}> | undefined;
384
384
  userId?: string | Partial<{
385
- $gt: string;
386
- $gte: string;
387
- $lt: string;
388
- $lte: string;
389
- $ne: string;
390
- $in: string | string[];
391
- $nin: string | string[];
392
- } & {}> | undefined;
385
+ $gt: string | {};
386
+ $gte: string | {};
387
+ $lt: string | {};
388
+ $lte: string | {};
389
+ $ne: string | {};
390
+ $in: string | (string | {})[] | {};
391
+ $nin: string | (string | {})[] | {};
392
+ } & {}> | {} | undefined;
393
393
  } & {}, HookContext<UsersAccessService<import("./access.class").UsersAccessParams>>>;
@@ -3,7 +3,7 @@ import type { HookContext } from '../../../declarations';
3
3
  import type { UsersSessionsService } from './sessions.class';
4
4
  export declare const usersSessionsSchema: import("@feathersjs/typebox").TObject<{
5
5
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6
- userId: import("@feathersjs/typebox").TString<string>;
6
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
7
7
  jti: import("@feathersjs/typebox").TString<string>;
8
8
  strategy: import("@feathersjs/typebox").TString<string>;
9
9
  ip: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -22,7 +22,7 @@ export type UsersSessions = Static<typeof usersSessionsSchema>;
22
22
  export declare const usersSessionsValidator: import("@feathersjs/schema").Validator<any, any>;
23
23
  export declare const usersSessionsResolver: import("@feathersjs/schema").Resolver<{
24
24
  _id: string | {};
25
- userId: string;
25
+ userId: string | {};
26
26
  jti: string;
27
27
  strategy: string;
28
28
  ip?: string | undefined;
@@ -39,7 +39,7 @@ export declare const usersSessionsResolver: import("@feathersjs/schema").Resolve
39
39
  }, HookContext<UsersSessionsService<import("./sessions.class").UsersSessionsParams>>>;
40
40
  export declare const usersSessionsExternalResolver: import("@feathersjs/schema").Resolver<{
41
41
  _id: string | {};
42
- userId: string;
42
+ userId: string | {};
43
43
  jti: string;
44
44
  strategy: string;
45
45
  ip?: string | undefined;
@@ -55,7 +55,7 @@ export declare const usersSessionsExternalResolver: import("@feathersjs/schema")
55
55
  createdAt?: any;
56
56
  }, HookContext<UsersSessionsService<import("./sessions.class").UsersSessionsParams>>>;
57
57
  export declare const usersSessionsDataSchema: import("@feathersjs/typebox").TObject<{
58
- userId: import("@feathersjs/typebox").TString<string>;
58
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
59
59
  jti: import("@feathersjs/typebox").TString<string>;
60
60
  strategy: import("@feathersjs/typebox").TString<string>;
61
61
  ip: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -72,7 +72,7 @@ export type UsersSessionsData = Static<typeof usersSessionsDataSchema>;
72
72
  export declare const usersSessionsDataValidator: import("@feathersjs/schema").Validator<any, any>;
73
73
  export declare const usersSessionsDataResolver: import("@feathersjs/schema").Resolver<{
74
74
  _id: string | {};
75
- userId: string;
75
+ userId: string | {};
76
76
  jti: string;
77
77
  strategy: string;
78
78
  ip?: string | undefined;
@@ -99,7 +99,7 @@ export declare const usersSessionsPatchResolver: import("@feathersjs/schema").Re
99
99
  }>, HookContext<UsersSessionsService<import("./sessions.class").UsersSessionsParams>>>;
100
100
  export declare const usersSessionsQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
101
101
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
102
- userId: import("@feathersjs/typebox").TString<string>;
102
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
103
103
  jti: import("@feathersjs/typebox").TString<string>;
104
104
  strategy: import("@feathersjs/typebox").TString<string>;
105
105
  ip: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -194,14 +194,14 @@ export declare const usersSessionsQuerySchema: import("@feathersjs/typebox").TIn
194
194
  }>, import("@feathersjs/typebox").TObject<{
195
195
  [key: string]: import("@feathersjs/typebox").TSchema;
196
196
  } | undefined>]>>]>>;
197
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
198
- $gt: import("@feathersjs/typebox").TString<string>;
199
- $gte: import("@feathersjs/typebox").TString<string>;
200
- $lt: import("@feathersjs/typebox").TString<string>;
201
- $lte: import("@feathersjs/typebox").TString<string>;
202
- $ne: import("@feathersjs/typebox").TString<string>;
203
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
204
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
197
+ userId: 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<{
198
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
199
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
200
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
201
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
202
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
203
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
204
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
205
205
  }>, import("@feathersjs/typebox").TObject<{
206
206
  [key: string]: import("@feathersjs/typebox").TSchema;
207
207
  } | undefined>]>>]>>;
@@ -273,14 +273,14 @@ export declare const usersSessionsQuerySchema: import("@feathersjs/typebox").TIn
273
273
  }>, import("@feathersjs/typebox").TObject<{
274
274
  [key: string]: import("@feathersjs/typebox").TSchema;
275
275
  } | undefined>]>>]>>;
276
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
277
- $gt: import("@feathersjs/typebox").TString<string>;
278
- $gte: import("@feathersjs/typebox").TString<string>;
279
- $lt: import("@feathersjs/typebox").TString<string>;
280
- $lte: import("@feathersjs/typebox").TString<string>;
281
- $ne: import("@feathersjs/typebox").TString<string>;
282
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
283
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
276
+ userId: 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<{
277
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
278
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
279
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
280
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
281
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
282
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
283
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
284
284
  }>, import("@feathersjs/typebox").TObject<{
285
285
  [key: string]: import("@feathersjs/typebox").TSchema;
286
286
  } | undefined>]>>]>>;
@@ -353,14 +353,14 @@ export declare const usersSessionsQuerySchema: import("@feathersjs/typebox").TIn
353
353
  }>, import("@feathersjs/typebox").TObject<{
354
354
  [key: string]: import("@feathersjs/typebox").TSchema;
355
355
  } | undefined>]>>]>>;
356
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
357
- $gt: import("@feathersjs/typebox").TString<string>;
358
- $gte: import("@feathersjs/typebox").TString<string>;
359
- $lt: import("@feathersjs/typebox").TString<string>;
360
- $lte: import("@feathersjs/typebox").TString<string>;
361
- $ne: import("@feathersjs/typebox").TString<string>;
362
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
363
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
356
+ userId: 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<{
357
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
358
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
359
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
360
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
361
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
362
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
363
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
364
364
  }>, import("@feathersjs/typebox").TObject<{
365
365
  [key: string]: import("@feathersjs/typebox").TSchema;
366
366
  } | undefined>]>>]>>;
@@ -432,14 +432,14 @@ export declare const usersSessionsQuerySchema: import("@feathersjs/typebox").TIn
432
432
  }>, import("@feathersjs/typebox").TObject<{
433
433
  [key: string]: import("@feathersjs/typebox").TSchema;
434
434
  } | undefined>]>>]>>;
435
- userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
436
- $gt: import("@feathersjs/typebox").TString<string>;
437
- $gte: import("@feathersjs/typebox").TString<string>;
438
- $lt: import("@feathersjs/typebox").TString<string>;
439
- $lte: import("@feathersjs/typebox").TString<string>;
440
- $ne: import("@feathersjs/typebox").TString<string>;
441
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
442
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
435
+ userId: 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<{
436
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
437
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
438
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
439
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
440
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
441
+ $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
442
+ $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>> | import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
443
443
  }>, import("@feathersjs/typebox").TObject<{
444
444
  [key: string]: import("@feathersjs/typebox").TSchema;
445
445
  } | undefined>]>>]>>;
@@ -507,14 +507,14 @@ export declare const usersSessionsQueryResolver: import("@feathersjs/schema").Re
507
507
  $nin: string | string[];
508
508
  } & {}> | undefined;
509
509
  userId?: string | Partial<{
510
- $gt: string;
511
- $gte: string;
512
- $lt: string;
513
- $lte: string;
514
- $ne: string;
515
- $in: string | string[];
516
- $nin: string | string[];
517
- } & {}> | undefined;
510
+ $gt: string | {};
511
+ $gte: string | {};
512
+ $lt: string | {};
513
+ $lte: string | {};
514
+ $ne: string | {};
515
+ $in: string | (string | {})[] | {};
516
+ $nin: string | (string | {})[] | {};
517
+ } & {}> | {} | undefined;
518
518
  } | {
519
519
  $or: {
520
520
  _id?: string | Partial<{
@@ -564,14 +564,14 @@ export declare const usersSessionsQueryResolver: import("@feathersjs/schema").Re
564
564
  $nin: string | string[];
565
565
  } & {}> | undefined;
566
566
  userId?: string | Partial<{
567
- $gt: string;
568
- $gte: string;
569
- $lt: string;
570
- $lte: string;
571
- $ne: string;
572
- $in: string | string[];
573
- $nin: string | string[];
574
- } & {}> | undefined;
567
+ $gt: string | {};
568
+ $gte: string | {};
569
+ $lt: string | {};
570
+ $lte: string | {};
571
+ $ne: string | {};
572
+ $in: string | (string | {})[] | {};
573
+ $nin: string | (string | {})[] | {};
574
+ } & {}> | {} | undefined;
575
575
  }[];
576
576
  })[];
577
577
  $or: {
@@ -622,14 +622,14 @@ export declare const usersSessionsQueryResolver: import("@feathersjs/schema").Re
622
622
  $nin: string | string[];
623
623
  } & {}> | undefined;
624
624
  userId?: string | Partial<{
625
- $gt: string;
626
- $gte: string;
627
- $lt: string;
628
- $lte: string;
629
- $ne: string;
630
- $in: string | string[];
631
- $nin: string | string[];
632
- } & {}> | undefined;
625
+ $gt: string | {};
626
+ $gte: string | {};
627
+ $lt: string | {};
628
+ $lte: string | {};
629
+ $ne: string | {};
630
+ $in: string | (string | {})[] | {};
631
+ $nin: string | (string | {})[] | {};
632
+ } & {}> | {} | undefined;
633
633
  }[];
634
634
  }> & {
635
635
  _id?: string | Partial<{
@@ -679,12 +679,12 @@ export declare const usersSessionsQueryResolver: import("@feathersjs/schema").Re
679
679
  $nin: string | string[];
680
680
  } & {}> | undefined;
681
681
  userId?: string | Partial<{
682
- $gt: string;
683
- $gte: string;
684
- $lt: string;
685
- $lte: string;
686
- $ne: string;
687
- $in: string | string[];
688
- $nin: string | string[];
689
- } & {}> | undefined;
682
+ $gt: string | {};
683
+ $gte: string | {};
684
+ $lt: string | {};
685
+ $lte: string | {};
686
+ $ne: string | {};
687
+ $in: string | (string | {})[] | {};
688
+ $nin: string | (string | {})[] | {};
689
+ } & {}> | {} | undefined;
690
690
  } & {}, HookContext<UsersSessionsService<import("./sessions.class").UsersSessionsParams>>>;
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": "1.26.0-dev.1029",
4
+ "version": "1.26.0-dev.1030",
5
5
  "homepage": "",
6
6
  "keywords": [
7
7
  "cryptocurrency",