@cryptorobot.ai/client 0.0.19 → 0.0.26
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/client.d.ts +38 -36
- package/lib/client.js +6 -12
- package/lib/configuration.d.ts +20 -1
- package/lib/firebase-push-notification.d.ts +1 -0
- package/lib/helpers/backtest.helper.d.ts +53 -4
- package/lib/helpers/ccxt.helper.d.ts +75 -0
- package/lib/helpers/deployments.helper.d.ts +72 -0
- package/lib/helpers/funnel.helper.d.ts +17 -0
- package/lib/helpers/hyperopt.helper.d.ts +14 -0
- package/lib/helpers/push-notification.helper.d.ts +7 -0
- package/lib/helpers/queue.helper.d.ts +8 -0
- package/lib/helpers/sqlite3.helper.d.ts +6 -0
- package/lib/helpers/sqs.helper.d.ts +7 -0
- package/lib/helpers/subscription.helper.d.ts +48 -0
- package/lib/helpers/telegram.helper.d.ts +26 -1
- package/lib/helpers/trader.helper.d.ts +26 -0
- package/lib/hooks/application/setup-config-preparation.d.ts +1 -1
- package/lib/hooks/application/setup-info.d.ts +1 -1
- package/lib/hooks/application/setup-load-indicators.d.ts +1 -1
- package/lib/hooks/application/setup-load-strategy-templates.d.ts +1 -1
- package/lib/hooks/aws-prepare-batch-job.d.ts +2 -0
- package/lib/hooks/backtest-copy-candles-from-user-data.d.ts +1 -1
- package/lib/hooks/{backtest-generate-and-start.d.ts → backtest-generate-and-queue.d.ts} +1 -1
- package/lib/hooks/backtest-generate-config.d.ts +6 -0
- package/lib/hooks/backtest-generate-exchange-config.d.ts +6 -0
- package/lib/hooks/backtest-get-results.d.ts +12 -0
- package/lib/hooks/file-generate-config-hyperopt.d.ts +2 -0
- package/lib/hooks/setup-ensure-image.d.ts +3 -0
- package/lib/hooks/setup-firebase.d.ts +2 -0
- package/lib/hooks/setup-homepage.d.ts +3 -0
- package/lib/hooks/setup-mautic.d.ts +3 -0
- package/lib/hooks/setup-mixpanel.d.ts +3 -0
- package/lib/hooks/setup-prepare-maildev-while-in-test-env.d.ts +1 -1
- package/lib/hooks/setup-queues.d.ts +1 -1
- package/lib/hooks/sqlite-reset-database.d.ts +2 -0
- package/lib/hooks/traders/pods-process-worker.d.ts +5 -0
- package/lib/sentry.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +56 -56
- package/lib/services/exchanges/download/download.schema.d.ts +60 -60
- package/lib/services/exchanges/download/webhooks/webhooks.schema.d.ts +84 -84
- package/lib/services/exchanges/exchanges.schema.d.ts +198 -198
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +110 -110
- package/lib/services/homepage/homepage.class.d.ts +15 -0
- package/lib/services/homepage/homepage.d.ts +10 -0
- package/lib/services/homepage/homepage.schema.d.ts +237 -0
- package/lib/services/homepage/homepage.shared.d.ts +4 -0
- package/lib/services/homepage/homepage.shared.js +6 -0
- package/lib/services/markets/markets.schema.d.ts +112 -112
- package/lib/services/messages/messages.schema.d.ts +136 -64
- package/lib/services/strategies/ai/ai.schema.d.ts +32 -32
- package/lib/services/strategies/backtest/backtest.schema.d.ts +394 -84
- package/lib/services/strategies/backtest/results/results.class.d.ts +1 -1
- package/lib/services/strategies/backtest/results/results.schema.d.ts +454 -156
- package/lib/services/strategies/hyperopt/hyperopt.class.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +375 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.d.ts +13 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.js +13 -0
- package/lib/services/strategies/indicators/indicators.schema.d.ts +40 -40
- package/lib/services/strategies/strategies.schema.d.ts +329 -247
- package/lib/services/strategies/templates/templates.schema.d.ts +41 -41
- package/lib/services/stripe/charges/charges.d.ts +1 -1
- package/lib/services/stripe/customers/customers.d.ts +1 -1
- package/lib/services/stripe/customers/paymentintent/paymentintent.d.ts +1 -1
- package/lib/services/stripe/customers/paymentmethods/paymentmethods.d.ts +1 -1
- package/lib/services/stripe/products/products.d.ts +1 -1
- package/lib/services/traders/pods/api/api.class.d.ts +1 -1
- package/lib/services/traders/pods/api/api.schema.d.ts +519 -519
- package/lib/services/traders/pods/events/events.schema.d.ts +375 -111
- package/lib/services/traders/pods/pods.schema.d.ts +384 -384
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +76 -76
- package/lib/services/traders/traders.class.d.ts +7 -1
- package/lib/services/traders/traders.d.ts +1 -0
- package/lib/services/traders/traders.schema.d.ts +852 -380
- package/lib/services/users/users.class.d.ts +1 -1
- package/lib/services/users/users.schema.d.ts +158 -52
- package/package.json +24 -16
- package/lib/hooks/bootstrap-user-telegram.d.ts +0 -2
|
@@ -12,6 +12,7 @@ export declare const messagesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
12
12
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
13
13
|
user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
14
14
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
15
|
+
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
15
16
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
16
17
|
name: import("@feathersjs/typebox").TString<string>;
|
|
17
18
|
password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -33,6 +34,11 @@ export declare const messagesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
33
34
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
34
35
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
35
36
|
}>>;
|
|
37
|
+
push: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
38
|
+
web: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
39
|
+
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
40
|
+
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
41
|
+
}>>;
|
|
36
42
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
37
43
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
38
44
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -50,12 +56,15 @@ export declare const messagesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
50
56
|
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
51
57
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
52
58
|
onboarding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TLiteral<"strategies">, import("@feathersjs/typebox").TLiteral<"traders">, import("@feathersjs/typebox").TLiteral<"telegram">]>>;
|
|
59
|
+
contactId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
53
60
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
54
61
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
55
62
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
56
63
|
}>>>;
|
|
57
64
|
avatar: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
58
65
|
read: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
66
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
67
|
+
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
59
68
|
}>;
|
|
60
69
|
export type Messages = Static<typeof messagesSchema>;
|
|
61
70
|
export declare const messagesValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
@@ -63,8 +72,14 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
63
72
|
time?: number | undefined;
|
|
64
73
|
user?: {
|
|
65
74
|
password?: string | undefined;
|
|
75
|
+
push?: {
|
|
76
|
+
web?: string | undefined;
|
|
77
|
+
ios?: string | undefined;
|
|
78
|
+
android?: string | undefined;
|
|
79
|
+
} | undefined;
|
|
66
80
|
country?: string | undefined;
|
|
67
81
|
stripe?: any;
|
|
82
|
+
googleId?: any;
|
|
68
83
|
avatar?: string | undefined;
|
|
69
84
|
title?: string | null | undefined;
|
|
70
85
|
company?: string | null | undefined;
|
|
@@ -95,6 +110,7 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
95
110
|
resetAttempts?: number | null | undefined;
|
|
96
111
|
anon?: boolean | undefined;
|
|
97
112
|
onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
|
|
113
|
+
contactId?: string | undefined;
|
|
98
114
|
createdAt?: any;
|
|
99
115
|
updatedAt?: any;
|
|
100
116
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -108,6 +124,8 @@ export declare const messagesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
108
124
|
image?: string | undefined;
|
|
109
125
|
link?: string | undefined;
|
|
110
126
|
avatar?: string | undefined;
|
|
127
|
+
createdAt?: any;
|
|
128
|
+
updatedAt?: any;
|
|
111
129
|
userId?: string | undefined;
|
|
112
130
|
useRouter?: boolean | undefined;
|
|
113
131
|
read?: boolean | undefined;
|
|
@@ -119,8 +137,14 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
119
137
|
time?: number | undefined;
|
|
120
138
|
user?: {
|
|
121
139
|
password?: string | undefined;
|
|
140
|
+
push?: {
|
|
141
|
+
web?: string | undefined;
|
|
142
|
+
ios?: string | undefined;
|
|
143
|
+
android?: string | undefined;
|
|
144
|
+
} | undefined;
|
|
122
145
|
country?: string | undefined;
|
|
123
146
|
stripe?: any;
|
|
147
|
+
googleId?: any;
|
|
124
148
|
avatar?: string | undefined;
|
|
125
149
|
title?: string | null | undefined;
|
|
126
150
|
company?: string | null | undefined;
|
|
@@ -151,6 +175,7 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
151
175
|
resetAttempts?: number | null | undefined;
|
|
152
176
|
anon?: boolean | undefined;
|
|
153
177
|
onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
|
|
178
|
+
contactId?: string | undefined;
|
|
154
179
|
createdAt?: any;
|
|
155
180
|
updatedAt?: any;
|
|
156
181
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -164,6 +189,8 @@ export declare const messagesExternalResolver: import("@feathersjs/schema").Reso
|
|
|
164
189
|
image?: string | undefined;
|
|
165
190
|
link?: string | undefined;
|
|
166
191
|
avatar?: string | undefined;
|
|
192
|
+
createdAt?: any;
|
|
193
|
+
updatedAt?: any;
|
|
167
194
|
userId?: string | undefined;
|
|
168
195
|
useRouter?: boolean | undefined;
|
|
169
196
|
read?: boolean | undefined;
|
|
@@ -182,6 +209,7 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
|
|
|
182
209
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
183
210
|
user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
184
211
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
212
|
+
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
185
213
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
186
214
|
name: import("@feathersjs/typebox").TString<string>;
|
|
187
215
|
password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -203,6 +231,11 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
|
|
|
203
231
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
204
232
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
205
233
|
}>>;
|
|
234
|
+
push: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
235
|
+
web: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
236
|
+
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
237
|
+
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
238
|
+
}>>;
|
|
206
239
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
207
240
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
208
241
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -220,12 +253,15 @@ export declare const messagesDataSchema: import("@feathersjs/typebox").TPick<imp
|
|
|
220
253
|
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
221
254
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
222
255
|
onboarding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TLiteral<"strategies">, import("@feathersjs/typebox").TLiteral<"traders">, import("@feathersjs/typebox").TLiteral<"telegram">]>>;
|
|
256
|
+
contactId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
223
257
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
224
258
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
225
259
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
226
260
|
}>>>;
|
|
227
261
|
avatar: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
228
262
|
read: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
263
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
264
|
+
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
229
265
|
}>, ["title", "description", "image", "link", "useRouter"]>;
|
|
230
266
|
export type MessagesData = Static<typeof messagesDataSchema>;
|
|
231
267
|
export declare const messagesDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
@@ -233,8 +269,14 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
233
269
|
time?: number | undefined;
|
|
234
270
|
user?: {
|
|
235
271
|
password?: string | undefined;
|
|
272
|
+
push?: {
|
|
273
|
+
web?: string | undefined;
|
|
274
|
+
ios?: string | undefined;
|
|
275
|
+
android?: string | undefined;
|
|
276
|
+
} | undefined;
|
|
236
277
|
country?: string | undefined;
|
|
237
278
|
stripe?: any;
|
|
279
|
+
googleId?: any;
|
|
238
280
|
avatar?: string | undefined;
|
|
239
281
|
title?: string | null | undefined;
|
|
240
282
|
company?: string | null | undefined;
|
|
@@ -265,6 +307,7 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
265
307
|
resetAttempts?: number | null | undefined;
|
|
266
308
|
anon?: boolean | undefined;
|
|
267
309
|
onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
|
|
310
|
+
contactId?: string | undefined;
|
|
268
311
|
createdAt?: any;
|
|
269
312
|
updatedAt?: any;
|
|
270
313
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -278,6 +321,8 @@ export declare const messagesDataResolver: import("@feathersjs/schema").Resolver
|
|
|
278
321
|
image?: string | undefined;
|
|
279
322
|
link?: string | undefined;
|
|
280
323
|
avatar?: string | undefined;
|
|
324
|
+
createdAt?: any;
|
|
325
|
+
updatedAt?: any;
|
|
281
326
|
userId?: string | undefined;
|
|
282
327
|
useRouter?: boolean | undefined;
|
|
283
328
|
read?: boolean | undefined;
|
|
@@ -296,6 +341,7 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
296
341
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
297
342
|
user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
298
343
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
344
|
+
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
299
345
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
300
346
|
name: import("@feathersjs/typebox").TString<string>;
|
|
301
347
|
password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -317,6 +363,11 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
317
363
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
318
364
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
319
365
|
}>>;
|
|
366
|
+
push: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
367
|
+
web: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
368
|
+
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
369
|
+
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
370
|
+
}>>;
|
|
320
371
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
321
372
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
322
373
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -334,12 +385,15 @@ export declare const messagesPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
334
385
|
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
335
386
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
336
387
|
onboarding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TLiteral<"strategies">, import("@feathersjs/typebox").TLiteral<"traders">, import("@feathersjs/typebox").TLiteral<"telegram">]>>;
|
|
388
|
+
contactId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
337
389
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
338
390
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
339
391
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
340
392
|
}>>>;
|
|
341
393
|
avatar: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
342
394
|
read: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
395
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
396
|
+
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
343
397
|
}>>;
|
|
344
398
|
export type MessagesPatch = Static<typeof messagesPatchSchema>;
|
|
345
399
|
export declare const messagesPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
@@ -347,8 +401,14 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
347
401
|
time?: number | undefined;
|
|
348
402
|
user?: {
|
|
349
403
|
password?: string | undefined;
|
|
404
|
+
push?: {
|
|
405
|
+
web?: string | undefined;
|
|
406
|
+
ios?: string | undefined;
|
|
407
|
+
android?: string | undefined;
|
|
408
|
+
} | undefined;
|
|
350
409
|
country?: string | undefined;
|
|
351
410
|
stripe?: any;
|
|
411
|
+
googleId?: any;
|
|
352
412
|
avatar?: string | undefined;
|
|
353
413
|
title?: string | null | undefined;
|
|
354
414
|
company?: string | null | undefined;
|
|
@@ -379,6 +439,7 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
379
439
|
resetAttempts?: number | null | undefined;
|
|
380
440
|
anon?: boolean | undefined;
|
|
381
441
|
onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
|
|
442
|
+
contactId?: string | undefined;
|
|
382
443
|
createdAt?: any;
|
|
383
444
|
updatedAt?: any;
|
|
384
445
|
skipEmailVerification?: boolean | undefined;
|
|
@@ -392,6 +453,8 @@ export declare const messagesPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
392
453
|
image?: string | undefined;
|
|
393
454
|
link?: string | undefined;
|
|
394
455
|
avatar?: string | undefined;
|
|
456
|
+
createdAt?: any;
|
|
457
|
+
updatedAt?: any;
|
|
395
458
|
userId?: string | undefined;
|
|
396
459
|
useRouter?: boolean | undefined;
|
|
397
460
|
read?: boolean | undefined;
|
|
@@ -410,6 +473,7 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
410
473
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
411
474
|
user: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
|
|
412
475
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
476
|
+
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
413
477
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
414
478
|
name: import("@feathersjs/typebox").TString<string>;
|
|
415
479
|
password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -431,6 +495,11 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
431
495
|
theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
432
496
|
layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
433
497
|
}>>;
|
|
498
|
+
push: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
499
|
+
web: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
500
|
+
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
501
|
+
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
502
|
+
}>>;
|
|
434
503
|
displayCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"AUD">, import("@feathersjs/typebox").TLiteral<"BRL">, import("@feathersjs/typebox").TLiteral<"CAD">, import("@feathersjs/typebox").TLiteral<"CHF">, import("@feathersjs/typebox").TLiteral<"CLP">, import("@feathersjs/typebox").TLiteral<"CNY">, import("@feathersjs/typebox").TLiteral<"CZK">, import("@feathersjs/typebox").TLiteral<"DKK">, import("@feathersjs/typebox").TLiteral<"EUR">, import("@feathersjs/typebox").TLiteral<"GBP">, import("@feathersjs/typebox").TLiteral<"HKD">, import("@feathersjs/typebox").TLiteral<"HUF">, import("@feathersjs/typebox").TLiteral<"IDR">, import("@feathersjs/typebox").TLiteral<"ILS">, import("@feathersjs/typebox").TLiteral<"INR">, import("@feathersjs/typebox").TLiteral<"JPY">, import("@feathersjs/typebox").TLiteral<"KRW">, import("@feathersjs/typebox").TLiteral<"MXN">, import("@feathersjs/typebox").TLiteral<"MYR">, import("@feathersjs/typebox").TLiteral<"NOK">, import("@feathersjs/typebox").TLiteral<"NZD">, import("@feathersjs/typebox").TLiteral<"PHP">, import("@feathersjs/typebox").TLiteral<"PKR">, import("@feathersjs/typebox").TLiteral<"PLN">, import("@feathersjs/typebox").TLiteral<"RUB">, import("@feathersjs/typebox").TLiteral<"SEK">, import("@feathersjs/typebox").TLiteral<"SGD">, import("@feathersjs/typebox").TLiteral<"THB">, import("@feathersjs/typebox").TLiteral<"TRY">, import("@feathersjs/typebox").TLiteral<"TWD">, import("@feathersjs/typebox").TLiteral<"ZAR">, import("@feathersjs/typebox").TLiteral<"USD">]>>;
|
|
435
504
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
436
505
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -448,12 +517,15 @@ export declare const messagesQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
448
517
|
anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
449
518
|
bootstrap: import("@feathersjs/typebox").TAny;
|
|
450
519
|
onboarding: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TLiteral<"strategies">, import("@feathersjs/typebox").TLiteral<"traders">, import("@feathersjs/typebox").TLiteral<"telegram">]>>;
|
|
520
|
+
contactId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
451
521
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
452
522
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
453
523
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
454
524
|
}>>>;
|
|
455
525
|
avatar: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
456
526
|
read: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
527
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
528
|
+
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
457
529
|
}>, ["_id", "userId", "read", "time"]>;
|
|
458
530
|
export declare const messagesQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
459
531
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
@@ -472,8 +544,8 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
472
544
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
473
545
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
474
546
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
475
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
476
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
547
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
548
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
477
549
|
}>, import("@feathersjs/typebox").TObject<{
|
|
478
550
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
479
551
|
} | undefined>]>>]>>;
|
|
@@ -483,8 +555,8 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
483
555
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
484
556
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
485
557
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
486
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
487
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
558
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
559
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
488
560
|
}>, import("@feathersjs/typebox").TObject<{
|
|
489
561
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
490
562
|
} | undefined>]>>]>>;
|
|
@@ -494,8 +566,8 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
494
566
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
495
567
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
496
568
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
497
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
498
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
569
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
570
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
499
571
|
}>, import("@feathersjs/typebox").TObject<{
|
|
500
572
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
501
573
|
} | undefined>]>>]>>;
|
|
@@ -505,8 +577,8 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
505
577
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
506
578
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
507
579
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
508
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
509
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
580
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
581
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
510
582
|
}>, import("@feathersjs/typebox").TObject<{
|
|
511
583
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
512
584
|
} | undefined>]>>]>>;
|
|
@@ -518,8 +590,8 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
518
590
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
519
591
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
520
592
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
521
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
522
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
593
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
594
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
523
595
|
}>, import("@feathersjs/typebox").TObject<{
|
|
524
596
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
525
597
|
} | undefined>]>>]>>;
|
|
@@ -529,8 +601,8 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
529
601
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
530
602
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
531
603
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
532
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
533
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
604
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
605
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
534
606
|
}>, import("@feathersjs/typebox").TObject<{
|
|
535
607
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
536
608
|
} | undefined>]>>]>>;
|
|
@@ -540,8 +612,8 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
540
612
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
541
613
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
542
614
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
543
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
544
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
615
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
616
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
545
617
|
}>, import("@feathersjs/typebox").TObject<{
|
|
546
618
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
547
619
|
} | undefined>]>>]>>;
|
|
@@ -551,8 +623,8 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
551
623
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
552
624
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
553
625
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
554
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
555
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
626
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
627
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
556
628
|
}>, import("@feathersjs/typebox").TObject<{
|
|
557
629
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
558
630
|
} | undefined>]>>]>>;
|
|
@@ -565,8 +637,8 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
565
637
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
566
638
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
567
639
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
568
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
569
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
640
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
641
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
570
642
|
}>, import("@feathersjs/typebox").TObject<{
|
|
571
643
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
572
644
|
} | undefined>]>>]>>;
|
|
@@ -576,8 +648,8 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
576
648
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
577
649
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
578
650
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
579
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
580
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
651
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
652
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
581
653
|
}>, import("@feathersjs/typebox").TObject<{
|
|
582
654
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
583
655
|
} | undefined>]>>]>>;
|
|
@@ -587,8 +659,8 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
587
659
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
588
660
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
589
661
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
590
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
591
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
662
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
663
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
592
664
|
}>, import("@feathersjs/typebox").TObject<{
|
|
593
665
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
594
666
|
} | undefined>]>>]>>;
|
|
@@ -598,8 +670,8 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
598
670
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
599
671
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
600
672
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
601
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
602
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
673
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
674
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
603
675
|
}>, import("@feathersjs/typebox").TObject<{
|
|
604
676
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
605
677
|
} | undefined>]>>]>>;
|
|
@@ -611,8 +683,8 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
611
683
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
612
684
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
613
685
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
614
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
615
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
686
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
687
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
616
688
|
}>, import("@feathersjs/typebox").TObject<{
|
|
617
689
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
618
690
|
} | undefined>]>>]>>;
|
|
@@ -622,8 +694,8 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
622
694
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
623
695
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
624
696
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
625
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
626
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
697
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
698
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
627
699
|
}>, import("@feathersjs/typebox").TObject<{
|
|
628
700
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
629
701
|
} | undefined>]>>]>>;
|
|
@@ -633,8 +705,8 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
633
705
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
634
706
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
635
707
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
636
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
637
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
708
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
709
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>>;
|
|
638
710
|
}>, import("@feathersjs/typebox").TObject<{
|
|
639
711
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
640
712
|
} | undefined>]>>]>>;
|
|
@@ -644,8 +716,8 @@ export declare const messagesQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
644
716
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
645
717
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
646
718
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
647
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
648
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
719
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
720
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>>;
|
|
649
721
|
}>, import("@feathersjs/typebox").TObject<{
|
|
650
722
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
651
723
|
} | undefined>]>>]>>;
|
|
@@ -669,8 +741,8 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
669
741
|
$lt?: number | undefined;
|
|
670
742
|
$lte?: number | undefined;
|
|
671
743
|
$ne?: number | undefined;
|
|
672
|
-
$in: number[];
|
|
673
|
-
$nin: number[];
|
|
744
|
+
$in: number | number[];
|
|
745
|
+
$nin: number | number[];
|
|
674
746
|
} & {}> | undefined;
|
|
675
747
|
_id?: string | {} | Partial<{
|
|
676
748
|
$gt: string | {};
|
|
@@ -678,8 +750,8 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
678
750
|
$lt: string | {};
|
|
679
751
|
$lte: string | {};
|
|
680
752
|
$ne: string | {};
|
|
681
|
-
$in: (string | {})[];
|
|
682
|
-
$nin: (string | {})[];
|
|
753
|
+
$in: string | {} | (string | {})[];
|
|
754
|
+
$nin: string | {} | (string | {})[];
|
|
683
755
|
} & {}> | undefined;
|
|
684
756
|
userId?: string | Partial<{
|
|
685
757
|
$gt?: string | undefined;
|
|
@@ -687,8 +759,8 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
687
759
|
$lt?: string | undefined;
|
|
688
760
|
$lte?: string | undefined;
|
|
689
761
|
$ne?: string | undefined;
|
|
690
|
-
$in: string[];
|
|
691
|
-
$nin: string[];
|
|
762
|
+
$in: string | string[];
|
|
763
|
+
$nin: string | string[];
|
|
692
764
|
} & {}> | undefined;
|
|
693
765
|
read?: boolean | Partial<{
|
|
694
766
|
$gt?: boolean | undefined;
|
|
@@ -696,8 +768,8 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
696
768
|
$lt?: boolean | undefined;
|
|
697
769
|
$lte?: boolean | undefined;
|
|
698
770
|
$ne?: boolean | undefined;
|
|
699
|
-
$in: boolean[];
|
|
700
|
-
$nin: boolean[];
|
|
771
|
+
$in: boolean | boolean[];
|
|
772
|
+
$nin: boolean | boolean[];
|
|
701
773
|
} & {}> | undefined;
|
|
702
774
|
} | {
|
|
703
775
|
$or: {
|
|
@@ -707,8 +779,8 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
707
779
|
$lt?: number | undefined;
|
|
708
780
|
$lte?: number | undefined;
|
|
709
781
|
$ne?: number | undefined;
|
|
710
|
-
$in: number[];
|
|
711
|
-
$nin: number[];
|
|
782
|
+
$in: number | number[];
|
|
783
|
+
$nin: number | number[];
|
|
712
784
|
} & {}> | undefined;
|
|
713
785
|
_id?: string | {} | Partial<{
|
|
714
786
|
$gt: string | {};
|
|
@@ -716,8 +788,8 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
716
788
|
$lt: string | {};
|
|
717
789
|
$lte: string | {};
|
|
718
790
|
$ne: string | {};
|
|
719
|
-
$in: (string | {})[];
|
|
720
|
-
$nin: (string | {})[];
|
|
791
|
+
$in: string | {} | (string | {})[];
|
|
792
|
+
$nin: string | {} | (string | {})[];
|
|
721
793
|
} & {}> | undefined;
|
|
722
794
|
userId?: string | Partial<{
|
|
723
795
|
$gt?: string | undefined;
|
|
@@ -725,8 +797,8 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
725
797
|
$lt?: string | undefined;
|
|
726
798
|
$lte?: string | undefined;
|
|
727
799
|
$ne?: string | undefined;
|
|
728
|
-
$in: string[];
|
|
729
|
-
$nin: string[];
|
|
800
|
+
$in: string | string[];
|
|
801
|
+
$nin: string | string[];
|
|
730
802
|
} & {}> | undefined;
|
|
731
803
|
read?: boolean | Partial<{
|
|
732
804
|
$gt?: boolean | undefined;
|
|
@@ -734,8 +806,8 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
734
806
|
$lt?: boolean | undefined;
|
|
735
807
|
$lte?: boolean | undefined;
|
|
736
808
|
$ne?: boolean | undefined;
|
|
737
|
-
$in: boolean[];
|
|
738
|
-
$nin: boolean[];
|
|
809
|
+
$in: boolean | boolean[];
|
|
810
|
+
$nin: boolean | boolean[];
|
|
739
811
|
} & {}> | undefined;
|
|
740
812
|
}[];
|
|
741
813
|
})[];
|
|
@@ -746,8 +818,8 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
746
818
|
$lt?: number | undefined;
|
|
747
819
|
$lte?: number | undefined;
|
|
748
820
|
$ne?: number | undefined;
|
|
749
|
-
$in: number[];
|
|
750
|
-
$nin: number[];
|
|
821
|
+
$in: number | number[];
|
|
822
|
+
$nin: number | number[];
|
|
751
823
|
} & {}> | undefined;
|
|
752
824
|
_id?: string | {} | Partial<{
|
|
753
825
|
$gt: string | {};
|
|
@@ -755,8 +827,8 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
755
827
|
$lt: string | {};
|
|
756
828
|
$lte: string | {};
|
|
757
829
|
$ne: string | {};
|
|
758
|
-
$in: (string | {})[];
|
|
759
|
-
$nin: (string | {})[];
|
|
830
|
+
$in: string | {} | (string | {})[];
|
|
831
|
+
$nin: string | {} | (string | {})[];
|
|
760
832
|
} & {}> | undefined;
|
|
761
833
|
userId?: string | Partial<{
|
|
762
834
|
$gt?: string | undefined;
|
|
@@ -764,8 +836,8 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
764
836
|
$lt?: string | undefined;
|
|
765
837
|
$lte?: string | undefined;
|
|
766
838
|
$ne?: string | undefined;
|
|
767
|
-
$in: string[];
|
|
768
|
-
$nin: string[];
|
|
839
|
+
$in: string | string[];
|
|
840
|
+
$nin: string | string[];
|
|
769
841
|
} & {}> | undefined;
|
|
770
842
|
read?: boolean | Partial<{
|
|
771
843
|
$gt?: boolean | undefined;
|
|
@@ -773,8 +845,8 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
773
845
|
$lt?: boolean | undefined;
|
|
774
846
|
$lte?: boolean | undefined;
|
|
775
847
|
$ne?: boolean | undefined;
|
|
776
|
-
$in: boolean[];
|
|
777
|
-
$nin: boolean[];
|
|
848
|
+
$in: boolean | boolean[];
|
|
849
|
+
$nin: boolean | boolean[];
|
|
778
850
|
} & {}> | undefined;
|
|
779
851
|
}[];
|
|
780
852
|
}> & {
|
|
@@ -784,8 +856,8 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
784
856
|
$lt?: number | undefined;
|
|
785
857
|
$lte?: number | undefined;
|
|
786
858
|
$ne?: number | undefined;
|
|
787
|
-
$in: number[];
|
|
788
|
-
$nin: number[];
|
|
859
|
+
$in: number | number[];
|
|
860
|
+
$nin: number | number[];
|
|
789
861
|
} & {}> | undefined;
|
|
790
862
|
_id?: string | {} | Partial<{
|
|
791
863
|
$gt: string | {};
|
|
@@ -793,8 +865,8 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
793
865
|
$lt: string | {};
|
|
794
866
|
$lte: string | {};
|
|
795
867
|
$ne: string | {};
|
|
796
|
-
$in: (string | {})[];
|
|
797
|
-
$nin: (string | {})[];
|
|
868
|
+
$in: string | {} | (string | {})[];
|
|
869
|
+
$nin: string | {} | (string | {})[];
|
|
798
870
|
} & {}> | undefined;
|
|
799
871
|
userId?: string | Partial<{
|
|
800
872
|
$gt?: string | undefined;
|
|
@@ -802,8 +874,8 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
802
874
|
$lt?: string | undefined;
|
|
803
875
|
$lte?: string | undefined;
|
|
804
876
|
$ne?: string | undefined;
|
|
805
|
-
$in: string[];
|
|
806
|
-
$nin: string[];
|
|
877
|
+
$in: string | string[];
|
|
878
|
+
$nin: string | string[];
|
|
807
879
|
} & {}> | undefined;
|
|
808
880
|
read?: boolean | Partial<{
|
|
809
881
|
$gt?: boolean | undefined;
|
|
@@ -811,7 +883,7 @@ export declare const messagesQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
811
883
|
$lt?: boolean | undefined;
|
|
812
884
|
$lte?: boolean | undefined;
|
|
813
885
|
$ne?: boolean | undefined;
|
|
814
|
-
$in: boolean[];
|
|
815
|
-
$nin: boolean[];
|
|
886
|
+
$in: boolean | boolean[];
|
|
887
|
+
$nin: boolean | boolean[];
|
|
816
888
|
} & {}> | undefined;
|
|
817
889
|
} & {}, HookContext<MessagesService<import("./messages.class").MessagesParams>>>;
|