@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
@@ -5,8 +5,8 @@ export declare const tradersPodsWebhooksSchema: import("@feathersjs/typebox").TO
5
5
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
6
6
  status: import("@feathersjs/typebox").TString<string>;
7
7
  event: import("@feathersjs/typebox").TString<string>;
8
- traderId: import("@feathersjs/typebox").TString<string>;
9
- userId: import("@feathersjs/typebox").TString<string>;
8
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
9
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
10
10
  createdAt: import("@feathersjs/typebox").TAny;
11
11
  }>;
12
12
  export type TradersPodsWebhooks = Static<typeof tradersPodsWebhooksSchema>;
@@ -15,24 +15,24 @@ export declare const tradersPodsWebhooksResolver: import("@feathersjs/schema").R
15
15
  _id: string | {};
16
16
  status: string;
17
17
  event: string;
18
- traderId: string;
19
- userId: string;
18
+ traderId: string | {};
19
+ userId: string | {};
20
20
  createdAt: any;
21
21
  }, HookContext<TradersPodsWebhooksService<import("./webhooks.class").TradersPodsWebhooksParams>>>;
22
22
  export declare const tradersPodsWebhooksExternalResolver: import("@feathersjs/schema").Resolver<{
23
23
  _id: string | {};
24
24
  status: string;
25
25
  event: string;
26
- traderId: string;
27
- userId: string;
26
+ traderId: string | {};
27
+ userId: string | {};
28
28
  createdAt: any;
29
29
  }, HookContext<TradersPodsWebhooksService<import("./webhooks.class").TradersPodsWebhooksParams>>>;
30
30
  export declare const tradersPodsWebhooksDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
31
31
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
32
32
  status: import("@feathersjs/typebox").TString<string>;
33
33
  event: import("@feathersjs/typebox").TString<string>;
34
- traderId: import("@feathersjs/typebox").TString<string>;
35
- userId: import("@feathersjs/typebox").TString<string>;
34
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
35
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
36
36
  createdAt: import("@feathersjs/typebox").TAny;
37
37
  }>, ["traderId", "userId", "event"]>;
38
38
  export type TradersPodsWebhooksData = Static<typeof tradersPodsWebhooksDataSchema>;
@@ -41,16 +41,16 @@ export declare const tradersPodsWebhooksDataResolver: import("@feathersjs/schema
41
41
  _id: string | {};
42
42
  status: string;
43
43
  event: string;
44
- traderId: string;
45
- userId: string;
44
+ traderId: string | {};
45
+ userId: string | {};
46
46
  createdAt: any;
47
47
  }, HookContext<TradersPodsWebhooksService<import("./webhooks.class").TradersPodsWebhooksParams>>>;
48
48
  export declare const tradersPodsWebhooksPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
49
49
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
50
50
  status: import("@feathersjs/typebox").TString<string>;
51
51
  event: import("@feathersjs/typebox").TString<string>;
52
- traderId: import("@feathersjs/typebox").TString<string>;
53
- userId: import("@feathersjs/typebox").TString<string>;
52
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
53
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
54
54
  createdAt: import("@feathersjs/typebox").TAny;
55
55
  }>>;
56
56
  export type TradersPodsWebhooksPatch = Static<typeof tradersPodsWebhooksPatchSchema>;
@@ -59,16 +59,16 @@ export declare const tradersPodsWebhooksPatchResolver: import("@feathersjs/schem
59
59
  _id: string | {};
60
60
  status: string;
61
61
  event: string;
62
- traderId: string;
63
- userId: string;
62
+ traderId: string | {};
63
+ userId: string | {};
64
64
  createdAt: any;
65
65
  }, HookContext<TradersPodsWebhooksService<import("./webhooks.class").TradersPodsWebhooksParams>>>;
66
66
  export declare const tradersPodsWebhooksQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
67
67
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
68
68
  status: import("@feathersjs/typebox").TString<string>;
69
69
  event: import("@feathersjs/typebox").TString<string>;
70
- traderId: import("@feathersjs/typebox").TString<string>;
71
- userId: import("@feathersjs/typebox").TString<string>;
70
+ traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
71
+ userId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
72
72
  createdAt: import("@feathersjs/typebox").TAny;
73
73
  }>, ["_id", "traderId", "event", "status", "createdAt", "userId"]>;
74
74
  export declare const tradersPodsWebhooksQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
@@ -128,25 +128,25 @@ export declare const tradersPodsWebhooksQuerySchema: import("@feathersjs/typebox
128
128
  }>, import("@feathersjs/typebox").TObject<{
129
129
  [key: string]: import("@feathersjs/typebox").TSchema;
130
130
  } | undefined>]>>]>>;
131
- traderId: 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<{
132
- $gt: import("@feathersjs/typebox").TString<string>;
133
- $gte: import("@feathersjs/typebox").TString<string>;
134
- $lt: import("@feathersjs/typebox").TString<string>;
135
- $lte: import("@feathersjs/typebox").TString<string>;
136
- $ne: import("@feathersjs/typebox").TString<string>;
137
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
138
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
131
+ traderId: 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<{
132
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
133
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
134
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
135
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
136
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
137
+ $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<{}>]>;
138
+ $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<{}>]>;
139
139
  }>, import("@feathersjs/typebox").TObject<{
140
140
  [key: string]: import("@feathersjs/typebox").TSchema;
141
141
  } | undefined>]>>]>>;
142
- 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<{
143
- $gt: import("@feathersjs/typebox").TString<string>;
144
- $gte: import("@feathersjs/typebox").TString<string>;
145
- $lt: import("@feathersjs/typebox").TString<string>;
146
- $lte: import("@feathersjs/typebox").TString<string>;
147
- $ne: import("@feathersjs/typebox").TString<string>;
148
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
149
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
142
+ 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<{
143
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
144
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
145
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
146
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
147
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
148
+ $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<{}>]>;
149
+ $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<{}>]>;
150
150
  }>, import("@feathersjs/typebox").TObject<{
151
151
  [key: string]: import("@feathersjs/typebox").TSchema;
152
152
  } | undefined>]>>]>>;
@@ -196,25 +196,25 @@ export declare const tradersPodsWebhooksQuerySchema: import("@feathersjs/typebox
196
196
  }>, import("@feathersjs/typebox").TObject<{
197
197
  [key: string]: import("@feathersjs/typebox").TSchema;
198
198
  } | undefined>]>>]>>;
199
- traderId: 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<{
200
- $gt: import("@feathersjs/typebox").TString<string>;
201
- $gte: import("@feathersjs/typebox").TString<string>;
202
- $lt: import("@feathersjs/typebox").TString<string>;
203
- $lte: import("@feathersjs/typebox").TString<string>;
204
- $ne: import("@feathersjs/typebox").TString<string>;
205
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
206
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
199
+ traderId: 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<{
200
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
201
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
202
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
203
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
204
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
205
+ $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<{}>]>;
206
+ $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<{}>]>;
207
207
  }>, import("@feathersjs/typebox").TObject<{
208
208
  [key: string]: import("@feathersjs/typebox").TSchema;
209
209
  } | undefined>]>>]>>;
210
- 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<{
211
- $gt: import("@feathersjs/typebox").TString<string>;
212
- $gte: import("@feathersjs/typebox").TString<string>;
213
- $lt: import("@feathersjs/typebox").TString<string>;
214
- $lte: import("@feathersjs/typebox").TString<string>;
215
- $ne: import("@feathersjs/typebox").TString<string>;
216
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
217
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
210
+ 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<{
211
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
212
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
213
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
214
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
215
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
216
+ $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<{}>]>;
217
+ $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<{}>]>;
218
218
  }>, import("@feathersjs/typebox").TObject<{
219
219
  [key: string]: import("@feathersjs/typebox").TSchema;
220
220
  } | undefined>]>>]>>;
@@ -265,25 +265,25 @@ export declare const tradersPodsWebhooksQuerySchema: import("@feathersjs/typebox
265
265
  }>, import("@feathersjs/typebox").TObject<{
266
266
  [key: string]: import("@feathersjs/typebox").TSchema;
267
267
  } | undefined>]>>]>>;
268
- traderId: 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<{
269
- $gt: import("@feathersjs/typebox").TString<string>;
270
- $gte: import("@feathersjs/typebox").TString<string>;
271
- $lt: import("@feathersjs/typebox").TString<string>;
272
- $lte: import("@feathersjs/typebox").TString<string>;
273
- $ne: import("@feathersjs/typebox").TString<string>;
274
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
275
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
268
+ traderId: 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<{
269
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
270
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
271
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
272
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
273
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
274
+ $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<{}>]>;
275
+ $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<{}>]>;
276
276
  }>, import("@feathersjs/typebox").TObject<{
277
277
  [key: string]: import("@feathersjs/typebox").TSchema;
278
278
  } | undefined>]>>]>>;
279
- 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<{
280
- $gt: import("@feathersjs/typebox").TString<string>;
281
- $gte: import("@feathersjs/typebox").TString<string>;
282
- $lt: import("@feathersjs/typebox").TString<string>;
283
- $lte: import("@feathersjs/typebox").TString<string>;
284
- $ne: import("@feathersjs/typebox").TString<string>;
285
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
286
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
279
+ 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<{
280
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
281
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
282
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
283
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
284
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
285
+ $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<{}>]>;
286
+ $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<{}>]>;
287
287
  }>, import("@feathersjs/typebox").TObject<{
288
288
  [key: string]: import("@feathersjs/typebox").TSchema;
289
289
  } | undefined>]>>]>>;
@@ -333,25 +333,25 @@ export declare const tradersPodsWebhooksQuerySchema: import("@feathersjs/typebox
333
333
  }>, import("@feathersjs/typebox").TObject<{
334
334
  [key: string]: import("@feathersjs/typebox").TSchema;
335
335
  } | undefined>]>>]>>;
336
- traderId: 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<{
337
- $gt: import("@feathersjs/typebox").TString<string>;
338
- $gte: import("@feathersjs/typebox").TString<string>;
339
- $lt: import("@feathersjs/typebox").TString<string>;
340
- $lte: import("@feathersjs/typebox").TString<string>;
341
- $ne: import("@feathersjs/typebox").TString<string>;
342
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
343
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
336
+ traderId: 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<{
337
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
338
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
339
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
340
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
341
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
342
+ $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<{}>]>;
343
+ $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<{}>]>;
344
344
  }>, import("@feathersjs/typebox").TObject<{
345
345
  [key: string]: import("@feathersjs/typebox").TSchema;
346
346
  } | undefined>]>>]>>;
347
- 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<{
348
- $gt: import("@feathersjs/typebox").TString<string>;
349
- $gte: import("@feathersjs/typebox").TString<string>;
350
- $lt: import("@feathersjs/typebox").TString<string>;
351
- $lte: import("@feathersjs/typebox").TString<string>;
352
- $ne: import("@feathersjs/typebox").TString<string>;
353
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
354
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TString<string>;
347
+ 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<{
348
+ $gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
349
+ $gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
350
+ $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
351
+ $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
352
+ $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
353
+ $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<{}>]>;
354
+ $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<{}>]>;
355
355
  }>, import("@feathersjs/typebox").TObject<{
356
356
  [key: string]: import("@feathersjs/typebox").TSchema;
357
357
  } | undefined>]>>]>>;
@@ -400,23 +400,23 @@ export declare const tradersPodsWebhooksQueryResolver: import("@feathersjs/schem
400
400
  $nin: string | string[];
401
401
  } & {}> | undefined;
402
402
  traderId?: string | Partial<{
403
- $gt: string;
404
- $gte: string;
405
- $lt: string;
406
- $lte: string;
407
- $ne: string;
408
- $in: string | string[];
409
- $nin: string | string[];
410
- } & {}> | undefined;
403
+ $gt: string | {};
404
+ $gte: string | {};
405
+ $lt: string | {};
406
+ $lte: string | {};
407
+ $ne: string | {};
408
+ $in: string | (string | {})[] | {};
409
+ $nin: string | (string | {})[] | {};
410
+ } & {}> | {} | undefined;
411
411
  userId?: string | Partial<{
412
- $gt: string;
413
- $gte: string;
414
- $lt: string;
415
- $lte: string;
416
- $ne: string;
417
- $in: string | string[];
418
- $nin: string | string[];
419
- } & {}> | undefined;
412
+ $gt: string | {};
413
+ $gte: string | {};
414
+ $lt: string | {};
415
+ $lte: string | {};
416
+ $ne: string | {};
417
+ $in: string | (string | {})[] | {};
418
+ $nin: string | (string | {})[] | {};
419
+ } & {}> | {} | undefined;
420
420
  } | {
421
421
  $or: {
422
422
  _id?: string | Partial<{
@@ -448,23 +448,23 @@ export declare const tradersPodsWebhooksQueryResolver: import("@feathersjs/schem
448
448
  $nin: string | string[];
449
449
  } & {}> | undefined;
450
450
  traderId?: string | Partial<{
451
- $gt: string;
452
- $gte: string;
453
- $lt: string;
454
- $lte: string;
455
- $ne: string;
456
- $in: string | string[];
457
- $nin: string | string[];
458
- } & {}> | undefined;
451
+ $gt: string | {};
452
+ $gte: string | {};
453
+ $lt: string | {};
454
+ $lte: string | {};
455
+ $ne: string | {};
456
+ $in: string | (string | {})[] | {};
457
+ $nin: string | (string | {})[] | {};
458
+ } & {}> | {} | undefined;
459
459
  userId?: string | Partial<{
460
- $gt: string;
461
- $gte: string;
462
- $lt: string;
463
- $lte: string;
464
- $ne: string;
465
- $in: string | string[];
466
- $nin: string | string[];
467
- } & {}> | undefined;
460
+ $gt: string | {};
461
+ $gte: string | {};
462
+ $lt: string | {};
463
+ $lte: string | {};
464
+ $ne: string | {};
465
+ $in: string | (string | {})[] | {};
466
+ $nin: string | (string | {})[] | {};
467
+ } & {}> | {} | undefined;
468
468
  }[];
469
469
  })[];
470
470
  $or: {
@@ -497,23 +497,23 @@ export declare const tradersPodsWebhooksQueryResolver: import("@feathersjs/schem
497
497
  $nin: string | string[];
498
498
  } & {}> | undefined;
499
499
  traderId?: string | Partial<{
500
- $gt: string;
501
- $gte: string;
502
- $lt: string;
503
- $lte: string;
504
- $ne: string;
505
- $in: string | string[];
506
- $nin: string | string[];
507
- } & {}> | undefined;
500
+ $gt: string | {};
501
+ $gte: string | {};
502
+ $lt: string | {};
503
+ $lte: string | {};
504
+ $ne: string | {};
505
+ $in: string | (string | {})[] | {};
506
+ $nin: string | (string | {})[] | {};
507
+ } & {}> | {} | undefined;
508
508
  userId?: string | Partial<{
509
- $gt: string;
510
- $gte: string;
511
- $lt: string;
512
- $lte: string;
513
- $ne: string;
514
- $in: string | string[];
515
- $nin: string | string[];
516
- } & {}> | undefined;
509
+ $gt: string | {};
510
+ $gte: string | {};
511
+ $lt: string | {};
512
+ $lte: string | {};
513
+ $ne: string | {};
514
+ $in: string | (string | {})[] | {};
515
+ $nin: string | (string | {})[] | {};
516
+ } & {}> | {} | undefined;
517
517
  }[];
518
518
  }> & {
519
519
  _id?: string | Partial<{
@@ -545,21 +545,21 @@ export declare const tradersPodsWebhooksQueryResolver: import("@feathersjs/schem
545
545
  $nin: string | string[];
546
546
  } & {}> | undefined;
547
547
  traderId?: string | Partial<{
548
- $gt: string;
549
- $gte: string;
550
- $lt: string;
551
- $lte: string;
552
- $ne: string;
553
- $in: string | string[];
554
- $nin: string | string[];
555
- } & {}> | undefined;
548
+ $gt: string | {};
549
+ $gte: string | {};
550
+ $lt: string | {};
551
+ $lte: string | {};
552
+ $ne: string | {};
553
+ $in: string | (string | {})[] | {};
554
+ $nin: string | (string | {})[] | {};
555
+ } & {}> | {} | undefined;
556
556
  userId?: string | Partial<{
557
- $gt: string;
558
- $gte: string;
559
- $lt: string;
560
- $lte: string;
561
- $ne: string;
562
- $in: string | string[];
563
- $nin: string | string[];
564
- } & {}> | undefined;
557
+ $gt: string | {};
558
+ $gte: string | {};
559
+ $lt: string | {};
560
+ $lte: string | {};
561
+ $ne: string | {};
562
+ $in: string | (string | {})[] | {};
563
+ $nin: string | (string | {})[] | {};
564
+ } & {}> | {} | undefined;
565
565
  } & {}, HookContext<TradersPodsWebhooksService<import("./webhooks.class").TradersPodsWebhooksParams>>>;