@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.
Files changed (78) hide show
  1. package/lib/client.d.ts +38 -36
  2. package/lib/client.js +6 -12
  3. package/lib/configuration.d.ts +20 -1
  4. package/lib/firebase-push-notification.d.ts +1 -0
  5. package/lib/helpers/backtest.helper.d.ts +53 -4
  6. package/lib/helpers/ccxt.helper.d.ts +75 -0
  7. package/lib/helpers/deployments.helper.d.ts +72 -0
  8. package/lib/helpers/funnel.helper.d.ts +17 -0
  9. package/lib/helpers/hyperopt.helper.d.ts +14 -0
  10. package/lib/helpers/push-notification.helper.d.ts +7 -0
  11. package/lib/helpers/queue.helper.d.ts +8 -0
  12. package/lib/helpers/sqlite3.helper.d.ts +6 -0
  13. package/lib/helpers/sqs.helper.d.ts +7 -0
  14. package/lib/helpers/subscription.helper.d.ts +48 -0
  15. package/lib/helpers/telegram.helper.d.ts +26 -1
  16. package/lib/helpers/trader.helper.d.ts +26 -0
  17. package/lib/hooks/application/setup-config-preparation.d.ts +1 -1
  18. package/lib/hooks/application/setup-info.d.ts +1 -1
  19. package/lib/hooks/application/setup-load-indicators.d.ts +1 -1
  20. package/lib/hooks/application/setup-load-strategy-templates.d.ts +1 -1
  21. package/lib/hooks/aws-prepare-batch-job.d.ts +2 -0
  22. package/lib/hooks/backtest-copy-candles-from-user-data.d.ts +1 -1
  23. package/lib/hooks/{backtest-generate-and-start.d.ts → backtest-generate-and-queue.d.ts} +1 -1
  24. package/lib/hooks/backtest-generate-config.d.ts +6 -0
  25. package/lib/hooks/backtest-generate-exchange-config.d.ts +6 -0
  26. package/lib/hooks/backtest-get-results.d.ts +12 -0
  27. package/lib/hooks/file-generate-config-hyperopt.d.ts +2 -0
  28. package/lib/hooks/setup-ensure-image.d.ts +3 -0
  29. package/lib/hooks/setup-firebase.d.ts +2 -0
  30. package/lib/hooks/setup-homepage.d.ts +3 -0
  31. package/lib/hooks/setup-mautic.d.ts +3 -0
  32. package/lib/hooks/setup-mixpanel.d.ts +3 -0
  33. package/lib/hooks/setup-prepare-maildev-while-in-test-env.d.ts +1 -1
  34. package/lib/hooks/setup-queues.d.ts +1 -1
  35. package/lib/hooks/sqlite-reset-database.d.ts +2 -0
  36. package/lib/hooks/traders/pods-process-worker.d.ts +5 -0
  37. package/lib/sentry.d.ts +2 -0
  38. package/lib/services/exchanges/balance/balance.schema.d.ts +56 -56
  39. package/lib/services/exchanges/download/download.schema.d.ts +60 -60
  40. package/lib/services/exchanges/download/webhooks/webhooks.schema.d.ts +84 -84
  41. package/lib/services/exchanges/exchanges.schema.d.ts +198 -198
  42. package/lib/services/exchanges/ticker/ticker.schema.d.ts +110 -110
  43. package/lib/services/homepage/homepage.class.d.ts +15 -0
  44. package/lib/services/homepage/homepage.d.ts +10 -0
  45. package/lib/services/homepage/homepage.schema.d.ts +237 -0
  46. package/lib/services/homepage/homepage.shared.d.ts +4 -0
  47. package/lib/services/homepage/homepage.shared.js +6 -0
  48. package/lib/services/markets/markets.schema.d.ts +112 -112
  49. package/lib/services/messages/messages.schema.d.ts +136 -64
  50. package/lib/services/strategies/ai/ai.schema.d.ts +32 -32
  51. package/lib/services/strategies/backtest/backtest.schema.d.ts +394 -84
  52. package/lib/services/strategies/backtest/results/results.class.d.ts +1 -1
  53. package/lib/services/strategies/backtest/results/results.schema.d.ts +454 -156
  54. package/lib/services/strategies/hyperopt/hyperopt.class.d.ts +11 -0
  55. package/lib/services/strategies/hyperopt/hyperopt.d.ts +11 -0
  56. package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +375 -0
  57. package/lib/services/strategies/hyperopt/hyperopt.shared.d.ts +13 -0
  58. package/lib/services/strategies/hyperopt/hyperopt.shared.js +13 -0
  59. package/lib/services/strategies/indicators/indicators.schema.d.ts +40 -40
  60. package/lib/services/strategies/strategies.schema.d.ts +329 -247
  61. package/lib/services/strategies/templates/templates.schema.d.ts +41 -41
  62. package/lib/services/stripe/charges/charges.d.ts +1 -1
  63. package/lib/services/stripe/customers/customers.d.ts +1 -1
  64. package/lib/services/stripe/customers/paymentintent/paymentintent.d.ts +1 -1
  65. package/lib/services/stripe/customers/paymentmethods/paymentmethods.d.ts +1 -1
  66. package/lib/services/stripe/products/products.d.ts +1 -1
  67. package/lib/services/traders/pods/api/api.class.d.ts +1 -1
  68. package/lib/services/traders/pods/api/api.schema.d.ts +519 -519
  69. package/lib/services/traders/pods/events/events.schema.d.ts +375 -111
  70. package/lib/services/traders/pods/pods.schema.d.ts +384 -384
  71. package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +76 -76
  72. package/lib/services/traders/traders.class.d.ts +7 -1
  73. package/lib/services/traders/traders.d.ts +1 -0
  74. package/lib/services/traders/traders.schema.d.ts +852 -380
  75. package/lib/services/users/users.class.d.ts +1 -1
  76. package/lib/services/users/users.schema.d.ts +158 -52
  77. package/package.json +24 -16
  78. package/lib/hooks/bootstrap-user-telegram.d.ts +0 -2
@@ -1,6 +1,6 @@
1
1
  import type { Params } from '@feathersjs/feathers';
2
+ import type { MongoDBAdapterOptions, MongoDBAdapterParams } from '@feathersjs/mongodb';
2
3
  import { MongoDBService } from '@feathersjs/mongodb';
3
- import type { MongoDBAdapterParams, MongoDBAdapterOptions } from '@feathersjs/mongodb';
4
4
  import type { Application } from '../../declarations';
5
5
  import type { User, UserData, UserPatch, UserQuery } from './users.schema';
6
6
  export type { User, UserData, UserPatch, UserQuery };
@@ -3,6 +3,7 @@ import type { HookContext } from '../../declarations';
3
3
  import type { UserService } from './users.class';
4
4
  export declare const userSchema: import("@feathersjs/typebox").TObject<{
5
5
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
6
+ googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
6
7
  email: import("@feathersjs/typebox").TString<"email">;
7
8
  name: import("@feathersjs/typebox").TString<string>;
8
9
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -24,6 +25,11 @@ export declare const userSchema: import("@feathersjs/typebox").TObject<{
24
25
  theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
25
26
  layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
26
27
  }>>;
28
+ push: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
29
+ web: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
30
+ ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
31
+ android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
32
+ }>>;
27
33
  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">]>>;
28
34
  timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
29
35
  subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -41,6 +47,7 @@ export declare const userSchema: import("@feathersjs/typebox").TObject<{
41
47
  anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
42
48
  bootstrap: import("@feathersjs/typebox").TAny;
43
49
  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">]>>;
50
+ contactId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
44
51
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
45
52
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
46
53
  skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
@@ -49,8 +56,14 @@ export type User = Static<typeof userSchema>;
49
56
  export declare const userValidator: import("@feathersjs/schema").Validator<any, any>;
50
57
  export declare const userResolver: import("@feathersjs/schema").Resolver<{
51
58
  password?: string | undefined;
59
+ push?: {
60
+ web?: string | undefined;
61
+ ios?: string | undefined;
62
+ android?: string | undefined;
63
+ } | undefined;
52
64
  country?: string | undefined;
53
65
  stripe?: any;
66
+ googleId?: any;
54
67
  avatar?: string | undefined;
55
68
  title?: string | null | undefined;
56
69
  company?: string | null | undefined;
@@ -81,6 +94,7 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
81
94
  resetAttempts?: number | null | undefined;
82
95
  anon?: boolean | undefined;
83
96
  onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
97
+ contactId?: string | undefined;
84
98
  createdAt?: any;
85
99
  updatedAt?: any;
86
100
  skipEmailVerification?: boolean | undefined;
@@ -93,8 +107,14 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
93
107
  }, HookContext<UserService<import("./users.class").UserParams>>>;
94
108
  export declare const userExternalResolver: import("@feathersjs/schema").Resolver<{
95
109
  password?: string | undefined;
110
+ push?: {
111
+ web?: string | undefined;
112
+ ios?: string | undefined;
113
+ android?: string | undefined;
114
+ } | undefined;
96
115
  country?: string | undefined;
97
116
  stripe?: any;
117
+ googleId?: any;
98
118
  avatar?: string | undefined;
99
119
  title?: string | null | undefined;
100
120
  company?: string | null | undefined;
@@ -125,6 +145,7 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
125
145
  resetAttempts?: number | null | undefined;
126
146
  anon?: boolean | undefined;
127
147
  onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
148
+ contactId?: string | undefined;
128
149
  createdAt?: any;
129
150
  updatedAt?: any;
130
151
  skipEmailVerification?: boolean | undefined;
@@ -137,6 +158,7 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
137
158
  }, HookContext<UserService<import("./users.class").UserParams>>>;
138
159
  export declare const userDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
139
160
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
161
+ googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
140
162
  email: import("@feathersjs/typebox").TString<"email">;
141
163
  name: import("@feathersjs/typebox").TString<string>;
142
164
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -158,6 +180,11 @@ export declare const userDataSchema: import("@feathersjs/typebox").TPick<import(
158
180
  theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
159
181
  layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
160
182
  }>>;
183
+ push: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
184
+ web: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
185
+ ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
186
+ android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
187
+ }>>;
161
188
  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">]>>;
162
189
  timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
163
190
  subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -175,16 +202,23 @@ export declare const userDataSchema: import("@feathersjs/typebox").TPick<import(
175
202
  anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
176
203
  bootstrap: import("@feathersjs/typebox").TAny;
177
204
  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">]>>;
205
+ contactId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
178
206
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
179
207
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
180
208
  skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
181
- }>, ["email", "password", "name", "agreements", "createdAt", "skipEmailVerification"]>;
209
+ }>, ["email", "password", "name", "avatar", "googleId", "agreements", "createdAt", "skipEmailVerification"]>;
182
210
  export type UserData = Static<typeof userDataSchema>;
183
211
  export declare const userDataValidator: import("@feathersjs/schema").Validator<any, any>;
184
212
  export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
185
213
  password?: string | undefined;
214
+ push?: {
215
+ web?: string | undefined;
216
+ ios?: string | undefined;
217
+ android?: string | undefined;
218
+ } | undefined;
186
219
  country?: string | undefined;
187
220
  stripe?: any;
221
+ googleId?: any;
188
222
  avatar?: string | undefined;
189
223
  title?: string | null | undefined;
190
224
  company?: string | null | undefined;
@@ -215,6 +249,7 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
215
249
  resetAttempts?: number | null | undefined;
216
250
  anon?: boolean | undefined;
217
251
  onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
252
+ contactId?: string | undefined;
218
253
  createdAt?: any;
219
254
  updatedAt?: any;
220
255
  skipEmailVerification?: boolean | undefined;
@@ -227,6 +262,7 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
227
262
  }, HookContext<UserService<import("./users.class").UserParams>>>;
228
263
  export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
229
264
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
265
+ googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
230
266
  email: import("@feathersjs/typebox").TString<"email">;
231
267
  name: import("@feathersjs/typebox").TString<string>;
232
268
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -248,6 +284,11 @@ export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<imp
248
284
  theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
249
285
  layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
250
286
  }>>;
287
+ push: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
288
+ web: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
289
+ ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
290
+ android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
291
+ }>>;
251
292
  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">]>>;
252
293
  timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
253
294
  subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -265,6 +306,7 @@ export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<imp
265
306
  anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
266
307
  bootstrap: import("@feathersjs/typebox").TAny;
267
308
  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">]>>;
309
+ contactId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
268
310
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
269
311
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
270
312
  skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
@@ -273,8 +315,14 @@ export type UserPatch = Static<typeof userPatchSchema>;
273
315
  export declare const userPatchValidator: import("@feathersjs/schema").Validator<any, any>;
274
316
  export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
275
317
  password?: string | undefined;
318
+ push?: {
319
+ web?: string | undefined;
320
+ ios?: string | undefined;
321
+ android?: string | undefined;
322
+ } | undefined;
276
323
  country?: string | undefined;
277
324
  stripe?: any;
325
+ googleId?: any;
278
326
  avatar?: string | undefined;
279
327
  title?: string | null | undefined;
280
328
  company?: string | null | undefined;
@@ -305,6 +353,7 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
305
353
  resetAttempts?: number | null | undefined;
306
354
  anon?: boolean | undefined;
307
355
  onboarding?: "strategies" | "telegram" | "traders" | null | undefined;
356
+ contactId?: string | undefined;
308
357
  createdAt?: any;
309
358
  updatedAt?: any;
310
359
  skipEmailVerification?: boolean | undefined;
@@ -317,6 +366,7 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
317
366
  }, HookContext<UserService<import("./users.class").UserParams>>>;
318
367
  export declare const userQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
319
368
  _id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
369
+ googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
320
370
  email: import("@feathersjs/typebox").TString<"email">;
321
371
  name: import("@feathersjs/typebox").TString<string>;
322
372
  password: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -338,6 +388,11 @@ export declare const userQueryProperties: import("@feathersjs/typebox").TPick<im
338
388
  theme: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
339
389
  layout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
340
390
  }>>;
391
+ push: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
392
+ web: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
393
+ ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
394
+ android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
395
+ }>>;
341
396
  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">]>>;
342
397
  timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
343
398
  subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
@@ -355,19 +410,21 @@ export declare const userQueryProperties: import("@feathersjs/typebox").TPick<im
355
410
  anon: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
356
411
  bootstrap: import("@feathersjs/typebox").TAny;
357
412
  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">]>>;
413
+ contactId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
358
414
  createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
359
415
  updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
360
416
  skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
361
- }>, ["_id", "email", "verifyToken"]>;
417
+ }>, ["_id", "email", "verifyToken", "googleId"]>;
362
418
  export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
363
419
  $limit: import("@feathersjs/typebox").TNumber;
364
420
  $skip: import("@feathersjs/typebox").TNumber;
365
421
  $sort: import("@feathersjs/typebox").TObject<{
366
422
  email: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
367
423
  _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
424
+ googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
368
425
  verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
369
426
  }>;
370
- $select: import("@feathersjs/typebox").TUnsafe<("email" | "_id" | "verifyToken")[]>;
427
+ $select: import("@feathersjs/typebox").TUnsafe<("email" | "_id" | "googleId" | "verifyToken")[]>;
371
428
  $and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
372
429
  email: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<"email">, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
373
430
  $gt: import("@feathersjs/typebox").TString<"email">;
@@ -375,8 +432,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
375
432
  $lt: import("@feathersjs/typebox").TString<"email">;
376
433
  $lte: import("@feathersjs/typebox").TString<"email">;
377
434
  $ne: import("@feathersjs/typebox").TString<"email">;
378
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
379
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
435
+ $in: import("@feathersjs/typebox").TString<"email"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
436
+ $nin: import("@feathersjs/typebox").TString<"email"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
380
437
  }>, import("@feathersjs/typebox").TObject<{
381
438
  [key: string]: import("@feathersjs/typebox").TSchema;
382
439
  } | undefined>]>>]>>;
@@ -386,8 +443,19 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
386
443
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
387
444
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
388
445
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
389
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
390
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
446
+ $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, 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").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
447
+ $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, 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").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
448
+ }>, import("@feathersjs/typebox").TObject<{
449
+ [key: string]: import("@feathersjs/typebox").TSchema;
450
+ } | undefined>]>>]>>;
451
+ googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
452
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
453
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
454
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
455
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
456
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
457
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
458
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
391
459
  }>, import("@feathersjs/typebox").TObject<{
392
460
  [key: string]: import("@feathersjs/typebox").TSchema;
393
461
  } | undefined>]>>]>>;
@@ -397,8 +465,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
397
465
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
398
466
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
399
467
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
400
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
401
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
468
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
469
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
402
470
  }>, import("@feathersjs/typebox").TObject<{
403
471
  [key: string]: import("@feathersjs/typebox").TSchema;
404
472
  } | undefined>]>>]>>;
@@ -410,8 +478,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
410
478
  $lt: import("@feathersjs/typebox").TString<"email">;
411
479
  $lte: import("@feathersjs/typebox").TString<"email">;
412
480
  $ne: import("@feathersjs/typebox").TString<"email">;
413
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
414
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
481
+ $in: import("@feathersjs/typebox").TString<"email"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
482
+ $nin: import("@feathersjs/typebox").TString<"email"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
415
483
  }>, import("@feathersjs/typebox").TObject<{
416
484
  [key: string]: import("@feathersjs/typebox").TSchema;
417
485
  } | undefined>]>>]>>;
@@ -421,8 +489,19 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
421
489
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
422
490
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
423
491
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
424
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
425
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
492
+ $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, 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").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
493
+ $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, 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").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
494
+ }>, import("@feathersjs/typebox").TObject<{
495
+ [key: string]: import("@feathersjs/typebox").TSchema;
496
+ } | undefined>]>>]>>;
497
+ googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
498
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
499
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
500
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
501
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
502
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
503
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
504
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
426
505
  }>, import("@feathersjs/typebox").TObject<{
427
506
  [key: string]: import("@feathersjs/typebox").TSchema;
428
507
  } | undefined>]>>]>>;
@@ -432,8 +511,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
432
511
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
433
512
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
434
513
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
435
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
436
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
514
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
515
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
437
516
  }>, import("@feathersjs/typebox").TObject<{
438
517
  [key: string]: import("@feathersjs/typebox").TSchema;
439
518
  } | undefined>]>>]>>;
@@ -446,8 +525,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
446
525
  $lt: import("@feathersjs/typebox").TString<"email">;
447
526
  $lte: import("@feathersjs/typebox").TString<"email">;
448
527
  $ne: import("@feathersjs/typebox").TString<"email">;
449
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
450
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
528
+ $in: import("@feathersjs/typebox").TString<"email"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
529
+ $nin: import("@feathersjs/typebox").TString<"email"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
451
530
  }>, import("@feathersjs/typebox").TObject<{
452
531
  [key: string]: import("@feathersjs/typebox").TSchema;
453
532
  } | undefined>]>>]>>;
@@ -457,8 +536,19 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
457
536
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
458
537
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
459
538
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
460
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
461
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
539
+ $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, 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").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
540
+ $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, 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").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
541
+ }>, import("@feathersjs/typebox").TObject<{
542
+ [key: string]: import("@feathersjs/typebox").TSchema;
543
+ } | undefined>]>>]>>;
544
+ googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
545
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
546
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
547
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
548
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
549
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
550
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
551
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
462
552
  }>, import("@feathersjs/typebox").TObject<{
463
553
  [key: string]: import("@feathersjs/typebox").TSchema;
464
554
  } | undefined>]>>]>>;
@@ -468,8 +558,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
468
558
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
469
559
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
470
560
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
471
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
472
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
561
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
562
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
473
563
  }>, import("@feathersjs/typebox").TObject<{
474
564
  [key: string]: import("@feathersjs/typebox").TSchema;
475
565
  } | undefined>]>>]>>;
@@ -481,8 +571,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
481
571
  $lt: import("@feathersjs/typebox").TString<"email">;
482
572
  $lte: import("@feathersjs/typebox").TString<"email">;
483
573
  $ne: import("@feathersjs/typebox").TString<"email">;
484
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
485
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
574
+ $in: import("@feathersjs/typebox").TString<"email"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
575
+ $nin: import("@feathersjs/typebox").TString<"email"> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<"email">>;
486
576
  }>, import("@feathersjs/typebox").TObject<{
487
577
  [key: string]: import("@feathersjs/typebox").TSchema;
488
578
  } | undefined>]>>]>>;
@@ -492,8 +582,19 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
492
582
  $lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
493
583
  $lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
494
584
  $ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
495
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
496
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
585
+ $in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, 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").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
586
+ $nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, 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").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
587
+ }>, import("@feathersjs/typebox").TObject<{
588
+ [key: string]: import("@feathersjs/typebox").TSchema;
589
+ } | undefined>]>>]>>;
590
+ googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
591
+ $gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
592
+ $gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
593
+ $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
594
+ $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
595
+ $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
596
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
597
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
497
598
  }>, import("@feathersjs/typebox").TObject<{
498
599
  [key: string]: import("@feathersjs/typebox").TSchema;
499
600
  } | undefined>]>>]>>;
@@ -503,8 +604,8 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
503
604
  $lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
504
605
  $lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
505
606
  $ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
506
- $in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
507
- $nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
607
+ $in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
608
+ $nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>>;
508
609
  }>, import("@feathersjs/typebox").TObject<{
509
610
  [key: string]: import("@feathersjs/typebox").TSchema;
510
611
  } | undefined>]>>]>>;
@@ -517,9 +618,10 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
517
618
  $sort: {
518
619
  email?: number | undefined;
519
620
  _id?: number | undefined;
621
+ googleId?: number | undefined;
520
622
  verifyToken?: number | undefined;
521
623
  };
522
- $select: ("email" | "_id" | "verifyToken")[];
624
+ $select: ("email" | "_id" | "googleId" | "verifyToken")[];
523
625
  $and: ({
524
626
  email?: string | Partial<{
525
627
  $gt: string;
@@ -527,8 +629,8 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
527
629
  $lt: string;
528
630
  $lte: string;
529
631
  $ne: string;
530
- $in: string[];
531
- $nin: string[];
632
+ $in: string | string[];
633
+ $nin: string | string[];
532
634
  } & {}> | undefined;
533
635
  _id?: string | {} | Partial<{
534
636
  $gt: string | {};
@@ -536,17 +638,18 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
536
638
  $lt: string | {};
537
639
  $lte: string | {};
538
640
  $ne: string | {};
539
- $in: (string | {})[];
540
- $nin: (string | {})[];
641
+ $in: string | {} | (string | {})[];
642
+ $nin: string | {} | (string | {})[];
541
643
  } & {}> | undefined;
644
+ googleId?: any;
542
645
  verifyToken?: string | Partial<{
543
646
  $gt?: string | null | undefined;
544
647
  $gte?: string | null | undefined;
545
648
  $lt?: string | null | undefined;
546
649
  $lte?: string | null | undefined;
547
650
  $ne?: string | null | undefined;
548
- $in: (string | null)[];
549
- $nin: (string | null)[];
651
+ $in: string | (string | null)[] | null;
652
+ $nin: string | (string | null)[] | null;
550
653
  } & {}> | null | undefined;
551
654
  } | {
552
655
  $or: {
@@ -556,8 +659,8 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
556
659
  $lt: string;
557
660
  $lte: string;
558
661
  $ne: string;
559
- $in: string[];
560
- $nin: string[];
662
+ $in: string | string[];
663
+ $nin: string | string[];
561
664
  } & {}> | undefined;
562
665
  _id?: string | {} | Partial<{
563
666
  $gt: string | {};
@@ -565,17 +668,18 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
565
668
  $lt: string | {};
566
669
  $lte: string | {};
567
670
  $ne: string | {};
568
- $in: (string | {})[];
569
- $nin: (string | {})[];
671
+ $in: string | {} | (string | {})[];
672
+ $nin: string | {} | (string | {})[];
570
673
  } & {}> | undefined;
674
+ googleId?: any;
571
675
  verifyToken?: string | Partial<{
572
676
  $gt?: string | null | undefined;
573
677
  $gte?: string | null | undefined;
574
678
  $lt?: string | null | undefined;
575
679
  $lte?: string | null | undefined;
576
680
  $ne?: string | null | undefined;
577
- $in: (string | null)[];
578
- $nin: (string | null)[];
681
+ $in: string | (string | null)[] | null;
682
+ $nin: string | (string | null)[] | null;
579
683
  } & {}> | null | undefined;
580
684
  }[];
581
685
  })[];
@@ -586,8 +690,8 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
586
690
  $lt: string;
587
691
  $lte: string;
588
692
  $ne: string;
589
- $in: string[];
590
- $nin: string[];
693
+ $in: string | string[];
694
+ $nin: string | string[];
591
695
  } & {}> | undefined;
592
696
  _id?: string | {} | Partial<{
593
697
  $gt: string | {};
@@ -595,17 +699,18 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
595
699
  $lt: string | {};
596
700
  $lte: string | {};
597
701
  $ne: string | {};
598
- $in: (string | {})[];
599
- $nin: (string | {})[];
702
+ $in: string | {} | (string | {})[];
703
+ $nin: string | {} | (string | {})[];
600
704
  } & {}> | undefined;
705
+ googleId?: any;
601
706
  verifyToken?: string | Partial<{
602
707
  $gt?: string | null | undefined;
603
708
  $gte?: string | null | undefined;
604
709
  $lt?: string | null | undefined;
605
710
  $lte?: string | null | undefined;
606
711
  $ne?: string | null | undefined;
607
- $in: (string | null)[];
608
- $nin: (string | null)[];
712
+ $in: string | (string | null)[] | null;
713
+ $nin: string | (string | null)[] | null;
609
714
  } & {}> | null | undefined;
610
715
  }[];
611
716
  }> & {
@@ -615,8 +720,8 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
615
720
  $lt: string;
616
721
  $lte: string;
617
722
  $ne: string;
618
- $in: string[];
619
- $nin: string[];
723
+ $in: string | string[];
724
+ $nin: string | string[];
620
725
  } & {}> | undefined;
621
726
  _id?: string | {} | Partial<{
622
727
  $gt: string | {};
@@ -624,16 +729,17 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
624
729
  $lt: string | {};
625
730
  $lte: string | {};
626
731
  $ne: string | {};
627
- $in: (string | {})[];
628
- $nin: (string | {})[];
732
+ $in: string | {} | (string | {})[];
733
+ $nin: string | {} | (string | {})[];
629
734
  } & {}> | undefined;
735
+ googleId?: any;
630
736
  verifyToken?: string | Partial<{
631
737
  $gt?: string | null | undefined;
632
738
  $gte?: string | null | undefined;
633
739
  $lt?: string | null | undefined;
634
740
  $lte?: string | null | undefined;
635
741
  $ne?: string | null | undefined;
636
- $in: (string | null)[];
637
- $nin: (string | null)[];
742
+ $in: string | (string | null)[] | null;
743
+ $nin: string | (string | null)[] | null;
638
744
  } & {}> | null | undefined;
639
745
  } & {}, HookContext<UserService<import("./users.class").UserParams>>>;