@cryptorobot.ai/client 0.0.32 → 0.0.34
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.
- package/lib/app.d.ts +1 -0
- package/lib/client.d.ts +2 -0
- package/lib/client.js +7 -5
- package/lib/configuration.d.ts +12 -1
- package/lib/helpers/app.helper.d.ts +1 -0
- package/lib/helpers/ccxt.helper.d.ts +2 -0
- package/lib/helpers/deployments.helper.d.ts +1 -1
- package/lib/helpers/funnel.helper.d.ts +2 -0
- package/lib/helpers/push-notification.helper.d.ts +1 -0
- package/lib/hooks/application/setup-ccxt-load-marketplaces-mocked.d.ts +3 -0
- package/lib/hooks/application/setup-fs.d.ts +3 -0
- package/lib/hooks/revenuecat-is-subscription-active.d.ts +2 -0
- package/lib/services/auth-management/auth-management.shared.js +1 -12
- package/lib/services/config/config.class.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.class.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.schema.d.ts +32 -24
- package/lib/services/exchanges/download/download.schema.d.ts +32 -24
- package/lib/services/exchanges/exchanges.d.ts +1 -0
- package/lib/services/exchanges/exchanges.schema.d.ts +85 -77
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +32 -24
- package/lib/services/index.d.ts +1 -1
- package/lib/services/messages/messages.schema.d.ts +40 -24
- package/lib/services/strategies/backtest/backtest.d.ts +1 -0
- package/lib/services/strategies/backtest/backtest.schema.d.ts +133 -197
- package/lib/services/strategies/indicators/indicators.schema.d.ts +61 -61
- package/lib/services/strategies/strategies.d.ts +1 -0
- package/lib/services/strategies/strategies.schema.d.ts +32 -16
- package/lib/services/strategies/templates/templates.schema.d.ts +9 -1
- package/lib/services/stripe/webhooks/webhooks.class.d.ts +26 -0
- package/lib/services/stripe/webhooks/webhooks.d.ts +9 -0
- package/lib/services/stripe/webhooks/webhooks.shared.d.ts +13 -0
- package/lib/services/stripe/webhooks/webhooks.shared.js +13 -0
- package/lib/services/traders/pods/api/api.schema.d.ts +112 -72
- package/lib/services/traders/pods/pods.schema.d.ts +88 -56
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +217 -3
- package/lib/services/traders/traders.schema.d.ts +141 -133
- package/lib/services/users/users.d.ts +1 -0
- package/lib/services/users/users.helper.d.ts +1 -1
- package/lib/services/users/users.schema.d.ts +196 -80
- package/package.json +1 -1
|
@@ -70,16 +70,19 @@ export declare const tradersPodsWebhooksQueryProperties: import("@feathersjs/typ
|
|
|
70
70
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
71
71
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
72
72
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
73
|
-
}>, ["_id", "traderId", "userId"]>;
|
|
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<{
|
|
75
75
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
76
76
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
77
77
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
78
78
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
79
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
79
80
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
81
|
+
event: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
82
|
+
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
80
83
|
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
81
84
|
}>;
|
|
82
|
-
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "userId" | "traderId")[]>;
|
|
85
|
+
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "userId" | "event" | "status" | "traderId")[]>;
|
|
83
86
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
84
87
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
85
88
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
@@ -92,6 +95,17 @@ export declare const tradersPodsWebhooksQuerySchema: import("@feathersjs/typebox
|
|
|
92
95
|
}>, import("@feathersjs/typebox").TObject<{
|
|
93
96
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
94
97
|
} | undefined>]>>]>>;
|
|
98
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
99
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
100
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
101
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
102
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
103
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
104
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
105
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
106
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
107
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
108
|
+
} | undefined>]>>]>>;
|
|
95
109
|
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<{
|
|
96
110
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
97
111
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
@@ -103,6 +117,28 @@ export declare const tradersPodsWebhooksQuerySchema: import("@feathersjs/typebox
|
|
|
103
117
|
}>, import("@feathersjs/typebox").TObject<{
|
|
104
118
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
105
119
|
} | undefined>]>>]>>;
|
|
120
|
+
event: 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<{
|
|
121
|
+
$gt: import("@feathersjs/typebox").TString<string>;
|
|
122
|
+
$gte: import("@feathersjs/typebox").TString<string>;
|
|
123
|
+
$lt: import("@feathersjs/typebox").TString<string>;
|
|
124
|
+
$lte: import("@feathersjs/typebox").TString<string>;
|
|
125
|
+
$ne: import("@feathersjs/typebox").TString<string>;
|
|
126
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
127
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
128
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
129
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
130
|
+
} | undefined>]>>]>>;
|
|
131
|
+
status: 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").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
138
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
139
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
140
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
141
|
+
} | undefined>]>>]>>;
|
|
106
142
|
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<{
|
|
107
143
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
108
144
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
@@ -127,6 +163,17 @@ export declare const tradersPodsWebhooksQuerySchema: import("@feathersjs/typebox
|
|
|
127
163
|
}>, import("@feathersjs/typebox").TObject<{
|
|
128
164
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
129
165
|
} | undefined>]>>]>>;
|
|
166
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
167
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
168
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
169
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
170
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
171
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
172
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
173
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
174
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
175
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
176
|
+
} | undefined>]>>]>>;
|
|
130
177
|
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<{
|
|
131
178
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
132
179
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
@@ -138,6 +185,28 @@ export declare const tradersPodsWebhooksQuerySchema: import("@feathersjs/typebox
|
|
|
138
185
|
}>, import("@feathersjs/typebox").TObject<{
|
|
139
186
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
140
187
|
} | undefined>]>>]>>;
|
|
188
|
+
event: 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<{
|
|
189
|
+
$gt: import("@feathersjs/typebox").TString<string>;
|
|
190
|
+
$gte: import("@feathersjs/typebox").TString<string>;
|
|
191
|
+
$lt: import("@feathersjs/typebox").TString<string>;
|
|
192
|
+
$lte: import("@feathersjs/typebox").TString<string>;
|
|
193
|
+
$ne: import("@feathersjs/typebox").TString<string>;
|
|
194
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
195
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
196
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
197
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
198
|
+
} | undefined>]>>]>>;
|
|
199
|
+
status: 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").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
206
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
207
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
208
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
209
|
+
} | undefined>]>>]>>;
|
|
141
210
|
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<{
|
|
142
211
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
143
212
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
@@ -163,6 +232,17 @@ export declare const tradersPodsWebhooksQuerySchema: import("@feathersjs/typebox
|
|
|
163
232
|
}>, import("@feathersjs/typebox").TObject<{
|
|
164
233
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
165
234
|
} | undefined>]>>]>>;
|
|
235
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
236
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
237
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
238
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
239
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
240
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
241
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
242
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
243
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
244
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
245
|
+
} | undefined>]>>]>>;
|
|
166
246
|
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<{
|
|
167
247
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
168
248
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
@@ -174,6 +254,28 @@ export declare const tradersPodsWebhooksQuerySchema: import("@feathersjs/typebox
|
|
|
174
254
|
}>, import("@feathersjs/typebox").TObject<{
|
|
175
255
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
176
256
|
} | undefined>]>>]>>;
|
|
257
|
+
event: 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<{
|
|
258
|
+
$gt: import("@feathersjs/typebox").TString<string>;
|
|
259
|
+
$gte: import("@feathersjs/typebox").TString<string>;
|
|
260
|
+
$lt: import("@feathersjs/typebox").TString<string>;
|
|
261
|
+
$lte: import("@feathersjs/typebox").TString<string>;
|
|
262
|
+
$ne: import("@feathersjs/typebox").TString<string>;
|
|
263
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
264
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
265
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
266
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
267
|
+
} | undefined>]>>]>>;
|
|
268
|
+
status: 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").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
275
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
276
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
277
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
278
|
+
} | undefined>]>>]>>;
|
|
177
279
|
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<{
|
|
178
280
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
179
281
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
@@ -198,6 +300,17 @@ export declare const tradersPodsWebhooksQuerySchema: import("@feathersjs/typebox
|
|
|
198
300
|
}>, import("@feathersjs/typebox").TObject<{
|
|
199
301
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
200
302
|
} | undefined>]>>]>>;
|
|
303
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
304
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
305
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
306
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
307
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
308
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
309
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
310
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
311
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
312
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
313
|
+
} | undefined>]>>]>>;
|
|
201
314
|
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<{
|
|
202
315
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
203
316
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
@@ -209,6 +322,28 @@ export declare const tradersPodsWebhooksQuerySchema: import("@feathersjs/typebox
|
|
|
209
322
|
}>, import("@feathersjs/typebox").TObject<{
|
|
210
323
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
211
324
|
} | undefined>]>>]>>;
|
|
325
|
+
event: 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<{
|
|
326
|
+
$gt: import("@feathersjs/typebox").TString<string>;
|
|
327
|
+
$gte: import("@feathersjs/typebox").TString<string>;
|
|
328
|
+
$lt: import("@feathersjs/typebox").TString<string>;
|
|
329
|
+
$lte: import("@feathersjs/typebox").TString<string>;
|
|
330
|
+
$ne: import("@feathersjs/typebox").TString<string>;
|
|
331
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
332
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
333
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
334
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
335
|
+
} | undefined>]>>]>>;
|
|
336
|
+
status: 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").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
343
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
344
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
345
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
346
|
+
} | undefined>]>>]>>;
|
|
212
347
|
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<{
|
|
213
348
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
214
349
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
@@ -228,10 +363,13 @@ export declare const tradersPodsWebhooksQueryResolver: import("@feathersjs/schem
|
|
|
228
363
|
$skip: number;
|
|
229
364
|
$sort: {
|
|
230
365
|
_id?: number | undefined;
|
|
366
|
+
createdAt?: number | undefined;
|
|
231
367
|
userId?: number | undefined;
|
|
368
|
+
event?: number | undefined;
|
|
369
|
+
status?: number | undefined;
|
|
232
370
|
traderId?: number | undefined;
|
|
233
371
|
};
|
|
234
|
-
$select: ("_id" | "userId" | "traderId")[];
|
|
372
|
+
$select: ("_id" | "createdAt" | "userId" | "event" | "status" | "traderId")[];
|
|
235
373
|
$and: ({
|
|
236
374
|
_id?: string | {} | Partial<{
|
|
237
375
|
$gt: string | {};
|
|
@@ -242,6 +380,7 @@ export declare const tradersPodsWebhooksQueryResolver: import("@feathersjs/schem
|
|
|
242
380
|
$in: string | {} | (string | {})[];
|
|
243
381
|
$nin: string | {} | (string | {})[];
|
|
244
382
|
} & {}> | undefined;
|
|
383
|
+
createdAt?: any;
|
|
245
384
|
userId?: string | Partial<{
|
|
246
385
|
$gt: string;
|
|
247
386
|
$gte: string;
|
|
@@ -251,6 +390,24 @@ export declare const tradersPodsWebhooksQueryResolver: import("@feathersjs/schem
|
|
|
251
390
|
$in: string | string[];
|
|
252
391
|
$nin: string | string[];
|
|
253
392
|
} & {}> | undefined;
|
|
393
|
+
event?: string | Partial<{
|
|
394
|
+
$gt: string;
|
|
395
|
+
$gte: string;
|
|
396
|
+
$lt: string;
|
|
397
|
+
$lte: string;
|
|
398
|
+
$ne: string;
|
|
399
|
+
$in: string | string[];
|
|
400
|
+
$nin: string | string[];
|
|
401
|
+
} & {}> | undefined;
|
|
402
|
+
status?: 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;
|
|
254
411
|
traderId?: string | Partial<{
|
|
255
412
|
$gt: string;
|
|
256
413
|
$gte: string;
|
|
@@ -271,6 +428,7 @@ export declare const tradersPodsWebhooksQueryResolver: import("@feathersjs/schem
|
|
|
271
428
|
$in: string | {} | (string | {})[];
|
|
272
429
|
$nin: string | {} | (string | {})[];
|
|
273
430
|
} & {}> | undefined;
|
|
431
|
+
createdAt?: any;
|
|
274
432
|
userId?: string | Partial<{
|
|
275
433
|
$gt: string;
|
|
276
434
|
$gte: string;
|
|
@@ -280,6 +438,24 @@ export declare const tradersPodsWebhooksQueryResolver: import("@feathersjs/schem
|
|
|
280
438
|
$in: string | string[];
|
|
281
439
|
$nin: string | string[];
|
|
282
440
|
} & {}> | undefined;
|
|
441
|
+
event?: string | Partial<{
|
|
442
|
+
$gt: string;
|
|
443
|
+
$gte: string;
|
|
444
|
+
$lt: string;
|
|
445
|
+
$lte: string;
|
|
446
|
+
$ne: string;
|
|
447
|
+
$in: string | string[];
|
|
448
|
+
$nin: string | string[];
|
|
449
|
+
} & {}> | undefined;
|
|
450
|
+
status?: 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;
|
|
283
459
|
traderId?: string | Partial<{
|
|
284
460
|
$gt: string;
|
|
285
461
|
$gte: string;
|
|
@@ -301,6 +477,7 @@ export declare const tradersPodsWebhooksQueryResolver: import("@feathersjs/schem
|
|
|
301
477
|
$in: string | {} | (string | {})[];
|
|
302
478
|
$nin: string | {} | (string | {})[];
|
|
303
479
|
} & {}> | undefined;
|
|
480
|
+
createdAt?: any;
|
|
304
481
|
userId?: string | Partial<{
|
|
305
482
|
$gt: string;
|
|
306
483
|
$gte: string;
|
|
@@ -310,6 +487,24 @@ export declare const tradersPodsWebhooksQueryResolver: import("@feathersjs/schem
|
|
|
310
487
|
$in: string | string[];
|
|
311
488
|
$nin: string | string[];
|
|
312
489
|
} & {}> | undefined;
|
|
490
|
+
event?: string | Partial<{
|
|
491
|
+
$gt: string;
|
|
492
|
+
$gte: string;
|
|
493
|
+
$lt: string;
|
|
494
|
+
$lte: string;
|
|
495
|
+
$ne: string;
|
|
496
|
+
$in: string | string[];
|
|
497
|
+
$nin: string | string[];
|
|
498
|
+
} & {}> | undefined;
|
|
499
|
+
status?: 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;
|
|
313
508
|
traderId?: string | Partial<{
|
|
314
509
|
$gt: string;
|
|
315
510
|
$gte: string;
|
|
@@ -330,6 +525,7 @@ export declare const tradersPodsWebhooksQueryResolver: import("@feathersjs/schem
|
|
|
330
525
|
$in: string | {} | (string | {})[];
|
|
331
526
|
$nin: string | {} | (string | {})[];
|
|
332
527
|
} & {}> | undefined;
|
|
528
|
+
createdAt?: any;
|
|
333
529
|
userId?: string | Partial<{
|
|
334
530
|
$gt: string;
|
|
335
531
|
$gte: string;
|
|
@@ -339,6 +535,24 @@ export declare const tradersPodsWebhooksQueryResolver: import("@feathersjs/schem
|
|
|
339
535
|
$in: string | string[];
|
|
340
536
|
$nin: string | string[];
|
|
341
537
|
} & {}> | undefined;
|
|
538
|
+
event?: string | Partial<{
|
|
539
|
+
$gt: string;
|
|
540
|
+
$gte: string;
|
|
541
|
+
$lt: string;
|
|
542
|
+
$lte: string;
|
|
543
|
+
$ne: string;
|
|
544
|
+
$in: string | string[];
|
|
545
|
+
$nin: string | string[];
|
|
546
|
+
} & {}> | undefined;
|
|
547
|
+
status?: 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;
|
|
342
556
|
traderId?: string | Partial<{
|
|
343
557
|
$gt: string;
|
|
344
558
|
$gte: string;
|