@cryptorobot.ai/client 1.26.0-dev.1028 → 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 { BlogSitemapsPagesService } from './pages.class';
4
4
  export declare const blogSitemapsPagesSchema: import("@feathersjs/typebox").TObject<{
5
5
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6
- snapshotId: import("@feathersjs/typebox").TString<string>;
6
+ snapshotId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
7
7
  crawledAt: import("@feathersjs/typebox").TString<"date-time">;
8
8
  url: import("@feathersjs/typebox").TString<string>;
9
9
  httpStatus: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
@@ -37,7 +37,7 @@ export type BlogSitemapsPages = Static<typeof blogSitemapsPagesSchema>;
37
37
  export declare const blogSitemapsPagesValidator: import("@feathersjs/schema").Validator<any, any>;
38
38
  export declare const blogSitemapsPagesResolver: import("@feathersjs/schema").Resolver<{
39
39
  _id: string | {};
40
- snapshotId: string;
40
+ snapshotId: string | {};
41
41
  crawledAt: string;
42
42
  url: string;
43
43
  httpStatus: number | null;
@@ -69,7 +69,7 @@ export declare const blogSitemapsPagesResolver: import("@feathersjs/schema").Res
69
69
  }, HookContext<BlogSitemapsPagesService<import("./pages.class").BlogSitemapsPagesParams>>>;
70
70
  export declare const blogSitemapsPagesExternalResolver: import("@feathersjs/schema").Resolver<{
71
71
  _id: string | {};
72
- snapshotId: string;
72
+ snapshotId: string | {};
73
73
  crawledAt: string;
74
74
  url: string;
75
75
  httpStatus: number | null;
@@ -101,7 +101,7 @@ export declare const blogSitemapsPagesExternalResolver: import("@feathersjs/sche
101
101
  }, HookContext<BlogSitemapsPagesService<import("./pages.class").BlogSitemapsPagesParams>>>;
102
102
  export declare const blogSitemapsPagesDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
103
103
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
104
- snapshotId: import("@feathersjs/typebox").TString<string>;
104
+ snapshotId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
105
105
  crawledAt: import("@feathersjs/typebox").TString<"date-time">;
106
106
  url: import("@feathersjs/typebox").TString<string>;
107
107
  httpStatus: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
@@ -135,7 +135,7 @@ export type BlogSitemapsPagesData = Static<typeof blogSitemapsPagesDataSchema>;
135
135
  export declare const blogSitemapsPagesDataValidator: import("@feathersjs/schema").Validator<any, any>;
136
136
  export declare const blogSitemapsPagesDataResolver: import("@feathersjs/schema").Resolver<{
137
137
  _id: string | {};
138
- snapshotId: string;
138
+ snapshotId: string | {};
139
139
  crawledAt: string;
140
140
  url: string;
141
141
  httpStatus: number | null;
@@ -167,7 +167,7 @@ export declare const blogSitemapsPagesDataResolver: import("@feathersjs/schema")
167
167
  }, HookContext<BlogSitemapsPagesService<import("./pages.class").BlogSitemapsPagesParams>>>;
168
168
  export declare const blogSitemapsPagesPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
169
169
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
170
- snapshotId: import("@feathersjs/typebox").TString<string>;
170
+ snapshotId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
171
171
  crawledAt: import("@feathersjs/typebox").TString<"date-time">;
172
172
  url: import("@feathersjs/typebox").TString<string>;
173
173
  httpStatus: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
@@ -201,7 +201,7 @@ export type BlogSitemapsPagesPatch = Static<typeof blogSitemapsPagesPatchSchema>
201
201
  export declare const blogSitemapsPagesPatchValidator: import("@feathersjs/schema").Validator<any, any>;
202
202
  export declare const blogSitemapsPagesPatchResolver: import("@feathersjs/schema").Resolver<{
203
203
  _id: string | {};
204
- snapshotId: string;
204
+ snapshotId: string | {};
205
205
  crawledAt: string;
206
206
  url: string;
207
207
  httpStatus: number | null;
@@ -233,7 +233,7 @@ export declare const blogSitemapsPagesPatchResolver: import("@feathersjs/schema"
233
233
  }, HookContext<BlogSitemapsPagesService<import("./pages.class").BlogSitemapsPagesParams>>>;
234
234
  export declare const blogSitemapsPagesQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
235
235
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
236
- snapshotId: import("@feathersjs/typebox").TString<string>;
236
+ snapshotId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
237
237
  crawledAt: import("@feathersjs/typebox").TString<"date-time">;
238
238
  url: import("@feathersjs/typebox").TString<string>;
239
239
  httpStatus: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNumber, import("@feathersjs/typebox").TNull]>;
@@ -321,14 +321,14 @@ export declare const blogSitemapsPagesQuerySchema: import("@feathersjs/typebox")
321
321
  }>, import("@feathersjs/typebox").TObject<{
322
322
  [key: string]: import("@feathersjs/typebox").TSchema;
323
323
  } | undefined>]>>]>>;
324
- snapshotId: 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<{
325
- $gt: import("@feathersjs/typebox").TString<string>;
326
- $gte: import("@feathersjs/typebox").TString<string>;
327
- $lt: import("@feathersjs/typebox").TString<string>;
328
- $lte: import("@feathersjs/typebox").TString<string>;
329
- $ne: import("@feathersjs/typebox").TString<string>;
330
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
331
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
324
+ snapshotId: 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<{
325
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
326
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
327
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
328
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
329
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
330
+ $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<{}>]>;
331
+ $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<{}>]>;
332
332
  }>, import("@feathersjs/typebox").TObject<{
333
333
  [key: string]: import("@feathersjs/typebox").TSchema;
334
334
  } | undefined>]>>]>>;
@@ -400,14 +400,14 @@ export declare const blogSitemapsPagesQuerySchema: import("@feathersjs/typebox")
400
400
  }>, import("@feathersjs/typebox").TObject<{
401
401
  [key: string]: import("@feathersjs/typebox").TSchema;
402
402
  } | undefined>]>>]>>;
403
- snapshotId: 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<{
404
- $gt: import("@feathersjs/typebox").TString<string>;
405
- $gte: import("@feathersjs/typebox").TString<string>;
406
- $lt: import("@feathersjs/typebox").TString<string>;
407
- $lte: import("@feathersjs/typebox").TString<string>;
408
- $ne: import("@feathersjs/typebox").TString<string>;
409
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
410
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
403
+ snapshotId: 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<{
404
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
405
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
406
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
407
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
408
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
409
+ $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<{}>]>;
410
+ $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<{}>]>;
411
411
  }>, import("@feathersjs/typebox").TObject<{
412
412
  [key: string]: import("@feathersjs/typebox").TSchema;
413
413
  } | undefined>]>>]>>;
@@ -480,14 +480,14 @@ export declare const blogSitemapsPagesQuerySchema: import("@feathersjs/typebox")
480
480
  }>, import("@feathersjs/typebox").TObject<{
481
481
  [key: string]: import("@feathersjs/typebox").TSchema;
482
482
  } | undefined>]>>]>>;
483
- snapshotId: 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<{
484
- $gt: import("@feathersjs/typebox").TString<string>;
485
- $gte: import("@feathersjs/typebox").TString<string>;
486
- $lt: import("@feathersjs/typebox").TString<string>;
487
- $lte: import("@feathersjs/typebox").TString<string>;
488
- $ne: import("@feathersjs/typebox").TString<string>;
489
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
490
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
483
+ snapshotId: 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<{
484
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
485
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
486
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
487
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
488
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
489
+ $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<{}>]>;
490
+ $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<{}>]>;
491
491
  }>, import("@feathersjs/typebox").TObject<{
492
492
  [key: string]: import("@feathersjs/typebox").TSchema;
493
493
  } | undefined>]>>]>>;
@@ -559,14 +559,14 @@ export declare const blogSitemapsPagesQuerySchema: import("@feathersjs/typebox")
559
559
  }>, import("@feathersjs/typebox").TObject<{
560
560
  [key: string]: import("@feathersjs/typebox").TSchema;
561
561
  } | undefined>]>>]>>;
562
- snapshotId: 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<{
563
- $gt: import("@feathersjs/typebox").TString<string>;
564
- $gte: import("@feathersjs/typebox").TString<string>;
565
- $lt: import("@feathersjs/typebox").TString<string>;
566
- $lte: import("@feathersjs/typebox").TString<string>;
567
- $ne: import("@feathersjs/typebox").TString<string>;
568
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
569
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
562
+ snapshotId: 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<{
563
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
564
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
565
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
566
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
567
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
568
+ $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<{}>]>;
569
+ $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<{}>]>;
570
570
  }>, import("@feathersjs/typebox").TObject<{
571
571
  [key: string]: import("@feathersjs/typebox").TSchema;
572
572
  } | undefined>]>>]>>;
@@ -646,14 +646,14 @@ export declare const blogSitemapsPagesQueryResolver: import("@feathersjs/schema"
646
646
  $nin: number | (number | null)[] | null;
647
647
  } & {}> | null | undefined;
648
648
  snapshotId?: string | Partial<{
649
- $gt: string;
650
- $gte: string;
651
- $lt: string;
652
- $lte: string;
653
- $ne: string;
654
- $in: string | string[];
655
- $nin: string | string[];
656
- } & {}> | undefined;
649
+ $gt: string | {};
650
+ $gte: string | {};
651
+ $lt: string | {};
652
+ $lte: string | {};
653
+ $ne: string | {};
654
+ $in: string | (string | {})[] | {};
655
+ $nin: string | (string | {})[] | {};
656
+ } & {}> | {} | undefined;
657
657
  tier?: 1 | 2 | Partial<{
658
658
  $gt: 1 | 2;
659
659
  $gte: 1 | 2;
@@ -711,14 +711,14 @@ export declare const blogSitemapsPagesQueryResolver: import("@feathersjs/schema"
711
711
  $nin: number | (number | null)[] | null;
712
712
  } & {}> | null | undefined;
713
713
  snapshotId?: string | Partial<{
714
- $gt: string;
715
- $gte: string;
716
- $lt: string;
717
- $lte: string;
718
- $ne: string;
719
- $in: string | string[];
720
- $nin: string | string[];
721
- } & {}> | undefined;
714
+ $gt: string | {};
715
+ $gte: string | {};
716
+ $lt: string | {};
717
+ $lte: string | {};
718
+ $ne: string | {};
719
+ $in: string | (string | {})[] | {};
720
+ $nin: string | (string | {})[] | {};
721
+ } & {}> | {} | undefined;
722
722
  tier?: 1 | 2 | Partial<{
723
723
  $gt: 1 | 2;
724
724
  $gte: 1 | 2;
@@ -777,14 +777,14 @@ export declare const blogSitemapsPagesQueryResolver: import("@feathersjs/schema"
777
777
  $nin: number | (number | null)[] | null;
778
778
  } & {}> | null | undefined;
779
779
  snapshotId?: string | Partial<{
780
- $gt: string;
781
- $gte: string;
782
- $lt: string;
783
- $lte: string;
784
- $ne: string;
785
- $in: string | string[];
786
- $nin: string | string[];
787
- } & {}> | undefined;
780
+ $gt: string | {};
781
+ $gte: string | {};
782
+ $lt: string | {};
783
+ $lte: string | {};
784
+ $ne: string | {};
785
+ $in: string | (string | {})[] | {};
786
+ $nin: string | (string | {})[] | {};
787
+ } & {}> | {} | undefined;
788
788
  tier?: 1 | 2 | Partial<{
789
789
  $gt: 1 | 2;
790
790
  $gte: 1 | 2;
@@ -842,14 +842,14 @@ export declare const blogSitemapsPagesQueryResolver: import("@feathersjs/schema"
842
842
  $nin: number | (number | null)[] | null;
843
843
  } & {}> | null | undefined;
844
844
  snapshotId?: string | Partial<{
845
- $gt: string;
846
- $gte: string;
847
- $lt: string;
848
- $lte: string;
849
- $ne: string;
850
- $in: string | string[];
851
- $nin: string | string[];
852
- } & {}> | undefined;
845
+ $gt: string | {};
846
+ $gte: string | {};
847
+ $lt: string | {};
848
+ $lte: string | {};
849
+ $ne: string | {};
850
+ $in: string | (string | {})[] | {};
851
+ $nin: string | (string | {})[] | {};
852
+ } & {}> | {} | undefined;
853
853
  tier?: 1 | 2 | Partial<{
854
854
  $gt: 1 | 2;
855
855
  $gte: 1 | 2;
@@ -9,7 +9,7 @@ export declare const copilotConcernsSchema: import("@feathersjs/typebox").TObjec
9
9
  title: import("@feathersjs/typebox").TString<string>;
10
10
  description: import("@feathersjs/typebox").TString<string>;
11
11
  severity: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"info">, import("@feathersjs/typebox").TLiteral<"warning">, import("@feathersjs/typebox").TLiteral<"critical">]>;
12
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
12
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
13
13
  value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
14
14
  status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"active">, import("@feathersjs/typebox").TLiteral<"resolved">, import("@feathersjs/typebox").TLiteral<"acknowledged">]>;
15
15
  createdAt: import("@feathersjs/typebox").TString<"date-time">;
@@ -25,7 +25,7 @@ export declare const copilotConcernsResolver: import("@feathersjs/schema").Resol
25
25
  title: string;
26
26
  description: string;
27
27
  severity: "critical" | "info" | "warning";
28
- traderId?: string | undefined;
28
+ traderId?: string | {} | undefined;
29
29
  value?: number | undefined;
30
30
  status: "acknowledged" | "active" | "resolved";
31
31
  createdAt: string;
@@ -39,7 +39,7 @@ export declare const copilotConcernsExternalResolver: import("@feathersjs/schema
39
39
  title: string;
40
40
  description: string;
41
41
  severity: "critical" | "info" | "warning";
42
- traderId?: string | undefined;
42
+ traderId?: string | {} | undefined;
43
43
  value?: number | undefined;
44
44
  status: "acknowledged" | "active" | "resolved";
45
45
  createdAt: string;
@@ -53,7 +53,7 @@ export declare const copilotConcernsDataSchema: import("@feathersjs/typebox").TO
53
53
  title: import("@feathersjs/typebox").TString<string>;
54
54
  description: import("@feathersjs/typebox").TString<string>;
55
55
  severity: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"info">, import("@feathersjs/typebox").TLiteral<"warning">, import("@feathersjs/typebox").TLiteral<"critical">]>;
56
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
56
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
57
57
  value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
58
58
  status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"active">, import("@feathersjs/typebox").TLiteral<"resolved">, import("@feathersjs/typebox").TLiteral<"acknowledged">]>;
59
59
  createdAt: import("@feathersjs/typebox").TString<"date-time">;
@@ -69,7 +69,7 @@ export declare const copilotConcernsDataResolver: import("@feathersjs/schema").R
69
69
  title: string;
70
70
  description: string;
71
71
  severity: "critical" | "info" | "warning";
72
- traderId?: string | undefined;
72
+ traderId?: string | {} | undefined;
73
73
  value?: number | undefined;
74
74
  status: "acknowledged" | "active" | "resolved";
75
75
  createdAt: string;
@@ -83,7 +83,7 @@ export declare const copilotConcernsPatchSchema: import("@feathersjs/typebox").T
83
83
  title: import("@feathersjs/typebox").TString<string>;
84
84
  description: import("@feathersjs/typebox").TString<string>;
85
85
  severity: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"info">, import("@feathersjs/typebox").TLiteral<"warning">, import("@feathersjs/typebox").TLiteral<"critical">]>;
86
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
86
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
87
87
  value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
88
88
  status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"active">, import("@feathersjs/typebox").TLiteral<"resolved">, import("@feathersjs/typebox").TLiteral<"acknowledged">]>;
89
89
  createdAt: import("@feathersjs/typebox").TString<"date-time">;
@@ -99,7 +99,7 @@ export declare const copilotConcernsPatchResolver: import("@feathersjs/schema").
99
99
  title: string;
100
100
  description: string;
101
101
  severity: "critical" | "info" | "warning";
102
- traderId?: string | undefined;
102
+ traderId?: string | {} | undefined;
103
103
  value?: number | undefined;
104
104
  status: "acknowledged" | "active" | "resolved";
105
105
  createdAt: string;
@@ -113,7 +113,7 @@ export declare const copilotConcernsQueryProperties: import("@feathersjs/typebox
113
113
  title: import("@feathersjs/typebox").TString<string>;
114
114
  description: import("@feathersjs/typebox").TString<string>;
115
115
  severity: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"info">, import("@feathersjs/typebox").TLiteral<"warning">, import("@feathersjs/typebox").TLiteral<"critical">]>;
116
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
116
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
117
117
  value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
118
118
  status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"active">, import("@feathersjs/typebox").TLiteral<"resolved">, import("@feathersjs/typebox").TLiteral<"acknowledged">]>;
119
119
  createdAt: import("@feathersjs/typebox").TString<"date-time">;
@@ -37,9 +37,9 @@ export declare const modelsPodsEventsExternalResolver: import("@feathersjs/schem
37
37
  createdAt?: any;
38
38
  }, HookContext<ModelsPodsEventsService<import("./events.class").ModelsPodsEventsParams>>>;
39
39
  export declare const modelsPodsEventsDataSchema: import("@feathersjs/typebox").TObject<{
40
- podId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
41
- presetId: import("@feathersjs/typebox").TOptional<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").TNull]>>;
42
- 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").TString<string>, import("@feathersjs/typebox").TNull]>>;
40
+ podId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
41
+ presetId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TNull]>>;
42
+ 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").TNull]>>;
43
43
  event: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"died">, import("@feathersjs/typebox").TLiteral<"restarted">, import("@feathersjs/typebox").TLiteral<"rebound">, import("@feathersjs/typebox").TLiteral<"healthy">, import("@feathersjs/typebox").TLiteral<"unhealthy">, import("@feathersjs/typebox").TLiteral<"reconciled">, import("@feathersjs/typebox").TLiteral<"restart-failed">, import("@feathersjs/typebox").TLiteral<"restart-blocked">]>;
44
44
  source: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker-events">, import("@feathersjs/typebox").TLiteral<"ecs-refresh">, import("@feathersjs/typebox").TLiteral<"user">, import("@feathersjs/typebox").TLiteral<"system">]>;
45
45
  summary: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -37,9 +37,9 @@ export declare const modelsSignalsSubscriptionsExternalResolver: import("@feathe
37
37
  revokedReason?: string | null | undefined;
38
38
  }, HookContext<ModelsSignalsSubscriptionsService<import("./subscriptions.class").ModelsSignalsSubscriptionsParams>>>;
39
39
  export declare const modelsSignalsSubscriptionsDataSchema: import("@feathersjs/typebox").TObject<{
40
- signalId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
41
- traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
42
- userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TString<string>]>;
40
+ signalId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
41
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
42
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
43
43
  token: import("@feathersjs/typebox").TString<string>;
44
44
  status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"active">, import("@feathersjs/typebox").TLiteral<"revoked">]>>;
45
45
  }>;