@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 { SnapshotService } from './snapshot.class';
4
4
  export declare const snapshotSchema: 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
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"daily">, import("@feathersjs/typebox").TLiteral<"weekly">, import("@feathersjs/typebox").TLiteral<"intraday">]>;
8
8
  timestamp: import("@feathersjs/typebox").TString<"date-time">;
9
9
  account: import("@feathersjs/typebox").TObject<{
@@ -16,9 +16,9 @@ export declare const snapshotSchema: import("@feathersjs/typebox").TObject<{
16
16
  combinedDrawdownPct: import("@feathersjs/typebox").TNumber;
17
17
  }>;
18
18
  traders: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
19
- traderId: import("@feathersjs/typebox").TString<string>;
19
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
20
20
  traderName: import("@feathersjs/typebox").TString<string>;
21
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
21
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
22
22
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
23
23
  exchange: import("@feathersjs/typebox").TString<string>;
24
24
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -137,7 +137,7 @@ export declare const snapshotSchema: import("@feathersjs/typebox").TObject<{
137
137
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
138
138
  type: import("@feathersjs/typebox").TString<string>;
139
139
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
140
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
140
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
141
141
  detail: import("@feathersjs/typebox").TString<string>;
142
142
  severity: import("@feathersjs/typebox").TString<string>;
143
143
  }>>;
@@ -150,7 +150,7 @@ export type Snapshot = Static<typeof snapshotSchema>;
150
150
  export declare const snapshotValidator: import("@feathersjs/schema").Validator<any, any>;
151
151
  export declare const snapshotResolver: import("@feathersjs/schema").Resolver<{
152
152
  _id: string | {};
153
- userId: string;
153
+ userId: string | {};
154
154
  type: "daily" | "intraday" | "weekly";
155
155
  timestamp: string;
156
156
  account: {
@@ -163,9 +163,9 @@ export declare const snapshotResolver: import("@feathersjs/schema").Resolver<{
163
163
  combinedDrawdownPct: number;
164
164
  };
165
165
  traders: {
166
- traderId: string;
166
+ traderId: string | {};
167
167
  traderName: string;
168
- strategyId?: string | undefined;
168
+ strategyId?: string | {} | undefined;
169
169
  strategyName?: string | undefined;
170
170
  exchange: string;
171
171
  stakeCurrency: string;
@@ -284,7 +284,7 @@ export declare const snapshotResolver: import("@feathersjs/schema").Resolver<{
284
284
  triggers: {
285
285
  type: string;
286
286
  signal?: string | undefined;
287
- traderId?: string | undefined;
287
+ traderId?: string | {} | undefined;
288
288
  detail: string;
289
289
  severity: string;
290
290
  }[];
@@ -295,7 +295,7 @@ export declare const snapshotResolver: import("@feathersjs/schema").Resolver<{
295
295
  }, HookContext<SnapshotService<import("./snapshot.class").SnapshotParams>>>;
296
296
  export declare const snapshotExternalResolver: import("@feathersjs/schema").Resolver<{
297
297
  _id: string | {};
298
- userId: string;
298
+ userId: string | {};
299
299
  type: "daily" | "intraday" | "weekly";
300
300
  timestamp: string;
301
301
  account: {
@@ -308,9 +308,9 @@ export declare const snapshotExternalResolver: import("@feathersjs/schema").Reso
308
308
  combinedDrawdownPct: number;
309
309
  };
310
310
  traders: {
311
- traderId: string;
311
+ traderId: string | {};
312
312
  traderName: string;
313
- strategyId?: string | undefined;
313
+ strategyId?: string | {} | undefined;
314
314
  strategyName?: string | undefined;
315
315
  exchange: string;
316
316
  stakeCurrency: string;
@@ -429,7 +429,7 @@ export declare const snapshotExternalResolver: import("@feathersjs/schema").Reso
429
429
  triggers: {
430
430
  type: string;
431
431
  signal?: string | undefined;
432
- traderId?: string | undefined;
432
+ traderId?: string | {} | undefined;
433
433
  detail: string;
434
434
  severity: string;
435
435
  }[];
@@ -440,7 +440,7 @@ export declare const snapshotExternalResolver: import("@feathersjs/schema").Reso
440
440
  }, HookContext<SnapshotService<import("./snapshot.class").SnapshotParams>>>;
441
441
  export declare const snapshotDataSchema: import("@feathersjs/typebox").TOmit<import("@feathersjs/typebox").TObject<{
442
442
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
443
- userId: import("@feathersjs/typebox").TString<string>;
443
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
444
444
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"daily">, import("@feathersjs/typebox").TLiteral<"weekly">, import("@feathersjs/typebox").TLiteral<"intraday">]>;
445
445
  timestamp: import("@feathersjs/typebox").TString<"date-time">;
446
446
  account: import("@feathersjs/typebox").TObject<{
@@ -453,9 +453,9 @@ export declare const snapshotDataSchema: import("@feathersjs/typebox").TOmit<imp
453
453
  combinedDrawdownPct: import("@feathersjs/typebox").TNumber;
454
454
  }>;
455
455
  traders: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
456
- traderId: import("@feathersjs/typebox").TString<string>;
456
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
457
457
  traderName: import("@feathersjs/typebox").TString<string>;
458
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
458
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
459
459
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
460
460
  exchange: import("@feathersjs/typebox").TString<string>;
461
461
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -574,7 +574,7 @@ export declare const snapshotDataSchema: import("@feathersjs/typebox").TOmit<imp
574
574
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
575
575
  type: import("@feathersjs/typebox").TString<string>;
576
576
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
577
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
577
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
578
578
  detail: import("@feathersjs/typebox").TString<string>;
579
579
  severity: import("@feathersjs/typebox").TString<string>;
580
580
  }>>;
@@ -587,7 +587,7 @@ export type SnapshotData = Static<typeof snapshotDataSchema>;
587
587
  export declare const snapshotDataValidator: import("@feathersjs/schema").Validator<any, any>;
588
588
  export declare const snapshotDataResolver: import("@feathersjs/schema").Resolver<{
589
589
  _id: string | {};
590
- userId: string;
590
+ userId: string | {};
591
591
  type: "daily" | "intraday" | "weekly";
592
592
  timestamp: string;
593
593
  account: {
@@ -600,9 +600,9 @@ export declare const snapshotDataResolver: import("@feathersjs/schema").Resolver
600
600
  combinedDrawdownPct: number;
601
601
  };
602
602
  traders: {
603
- traderId: string;
603
+ traderId: string | {};
604
604
  traderName: string;
605
- strategyId?: string | undefined;
605
+ strategyId?: string | {} | undefined;
606
606
  strategyName?: string | undefined;
607
607
  exchange: string;
608
608
  stakeCurrency: string;
@@ -721,7 +721,7 @@ export declare const snapshotDataResolver: import("@feathersjs/schema").Resolver
721
721
  triggers: {
722
722
  type: string;
723
723
  signal?: string | undefined;
724
- traderId?: string | undefined;
724
+ traderId?: string | {} | undefined;
725
725
  detail: string;
726
726
  severity: string;
727
727
  }[];
@@ -732,7 +732,7 @@ export declare const snapshotDataResolver: import("@feathersjs/schema").Resolver
732
732
  }, HookContext<SnapshotService<import("./snapshot.class").SnapshotParams>>>;
733
733
  export declare const snapshotPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
734
734
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
735
- userId: import("@feathersjs/typebox").TString<string>;
735
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
736
736
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"daily">, import("@feathersjs/typebox").TLiteral<"weekly">, import("@feathersjs/typebox").TLiteral<"intraday">]>;
737
737
  timestamp: import("@feathersjs/typebox").TString<"date-time">;
738
738
  account: import("@feathersjs/typebox").TObject<{
@@ -745,9 +745,9 @@ export declare const snapshotPatchSchema: import("@feathersjs/typebox").TPartial
745
745
  combinedDrawdownPct: import("@feathersjs/typebox").TNumber;
746
746
  }>;
747
747
  traders: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
748
- traderId: import("@feathersjs/typebox").TString<string>;
748
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
749
749
  traderName: import("@feathersjs/typebox").TString<string>;
750
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
750
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
751
751
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
752
752
  exchange: import("@feathersjs/typebox").TString<string>;
753
753
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -866,7 +866,7 @@ export declare const snapshotPatchSchema: import("@feathersjs/typebox").TPartial
866
866
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
867
867
  type: import("@feathersjs/typebox").TString<string>;
868
868
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
869
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
869
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
870
870
  detail: import("@feathersjs/typebox").TString<string>;
871
871
  severity: import("@feathersjs/typebox").TString<string>;
872
872
  }>>;
@@ -879,7 +879,7 @@ export type SnapshotPatch = Static<typeof snapshotPatchSchema>;
879
879
  export declare const snapshotPatchValidator: import("@feathersjs/schema").Validator<any, any>;
880
880
  export declare const snapshotPatchResolver: import("@feathersjs/schema").Resolver<{
881
881
  _id: string | {};
882
- userId: string;
882
+ userId: string | {};
883
883
  type: "daily" | "intraday" | "weekly";
884
884
  timestamp: string;
885
885
  account: {
@@ -892,9 +892,9 @@ export declare const snapshotPatchResolver: import("@feathersjs/schema").Resolve
892
892
  combinedDrawdownPct: number;
893
893
  };
894
894
  traders: {
895
- traderId: string;
895
+ traderId: string | {};
896
896
  traderName: string;
897
- strategyId?: string | undefined;
897
+ strategyId?: string | {} | undefined;
898
898
  strategyName?: string | undefined;
899
899
  exchange: string;
900
900
  stakeCurrency: string;
@@ -1013,7 +1013,7 @@ export declare const snapshotPatchResolver: import("@feathersjs/schema").Resolve
1013
1013
  triggers: {
1014
1014
  type: string;
1015
1015
  signal?: string | undefined;
1016
- traderId?: string | undefined;
1016
+ traderId?: string | {} | undefined;
1017
1017
  detail: string;
1018
1018
  severity: string;
1019
1019
  }[];
@@ -1024,7 +1024,7 @@ export declare const snapshotPatchResolver: import("@feathersjs/schema").Resolve
1024
1024
  }, HookContext<SnapshotService<import("./snapshot.class").SnapshotParams>>>;
1025
1025
  export declare const snapshotQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
1026
1026
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1027
- userId: import("@feathersjs/typebox").TString<string>;
1027
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1028
1028
  type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"daily">, import("@feathersjs/typebox").TLiteral<"weekly">, import("@feathersjs/typebox").TLiteral<"intraday">]>;
1029
1029
  timestamp: import("@feathersjs/typebox").TString<"date-time">;
1030
1030
  account: import("@feathersjs/typebox").TObject<{
@@ -1037,9 +1037,9 @@ export declare const snapshotQueryProperties: import("@feathersjs/typebox").TPic
1037
1037
  combinedDrawdownPct: import("@feathersjs/typebox").TNumber;
1038
1038
  }>;
1039
1039
  traders: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1040
- traderId: import("@feathersjs/typebox").TString<string>;
1040
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1041
1041
  traderName: import("@feathersjs/typebox").TString<string>;
1042
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1042
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1043
1043
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1044
1044
  exchange: import("@feathersjs/typebox").TString<string>;
1045
1045
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -1158,7 +1158,7 @@ export declare const snapshotQueryProperties: import("@feathersjs/typebox").TPic
1158
1158
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1159
1159
  type: import("@feathersjs/typebox").TString<string>;
1160
1160
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1161
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1161
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1162
1162
  detail: import("@feathersjs/typebox").TString<string>;
1163
1163
  severity: import("@feathersjs/typebox").TString<string>;
1164
1164
  }>>;
@@ -1697,9 +1697,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
1697
1697
  [key: string]: import("@feathersjs/typebox").TSchema;
1698
1698
  } | undefined>]>>]>>;
1699
1699
  traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1700
- traderId: import("@feathersjs/typebox").TString<string>;
1700
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1701
1701
  traderName: import("@feathersjs/typebox").TString<string>;
1702
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1702
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1703
1703
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1704
1704
  exchange: import("@feathersjs/typebox").TString<string>;
1705
1705
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -1776,9 +1776,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
1776
1776
  }>>>;
1777
1777
  }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
1778
1778
  $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1779
- traderId: import("@feathersjs/typebox").TString<string>;
1779
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1780
1780
  traderName: import("@feathersjs/typebox").TString<string>;
1781
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1781
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1782
1782
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1783
1783
  exchange: import("@feathersjs/typebox").TString<string>;
1784
1784
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -1855,9 +1855,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
1855
1855
  }>>>;
1856
1856
  }>>;
1857
1857
  $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1858
- traderId: import("@feathersjs/typebox").TString<string>;
1858
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1859
1859
  traderName: import("@feathersjs/typebox").TString<string>;
1860
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1860
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1861
1861
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1862
1862
  exchange: import("@feathersjs/typebox").TString<string>;
1863
1863
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -1934,9 +1934,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
1934
1934
  }>>>;
1935
1935
  }>>;
1936
1936
  $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
1937
- traderId: import("@feathersjs/typebox").TString<string>;
1937
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
1938
1938
  traderName: import("@feathersjs/typebox").TString<string>;
1939
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1939
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1940
1940
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1941
1941
  exchange: import("@feathersjs/typebox").TString<string>;
1942
1942
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -2013,9 +2013,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
2013
2013
  }>>>;
2014
2014
  }>>;
2015
2015
  $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
2016
- traderId: import("@feathersjs/typebox").TString<string>;
2016
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
2017
2017
  traderName: import("@feathersjs/typebox").TString<string>;
2018
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2018
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2019
2019
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2020
2020
  exchange: import("@feathersjs/typebox").TString<string>;
2021
2021
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -2092,9 +2092,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
2092
2092
  }>>>;
2093
2093
  }>>;
2094
2094
  $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
2095
- traderId: import("@feathersjs/typebox").TString<string>;
2095
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
2096
2096
  traderName: import("@feathersjs/typebox").TString<string>;
2097
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2097
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2098
2098
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2099
2099
  exchange: import("@feathersjs/typebox").TString<string>;
2100
2100
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -2171,9 +2171,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
2171
2171
  }>>>;
2172
2172
  }>>;
2173
2173
  $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
2174
- traderId: import("@feathersjs/typebox").TString<string>;
2174
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
2175
2175
  traderName: import("@feathersjs/typebox").TString<string>;
2176
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2176
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2177
2177
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2178
2178
  exchange: import("@feathersjs/typebox").TString<string>;
2179
2179
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -2249,9 +2249,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
2249
2249
  exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2250
2250
  }>>>;
2251
2251
  }>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
2252
- traderId: import("@feathersjs/typebox").TString<string>;
2252
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
2253
2253
  traderName: import("@feathersjs/typebox").TString<string>;
2254
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2254
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2255
2255
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2256
2256
  exchange: import("@feathersjs/typebox").TString<string>;
2257
2257
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -2328,9 +2328,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
2328
2328
  }>>>;
2329
2329
  }>>;
2330
2330
  $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
2331
- traderId: import("@feathersjs/typebox").TString<string>;
2331
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
2332
2332
  traderName: import("@feathersjs/typebox").TString<string>;
2333
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2333
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2334
2334
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2335
2335
  exchange: import("@feathersjs/typebox").TString<string>;
2336
2336
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -2406,9 +2406,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
2406
2406
  exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2407
2407
  }>>>;
2408
2408
  }>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
2409
- traderId: import("@feathersjs/typebox").TString<string>;
2409
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
2410
2410
  traderName: import("@feathersjs/typebox").TString<string>;
2411
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2411
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2412
2412
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2413
2413
  exchange: import("@feathersjs/typebox").TString<string>;
2414
2414
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -2493,7 +2493,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
2493
2493
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
2494
2494
  type: import("@feathersjs/typebox").TString<string>;
2495
2495
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2496
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2496
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2497
2497
  detail: import("@feathersjs/typebox").TString<string>;
2498
2498
  severity: import("@feathersjs/typebox").TString<string>;
2499
2499
  }>>;
@@ -2505,7 +2505,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
2505
2505
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
2506
2506
  type: import("@feathersjs/typebox").TString<string>;
2507
2507
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2508
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2508
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2509
2509
  detail: import("@feathersjs/typebox").TString<string>;
2510
2510
  severity: import("@feathersjs/typebox").TString<string>;
2511
2511
  }>>;
@@ -2517,7 +2517,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
2517
2517
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
2518
2518
  type: import("@feathersjs/typebox").TString<string>;
2519
2519
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2520
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2520
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2521
2521
  detail: import("@feathersjs/typebox").TString<string>;
2522
2522
  severity: import("@feathersjs/typebox").TString<string>;
2523
2523
  }>>;
@@ -2529,7 +2529,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
2529
2529
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
2530
2530
  type: import("@feathersjs/typebox").TString<string>;
2531
2531
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2532
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2532
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2533
2533
  detail: import("@feathersjs/typebox").TString<string>;
2534
2534
  severity: import("@feathersjs/typebox").TString<string>;
2535
2535
  }>>;
@@ -2541,7 +2541,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
2541
2541
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
2542
2542
  type: import("@feathersjs/typebox").TString<string>;
2543
2543
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2544
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2544
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2545
2545
  detail: import("@feathersjs/typebox").TString<string>;
2546
2546
  severity: import("@feathersjs/typebox").TString<string>;
2547
2547
  }>>;
@@ -2553,7 +2553,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
2553
2553
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
2554
2554
  type: import("@feathersjs/typebox").TString<string>;
2555
2555
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2556
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2556
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2557
2557
  detail: import("@feathersjs/typebox").TString<string>;
2558
2558
  severity: import("@feathersjs/typebox").TString<string>;
2559
2559
  }>>;
@@ -2565,7 +2565,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
2565
2565
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
2566
2566
  type: import("@feathersjs/typebox").TString<string>;
2567
2567
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2568
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2568
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2569
2569
  detail: import("@feathersjs/typebox").TString<string>;
2570
2570
  severity: import("@feathersjs/typebox").TString<string>;
2571
2571
  }>>;
@@ -2576,7 +2576,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
2576
2576
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
2577
2577
  type: import("@feathersjs/typebox").TString<string>;
2578
2578
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2579
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2579
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2580
2580
  detail: import("@feathersjs/typebox").TString<string>;
2581
2581
  severity: import("@feathersjs/typebox").TString<string>;
2582
2582
  }>>;
@@ -2588,7 +2588,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
2588
2588
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
2589
2589
  type: import("@feathersjs/typebox").TString<string>;
2590
2590
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2591
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2591
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2592
2592
  detail: import("@feathersjs/typebox").TString<string>;
2593
2593
  severity: import("@feathersjs/typebox").TString<string>;
2594
2594
  }>>;
@@ -2599,7 +2599,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
2599
2599
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
2600
2600
  type: import("@feathersjs/typebox").TString<string>;
2601
2601
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2602
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2602
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
2603
2603
  detail: import("@feathersjs/typebox").TString<string>;
2604
2604
  severity: import("@feathersjs/typebox").TString<string>;
2605
2605
  }>>;
@@ -2619,14 +2619,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
2619
2619
  }>, import("@feathersjs/typebox").TObject<{
2620
2620
  [key: string]: import("@feathersjs/typebox").TSchema;
2621
2621
  } | undefined>]>>]>>;
2622
- 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<{
2623
- $gt: import("@feathersjs/typebox").TString<string>;
2624
- $gte: import("@feathersjs/typebox").TString<string>;
2625
- $lt: import("@feathersjs/typebox").TString<string>;
2626
- $lte: import("@feathersjs/typebox").TString<string>;
2627
- $ne: import("@feathersjs/typebox").TString<string>;
2628
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
2629
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
2622
+ 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<{
2623
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
2624
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
2625
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
2626
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
2627
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
2628
+ $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<{}>]>;
2629
+ $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<{}>]>;
2630
2630
  }>, import("@feathersjs/typebox").TObject<{
2631
2631
  [key: string]: import("@feathersjs/typebox").TSchema;
2632
2632
  } | undefined>]>>]>>;
@@ -3142,9 +3142,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
3142
3142
  [key: string]: import("@feathersjs/typebox").TSchema;
3143
3143
  } | undefined>]>>]>>;
3144
3144
  traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
3145
- traderId: import("@feathersjs/typebox").TString<string>;
3145
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
3146
3146
  traderName: import("@feathersjs/typebox").TString<string>;
3147
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3147
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3148
3148
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3149
3149
  exchange: import("@feathersjs/typebox").TString<string>;
3150
3150
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -3221,9 +3221,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
3221
3221
  }>>>;
3222
3222
  }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
3223
3223
  $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
3224
- traderId: import("@feathersjs/typebox").TString<string>;
3224
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
3225
3225
  traderName: import("@feathersjs/typebox").TString<string>;
3226
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3226
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3227
3227
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3228
3228
  exchange: import("@feathersjs/typebox").TString<string>;
3229
3229
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -3300,9 +3300,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
3300
3300
  }>>>;
3301
3301
  }>>;
3302
3302
  $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
3303
- traderId: import("@feathersjs/typebox").TString<string>;
3303
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
3304
3304
  traderName: import("@feathersjs/typebox").TString<string>;
3305
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3305
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3306
3306
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3307
3307
  exchange: import("@feathersjs/typebox").TString<string>;
3308
3308
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -3379,9 +3379,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
3379
3379
  }>>>;
3380
3380
  }>>;
3381
3381
  $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
3382
- traderId: import("@feathersjs/typebox").TString<string>;
3382
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
3383
3383
  traderName: import("@feathersjs/typebox").TString<string>;
3384
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3384
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3385
3385
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3386
3386
  exchange: import("@feathersjs/typebox").TString<string>;
3387
3387
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -3458,9 +3458,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
3458
3458
  }>>>;
3459
3459
  }>>;
3460
3460
  $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
3461
- traderId: import("@feathersjs/typebox").TString<string>;
3461
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
3462
3462
  traderName: import("@feathersjs/typebox").TString<string>;
3463
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3463
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3464
3464
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3465
3465
  exchange: import("@feathersjs/typebox").TString<string>;
3466
3466
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -3537,9 +3537,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
3537
3537
  }>>>;
3538
3538
  }>>;
3539
3539
  $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
3540
- traderId: import("@feathersjs/typebox").TString<string>;
3540
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
3541
3541
  traderName: import("@feathersjs/typebox").TString<string>;
3542
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3542
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3543
3543
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3544
3544
  exchange: import("@feathersjs/typebox").TString<string>;
3545
3545
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -3616,9 +3616,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
3616
3616
  }>>>;
3617
3617
  }>>;
3618
3618
  $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
3619
- traderId: import("@feathersjs/typebox").TString<string>;
3619
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
3620
3620
  traderName: import("@feathersjs/typebox").TString<string>;
3621
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3621
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3622
3622
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3623
3623
  exchange: import("@feathersjs/typebox").TString<string>;
3624
3624
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -3694,9 +3694,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
3694
3694
  exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3695
3695
  }>>>;
3696
3696
  }>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
3697
- traderId: import("@feathersjs/typebox").TString<string>;
3697
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
3698
3698
  traderName: import("@feathersjs/typebox").TString<string>;
3699
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3699
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3700
3700
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3701
3701
  exchange: import("@feathersjs/typebox").TString<string>;
3702
3702
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -3773,9 +3773,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
3773
3773
  }>>>;
3774
3774
  }>>;
3775
3775
  $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
3776
- traderId: import("@feathersjs/typebox").TString<string>;
3776
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
3777
3777
  traderName: import("@feathersjs/typebox").TString<string>;
3778
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3778
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3779
3779
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3780
3780
  exchange: import("@feathersjs/typebox").TString<string>;
3781
3781
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -3851,9 +3851,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
3851
3851
  exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3852
3852
  }>>>;
3853
3853
  }>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
3854
- traderId: import("@feathersjs/typebox").TString<string>;
3854
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
3855
3855
  traderName: import("@feathersjs/typebox").TString<string>;
3856
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3856
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3857
3857
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3858
3858
  exchange: import("@feathersjs/typebox").TString<string>;
3859
3859
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -3938,7 +3938,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
3938
3938
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
3939
3939
  type: import("@feathersjs/typebox").TString<string>;
3940
3940
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3941
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3941
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3942
3942
  detail: import("@feathersjs/typebox").TString<string>;
3943
3943
  severity: import("@feathersjs/typebox").TString<string>;
3944
3944
  }>>;
@@ -3950,7 +3950,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
3950
3950
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
3951
3951
  type: import("@feathersjs/typebox").TString<string>;
3952
3952
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3953
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3953
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3954
3954
  detail: import("@feathersjs/typebox").TString<string>;
3955
3955
  severity: import("@feathersjs/typebox").TString<string>;
3956
3956
  }>>;
@@ -3962,7 +3962,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
3962
3962
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
3963
3963
  type: import("@feathersjs/typebox").TString<string>;
3964
3964
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3965
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3965
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3966
3966
  detail: import("@feathersjs/typebox").TString<string>;
3967
3967
  severity: import("@feathersjs/typebox").TString<string>;
3968
3968
  }>>;
@@ -3974,7 +3974,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
3974
3974
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
3975
3975
  type: import("@feathersjs/typebox").TString<string>;
3976
3976
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3977
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3977
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3978
3978
  detail: import("@feathersjs/typebox").TString<string>;
3979
3979
  severity: import("@feathersjs/typebox").TString<string>;
3980
3980
  }>>;
@@ -3986,7 +3986,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
3986
3986
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
3987
3987
  type: import("@feathersjs/typebox").TString<string>;
3988
3988
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3989
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3989
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
3990
3990
  detail: import("@feathersjs/typebox").TString<string>;
3991
3991
  severity: import("@feathersjs/typebox").TString<string>;
3992
3992
  }>>;
@@ -3998,7 +3998,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
3998
3998
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
3999
3999
  type: import("@feathersjs/typebox").TString<string>;
4000
4000
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4001
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4001
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
4002
4002
  detail: import("@feathersjs/typebox").TString<string>;
4003
4003
  severity: import("@feathersjs/typebox").TString<string>;
4004
4004
  }>>;
@@ -4010,7 +4010,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
4010
4010
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
4011
4011
  type: import("@feathersjs/typebox").TString<string>;
4012
4012
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4013
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4013
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
4014
4014
  detail: import("@feathersjs/typebox").TString<string>;
4015
4015
  severity: import("@feathersjs/typebox").TString<string>;
4016
4016
  }>>;
@@ -4021,7 +4021,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
4021
4021
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
4022
4022
  type: import("@feathersjs/typebox").TString<string>;
4023
4023
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4024
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4024
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
4025
4025
  detail: import("@feathersjs/typebox").TString<string>;
4026
4026
  severity: import("@feathersjs/typebox").TString<string>;
4027
4027
  }>>;
@@ -4033,7 +4033,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
4033
4033
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
4034
4034
  type: import("@feathersjs/typebox").TString<string>;
4035
4035
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4036
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4036
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
4037
4037
  detail: import("@feathersjs/typebox").TString<string>;
4038
4038
  severity: import("@feathersjs/typebox").TString<string>;
4039
4039
  }>>;
@@ -4044,7 +4044,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
4044
4044
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
4045
4045
  type: import("@feathersjs/typebox").TString<string>;
4046
4046
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4047
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4047
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
4048
4048
  detail: import("@feathersjs/typebox").TString<string>;
4049
4049
  severity: import("@feathersjs/typebox").TString<string>;
4050
4050
  }>>;
@@ -4064,14 +4064,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
4064
4064
  }>, import("@feathersjs/typebox").TObject<{
4065
4065
  [key: string]: import("@feathersjs/typebox").TSchema;
4066
4066
  } | undefined>]>>]>>;
4067
- 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<{
4068
- $gt: import("@feathersjs/typebox").TString<string>;
4069
- $gte: import("@feathersjs/typebox").TString<string>;
4070
- $lt: import("@feathersjs/typebox").TString<string>;
4071
- $lte: import("@feathersjs/typebox").TString<string>;
4072
- $ne: import("@feathersjs/typebox").TString<string>;
4073
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
4074
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
4067
+ 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<{
4068
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
4069
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
4070
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
4071
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
4072
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
4073
+ $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<{}>]>;
4074
+ $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<{}>]>;
4075
4075
  }>, import("@feathersjs/typebox").TObject<{
4076
4076
  [key: string]: import("@feathersjs/typebox").TSchema;
4077
4077
  } | undefined>]>>]>>;
@@ -4588,9 +4588,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
4588
4588
  [key: string]: import("@feathersjs/typebox").TSchema;
4589
4589
  } | undefined>]>>]>>;
4590
4590
  traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
4591
- traderId: import("@feathersjs/typebox").TString<string>;
4591
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
4592
4592
  traderName: import("@feathersjs/typebox").TString<string>;
4593
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4593
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
4594
4594
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4595
4595
  exchange: import("@feathersjs/typebox").TString<string>;
4596
4596
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -4667,9 +4667,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
4667
4667
  }>>>;
4668
4668
  }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
4669
4669
  $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
4670
- traderId: import("@feathersjs/typebox").TString<string>;
4670
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
4671
4671
  traderName: import("@feathersjs/typebox").TString<string>;
4672
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4672
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
4673
4673
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4674
4674
  exchange: import("@feathersjs/typebox").TString<string>;
4675
4675
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -4746,9 +4746,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
4746
4746
  }>>>;
4747
4747
  }>>;
4748
4748
  $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
4749
- traderId: import("@feathersjs/typebox").TString<string>;
4749
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
4750
4750
  traderName: import("@feathersjs/typebox").TString<string>;
4751
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4751
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
4752
4752
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4753
4753
  exchange: import("@feathersjs/typebox").TString<string>;
4754
4754
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -4825,9 +4825,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
4825
4825
  }>>>;
4826
4826
  }>>;
4827
4827
  $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
4828
- traderId: import("@feathersjs/typebox").TString<string>;
4828
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
4829
4829
  traderName: import("@feathersjs/typebox").TString<string>;
4830
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4830
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
4831
4831
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4832
4832
  exchange: import("@feathersjs/typebox").TString<string>;
4833
4833
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -4904,9 +4904,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
4904
4904
  }>>>;
4905
4905
  }>>;
4906
4906
  $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
4907
- traderId: import("@feathersjs/typebox").TString<string>;
4907
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
4908
4908
  traderName: import("@feathersjs/typebox").TString<string>;
4909
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4909
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
4910
4910
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4911
4911
  exchange: import("@feathersjs/typebox").TString<string>;
4912
4912
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -4983,9 +4983,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
4983
4983
  }>>>;
4984
4984
  }>>;
4985
4985
  $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
4986
- traderId: import("@feathersjs/typebox").TString<string>;
4986
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
4987
4987
  traderName: import("@feathersjs/typebox").TString<string>;
4988
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4988
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
4989
4989
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4990
4990
  exchange: import("@feathersjs/typebox").TString<string>;
4991
4991
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -5062,9 +5062,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
5062
5062
  }>>>;
5063
5063
  }>>;
5064
5064
  $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
5065
- traderId: import("@feathersjs/typebox").TString<string>;
5065
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
5066
5066
  traderName: import("@feathersjs/typebox").TString<string>;
5067
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5067
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
5068
5068
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5069
5069
  exchange: import("@feathersjs/typebox").TString<string>;
5070
5070
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -5140,9 +5140,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
5140
5140
  exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5141
5141
  }>>>;
5142
5142
  }>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
5143
- traderId: import("@feathersjs/typebox").TString<string>;
5143
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
5144
5144
  traderName: import("@feathersjs/typebox").TString<string>;
5145
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5145
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
5146
5146
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5147
5147
  exchange: import("@feathersjs/typebox").TString<string>;
5148
5148
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -5219,9 +5219,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
5219
5219
  }>>>;
5220
5220
  }>>;
5221
5221
  $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
5222
- traderId: import("@feathersjs/typebox").TString<string>;
5222
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
5223
5223
  traderName: import("@feathersjs/typebox").TString<string>;
5224
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5224
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
5225
5225
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5226
5226
  exchange: import("@feathersjs/typebox").TString<string>;
5227
5227
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -5297,9 +5297,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
5297
5297
  exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5298
5298
  }>>>;
5299
5299
  }>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
5300
- traderId: import("@feathersjs/typebox").TString<string>;
5300
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
5301
5301
  traderName: import("@feathersjs/typebox").TString<string>;
5302
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5302
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
5303
5303
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5304
5304
  exchange: import("@feathersjs/typebox").TString<string>;
5305
5305
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -5384,7 +5384,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
5384
5384
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
5385
5385
  type: import("@feathersjs/typebox").TString<string>;
5386
5386
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5387
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5387
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
5388
5388
  detail: import("@feathersjs/typebox").TString<string>;
5389
5389
  severity: import("@feathersjs/typebox").TString<string>;
5390
5390
  }>>;
@@ -5396,7 +5396,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
5396
5396
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
5397
5397
  type: import("@feathersjs/typebox").TString<string>;
5398
5398
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5399
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5399
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
5400
5400
  detail: import("@feathersjs/typebox").TString<string>;
5401
5401
  severity: import("@feathersjs/typebox").TString<string>;
5402
5402
  }>>;
@@ -5408,7 +5408,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
5408
5408
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
5409
5409
  type: import("@feathersjs/typebox").TString<string>;
5410
5410
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5411
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5411
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
5412
5412
  detail: import("@feathersjs/typebox").TString<string>;
5413
5413
  severity: import("@feathersjs/typebox").TString<string>;
5414
5414
  }>>;
@@ -5420,7 +5420,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
5420
5420
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
5421
5421
  type: import("@feathersjs/typebox").TString<string>;
5422
5422
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5423
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5423
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
5424
5424
  detail: import("@feathersjs/typebox").TString<string>;
5425
5425
  severity: import("@feathersjs/typebox").TString<string>;
5426
5426
  }>>;
@@ -5432,7 +5432,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
5432
5432
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
5433
5433
  type: import("@feathersjs/typebox").TString<string>;
5434
5434
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5435
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5435
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
5436
5436
  detail: import("@feathersjs/typebox").TString<string>;
5437
5437
  severity: import("@feathersjs/typebox").TString<string>;
5438
5438
  }>>;
@@ -5444,7 +5444,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
5444
5444
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
5445
5445
  type: import("@feathersjs/typebox").TString<string>;
5446
5446
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5447
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5447
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
5448
5448
  detail: import("@feathersjs/typebox").TString<string>;
5449
5449
  severity: import("@feathersjs/typebox").TString<string>;
5450
5450
  }>>;
@@ -5456,7 +5456,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
5456
5456
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
5457
5457
  type: import("@feathersjs/typebox").TString<string>;
5458
5458
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5459
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5459
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
5460
5460
  detail: import("@feathersjs/typebox").TString<string>;
5461
5461
  severity: import("@feathersjs/typebox").TString<string>;
5462
5462
  }>>;
@@ -5467,7 +5467,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
5467
5467
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
5468
5468
  type: import("@feathersjs/typebox").TString<string>;
5469
5469
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5470
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5470
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
5471
5471
  detail: import("@feathersjs/typebox").TString<string>;
5472
5472
  severity: import("@feathersjs/typebox").TString<string>;
5473
5473
  }>>;
@@ -5479,7 +5479,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
5479
5479
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
5480
5480
  type: import("@feathersjs/typebox").TString<string>;
5481
5481
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5482
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5482
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
5483
5483
  detail: import("@feathersjs/typebox").TString<string>;
5484
5484
  severity: import("@feathersjs/typebox").TString<string>;
5485
5485
  }>>;
@@ -5490,7 +5490,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
5490
5490
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
5491
5491
  type: import("@feathersjs/typebox").TString<string>;
5492
5492
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5493
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5493
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
5494
5494
  detail: import("@feathersjs/typebox").TString<string>;
5495
5495
  severity: import("@feathersjs/typebox").TString<string>;
5496
5496
  }>>;
@@ -5510,14 +5510,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
5510
5510
  }>, import("@feathersjs/typebox").TObject<{
5511
5511
  [key: string]: import("@feathersjs/typebox").TSchema;
5512
5512
  } | undefined>]>>]>>;
5513
- 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<{
5514
- $gt: import("@feathersjs/typebox").TString<string>;
5515
- $gte: import("@feathersjs/typebox").TString<string>;
5516
- $lt: import("@feathersjs/typebox").TString<string>;
5517
- $lte: import("@feathersjs/typebox").TString<string>;
5518
- $ne: import("@feathersjs/typebox").TString<string>;
5519
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
5520
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
5513
+ 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<{
5514
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
5515
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
5516
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
5517
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
5518
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
5519
+ $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<{}>]>;
5520
+ $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<{}>]>;
5521
5521
  }>, import("@feathersjs/typebox").TObject<{
5522
5522
  [key: string]: import("@feathersjs/typebox").TSchema;
5523
5523
  } | undefined>]>>]>>;
@@ -6033,9 +6033,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6033
6033
  [key: string]: import("@feathersjs/typebox").TSchema;
6034
6034
  } | undefined>]>>]>>;
6035
6035
  traders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6036
- traderId: import("@feathersjs/typebox").TString<string>;
6036
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6037
6037
  traderName: import("@feathersjs/typebox").TString<string>;
6038
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6038
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6039
6039
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6040
6040
  exchange: import("@feathersjs/typebox").TString<string>;
6041
6041
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -6112,9 +6112,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6112
6112
  }>>>;
6113
6113
  }>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
6114
6114
  $gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6115
- traderId: import("@feathersjs/typebox").TString<string>;
6115
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6116
6116
  traderName: import("@feathersjs/typebox").TString<string>;
6117
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6117
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6118
6118
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6119
6119
  exchange: import("@feathersjs/typebox").TString<string>;
6120
6120
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -6191,9 +6191,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6191
6191
  }>>>;
6192
6192
  }>>;
6193
6193
  $gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6194
- traderId: import("@feathersjs/typebox").TString<string>;
6194
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6195
6195
  traderName: import("@feathersjs/typebox").TString<string>;
6196
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6196
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6197
6197
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6198
6198
  exchange: import("@feathersjs/typebox").TString<string>;
6199
6199
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -6270,9 +6270,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6270
6270
  }>>>;
6271
6271
  }>>;
6272
6272
  $lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6273
- traderId: import("@feathersjs/typebox").TString<string>;
6273
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6274
6274
  traderName: import("@feathersjs/typebox").TString<string>;
6275
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6275
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6276
6276
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6277
6277
  exchange: import("@feathersjs/typebox").TString<string>;
6278
6278
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -6349,9 +6349,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6349
6349
  }>>>;
6350
6350
  }>>;
6351
6351
  $lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6352
- traderId: import("@feathersjs/typebox").TString<string>;
6352
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6353
6353
  traderName: import("@feathersjs/typebox").TString<string>;
6354
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6354
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6355
6355
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6356
6356
  exchange: import("@feathersjs/typebox").TString<string>;
6357
6357
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -6428,9 +6428,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6428
6428
  }>>>;
6429
6429
  }>>;
6430
6430
  $ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6431
- traderId: import("@feathersjs/typebox").TString<string>;
6431
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6432
6432
  traderName: import("@feathersjs/typebox").TString<string>;
6433
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6433
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6434
6434
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6435
6435
  exchange: import("@feathersjs/typebox").TString<string>;
6436
6436
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -6507,9 +6507,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6507
6507
  }>>>;
6508
6508
  }>>;
6509
6509
  $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6510
- traderId: import("@feathersjs/typebox").TString<string>;
6510
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6511
6511
  traderName: import("@feathersjs/typebox").TString<string>;
6512
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6512
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6513
6513
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6514
6514
  exchange: import("@feathersjs/typebox").TString<string>;
6515
6515
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -6585,9 +6585,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6585
6585
  exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6586
6586
  }>>>;
6587
6587
  }>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6588
- traderId: import("@feathersjs/typebox").TString<string>;
6588
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6589
6589
  traderName: import("@feathersjs/typebox").TString<string>;
6590
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6590
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6591
6591
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6592
6592
  exchange: import("@feathersjs/typebox").TString<string>;
6593
6593
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -6664,9 +6664,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6664
6664
  }>>>;
6665
6665
  }>>;
6666
6666
  $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6667
- traderId: import("@feathersjs/typebox").TString<string>;
6667
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6668
6668
  traderName: import("@feathersjs/typebox").TString<string>;
6669
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6669
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6670
6670
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6671
6671
  exchange: import("@feathersjs/typebox").TString<string>;
6672
6672
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -6742,9 +6742,9 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6742
6742
  exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6743
6743
  }>>>;
6744
6744
  }>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6745
- traderId: import("@feathersjs/typebox").TString<string>;
6745
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6746
6746
  traderName: import("@feathersjs/typebox").TString<string>;
6747
- strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6747
+ strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6748
6748
  strategyName: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6749
6749
  exchange: import("@feathersjs/typebox").TString<string>;
6750
6750
  stakeCurrency: import("@feathersjs/typebox").TString<string>;
@@ -6829,7 +6829,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6829
6829
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6830
6830
  type: import("@feathersjs/typebox").TString<string>;
6831
6831
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6832
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6832
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6833
6833
  detail: import("@feathersjs/typebox").TString<string>;
6834
6834
  severity: import("@feathersjs/typebox").TString<string>;
6835
6835
  }>>;
@@ -6841,7 +6841,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6841
6841
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6842
6842
  type: import("@feathersjs/typebox").TString<string>;
6843
6843
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6844
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6844
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6845
6845
  detail: import("@feathersjs/typebox").TString<string>;
6846
6846
  severity: import("@feathersjs/typebox").TString<string>;
6847
6847
  }>>;
@@ -6853,7 +6853,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6853
6853
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6854
6854
  type: import("@feathersjs/typebox").TString<string>;
6855
6855
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6856
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6856
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6857
6857
  detail: import("@feathersjs/typebox").TString<string>;
6858
6858
  severity: import("@feathersjs/typebox").TString<string>;
6859
6859
  }>>;
@@ -6865,7 +6865,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6865
6865
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6866
6866
  type: import("@feathersjs/typebox").TString<string>;
6867
6867
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6868
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6868
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6869
6869
  detail: import("@feathersjs/typebox").TString<string>;
6870
6870
  severity: import("@feathersjs/typebox").TString<string>;
6871
6871
  }>>;
@@ -6877,7 +6877,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6877
6877
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6878
6878
  type: import("@feathersjs/typebox").TString<string>;
6879
6879
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6880
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6880
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6881
6881
  detail: import("@feathersjs/typebox").TString<string>;
6882
6882
  severity: import("@feathersjs/typebox").TString<string>;
6883
6883
  }>>;
@@ -6889,7 +6889,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6889
6889
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6890
6890
  type: import("@feathersjs/typebox").TString<string>;
6891
6891
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6892
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6892
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6893
6893
  detail: import("@feathersjs/typebox").TString<string>;
6894
6894
  severity: import("@feathersjs/typebox").TString<string>;
6895
6895
  }>>;
@@ -6901,7 +6901,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6901
6901
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6902
6902
  type: import("@feathersjs/typebox").TString<string>;
6903
6903
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6904
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6904
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6905
6905
  detail: import("@feathersjs/typebox").TString<string>;
6906
6906
  severity: import("@feathersjs/typebox").TString<string>;
6907
6907
  }>>;
@@ -6912,7 +6912,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6912
6912
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6913
6913
  type: import("@feathersjs/typebox").TString<string>;
6914
6914
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6915
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6915
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6916
6916
  detail: import("@feathersjs/typebox").TString<string>;
6917
6917
  severity: import("@feathersjs/typebox").TString<string>;
6918
6918
  }>>;
@@ -6924,7 +6924,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6924
6924
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6925
6925
  type: import("@feathersjs/typebox").TString<string>;
6926
6926
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6927
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6927
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6928
6928
  detail: import("@feathersjs/typebox").TString<string>;
6929
6929
  severity: import("@feathersjs/typebox").TString<string>;
6930
6930
  }>>;
@@ -6935,7 +6935,7 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6935
6935
  triggers: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
6936
6936
  type: import("@feathersjs/typebox").TString<string>;
6937
6937
  signal: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6938
- traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
6938
+ traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
6939
6939
  detail: import("@feathersjs/typebox").TString<string>;
6940
6940
  severity: import("@feathersjs/typebox").TString<string>;
6941
6941
  }>>;
@@ -6955,14 +6955,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
6955
6955
  }>, import("@feathersjs/typebox").TObject<{
6956
6956
  [key: string]: import("@feathersjs/typebox").TSchema;
6957
6957
  } | undefined>]>>]>>;
6958
- 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<{
6959
- $gt: import("@feathersjs/typebox").TString<string>;
6960
- $gte: import("@feathersjs/typebox").TString<string>;
6961
- $lt: import("@feathersjs/typebox").TString<string>;
6962
- $lte: import("@feathersjs/typebox").TString<string>;
6963
- $ne: import("@feathersjs/typebox").TString<string>;
6964
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
6965
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
6958
+ 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<{
6959
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6960
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6961
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6962
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6963
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6964
+ $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<{}>]>;
6965
+ $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<{}>]>;
6966
6966
  }>, import("@feathersjs/typebox").TObject<{
6967
6967
  [key: string]: import("@feathersjs/typebox").TSchema;
6968
6968
  } | undefined>]>>]>>;
@@ -7481,9 +7481,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
7481
7481
  $nin: string | string[];
7482
7482
  } & {}> | undefined;
7483
7483
  traders?: {
7484
- traderId: string;
7484
+ traderId: string | {};
7485
7485
  traderName: string;
7486
- strategyId?: string | undefined;
7486
+ strategyId?: string | {} | undefined;
7487
7487
  strategyName?: string | undefined;
7488
7488
  exchange: string;
7489
7489
  stakeCurrency: string;
@@ -7560,9 +7560,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
7560
7560
  }[] | undefined;
7561
7561
  }[] | Partial<{
7562
7562
  $gt: {
7563
- traderId: string;
7563
+ traderId: string | {};
7564
7564
  traderName: string;
7565
- strategyId?: string | undefined;
7565
+ strategyId?: string | {} | undefined;
7566
7566
  strategyName?: string | undefined;
7567
7567
  exchange: string;
7568
7568
  stakeCurrency: string;
@@ -7639,9 +7639,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
7639
7639
  }[] | undefined;
7640
7640
  }[];
7641
7641
  $gte: {
7642
- traderId: string;
7642
+ traderId: string | {};
7643
7643
  traderName: string;
7644
- strategyId?: string | undefined;
7644
+ strategyId?: string | {} | undefined;
7645
7645
  strategyName?: string | undefined;
7646
7646
  exchange: string;
7647
7647
  stakeCurrency: string;
@@ -7718,9 +7718,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
7718
7718
  }[] | undefined;
7719
7719
  }[];
7720
7720
  $lt: {
7721
- traderId: string;
7721
+ traderId: string | {};
7722
7722
  traderName: string;
7723
- strategyId?: string | undefined;
7723
+ strategyId?: string | {} | undefined;
7724
7724
  strategyName?: string | undefined;
7725
7725
  exchange: string;
7726
7726
  stakeCurrency: string;
@@ -7797,9 +7797,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
7797
7797
  }[] | undefined;
7798
7798
  }[];
7799
7799
  $lte: {
7800
- traderId: string;
7800
+ traderId: string | {};
7801
7801
  traderName: string;
7802
- strategyId?: string | undefined;
7802
+ strategyId?: string | {} | undefined;
7803
7803
  strategyName?: string | undefined;
7804
7804
  exchange: string;
7805
7805
  stakeCurrency: string;
@@ -7876,9 +7876,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
7876
7876
  }[] | undefined;
7877
7877
  }[];
7878
7878
  $ne: {
7879
- traderId: string;
7879
+ traderId: string | {};
7880
7880
  traderName: string;
7881
- strategyId?: string | undefined;
7881
+ strategyId?: string | {} | undefined;
7882
7882
  strategyName?: string | undefined;
7883
7883
  exchange: string;
7884
7884
  stakeCurrency: string;
@@ -7955,9 +7955,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
7955
7955
  }[] | undefined;
7956
7956
  }[];
7957
7957
  $in: {
7958
- traderId: string;
7958
+ traderId: string | {};
7959
7959
  traderName: string;
7960
- strategyId?: string | undefined;
7960
+ strategyId?: string | {} | undefined;
7961
7961
  strategyName?: string | undefined;
7962
7962
  exchange: string;
7963
7963
  stakeCurrency: string;
@@ -8033,9 +8033,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
8033
8033
  exitReason?: string | undefined;
8034
8034
  }[] | undefined;
8035
8035
  }[][] | {
8036
- traderId: string;
8036
+ traderId: string | {};
8037
8037
  traderName: string;
8038
- strategyId?: string | undefined;
8038
+ strategyId?: string | {} | undefined;
8039
8039
  strategyName?: string | undefined;
8040
8040
  exchange: string;
8041
8041
  stakeCurrency: string;
@@ -8112,9 +8112,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
8112
8112
  }[] | undefined;
8113
8113
  }[];
8114
8114
  $nin: {
8115
- traderId: string;
8115
+ traderId: string | {};
8116
8116
  traderName: string;
8117
- strategyId?: string | undefined;
8117
+ strategyId?: string | {} | undefined;
8118
8118
  strategyName?: string | undefined;
8119
8119
  exchange: string;
8120
8120
  stakeCurrency: string;
@@ -8190,9 +8190,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
8190
8190
  exitReason?: string | undefined;
8191
8191
  }[] | undefined;
8192
8192
  }[][] | {
8193
- traderId: string;
8193
+ traderId: string | {};
8194
8194
  traderName: string;
8195
- strategyId?: string | undefined;
8195
+ strategyId?: string | {} | undefined;
8196
8196
  strategyName?: string | undefined;
8197
8197
  exchange: string;
8198
8198
  stakeCurrency: string;
@@ -8276,7 +8276,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
8276
8276
  triggers: {
8277
8277
  type: string;
8278
8278
  signal?: string | undefined;
8279
- traderId?: string | undefined;
8279
+ traderId?: string | {} | undefined;
8280
8280
  detail: string;
8281
8281
  severity: string;
8282
8282
  }[];
@@ -8288,7 +8288,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
8288
8288
  triggers: {
8289
8289
  type: string;
8290
8290
  signal?: string | undefined;
8291
- traderId?: string | undefined;
8291
+ traderId?: string | {} | undefined;
8292
8292
  detail: string;
8293
8293
  severity: string;
8294
8294
  }[];
@@ -8300,7 +8300,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
8300
8300
  triggers: {
8301
8301
  type: string;
8302
8302
  signal?: string | undefined;
8303
- traderId?: string | undefined;
8303
+ traderId?: string | {} | undefined;
8304
8304
  detail: string;
8305
8305
  severity: string;
8306
8306
  }[];
@@ -8312,7 +8312,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
8312
8312
  triggers: {
8313
8313
  type: string;
8314
8314
  signal?: string | undefined;
8315
- traderId?: string | undefined;
8315
+ traderId?: string | {} | undefined;
8316
8316
  detail: string;
8317
8317
  severity: string;
8318
8318
  }[];
@@ -8324,7 +8324,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
8324
8324
  triggers: {
8325
8325
  type: string;
8326
8326
  signal?: string | undefined;
8327
- traderId?: string | undefined;
8327
+ traderId?: string | {} | undefined;
8328
8328
  detail: string;
8329
8329
  severity: string;
8330
8330
  }[];
@@ -8336,7 +8336,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
8336
8336
  triggers: {
8337
8337
  type: string;
8338
8338
  signal?: string | undefined;
8339
- traderId?: string | undefined;
8339
+ traderId?: string | {} | undefined;
8340
8340
  detail: string;
8341
8341
  severity: string;
8342
8342
  }[];
@@ -8347,7 +8347,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
8347
8347
  triggers: {
8348
8348
  type: string;
8349
8349
  signal?: string | undefined;
8350
- traderId?: string | undefined;
8350
+ traderId?: string | {} | undefined;
8351
8351
  detail: string;
8352
8352
  severity: string;
8353
8353
  }[];
@@ -8359,7 +8359,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
8359
8359
  triggers: {
8360
8360
  type: string;
8361
8361
  signal?: string | undefined;
8362
- traderId?: string | undefined;
8362
+ traderId?: string | {} | undefined;
8363
8363
  detail: string;
8364
8364
  severity: string;
8365
8365
  }[];
@@ -8370,7 +8370,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
8370
8370
  triggers: {
8371
8371
  type: string;
8372
8372
  signal?: string | undefined;
8373
- traderId?: string | undefined;
8373
+ traderId?: string | {} | undefined;
8374
8374
  detail: string;
8375
8375
  severity: string;
8376
8376
  }[];
@@ -8382,7 +8382,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
8382
8382
  triggers: {
8383
8383
  type: string;
8384
8384
  signal?: string | undefined;
8385
- traderId?: string | undefined;
8385
+ traderId?: string | {} | undefined;
8386
8386
  detail: string;
8387
8387
  severity: string;
8388
8388
  }[];
@@ -8398,14 +8398,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
8398
8398
  $nin: "daily" | "intraday" | "weekly" | ("daily" | "intraday" | "weekly")[];
8399
8399
  } & {}> | undefined;
8400
8400
  userId?: string | Partial<{
8401
- $gt: string;
8402
- $gte: string;
8403
- $lt: string;
8404
- $lte: string;
8405
- $ne: string;
8406
- $in: string | string[];
8407
- $nin: string | string[];
8408
- } & {}> | undefined;
8401
+ $gt: string | {};
8402
+ $gte: string | {};
8403
+ $lt: string | {};
8404
+ $lte: string | {};
8405
+ $ne: string | {};
8406
+ $in: string | (string | {})[] | {};
8407
+ $nin: string | (string | {})[] | {};
8408
+ } & {}> | {} | undefined;
8409
8409
  } | {
8410
8410
  $or: {
8411
8411
  _id?: string | Partial<{
@@ -8900,9 +8900,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
8900
8900
  $nin: string | string[];
8901
8901
  } & {}> | undefined;
8902
8902
  traders?: {
8903
- traderId: string;
8903
+ traderId: string | {};
8904
8904
  traderName: string;
8905
- strategyId?: string | undefined;
8905
+ strategyId?: string | {} | undefined;
8906
8906
  strategyName?: string | undefined;
8907
8907
  exchange: string;
8908
8908
  stakeCurrency: string;
@@ -8979,9 +8979,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
8979
8979
  }[] | undefined;
8980
8980
  }[] | Partial<{
8981
8981
  $gt: {
8982
- traderId: string;
8982
+ traderId: string | {};
8983
8983
  traderName: string;
8984
- strategyId?: string | undefined;
8984
+ strategyId?: string | {} | undefined;
8985
8985
  strategyName?: string | undefined;
8986
8986
  exchange: string;
8987
8987
  stakeCurrency: string;
@@ -9058,9 +9058,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9058
9058
  }[] | undefined;
9059
9059
  }[];
9060
9060
  $gte: {
9061
- traderId: string;
9061
+ traderId: string | {};
9062
9062
  traderName: string;
9063
- strategyId?: string | undefined;
9063
+ strategyId?: string | {} | undefined;
9064
9064
  strategyName?: string | undefined;
9065
9065
  exchange: string;
9066
9066
  stakeCurrency: string;
@@ -9137,9 +9137,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9137
9137
  }[] | undefined;
9138
9138
  }[];
9139
9139
  $lt: {
9140
- traderId: string;
9140
+ traderId: string | {};
9141
9141
  traderName: string;
9142
- strategyId?: string | undefined;
9142
+ strategyId?: string | {} | undefined;
9143
9143
  strategyName?: string | undefined;
9144
9144
  exchange: string;
9145
9145
  stakeCurrency: string;
@@ -9216,9 +9216,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9216
9216
  }[] | undefined;
9217
9217
  }[];
9218
9218
  $lte: {
9219
- traderId: string;
9219
+ traderId: string | {};
9220
9220
  traderName: string;
9221
- strategyId?: string | undefined;
9221
+ strategyId?: string | {} | undefined;
9222
9222
  strategyName?: string | undefined;
9223
9223
  exchange: string;
9224
9224
  stakeCurrency: string;
@@ -9295,9 +9295,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9295
9295
  }[] | undefined;
9296
9296
  }[];
9297
9297
  $ne: {
9298
- traderId: string;
9298
+ traderId: string | {};
9299
9299
  traderName: string;
9300
- strategyId?: string | undefined;
9300
+ strategyId?: string | {} | undefined;
9301
9301
  strategyName?: string | undefined;
9302
9302
  exchange: string;
9303
9303
  stakeCurrency: string;
@@ -9374,9 +9374,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9374
9374
  }[] | undefined;
9375
9375
  }[];
9376
9376
  $in: {
9377
- traderId: string;
9377
+ traderId: string | {};
9378
9378
  traderName: string;
9379
- strategyId?: string | undefined;
9379
+ strategyId?: string | {} | undefined;
9380
9380
  strategyName?: string | undefined;
9381
9381
  exchange: string;
9382
9382
  stakeCurrency: string;
@@ -9452,9 +9452,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9452
9452
  exitReason?: string | undefined;
9453
9453
  }[] | undefined;
9454
9454
  }[][] | {
9455
- traderId: string;
9455
+ traderId: string | {};
9456
9456
  traderName: string;
9457
- strategyId?: string | undefined;
9457
+ strategyId?: string | {} | undefined;
9458
9458
  strategyName?: string | undefined;
9459
9459
  exchange: string;
9460
9460
  stakeCurrency: string;
@@ -9531,9 +9531,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9531
9531
  }[] | undefined;
9532
9532
  }[];
9533
9533
  $nin: {
9534
- traderId: string;
9534
+ traderId: string | {};
9535
9535
  traderName: string;
9536
- strategyId?: string | undefined;
9536
+ strategyId?: string | {} | undefined;
9537
9537
  strategyName?: string | undefined;
9538
9538
  exchange: string;
9539
9539
  stakeCurrency: string;
@@ -9609,9 +9609,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9609
9609
  exitReason?: string | undefined;
9610
9610
  }[] | undefined;
9611
9611
  }[][] | {
9612
- traderId: string;
9612
+ traderId: string | {};
9613
9613
  traderName: string;
9614
- strategyId?: string | undefined;
9614
+ strategyId?: string | {} | undefined;
9615
9615
  strategyName?: string | undefined;
9616
9616
  exchange: string;
9617
9617
  stakeCurrency: string;
@@ -9695,7 +9695,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9695
9695
  triggers: {
9696
9696
  type: string;
9697
9697
  signal?: string | undefined;
9698
- traderId?: string | undefined;
9698
+ traderId?: string | {} | undefined;
9699
9699
  detail: string;
9700
9700
  severity: string;
9701
9701
  }[];
@@ -9707,7 +9707,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9707
9707
  triggers: {
9708
9708
  type: string;
9709
9709
  signal?: string | undefined;
9710
- traderId?: string | undefined;
9710
+ traderId?: string | {} | undefined;
9711
9711
  detail: string;
9712
9712
  severity: string;
9713
9713
  }[];
@@ -9719,7 +9719,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9719
9719
  triggers: {
9720
9720
  type: string;
9721
9721
  signal?: string | undefined;
9722
- traderId?: string | undefined;
9722
+ traderId?: string | {} | undefined;
9723
9723
  detail: string;
9724
9724
  severity: string;
9725
9725
  }[];
@@ -9731,7 +9731,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9731
9731
  triggers: {
9732
9732
  type: string;
9733
9733
  signal?: string | undefined;
9734
- traderId?: string | undefined;
9734
+ traderId?: string | {} | undefined;
9735
9735
  detail: string;
9736
9736
  severity: string;
9737
9737
  }[];
@@ -9743,7 +9743,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9743
9743
  triggers: {
9744
9744
  type: string;
9745
9745
  signal?: string | undefined;
9746
- traderId?: string | undefined;
9746
+ traderId?: string | {} | undefined;
9747
9747
  detail: string;
9748
9748
  severity: string;
9749
9749
  }[];
@@ -9755,7 +9755,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9755
9755
  triggers: {
9756
9756
  type: string;
9757
9757
  signal?: string | undefined;
9758
- traderId?: string | undefined;
9758
+ traderId?: string | {} | undefined;
9759
9759
  detail: string;
9760
9760
  severity: string;
9761
9761
  }[];
@@ -9766,7 +9766,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9766
9766
  triggers: {
9767
9767
  type: string;
9768
9768
  signal?: string | undefined;
9769
- traderId?: string | undefined;
9769
+ traderId?: string | {} | undefined;
9770
9770
  detail: string;
9771
9771
  severity: string;
9772
9772
  }[];
@@ -9778,7 +9778,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9778
9778
  triggers: {
9779
9779
  type: string;
9780
9780
  signal?: string | undefined;
9781
- traderId?: string | undefined;
9781
+ traderId?: string | {} | undefined;
9782
9782
  detail: string;
9783
9783
  severity: string;
9784
9784
  }[];
@@ -9789,7 +9789,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9789
9789
  triggers: {
9790
9790
  type: string;
9791
9791
  signal?: string | undefined;
9792
- traderId?: string | undefined;
9792
+ traderId?: string | {} | undefined;
9793
9793
  detail: string;
9794
9794
  severity: string;
9795
9795
  }[];
@@ -9801,7 +9801,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9801
9801
  triggers: {
9802
9802
  type: string;
9803
9803
  signal?: string | undefined;
9804
- traderId?: string | undefined;
9804
+ traderId?: string | {} | undefined;
9805
9805
  detail: string;
9806
9806
  severity: string;
9807
9807
  }[];
@@ -9817,14 +9817,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
9817
9817
  $nin: "daily" | "intraday" | "weekly" | ("daily" | "intraday" | "weekly")[];
9818
9818
  } & {}> | undefined;
9819
9819
  userId?: string | Partial<{
9820
- $gt: string;
9821
- $gte: string;
9822
- $lt: string;
9823
- $lte: string;
9824
- $ne: string;
9825
- $in: string | string[];
9826
- $nin: string | string[];
9827
- } & {}> | undefined;
9820
+ $gt: string | {};
9821
+ $gte: string | {};
9822
+ $lt: string | {};
9823
+ $lte: string | {};
9824
+ $ne: string | {};
9825
+ $in: string | (string | {})[] | {};
9826
+ $nin: string | (string | {})[] | {};
9827
+ } & {}> | {} | undefined;
9828
9828
  }[];
9829
9829
  })[];
9830
9830
  $or: {
@@ -10320,9 +10320,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
10320
10320
  $nin: string | string[];
10321
10321
  } & {}> | undefined;
10322
10322
  traders?: {
10323
- traderId: string;
10323
+ traderId: string | {};
10324
10324
  traderName: string;
10325
- strategyId?: string | undefined;
10325
+ strategyId?: string | {} | undefined;
10326
10326
  strategyName?: string | undefined;
10327
10327
  exchange: string;
10328
10328
  stakeCurrency: string;
@@ -10399,9 +10399,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
10399
10399
  }[] | undefined;
10400
10400
  }[] | Partial<{
10401
10401
  $gt: {
10402
- traderId: string;
10402
+ traderId: string | {};
10403
10403
  traderName: string;
10404
- strategyId?: string | undefined;
10404
+ strategyId?: string | {} | undefined;
10405
10405
  strategyName?: string | undefined;
10406
10406
  exchange: string;
10407
10407
  stakeCurrency: string;
@@ -10478,9 +10478,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
10478
10478
  }[] | undefined;
10479
10479
  }[];
10480
10480
  $gte: {
10481
- traderId: string;
10481
+ traderId: string | {};
10482
10482
  traderName: string;
10483
- strategyId?: string | undefined;
10483
+ strategyId?: string | {} | undefined;
10484
10484
  strategyName?: string | undefined;
10485
10485
  exchange: string;
10486
10486
  stakeCurrency: string;
@@ -10557,9 +10557,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
10557
10557
  }[] | undefined;
10558
10558
  }[];
10559
10559
  $lt: {
10560
- traderId: string;
10560
+ traderId: string | {};
10561
10561
  traderName: string;
10562
- strategyId?: string | undefined;
10562
+ strategyId?: string | {} | undefined;
10563
10563
  strategyName?: string | undefined;
10564
10564
  exchange: string;
10565
10565
  stakeCurrency: string;
@@ -10636,9 +10636,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
10636
10636
  }[] | undefined;
10637
10637
  }[];
10638
10638
  $lte: {
10639
- traderId: string;
10639
+ traderId: string | {};
10640
10640
  traderName: string;
10641
- strategyId?: string | undefined;
10641
+ strategyId?: string | {} | undefined;
10642
10642
  strategyName?: string | undefined;
10643
10643
  exchange: string;
10644
10644
  stakeCurrency: string;
@@ -10715,9 +10715,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
10715
10715
  }[] | undefined;
10716
10716
  }[];
10717
10717
  $ne: {
10718
- traderId: string;
10718
+ traderId: string | {};
10719
10719
  traderName: string;
10720
- strategyId?: string | undefined;
10720
+ strategyId?: string | {} | undefined;
10721
10721
  strategyName?: string | undefined;
10722
10722
  exchange: string;
10723
10723
  stakeCurrency: string;
@@ -10794,9 +10794,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
10794
10794
  }[] | undefined;
10795
10795
  }[];
10796
10796
  $in: {
10797
- traderId: string;
10797
+ traderId: string | {};
10798
10798
  traderName: string;
10799
- strategyId?: string | undefined;
10799
+ strategyId?: string | {} | undefined;
10800
10800
  strategyName?: string | undefined;
10801
10801
  exchange: string;
10802
10802
  stakeCurrency: string;
@@ -10872,9 +10872,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
10872
10872
  exitReason?: string | undefined;
10873
10873
  }[] | undefined;
10874
10874
  }[][] | {
10875
- traderId: string;
10875
+ traderId: string | {};
10876
10876
  traderName: string;
10877
- strategyId?: string | undefined;
10877
+ strategyId?: string | {} | undefined;
10878
10878
  strategyName?: string | undefined;
10879
10879
  exchange: string;
10880
10880
  stakeCurrency: string;
@@ -10951,9 +10951,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
10951
10951
  }[] | undefined;
10952
10952
  }[];
10953
10953
  $nin: {
10954
- traderId: string;
10954
+ traderId: string | {};
10955
10955
  traderName: string;
10956
- strategyId?: string | undefined;
10956
+ strategyId?: string | {} | undefined;
10957
10957
  strategyName?: string | undefined;
10958
10958
  exchange: string;
10959
10959
  stakeCurrency: string;
@@ -11029,9 +11029,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
11029
11029
  exitReason?: string | undefined;
11030
11030
  }[] | undefined;
11031
11031
  }[][] | {
11032
- traderId: string;
11032
+ traderId: string | {};
11033
11033
  traderName: string;
11034
- strategyId?: string | undefined;
11034
+ strategyId?: string | {} | undefined;
11035
11035
  strategyName?: string | undefined;
11036
11036
  exchange: string;
11037
11037
  stakeCurrency: string;
@@ -11115,7 +11115,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
11115
11115
  triggers: {
11116
11116
  type: string;
11117
11117
  signal?: string | undefined;
11118
- traderId?: string | undefined;
11118
+ traderId?: string | {} | undefined;
11119
11119
  detail: string;
11120
11120
  severity: string;
11121
11121
  }[];
@@ -11127,7 +11127,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
11127
11127
  triggers: {
11128
11128
  type: string;
11129
11129
  signal?: string | undefined;
11130
- traderId?: string | undefined;
11130
+ traderId?: string | {} | undefined;
11131
11131
  detail: string;
11132
11132
  severity: string;
11133
11133
  }[];
@@ -11139,7 +11139,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
11139
11139
  triggers: {
11140
11140
  type: string;
11141
11141
  signal?: string | undefined;
11142
- traderId?: string | undefined;
11142
+ traderId?: string | {} | undefined;
11143
11143
  detail: string;
11144
11144
  severity: string;
11145
11145
  }[];
@@ -11151,7 +11151,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
11151
11151
  triggers: {
11152
11152
  type: string;
11153
11153
  signal?: string | undefined;
11154
- traderId?: string | undefined;
11154
+ traderId?: string | {} | undefined;
11155
11155
  detail: string;
11156
11156
  severity: string;
11157
11157
  }[];
@@ -11163,7 +11163,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
11163
11163
  triggers: {
11164
11164
  type: string;
11165
11165
  signal?: string | undefined;
11166
- traderId?: string | undefined;
11166
+ traderId?: string | {} | undefined;
11167
11167
  detail: string;
11168
11168
  severity: string;
11169
11169
  }[];
@@ -11175,7 +11175,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
11175
11175
  triggers: {
11176
11176
  type: string;
11177
11177
  signal?: string | undefined;
11178
- traderId?: string | undefined;
11178
+ traderId?: string | {} | undefined;
11179
11179
  detail: string;
11180
11180
  severity: string;
11181
11181
  }[];
@@ -11186,7 +11186,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
11186
11186
  triggers: {
11187
11187
  type: string;
11188
11188
  signal?: string | undefined;
11189
- traderId?: string | undefined;
11189
+ traderId?: string | {} | undefined;
11190
11190
  detail: string;
11191
11191
  severity: string;
11192
11192
  }[];
@@ -11198,7 +11198,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
11198
11198
  triggers: {
11199
11199
  type: string;
11200
11200
  signal?: string | undefined;
11201
- traderId?: string | undefined;
11201
+ traderId?: string | {} | undefined;
11202
11202
  detail: string;
11203
11203
  severity: string;
11204
11204
  }[];
@@ -11209,7 +11209,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
11209
11209
  triggers: {
11210
11210
  type: string;
11211
11211
  signal?: string | undefined;
11212
- traderId?: string | undefined;
11212
+ traderId?: string | {} | undefined;
11213
11213
  detail: string;
11214
11214
  severity: string;
11215
11215
  }[];
@@ -11221,7 +11221,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
11221
11221
  triggers: {
11222
11222
  type: string;
11223
11223
  signal?: string | undefined;
11224
- traderId?: string | undefined;
11224
+ traderId?: string | {} | undefined;
11225
11225
  detail: string;
11226
11226
  severity: string;
11227
11227
  }[];
@@ -11237,14 +11237,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
11237
11237
  $nin: "daily" | "intraday" | "weekly" | ("daily" | "intraday" | "weekly")[];
11238
11238
  } & {}> | undefined;
11239
11239
  userId?: string | Partial<{
11240
- $gt: string;
11241
- $gte: string;
11242
- $lt: string;
11243
- $lte: string;
11244
- $ne: string;
11245
- $in: string | string[];
11246
- $nin: string | string[];
11247
- } & {}> | undefined;
11240
+ $gt: string | {};
11241
+ $gte: string | {};
11242
+ $lt: string | {};
11243
+ $lte: string | {};
11244
+ $ne: string | {};
11245
+ $in: string | (string | {})[] | {};
11246
+ $nin: string | (string | {})[] | {};
11247
+ } & {}> | {} | undefined;
11248
11248
  }[];
11249
11249
  }> & {
11250
11250
  _id?: string | Partial<{
@@ -11739,9 +11739,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
11739
11739
  $nin: string | string[];
11740
11740
  } & {}> | undefined;
11741
11741
  traders?: {
11742
- traderId: string;
11742
+ traderId: string | {};
11743
11743
  traderName: string;
11744
- strategyId?: string | undefined;
11744
+ strategyId?: string | {} | undefined;
11745
11745
  strategyName?: string | undefined;
11746
11746
  exchange: string;
11747
11747
  stakeCurrency: string;
@@ -11818,9 +11818,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
11818
11818
  }[] | undefined;
11819
11819
  }[] | Partial<{
11820
11820
  $gt: {
11821
- traderId: string;
11821
+ traderId: string | {};
11822
11822
  traderName: string;
11823
- strategyId?: string | undefined;
11823
+ strategyId?: string | {} | undefined;
11824
11824
  strategyName?: string | undefined;
11825
11825
  exchange: string;
11826
11826
  stakeCurrency: string;
@@ -11897,9 +11897,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
11897
11897
  }[] | undefined;
11898
11898
  }[];
11899
11899
  $gte: {
11900
- traderId: string;
11900
+ traderId: string | {};
11901
11901
  traderName: string;
11902
- strategyId?: string | undefined;
11902
+ strategyId?: string | {} | undefined;
11903
11903
  strategyName?: string | undefined;
11904
11904
  exchange: string;
11905
11905
  stakeCurrency: string;
@@ -11976,9 +11976,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
11976
11976
  }[] | undefined;
11977
11977
  }[];
11978
11978
  $lt: {
11979
- traderId: string;
11979
+ traderId: string | {};
11980
11980
  traderName: string;
11981
- strategyId?: string | undefined;
11981
+ strategyId?: string | {} | undefined;
11982
11982
  strategyName?: string | undefined;
11983
11983
  exchange: string;
11984
11984
  stakeCurrency: string;
@@ -12055,9 +12055,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
12055
12055
  }[] | undefined;
12056
12056
  }[];
12057
12057
  $lte: {
12058
- traderId: string;
12058
+ traderId: string | {};
12059
12059
  traderName: string;
12060
- strategyId?: string | undefined;
12060
+ strategyId?: string | {} | undefined;
12061
12061
  strategyName?: string | undefined;
12062
12062
  exchange: string;
12063
12063
  stakeCurrency: string;
@@ -12134,9 +12134,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
12134
12134
  }[] | undefined;
12135
12135
  }[];
12136
12136
  $ne: {
12137
- traderId: string;
12137
+ traderId: string | {};
12138
12138
  traderName: string;
12139
- strategyId?: string | undefined;
12139
+ strategyId?: string | {} | undefined;
12140
12140
  strategyName?: string | undefined;
12141
12141
  exchange: string;
12142
12142
  stakeCurrency: string;
@@ -12213,9 +12213,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
12213
12213
  }[] | undefined;
12214
12214
  }[];
12215
12215
  $in: {
12216
- traderId: string;
12216
+ traderId: string | {};
12217
12217
  traderName: string;
12218
- strategyId?: string | undefined;
12218
+ strategyId?: string | {} | undefined;
12219
12219
  strategyName?: string | undefined;
12220
12220
  exchange: string;
12221
12221
  stakeCurrency: string;
@@ -12291,9 +12291,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
12291
12291
  exitReason?: string | undefined;
12292
12292
  }[] | undefined;
12293
12293
  }[][] | {
12294
- traderId: string;
12294
+ traderId: string | {};
12295
12295
  traderName: string;
12296
- strategyId?: string | undefined;
12296
+ strategyId?: string | {} | undefined;
12297
12297
  strategyName?: string | undefined;
12298
12298
  exchange: string;
12299
12299
  stakeCurrency: string;
@@ -12370,9 +12370,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
12370
12370
  }[] | undefined;
12371
12371
  }[];
12372
12372
  $nin: {
12373
- traderId: string;
12373
+ traderId: string | {};
12374
12374
  traderName: string;
12375
- strategyId?: string | undefined;
12375
+ strategyId?: string | {} | undefined;
12376
12376
  strategyName?: string | undefined;
12377
12377
  exchange: string;
12378
12378
  stakeCurrency: string;
@@ -12448,9 +12448,9 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
12448
12448
  exitReason?: string | undefined;
12449
12449
  }[] | undefined;
12450
12450
  }[][] | {
12451
- traderId: string;
12451
+ traderId: string | {};
12452
12452
  traderName: string;
12453
- strategyId?: string | undefined;
12453
+ strategyId?: string | {} | undefined;
12454
12454
  strategyName?: string | undefined;
12455
12455
  exchange: string;
12456
12456
  stakeCurrency: string;
@@ -12534,7 +12534,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
12534
12534
  triggers: {
12535
12535
  type: string;
12536
12536
  signal?: string | undefined;
12537
- traderId?: string | undefined;
12537
+ traderId?: string | {} | undefined;
12538
12538
  detail: string;
12539
12539
  severity: string;
12540
12540
  }[];
@@ -12546,7 +12546,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
12546
12546
  triggers: {
12547
12547
  type: string;
12548
12548
  signal?: string | undefined;
12549
- traderId?: string | undefined;
12549
+ traderId?: string | {} | undefined;
12550
12550
  detail: string;
12551
12551
  severity: string;
12552
12552
  }[];
@@ -12558,7 +12558,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
12558
12558
  triggers: {
12559
12559
  type: string;
12560
12560
  signal?: string | undefined;
12561
- traderId?: string | undefined;
12561
+ traderId?: string | {} | undefined;
12562
12562
  detail: string;
12563
12563
  severity: string;
12564
12564
  }[];
@@ -12570,7 +12570,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
12570
12570
  triggers: {
12571
12571
  type: string;
12572
12572
  signal?: string | undefined;
12573
- traderId?: string | undefined;
12573
+ traderId?: string | {} | undefined;
12574
12574
  detail: string;
12575
12575
  severity: string;
12576
12576
  }[];
@@ -12582,7 +12582,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
12582
12582
  triggers: {
12583
12583
  type: string;
12584
12584
  signal?: string | undefined;
12585
- traderId?: string | undefined;
12585
+ traderId?: string | {} | undefined;
12586
12586
  detail: string;
12587
12587
  severity: string;
12588
12588
  }[];
@@ -12594,7 +12594,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
12594
12594
  triggers: {
12595
12595
  type: string;
12596
12596
  signal?: string | undefined;
12597
- traderId?: string | undefined;
12597
+ traderId?: string | {} | undefined;
12598
12598
  detail: string;
12599
12599
  severity: string;
12600
12600
  }[];
@@ -12605,7 +12605,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
12605
12605
  triggers: {
12606
12606
  type: string;
12607
12607
  signal?: string | undefined;
12608
- traderId?: string | undefined;
12608
+ traderId?: string | {} | undefined;
12609
12609
  detail: string;
12610
12610
  severity: string;
12611
12611
  }[];
@@ -12617,7 +12617,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
12617
12617
  triggers: {
12618
12618
  type: string;
12619
12619
  signal?: string | undefined;
12620
- traderId?: string | undefined;
12620
+ traderId?: string | {} | undefined;
12621
12621
  detail: string;
12622
12622
  severity: string;
12623
12623
  }[];
@@ -12628,7 +12628,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
12628
12628
  triggers: {
12629
12629
  type: string;
12630
12630
  signal?: string | undefined;
12631
- traderId?: string | undefined;
12631
+ traderId?: string | {} | undefined;
12632
12632
  detail: string;
12633
12633
  severity: string;
12634
12634
  }[];
@@ -12640,7 +12640,7 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
12640
12640
  triggers: {
12641
12641
  type: string;
12642
12642
  signal?: string | undefined;
12643
- traderId?: string | undefined;
12643
+ traderId?: string | {} | undefined;
12644
12644
  detail: string;
12645
12645
  severity: string;
12646
12646
  }[];
@@ -12656,12 +12656,12 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
12656
12656
  $nin: "daily" | "intraday" | "weekly" | ("daily" | "intraday" | "weekly")[];
12657
12657
  } & {}> | undefined;
12658
12658
  userId?: string | Partial<{
12659
- $gt: string;
12660
- $gte: string;
12661
- $lt: string;
12662
- $lte: string;
12663
- $ne: string;
12664
- $in: string | string[];
12665
- $nin: string | string[];
12666
- } & {}> | undefined;
12659
+ $gt: string | {};
12660
+ $gte: string | {};
12661
+ $lt: string | {};
12662
+ $lte: string | {};
12663
+ $ne: string | {};
12664
+ $in: string | (string | {})[] | {};
12665
+ $nin: string | (string | {})[] | {};
12666
+ } & {}> | {} | undefined;
12667
12667
  } & {}, HookContext<SnapshotService<import("./snapshot.class").SnapshotParams>>>;