@cryptorobot.ai/client 0.0.32 → 0.0.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/app.d.ts +1 -0
- package/lib/client.d.ts +2 -0
- package/lib/client.js +7 -5
- package/lib/configuration.d.ts +41 -1
- package/lib/helpers/app.helper.d.ts +1 -0
- package/lib/helpers/ccxt.helper.d.ts +2 -0
- package/lib/helpers/deployments.helper.d.ts +1 -1
- package/lib/helpers/funnel.helper.d.ts +2 -0
- package/lib/helpers/push-notification.helper.d.ts +1 -0
- package/lib/hooks/application/setup-ccxt-load-marketplaces-mocked.d.ts +3 -0
- package/lib/hooks/application/setup-fs.d.ts +3 -0
- package/lib/hooks/revenuecat-is-subscription-active.d.ts +2 -0
- package/lib/services/auth-management/auth-management.shared.js +1 -12
- package/lib/services/config/config.class.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.class.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.schema.d.ts +32 -24
- package/lib/services/exchanges/download/download.schema.d.ts +32 -24
- package/lib/services/exchanges/exchanges.d.ts +1 -0
- package/lib/services/exchanges/exchanges.schema.d.ts +85 -77
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +32 -24
- package/lib/services/index.d.ts +1 -1
- package/lib/services/messages/messages.schema.d.ts +80 -32
- package/lib/services/strategies/backtest/backtest.d.ts +1 -0
- package/lib/services/strategies/backtest/backtest.schema.d.ts +133 -197
- package/lib/services/strategies/backtest/results/results.schema.d.ts +4 -4
- package/lib/services/strategies/indicators/indicators.schema.d.ts +61 -61
- package/lib/services/strategies/strategies.d.ts +1 -0
- package/lib/services/strategies/strategies.schema.d.ts +36 -20
- package/lib/services/strategies/templates/templates.schema.d.ts +9 -1
- package/lib/services/stripe/webhooks/webhooks.class.d.ts +26 -0
- package/lib/services/stripe/webhooks/webhooks.d.ts +9 -0
- package/lib/services/stripe/webhooks/webhooks.shared.d.ts +13 -0
- package/lib/services/stripe/webhooks/webhooks.shared.js +13 -0
- package/lib/services/traders/pods/api/api.schema.d.ts +116 -76
- package/lib/services/traders/pods/pods.schema.d.ts +92 -60
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +217 -3
- package/lib/services/traders/traders.schema.d.ts +141 -133
- package/lib/services/users/users.d.ts +1 -0
- package/lib/services/users/users.helper.d.ts +1 -1
- package/lib/services/users/users.schema.d.ts +236 -88
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import type { Static } from '@feathersjs/typebox';
|
|
|
2
2
|
import type { HookContext } from '../../declarations';
|
|
3
3
|
import type { UserService } from './users.class';
|
|
4
4
|
export declare const userSchema: import("@feathersjs/typebox").TObject<{
|
|
5
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]
|
|
5
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
6
6
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
7
7
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
8
8
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -15,10 +15,11 @@ export declare const userSchema: import("@feathersjs/typebox").TObject<{
|
|
|
15
15
|
language: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
16
16
|
about: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
17
17
|
profile: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"conservative">, import("@feathersjs/typebox").TLiteral<"moderate">, import("@feathersjs/typebox").TLiteral<"aggressive">]>>;
|
|
18
|
-
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">]>>;
|
|
18
|
+
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">, import("@feathersjs/typebox").TLiteral<"revenuecat">]>>;
|
|
19
19
|
yearly: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
20
20
|
paymentIntent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
21
21
|
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
22
|
+
'stripe.id': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
22
23
|
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
23
24
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
24
25
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -35,11 +36,16 @@ export declare const userSchema: import("@feathersjs/typebox").TObject<{
|
|
|
35
36
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
36
37
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
37
38
|
}>>;
|
|
39
|
+
trial: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
40
|
+
active: import("@feathersjs/typebox").TBoolean;
|
|
41
|
+
expires: import("@feathersjs/typebox").TString<string>;
|
|
42
|
+
}>>;
|
|
38
43
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
44
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
39
45
|
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">]>>;
|
|
40
46
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
41
47
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
42
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
48
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
43
49
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
44
50
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
45
51
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -68,7 +74,13 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
68
74
|
android?: string | undefined;
|
|
69
75
|
} | undefined;
|
|
70
76
|
country?: string | undefined;
|
|
77
|
+
subscription?: any;
|
|
78
|
+
trial?: {
|
|
79
|
+
active: boolean;
|
|
80
|
+
expires: string;
|
|
81
|
+
} | undefined;
|
|
71
82
|
stripe?: any;
|
|
83
|
+
_id?: string | {} | undefined;
|
|
72
84
|
googleId?: any;
|
|
73
85
|
appleId?: any;
|
|
74
86
|
avatar?: string | undefined;
|
|
@@ -77,11 +89,11 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
77
89
|
language?: string | undefined;
|
|
78
90
|
about?: string | null | undefined;
|
|
79
91
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
80
|
-
payment?: "stripe" | undefined;
|
|
92
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
81
93
|
yearly?: boolean | undefined;
|
|
82
94
|
paymentIntent?: any;
|
|
95
|
+
'stripe.id'?: any;
|
|
83
96
|
customerInfo?: any;
|
|
84
|
-
subscription?: any;
|
|
85
97
|
plan?: string | undefined;
|
|
86
98
|
appearance?: {
|
|
87
99
|
scheme?: string | undefined;
|
|
@@ -92,9 +104,11 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
92
104
|
hyperopt?: any;
|
|
93
105
|
} | undefined;
|
|
94
106
|
$inc?: any;
|
|
107
|
+
$aggregate?: any;
|
|
95
108
|
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
96
109
|
timezone?: string | undefined;
|
|
97
110
|
subscribe?: string | undefined;
|
|
111
|
+
isVerified?: boolean | undefined;
|
|
98
112
|
verifyToken?: string | null | undefined;
|
|
99
113
|
verifyTokenShort?: string | null | undefined;
|
|
100
114
|
verifyShortToken?: string | null | undefined;
|
|
@@ -105,15 +119,13 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
105
119
|
resetExpires?: number | null | undefined;
|
|
106
120
|
resetAttempts?: number | null | undefined;
|
|
107
121
|
anon?: boolean | undefined;
|
|
108
|
-
onboarding?: "
|
|
122
|
+
onboarding?: "traders" | "strategies" | "telegram" | null | undefined;
|
|
109
123
|
contactId?: string | undefined;
|
|
110
124
|
createdAt?: any;
|
|
111
125
|
updatedAt?: any;
|
|
112
126
|
skipEmailVerification?: boolean | undefined;
|
|
113
127
|
email: string;
|
|
114
128
|
name: string;
|
|
115
|
-
_id: string | {};
|
|
116
|
-
isVerified: boolean;
|
|
117
129
|
agreements: boolean;
|
|
118
130
|
bootstrap: any;
|
|
119
131
|
}, HookContext<UserService<import("./users.class").UserParams>>>;
|
|
@@ -125,7 +137,13 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
125
137
|
android?: string | undefined;
|
|
126
138
|
} | undefined;
|
|
127
139
|
country?: string | undefined;
|
|
140
|
+
subscription?: any;
|
|
141
|
+
trial?: {
|
|
142
|
+
active: boolean;
|
|
143
|
+
expires: string;
|
|
144
|
+
} | undefined;
|
|
128
145
|
stripe?: any;
|
|
146
|
+
_id?: string | {} | undefined;
|
|
129
147
|
googleId?: any;
|
|
130
148
|
appleId?: any;
|
|
131
149
|
avatar?: string | undefined;
|
|
@@ -134,11 +152,11 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
134
152
|
language?: string | undefined;
|
|
135
153
|
about?: string | null | undefined;
|
|
136
154
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
137
|
-
payment?: "stripe" | undefined;
|
|
155
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
138
156
|
yearly?: boolean | undefined;
|
|
139
157
|
paymentIntent?: any;
|
|
158
|
+
'stripe.id'?: any;
|
|
140
159
|
customerInfo?: any;
|
|
141
|
-
subscription?: any;
|
|
142
160
|
plan?: string | undefined;
|
|
143
161
|
appearance?: {
|
|
144
162
|
scheme?: string | undefined;
|
|
@@ -149,9 +167,11 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
149
167
|
hyperopt?: any;
|
|
150
168
|
} | undefined;
|
|
151
169
|
$inc?: any;
|
|
170
|
+
$aggregate?: any;
|
|
152
171
|
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
153
172
|
timezone?: string | undefined;
|
|
154
173
|
subscribe?: string | undefined;
|
|
174
|
+
isVerified?: boolean | undefined;
|
|
155
175
|
verifyToken?: string | null | undefined;
|
|
156
176
|
verifyTokenShort?: string | null | undefined;
|
|
157
177
|
verifyShortToken?: string | null | undefined;
|
|
@@ -162,20 +182,18 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
162
182
|
resetExpires?: number | null | undefined;
|
|
163
183
|
resetAttempts?: number | null | undefined;
|
|
164
184
|
anon?: boolean | undefined;
|
|
165
|
-
onboarding?: "
|
|
185
|
+
onboarding?: "traders" | "strategies" | "telegram" | null | undefined;
|
|
166
186
|
contactId?: string | undefined;
|
|
167
187
|
createdAt?: any;
|
|
168
188
|
updatedAt?: any;
|
|
169
189
|
skipEmailVerification?: boolean | undefined;
|
|
170
190
|
email: string;
|
|
171
191
|
name: string;
|
|
172
|
-
_id: string | {};
|
|
173
|
-
isVerified: boolean;
|
|
174
192
|
agreements: boolean;
|
|
175
193
|
bootstrap: any;
|
|
176
194
|
}, HookContext<UserService<import("./users.class").UserParams>>>;
|
|
177
195
|
export declare const userDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
178
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]
|
|
196
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
179
197
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
180
198
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
181
199
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -188,10 +206,11 @@ export declare const userDataSchema: import("@feathersjs/typebox").TPick<import(
|
|
|
188
206
|
language: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
189
207
|
about: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
190
208
|
profile: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"conservative">, import("@feathersjs/typebox").TLiteral<"moderate">, import("@feathersjs/typebox").TLiteral<"aggressive">]>>;
|
|
191
|
-
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">]>>;
|
|
209
|
+
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">, import("@feathersjs/typebox").TLiteral<"revenuecat">]>>;
|
|
192
210
|
yearly: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
193
211
|
paymentIntent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
194
212
|
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
213
|
+
'stripe.id': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
195
214
|
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
196
215
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
197
216
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -208,11 +227,16 @@ export declare const userDataSchema: import("@feathersjs/typebox").TPick<import(
|
|
|
208
227
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
209
228
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
210
229
|
}>>;
|
|
230
|
+
trial: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
231
|
+
active: import("@feathersjs/typebox").TBoolean;
|
|
232
|
+
expires: import("@feathersjs/typebox").TString<string>;
|
|
233
|
+
}>>;
|
|
211
234
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
235
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
212
236
|
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">]>>;
|
|
213
237
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
214
238
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
215
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
239
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
216
240
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
217
241
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
218
242
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -230,7 +254,7 @@ export declare const userDataSchema: import("@feathersjs/typebox").TPick<import(
|
|
|
230
254
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
231
255
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
232
256
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
233
|
-
}>, ["email", "password", "name", "avatar", "googleId", "appleId", "agreements", "createdAt", "skipEmailVerification"]>;
|
|
257
|
+
}>, ["_id", "email", "password", "name", "avatar", "googleId", "appleId", "agreements", "createdAt", "skipEmailVerification"]>;
|
|
234
258
|
export type UserData = Static<typeof userDataSchema>;
|
|
235
259
|
export declare const userDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
236
260
|
export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
@@ -241,7 +265,13 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
241
265
|
android?: string | undefined;
|
|
242
266
|
} | undefined;
|
|
243
267
|
country?: string | undefined;
|
|
268
|
+
subscription?: any;
|
|
269
|
+
trial?: {
|
|
270
|
+
active: boolean;
|
|
271
|
+
expires: string;
|
|
272
|
+
} | undefined;
|
|
244
273
|
stripe?: any;
|
|
274
|
+
_id?: string | {} | undefined;
|
|
245
275
|
googleId?: any;
|
|
246
276
|
appleId?: any;
|
|
247
277
|
avatar?: string | undefined;
|
|
@@ -250,11 +280,11 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
250
280
|
language?: string | undefined;
|
|
251
281
|
about?: string | null | undefined;
|
|
252
282
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
253
|
-
payment?: "stripe" | undefined;
|
|
283
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
254
284
|
yearly?: boolean | undefined;
|
|
255
285
|
paymentIntent?: any;
|
|
286
|
+
'stripe.id'?: any;
|
|
256
287
|
customerInfo?: any;
|
|
257
|
-
subscription?: any;
|
|
258
288
|
plan?: string | undefined;
|
|
259
289
|
appearance?: {
|
|
260
290
|
scheme?: string | undefined;
|
|
@@ -265,9 +295,11 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
265
295
|
hyperopt?: any;
|
|
266
296
|
} | undefined;
|
|
267
297
|
$inc?: any;
|
|
298
|
+
$aggregate?: any;
|
|
268
299
|
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
269
300
|
timezone?: string | undefined;
|
|
270
301
|
subscribe?: string | undefined;
|
|
302
|
+
isVerified?: boolean | undefined;
|
|
271
303
|
verifyToken?: string | null | undefined;
|
|
272
304
|
verifyTokenShort?: string | null | undefined;
|
|
273
305
|
verifyShortToken?: string | null | undefined;
|
|
@@ -278,20 +310,18 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
278
310
|
resetExpires?: number | null | undefined;
|
|
279
311
|
resetAttempts?: number | null | undefined;
|
|
280
312
|
anon?: boolean | undefined;
|
|
281
|
-
onboarding?: "
|
|
313
|
+
onboarding?: "traders" | "strategies" | "telegram" | null | undefined;
|
|
282
314
|
contactId?: string | undefined;
|
|
283
315
|
createdAt?: any;
|
|
284
316
|
updatedAt?: any;
|
|
285
317
|
skipEmailVerification?: boolean | undefined;
|
|
286
318
|
email: string;
|
|
287
319
|
name: string;
|
|
288
|
-
_id: string | {};
|
|
289
|
-
isVerified: boolean;
|
|
290
320
|
agreements: boolean;
|
|
291
321
|
bootstrap: any;
|
|
292
322
|
}, HookContext<UserService<import("./users.class").UserParams>>>;
|
|
293
323
|
export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
294
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]
|
|
324
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
295
325
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
296
326
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
297
327
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -304,10 +334,11 @@ export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<imp
|
|
|
304
334
|
language: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
305
335
|
about: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
306
336
|
profile: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"conservative">, import("@feathersjs/typebox").TLiteral<"moderate">, import("@feathersjs/typebox").TLiteral<"aggressive">]>>;
|
|
307
|
-
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">]>>;
|
|
337
|
+
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">, import("@feathersjs/typebox").TLiteral<"revenuecat">]>>;
|
|
308
338
|
yearly: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
309
339
|
paymentIntent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
310
340
|
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
341
|
+
'stripe.id': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
311
342
|
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
312
343
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
313
344
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -324,11 +355,16 @@ export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<imp
|
|
|
324
355
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
325
356
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
326
357
|
}>>;
|
|
358
|
+
trial: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
359
|
+
active: import("@feathersjs/typebox").TBoolean;
|
|
360
|
+
expires: import("@feathersjs/typebox").TString<string>;
|
|
361
|
+
}>>;
|
|
327
362
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
363
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
328
364
|
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">]>>;
|
|
329
365
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
330
366
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
331
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
367
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
332
368
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
333
369
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
334
370
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -357,7 +393,13 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
357
393
|
android?: string | undefined;
|
|
358
394
|
} | undefined;
|
|
359
395
|
country?: string | undefined;
|
|
396
|
+
subscription?: any;
|
|
397
|
+
trial?: {
|
|
398
|
+
active: boolean;
|
|
399
|
+
expires: string;
|
|
400
|
+
} | undefined;
|
|
360
401
|
stripe?: any;
|
|
402
|
+
_id?: string | {} | undefined;
|
|
361
403
|
googleId?: any;
|
|
362
404
|
appleId?: any;
|
|
363
405
|
avatar?: string | undefined;
|
|
@@ -366,11 +408,11 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
366
408
|
language?: string | undefined;
|
|
367
409
|
about?: string | null | undefined;
|
|
368
410
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
369
|
-
payment?: "stripe" | undefined;
|
|
411
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
370
412
|
yearly?: boolean | undefined;
|
|
371
413
|
paymentIntent?: any;
|
|
414
|
+
'stripe.id'?: any;
|
|
372
415
|
customerInfo?: any;
|
|
373
|
-
subscription?: any;
|
|
374
416
|
plan?: string | undefined;
|
|
375
417
|
appearance?: {
|
|
376
418
|
scheme?: string | undefined;
|
|
@@ -381,9 +423,11 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
381
423
|
hyperopt?: any;
|
|
382
424
|
} | undefined;
|
|
383
425
|
$inc?: any;
|
|
426
|
+
$aggregate?: any;
|
|
384
427
|
displayCurrency?: "AUD" | "BRL" | "CAD" | "CHF" | "CLP" | "CNY" | "CZK" | "DKK" | "EUR" | "GBP" | "HKD" | "HUF" | "IDR" | "ILS" | "INR" | "JPY" | "KRW" | "MXN" | "MYR" | "NOK" | "NZD" | "PHP" | "PKR" | "PLN" | "RUB" | "SEK" | "SGD" | "THB" | "TRY" | "TWD" | "ZAR" | "USD" | undefined;
|
|
385
428
|
timezone?: string | undefined;
|
|
386
429
|
subscribe?: string | undefined;
|
|
430
|
+
isVerified?: boolean | undefined;
|
|
387
431
|
verifyToken?: string | null | undefined;
|
|
388
432
|
verifyTokenShort?: string | null | undefined;
|
|
389
433
|
verifyShortToken?: string | null | undefined;
|
|
@@ -394,20 +438,18 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
394
438
|
resetExpires?: number | null | undefined;
|
|
395
439
|
resetAttempts?: number | null | undefined;
|
|
396
440
|
anon?: boolean | undefined;
|
|
397
|
-
onboarding?: "
|
|
441
|
+
onboarding?: "traders" | "strategies" | "telegram" | null | undefined;
|
|
398
442
|
contactId?: string | undefined;
|
|
399
443
|
createdAt?: any;
|
|
400
444
|
updatedAt?: any;
|
|
401
445
|
skipEmailVerification?: boolean | undefined;
|
|
402
446
|
email: string;
|
|
403
447
|
name: string;
|
|
404
|
-
_id: string | {};
|
|
405
|
-
isVerified: boolean;
|
|
406
448
|
agreements: boolean;
|
|
407
449
|
bootstrap: any;
|
|
408
450
|
}, HookContext<UserService<import("./users.class").UserParams>>>;
|
|
409
451
|
export declare const userQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
410
|
-
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]
|
|
452
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
411
453
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
412
454
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
413
455
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -420,10 +462,11 @@ export declare const userQueryProperties: import("@feathersjs/typebox").TPick<im
|
|
|
420
462
|
language: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
421
463
|
about: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
422
464
|
profile: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"conservative">, import("@feathersjs/typebox").TLiteral<"moderate">, import("@feathersjs/typebox").TLiteral<"aggressive">]>>;
|
|
423
|
-
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">]>>;
|
|
465
|
+
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">, import("@feathersjs/typebox").TLiteral<"revenuecat">]>>;
|
|
424
466
|
yearly: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
425
467
|
paymentIntent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
426
468
|
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
469
|
+
'stripe.id': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
427
470
|
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
428
471
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
429
472
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -440,11 +483,16 @@ export declare const userQueryProperties: import("@feathersjs/typebox").TPick<im
|
|
|
440
483
|
ios: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
441
484
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
442
485
|
}>>;
|
|
486
|
+
trial: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
487
|
+
active: import("@feathersjs/typebox").TBoolean;
|
|
488
|
+
expires: import("@feathersjs/typebox").TString<string>;
|
|
489
|
+
}>>;
|
|
443
490
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
491
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
444
492
|
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">]>>;
|
|
445
493
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
446
494
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
447
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
495
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
448
496
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
449
497
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
450
498
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -462,18 +510,20 @@ export declare const userQueryProperties: import("@feathersjs/typebox").TPick<im
|
|
|
462
510
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
463
511
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
464
512
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
465
|
-
}>, ["_id", "email", "verifyToken", "googleId", "appleId"]>;
|
|
513
|
+
}>, ["_id", "email", "verifyToken", "googleId", "appleId", "stripe", "stripe.id"]>;
|
|
466
514
|
export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
467
515
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
468
516
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
469
517
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
470
518
|
email: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
519
|
+
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
471
520
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
472
521
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
473
522
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
523
|
+
"stripe.id": import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
474
524
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
475
525
|
}>;
|
|
476
|
-
$select: import("@feathersjs/typebox").TUnsafe<("email" | "_id" | "googleId" | "appleId" | "verifyToken")[]>;
|
|
526
|
+
$select: import("@feathersjs/typebox").TUnsafe<("email" | "stripe" | "_id" | "googleId" | "appleId" | "stripe.id" | "verifyToken")[]>;
|
|
477
527
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
478
528
|
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<{
|
|
479
529
|
$gt: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -486,14 +536,25 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
486
536
|
}>, import("@feathersjs/typebox").TObject<{
|
|
487
537
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
488
538
|
} | undefined>]>>]>>;
|
|
489
|
-
|
|
490
|
-
$gt: import("@feathersjs/typebox").
|
|
491
|
-
$gte: import("@feathersjs/typebox").
|
|
492
|
-
$lt: import("@feathersjs/typebox").
|
|
493
|
-
$lte: import("@feathersjs/typebox").
|
|
494
|
-
$ne: import("@feathersjs/typebox").
|
|
495
|
-
$in: import("@feathersjs/typebox").
|
|
496
|
-
$nin: import("@feathersjs/typebox").
|
|
539
|
+
stripe: 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<{
|
|
540
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
541
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
542
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
543
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
544
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
545
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
546
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
547
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
548
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
549
|
+
} | undefined>]>>]>>;
|
|
550
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
551
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
552
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
553
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
554
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
555
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
556
|
+
$in: import("@feathersjs/typebox").TOptional<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").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
|
|
557
|
+
$nin: import("@feathersjs/typebox").TOptional<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").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
|
|
497
558
|
}>, import("@feathersjs/typebox").TObject<{
|
|
498
559
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
499
560
|
} | undefined>]>>]>>;
|
|
@@ -519,6 +580,17 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
519
580
|
}>, import("@feathersjs/typebox").TObject<{
|
|
520
581
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
521
582
|
} | undefined>]>>]>>;
|
|
583
|
+
"stripe.id": 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<{
|
|
584
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
585
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
586
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
587
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
588
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
589
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
590
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
591
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
592
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
593
|
+
} | undefined>]>>]>>;
|
|
522
594
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
523
595
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
524
596
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -543,14 +615,25 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
543
615
|
}>, import("@feathersjs/typebox").TObject<{
|
|
544
616
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
545
617
|
} | undefined>]>>]>>;
|
|
546
|
-
|
|
547
|
-
$gt: import("@feathersjs/typebox").
|
|
548
|
-
$gte: import("@feathersjs/typebox").
|
|
549
|
-
$lt: import("@feathersjs/typebox").
|
|
550
|
-
$lte: import("@feathersjs/typebox").
|
|
551
|
-
$ne: import("@feathersjs/typebox").
|
|
552
|
-
$in: import("@feathersjs/typebox").
|
|
553
|
-
$nin: import("@feathersjs/typebox").
|
|
618
|
+
stripe: 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<{
|
|
619
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
620
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
621
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
622
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
623
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
624
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
625
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
626
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
627
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
628
|
+
} | undefined>]>>]>>;
|
|
629
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
630
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
631
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
632
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
633
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
634
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
635
|
+
$in: import("@feathersjs/typebox").TOptional<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").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
|
|
636
|
+
$nin: import("@feathersjs/typebox").TOptional<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").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
|
|
554
637
|
}>, import("@feathersjs/typebox").TObject<{
|
|
555
638
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
556
639
|
} | undefined>]>>]>>;
|
|
@@ -576,6 +659,17 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
576
659
|
}>, import("@feathersjs/typebox").TObject<{
|
|
577
660
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
578
661
|
} | undefined>]>>]>>;
|
|
662
|
+
"stripe.id": 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<{
|
|
663
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
664
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
665
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
666
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
667
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
668
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
669
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
670
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
671
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
672
|
+
} | undefined>]>>]>>;
|
|
579
673
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
580
674
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
581
675
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -601,14 +695,25 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
601
695
|
}>, import("@feathersjs/typebox").TObject<{
|
|
602
696
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
603
697
|
} | undefined>]>>]>>;
|
|
604
|
-
|
|
605
|
-
$gt: import("@feathersjs/typebox").
|
|
606
|
-
$gte: import("@feathersjs/typebox").
|
|
607
|
-
$lt: import("@feathersjs/typebox").
|
|
608
|
-
$lte: import("@feathersjs/typebox").
|
|
609
|
-
$ne: import("@feathersjs/typebox").
|
|
610
|
-
$in: import("@feathersjs/typebox").
|
|
611
|
-
$nin: import("@feathersjs/typebox").
|
|
698
|
+
stripe: 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<{
|
|
699
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
700
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
701
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
702
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
703
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
704
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
705
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
706
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
707
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
708
|
+
} | undefined>]>>]>>;
|
|
709
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
710
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
711
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
712
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
713
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
714
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
715
|
+
$in: import("@feathersjs/typebox").TOptional<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").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
|
|
716
|
+
$nin: import("@feathersjs/typebox").TOptional<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").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
|
|
612
717
|
}>, import("@feathersjs/typebox").TObject<{
|
|
613
718
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
614
719
|
} | undefined>]>>]>>;
|
|
@@ -634,6 +739,17 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
634
739
|
}>, import("@feathersjs/typebox").TObject<{
|
|
635
740
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
636
741
|
} | undefined>]>>]>>;
|
|
742
|
+
"stripe.id": 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<{
|
|
743
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
744
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
745
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
746
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
747
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
748
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
749
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
750
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
751
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
752
|
+
} | undefined>]>>]>>;
|
|
637
753
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
638
754
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
639
755
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -658,14 +774,25 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
658
774
|
}>, import("@feathersjs/typebox").TObject<{
|
|
659
775
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
660
776
|
} | undefined>]>>]>>;
|
|
661
|
-
|
|
662
|
-
$gt: import("@feathersjs/typebox").
|
|
663
|
-
$gte: import("@feathersjs/typebox").
|
|
664
|
-
$lt: import("@feathersjs/typebox").
|
|
665
|
-
$lte: import("@feathersjs/typebox").
|
|
666
|
-
$ne: import("@feathersjs/typebox").
|
|
667
|
-
$in: import("@feathersjs/typebox").
|
|
668
|
-
$nin: import("@feathersjs/typebox").
|
|
777
|
+
stripe: 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<{
|
|
778
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
779
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
780
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
781
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
782
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
783
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
784
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
785
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
786
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
787
|
+
} | undefined>]>>]>>;
|
|
788
|
+
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<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").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
789
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
790
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
791
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
792
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
793
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
794
|
+
$in: import("@feathersjs/typebox").TOptional<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").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
|
|
795
|
+
$nin: import("@feathersjs/typebox").TOptional<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").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>>;
|
|
669
796
|
}>, import("@feathersjs/typebox").TObject<{
|
|
670
797
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
671
798
|
} | undefined>]>>]>>;
|
|
@@ -691,6 +818,17 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
691
818
|
}>, import("@feathersjs/typebox").TObject<{
|
|
692
819
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
693
820
|
} | undefined>]>>]>>;
|
|
821
|
+
"stripe.id": 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<{
|
|
822
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
823
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
824
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
825
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
826
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
827
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
828
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
829
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
830
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
831
|
+
} | undefined>]>>]>>;
|
|
694
832
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
695
833
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
696
834
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -710,12 +848,14 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
710
848
|
$skip: number;
|
|
711
849
|
$sort: {
|
|
712
850
|
email?: number | undefined;
|
|
851
|
+
stripe?: number | undefined;
|
|
713
852
|
_id?: number | undefined;
|
|
714
853
|
googleId?: number | undefined;
|
|
715
854
|
appleId?: number | undefined;
|
|
855
|
+
"stripe.id"?: number | undefined;
|
|
716
856
|
verifyToken?: number | undefined;
|
|
717
857
|
};
|
|
718
|
-
$select: ("email" | "_id" | "googleId" | "appleId" | "verifyToken")[];
|
|
858
|
+
$select: ("email" | "stripe" | "_id" | "googleId" | "appleId" | "stripe.id" | "verifyToken")[];
|
|
719
859
|
$and: ({
|
|
720
860
|
email?: string | Partial<{
|
|
721
861
|
$gt: string;
|
|
@@ -726,17 +866,19 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
726
866
|
$in: string | string[];
|
|
727
867
|
$nin: string | string[];
|
|
728
868
|
} & {}> | undefined;
|
|
869
|
+
stripe?: any;
|
|
729
870
|
_id?: string | {} | Partial<{
|
|
730
|
-
$gt
|
|
731
|
-
$gte
|
|
732
|
-
$lt
|
|
733
|
-
$lte
|
|
734
|
-
$ne
|
|
871
|
+
$gt?: string | {} | undefined;
|
|
872
|
+
$gte?: string | {} | undefined;
|
|
873
|
+
$lt?: string | {} | undefined;
|
|
874
|
+
$lte?: string | {} | undefined;
|
|
875
|
+
$ne?: string | {} | undefined;
|
|
735
876
|
$in: string | {} | (string | {})[];
|
|
736
877
|
$nin: string | {} | (string | {})[];
|
|
737
878
|
} & {}> | undefined;
|
|
738
879
|
googleId?: any;
|
|
739
880
|
appleId?: any;
|
|
881
|
+
"stripe.id"?: any;
|
|
740
882
|
verifyToken?: string | Partial<{
|
|
741
883
|
$gt?: string | null | undefined;
|
|
742
884
|
$gte?: string | null | undefined;
|
|
@@ -757,17 +899,19 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
757
899
|
$in: string | string[];
|
|
758
900
|
$nin: string | string[];
|
|
759
901
|
} & {}> | undefined;
|
|
902
|
+
stripe?: any;
|
|
760
903
|
_id?: string | {} | Partial<{
|
|
761
|
-
$gt
|
|
762
|
-
$gte
|
|
763
|
-
$lt
|
|
764
|
-
$lte
|
|
765
|
-
$ne
|
|
904
|
+
$gt?: string | {} | undefined;
|
|
905
|
+
$gte?: string | {} | undefined;
|
|
906
|
+
$lt?: string | {} | undefined;
|
|
907
|
+
$lte?: string | {} | undefined;
|
|
908
|
+
$ne?: string | {} | undefined;
|
|
766
909
|
$in: string | {} | (string | {})[];
|
|
767
910
|
$nin: string | {} | (string | {})[];
|
|
768
911
|
} & {}> | undefined;
|
|
769
912
|
googleId?: any;
|
|
770
913
|
appleId?: any;
|
|
914
|
+
"stripe.id"?: any;
|
|
771
915
|
verifyToken?: string | Partial<{
|
|
772
916
|
$gt?: string | null | undefined;
|
|
773
917
|
$gte?: string | null | undefined;
|
|
@@ -789,17 +933,19 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
789
933
|
$in: string | string[];
|
|
790
934
|
$nin: string | string[];
|
|
791
935
|
} & {}> | undefined;
|
|
936
|
+
stripe?: any;
|
|
792
937
|
_id?: string | {} | Partial<{
|
|
793
|
-
$gt
|
|
794
|
-
$gte
|
|
795
|
-
$lt
|
|
796
|
-
$lte
|
|
797
|
-
$ne
|
|
938
|
+
$gt?: string | {} | undefined;
|
|
939
|
+
$gte?: string | {} | undefined;
|
|
940
|
+
$lt?: string | {} | undefined;
|
|
941
|
+
$lte?: string | {} | undefined;
|
|
942
|
+
$ne?: string | {} | undefined;
|
|
798
943
|
$in: string | {} | (string | {})[];
|
|
799
944
|
$nin: string | {} | (string | {})[];
|
|
800
945
|
} & {}> | undefined;
|
|
801
946
|
googleId?: any;
|
|
802
947
|
appleId?: any;
|
|
948
|
+
"stripe.id"?: any;
|
|
803
949
|
verifyToken?: string | Partial<{
|
|
804
950
|
$gt?: string | null | undefined;
|
|
805
951
|
$gte?: string | null | undefined;
|
|
@@ -820,17 +966,19 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
820
966
|
$in: string | string[];
|
|
821
967
|
$nin: string | string[];
|
|
822
968
|
} & {}> | undefined;
|
|
969
|
+
stripe?: any;
|
|
823
970
|
_id?: string | {} | Partial<{
|
|
824
|
-
$gt
|
|
825
|
-
$gte
|
|
826
|
-
$lt
|
|
827
|
-
$lte
|
|
828
|
-
$ne
|
|
971
|
+
$gt?: string | {} | undefined;
|
|
972
|
+
$gte?: string | {} | undefined;
|
|
973
|
+
$lt?: string | {} | undefined;
|
|
974
|
+
$lte?: string | {} | undefined;
|
|
975
|
+
$ne?: string | {} | undefined;
|
|
829
976
|
$in: string | {} | (string | {})[];
|
|
830
977
|
$nin: string | {} | (string | {})[];
|
|
831
978
|
} & {}> | undefined;
|
|
832
979
|
googleId?: any;
|
|
833
980
|
appleId?: any;
|
|
981
|
+
"stripe.id"?: any;
|
|
834
982
|
verifyToken?: string | Partial<{
|
|
835
983
|
$gt?: string | null | undefined;
|
|
836
984
|
$gte?: string | null | undefined;
|