@cryptorobot.ai/client 0.0.32 → 0.0.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/app.d.ts +1 -0
- package/lib/client.d.ts +2 -0
- package/lib/client.js +7 -5
- package/lib/configuration.d.ts +12 -1
- package/lib/helpers/app.helper.d.ts +1 -0
- package/lib/helpers/ccxt.helper.d.ts +2 -0
- package/lib/helpers/deployments.helper.d.ts +1 -1
- package/lib/helpers/funnel.helper.d.ts +2 -0
- package/lib/helpers/push-notification.helper.d.ts +1 -0
- package/lib/hooks/application/setup-ccxt-load-marketplaces-mocked.d.ts +3 -0
- package/lib/hooks/application/setup-fs.d.ts +3 -0
- package/lib/hooks/revenuecat-is-subscription-active.d.ts +2 -0
- package/lib/services/auth-management/auth-management.shared.js +1 -12
- package/lib/services/config/config.class.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.class.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.schema.d.ts +32 -24
- package/lib/services/exchanges/download/download.schema.d.ts +32 -24
- package/lib/services/exchanges/exchanges.d.ts +1 -0
- package/lib/services/exchanges/exchanges.schema.d.ts +85 -77
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +32 -24
- package/lib/services/index.d.ts +1 -1
- package/lib/services/messages/messages.schema.d.ts +40 -24
- package/lib/services/strategies/backtest/backtest.d.ts +1 -0
- package/lib/services/strategies/backtest/backtest.schema.d.ts +133 -197
- package/lib/services/strategies/indicators/indicators.schema.d.ts +61 -61
- package/lib/services/strategies/strategies.d.ts +1 -0
- package/lib/services/strategies/strategies.schema.d.ts +32 -16
- package/lib/services/strategies/templates/templates.schema.d.ts +9 -1
- package/lib/services/stripe/webhooks/webhooks.class.d.ts +26 -0
- package/lib/services/stripe/webhooks/webhooks.d.ts +9 -0
- package/lib/services/stripe/webhooks/webhooks.shared.d.ts +13 -0
- package/lib/services/stripe/webhooks/webhooks.shared.js +13 -0
- package/lib/services/traders/pods/api/api.schema.d.ts +112 -72
- package/lib/services/traders/pods/pods.schema.d.ts +88 -56
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +217 -3
- package/lib/services/traders/traders.schema.d.ts +141 -133
- package/lib/services/users/users.d.ts +1 -0
- package/lib/services/users/users.helper.d.ts +1 -1
- package/lib/services/users/users.schema.d.ts +196 -80
- package/package.json +1 -1
|
@@ -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>>;
|
|
@@ -36,10 +37,11 @@ export declare const userSchema: import("@feathersjs/typebox").TObject<{
|
|
|
36
37
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
37
38
|
}>>;
|
|
38
39
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
40
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
39
41
|
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
42
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
41
43
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
42
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
44
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
43
45
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
44
46
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
45
47
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -69,6 +71,7 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
69
71
|
} | undefined;
|
|
70
72
|
country?: string | undefined;
|
|
71
73
|
stripe?: any;
|
|
74
|
+
_id?: string | {} | undefined;
|
|
72
75
|
googleId?: any;
|
|
73
76
|
appleId?: any;
|
|
74
77
|
avatar?: string | undefined;
|
|
@@ -77,9 +80,10 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
77
80
|
language?: string | undefined;
|
|
78
81
|
about?: string | null | undefined;
|
|
79
82
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
80
|
-
payment?: "stripe" | undefined;
|
|
83
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
81
84
|
yearly?: boolean | undefined;
|
|
82
85
|
paymentIntent?: any;
|
|
86
|
+
'stripe.id'?: any;
|
|
83
87
|
customerInfo?: any;
|
|
84
88
|
subscription?: any;
|
|
85
89
|
plan?: string | undefined;
|
|
@@ -92,9 +96,11 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
92
96
|
hyperopt?: any;
|
|
93
97
|
} | undefined;
|
|
94
98
|
$inc?: any;
|
|
99
|
+
$aggregate?: any;
|
|
95
100
|
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
101
|
timezone?: string | undefined;
|
|
97
102
|
subscribe?: string | undefined;
|
|
103
|
+
isVerified?: boolean | undefined;
|
|
98
104
|
verifyToken?: string | null | undefined;
|
|
99
105
|
verifyTokenShort?: string | null | undefined;
|
|
100
106
|
verifyShortToken?: string | null | undefined;
|
|
@@ -112,8 +118,6 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
112
118
|
skipEmailVerification?: boolean | undefined;
|
|
113
119
|
email: string;
|
|
114
120
|
name: string;
|
|
115
|
-
_id: string | {};
|
|
116
|
-
isVerified: boolean;
|
|
117
121
|
agreements: boolean;
|
|
118
122
|
bootstrap: any;
|
|
119
123
|
}, HookContext<UserService<import("./users.class").UserParams>>>;
|
|
@@ -126,6 +130,7 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
126
130
|
} | undefined;
|
|
127
131
|
country?: string | undefined;
|
|
128
132
|
stripe?: any;
|
|
133
|
+
_id?: string | {} | undefined;
|
|
129
134
|
googleId?: any;
|
|
130
135
|
appleId?: any;
|
|
131
136
|
avatar?: string | undefined;
|
|
@@ -134,9 +139,10 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
134
139
|
language?: string | undefined;
|
|
135
140
|
about?: string | null | undefined;
|
|
136
141
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
137
|
-
payment?: "stripe" | undefined;
|
|
142
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
138
143
|
yearly?: boolean | undefined;
|
|
139
144
|
paymentIntent?: any;
|
|
145
|
+
'stripe.id'?: any;
|
|
140
146
|
customerInfo?: any;
|
|
141
147
|
subscription?: any;
|
|
142
148
|
plan?: string | undefined;
|
|
@@ -149,9 +155,11 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
149
155
|
hyperopt?: any;
|
|
150
156
|
} | undefined;
|
|
151
157
|
$inc?: any;
|
|
158
|
+
$aggregate?: any;
|
|
152
159
|
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
160
|
timezone?: string | undefined;
|
|
154
161
|
subscribe?: string | undefined;
|
|
162
|
+
isVerified?: boolean | undefined;
|
|
155
163
|
verifyToken?: string | null | undefined;
|
|
156
164
|
verifyTokenShort?: string | null | undefined;
|
|
157
165
|
verifyShortToken?: string | null | undefined;
|
|
@@ -169,13 +177,11 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
169
177
|
skipEmailVerification?: boolean | undefined;
|
|
170
178
|
email: string;
|
|
171
179
|
name: string;
|
|
172
|
-
_id: string | {};
|
|
173
|
-
isVerified: boolean;
|
|
174
180
|
agreements: boolean;
|
|
175
181
|
bootstrap: any;
|
|
176
182
|
}, HookContext<UserService<import("./users.class").UserParams>>>;
|
|
177
183
|
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<{}>]>]
|
|
184
|
+
_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
185
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
180
186
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
181
187
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -188,10 +194,11 @@ export declare const userDataSchema: import("@feathersjs/typebox").TPick<import(
|
|
|
188
194
|
language: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
189
195
|
about: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
190
196
|
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">]>>;
|
|
197
|
+
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">, import("@feathersjs/typebox").TLiteral<"revenuecat">]>>;
|
|
192
198
|
yearly: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
193
199
|
paymentIntent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
194
200
|
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
201
|
+
'stripe.id': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
195
202
|
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
196
203
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
197
204
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -209,10 +216,11 @@ export declare const userDataSchema: import("@feathersjs/typebox").TPick<import(
|
|
|
209
216
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
210
217
|
}>>;
|
|
211
218
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
219
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
212
220
|
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
221
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
214
222
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
215
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
223
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
216
224
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
217
225
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
218
226
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -230,7 +238,7 @@ export declare const userDataSchema: import("@feathersjs/typebox").TPick<import(
|
|
|
230
238
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
231
239
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
232
240
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
233
|
-
}>, ["email", "password", "name", "avatar", "googleId", "appleId", "agreements", "createdAt", "skipEmailVerification"]>;
|
|
241
|
+
}>, ["_id", "email", "password", "name", "avatar", "googleId", "appleId", "agreements", "createdAt", "skipEmailVerification"]>;
|
|
234
242
|
export type UserData = Static<typeof userDataSchema>;
|
|
235
243
|
export declare const userDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
236
244
|
export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
@@ -242,6 +250,7 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
242
250
|
} | undefined;
|
|
243
251
|
country?: string | undefined;
|
|
244
252
|
stripe?: any;
|
|
253
|
+
_id?: string | {} | undefined;
|
|
245
254
|
googleId?: any;
|
|
246
255
|
appleId?: any;
|
|
247
256
|
avatar?: string | undefined;
|
|
@@ -250,9 +259,10 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
250
259
|
language?: string | undefined;
|
|
251
260
|
about?: string | null | undefined;
|
|
252
261
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
253
|
-
payment?: "stripe" | undefined;
|
|
262
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
254
263
|
yearly?: boolean | undefined;
|
|
255
264
|
paymentIntent?: any;
|
|
265
|
+
'stripe.id'?: any;
|
|
256
266
|
customerInfo?: any;
|
|
257
267
|
subscription?: any;
|
|
258
268
|
plan?: string | undefined;
|
|
@@ -265,9 +275,11 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
265
275
|
hyperopt?: any;
|
|
266
276
|
} | undefined;
|
|
267
277
|
$inc?: any;
|
|
278
|
+
$aggregate?: any;
|
|
268
279
|
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
280
|
timezone?: string | undefined;
|
|
270
281
|
subscribe?: string | undefined;
|
|
282
|
+
isVerified?: boolean | undefined;
|
|
271
283
|
verifyToken?: string | null | undefined;
|
|
272
284
|
verifyTokenShort?: string | null | undefined;
|
|
273
285
|
verifyShortToken?: string | null | undefined;
|
|
@@ -285,13 +297,11 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
285
297
|
skipEmailVerification?: boolean | undefined;
|
|
286
298
|
email: string;
|
|
287
299
|
name: string;
|
|
288
|
-
_id: string | {};
|
|
289
|
-
isVerified: boolean;
|
|
290
300
|
agreements: boolean;
|
|
291
301
|
bootstrap: any;
|
|
292
302
|
}, HookContext<UserService<import("./users.class").UserParams>>>;
|
|
293
303
|
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<{}>]>]
|
|
304
|
+
_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
305
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
296
306
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
297
307
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -304,10 +314,11 @@ export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<imp
|
|
|
304
314
|
language: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
305
315
|
about: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
306
316
|
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">]>>;
|
|
317
|
+
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">, import("@feathersjs/typebox").TLiteral<"revenuecat">]>>;
|
|
308
318
|
yearly: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
309
319
|
paymentIntent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
310
320
|
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
321
|
+
'stripe.id': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
311
322
|
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
312
323
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
313
324
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -325,10 +336,11 @@ export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<imp
|
|
|
325
336
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
326
337
|
}>>;
|
|
327
338
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
339
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
328
340
|
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
341
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
330
342
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
331
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
343
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
332
344
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
333
345
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
334
346
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -358,6 +370,7 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
358
370
|
} | undefined;
|
|
359
371
|
country?: string | undefined;
|
|
360
372
|
stripe?: any;
|
|
373
|
+
_id?: string | {} | undefined;
|
|
361
374
|
googleId?: any;
|
|
362
375
|
appleId?: any;
|
|
363
376
|
avatar?: string | undefined;
|
|
@@ -366,9 +379,10 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
366
379
|
language?: string | undefined;
|
|
367
380
|
about?: string | null | undefined;
|
|
368
381
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
369
|
-
payment?: "stripe" | undefined;
|
|
382
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
370
383
|
yearly?: boolean | undefined;
|
|
371
384
|
paymentIntent?: any;
|
|
385
|
+
'stripe.id'?: any;
|
|
372
386
|
customerInfo?: any;
|
|
373
387
|
subscription?: any;
|
|
374
388
|
plan?: string | undefined;
|
|
@@ -381,9 +395,11 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
381
395
|
hyperopt?: any;
|
|
382
396
|
} | undefined;
|
|
383
397
|
$inc?: any;
|
|
398
|
+
$aggregate?: any;
|
|
384
399
|
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
400
|
timezone?: string | undefined;
|
|
386
401
|
subscribe?: string | undefined;
|
|
402
|
+
isVerified?: boolean | undefined;
|
|
387
403
|
verifyToken?: string | null | undefined;
|
|
388
404
|
verifyTokenShort?: string | null | undefined;
|
|
389
405
|
verifyShortToken?: string | null | undefined;
|
|
@@ -401,13 +417,11 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
401
417
|
skipEmailVerification?: boolean | undefined;
|
|
402
418
|
email: string;
|
|
403
419
|
name: string;
|
|
404
|
-
_id: string | {};
|
|
405
|
-
isVerified: boolean;
|
|
406
420
|
agreements: boolean;
|
|
407
421
|
bootstrap: any;
|
|
408
422
|
}, HookContext<UserService<import("./users.class").UserParams>>>;
|
|
409
423
|
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<{}>]>]
|
|
424
|
+
_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
425
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
412
426
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
413
427
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -420,10 +434,11 @@ export declare const userQueryProperties: import("@feathersjs/typebox").TPick<im
|
|
|
420
434
|
language: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
421
435
|
about: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
422
436
|
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">]>>;
|
|
437
|
+
payment: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"stripe">, import("@feathersjs/typebox").TLiteral<"revenuecat">]>>;
|
|
424
438
|
yearly: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
425
439
|
paymentIntent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
426
440
|
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
441
|
+
'stripe.id': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
427
442
|
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
428
443
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
429
444
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -441,10 +456,11 @@ export declare const userQueryProperties: import("@feathersjs/typebox").TPick<im
|
|
|
441
456
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
442
457
|
}>>;
|
|
443
458
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
459
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
444
460
|
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
461
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
446
462
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
447
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
463
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
448
464
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
449
465
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
450
466
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -462,18 +478,20 @@ export declare const userQueryProperties: import("@feathersjs/typebox").TPick<im
|
|
|
462
478
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
463
479
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
464
480
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
465
|
-
}>, ["_id", "email", "verifyToken", "googleId", "appleId"]>;
|
|
481
|
+
}>, ["_id", "email", "verifyToken", "googleId", "appleId", "stripe", "stripe.id"]>;
|
|
466
482
|
export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
467
483
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
468
484
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
469
485
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
470
486
|
email: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
487
|
+
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
471
488
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
472
489
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
473
490
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
491
|
+
"stripe.id": import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
474
492
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
475
493
|
}>;
|
|
476
|
-
$select: import("@feathersjs/typebox").TUnsafe<("email" | "_id" | "googleId" | "appleId" | "verifyToken")[]>;
|
|
494
|
+
$select: import("@feathersjs/typebox").TUnsafe<("email" | "stripe" | "_id" | "googleId" | "appleId" | "stripe.id" | "verifyToken")[]>;
|
|
477
495
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
478
496
|
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
497
|
$gt: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -486,14 +504,25 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
486
504
|
}>, import("@feathersjs/typebox").TObject<{
|
|
487
505
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
488
506
|
} | 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").
|
|
507
|
+
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<{
|
|
508
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
509
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
510
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
511
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
512
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
513
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
514
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
515
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
516
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
517
|
+
} | undefined>]>>]>>;
|
|
518
|
+
_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<{
|
|
519
|
+
$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<{}>]>]>>;
|
|
520
|
+
$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<{}>]>]>>;
|
|
521
|
+
$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<{}>]>]>>;
|
|
522
|
+
$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<{}>]>]>>;
|
|
523
|
+
$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<{}>]>]>>;
|
|
524
|
+
$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<{}>]>]>>>;
|
|
525
|
+
$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
526
|
}>, import("@feathersjs/typebox").TObject<{
|
|
498
527
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
499
528
|
} | undefined>]>>]>>;
|
|
@@ -519,6 +548,17 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
519
548
|
}>, import("@feathersjs/typebox").TObject<{
|
|
520
549
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
521
550
|
} | undefined>]>>]>>;
|
|
551
|
+
"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<{
|
|
552
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
553
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
554
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
555
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
556
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
557
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
558
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
559
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
560
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
561
|
+
} | undefined>]>>]>>;
|
|
522
562
|
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
563
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
524
564
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -543,14 +583,25 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
543
583
|
}>, import("@feathersjs/typebox").TObject<{
|
|
544
584
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
545
585
|
} | 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").
|
|
586
|
+
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<{
|
|
587
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
588
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
589
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
590
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
591
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
592
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
593
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
594
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
595
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
596
|
+
} | undefined>]>>]>>;
|
|
597
|
+
_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<{
|
|
598
|
+
$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<{}>]>]>>;
|
|
599
|
+
$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<{}>]>]>>;
|
|
600
|
+
$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<{}>]>]>>;
|
|
601
|
+
$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<{}>]>]>>;
|
|
602
|
+
$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<{}>]>]>>;
|
|
603
|
+
$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<{}>]>]>>>;
|
|
604
|
+
$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
605
|
}>, import("@feathersjs/typebox").TObject<{
|
|
555
606
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
556
607
|
} | undefined>]>>]>>;
|
|
@@ -576,6 +627,17 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
576
627
|
}>, import("@feathersjs/typebox").TObject<{
|
|
577
628
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
578
629
|
} | undefined>]>>]>>;
|
|
630
|
+
"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<{
|
|
631
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
632
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
633
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
634
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
635
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
636
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
637
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
638
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
639
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
640
|
+
} | undefined>]>>]>>;
|
|
579
641
|
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
642
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
581
643
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -601,14 +663,25 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
601
663
|
}>, import("@feathersjs/typebox").TObject<{
|
|
602
664
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
603
665
|
} | 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").
|
|
666
|
+
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<{
|
|
667
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
668
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
669
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
670
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
671
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
672
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
673
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
674
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
675
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
676
|
+
} | undefined>]>>]>>;
|
|
677
|
+
_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<{
|
|
678
|
+
$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<{}>]>]>>;
|
|
679
|
+
$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<{}>]>]>>;
|
|
680
|
+
$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<{}>]>]>>;
|
|
681
|
+
$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<{}>]>]>>;
|
|
682
|
+
$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<{}>]>]>>;
|
|
683
|
+
$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<{}>]>]>>>;
|
|
684
|
+
$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
685
|
}>, import("@feathersjs/typebox").TObject<{
|
|
613
686
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
614
687
|
} | undefined>]>>]>>;
|
|
@@ -634,6 +707,17 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
634
707
|
}>, import("@feathersjs/typebox").TObject<{
|
|
635
708
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
636
709
|
} | undefined>]>>]>>;
|
|
710
|
+
"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<{
|
|
711
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
712
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
713
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
714
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
715
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
716
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
717
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
718
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
719
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
720
|
+
} | undefined>]>>]>>;
|
|
637
721
|
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
722
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
639
723
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -658,14 +742,25 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
658
742
|
}>, import("@feathersjs/typebox").TObject<{
|
|
659
743
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
660
744
|
} | 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").
|
|
745
|
+
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<{
|
|
746
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
747
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
748
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
749
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
750
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
751
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
752
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
753
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
754
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
755
|
+
} | undefined>]>>]>>;
|
|
756
|
+
_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<{
|
|
757
|
+
$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<{}>]>]>>;
|
|
758
|
+
$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<{}>]>]>>;
|
|
759
|
+
$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<{}>]>]>>;
|
|
760
|
+
$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<{}>]>]>>;
|
|
761
|
+
$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<{}>]>]>>;
|
|
762
|
+
$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<{}>]>]>>>;
|
|
763
|
+
$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
764
|
}>, import("@feathersjs/typebox").TObject<{
|
|
670
765
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
671
766
|
} | undefined>]>>]>>;
|
|
@@ -691,6 +786,17 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
691
786
|
}>, import("@feathersjs/typebox").TObject<{
|
|
692
787
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
693
788
|
} | undefined>]>>]>>;
|
|
789
|
+
"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<{
|
|
790
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
791
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
792
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
793
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
794
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
795
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
796
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
797
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
798
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
799
|
+
} | undefined>]>>]>>;
|
|
694
800
|
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
801
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
696
802
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -710,12 +816,14 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
710
816
|
$skip: number;
|
|
711
817
|
$sort: {
|
|
712
818
|
email?: number | undefined;
|
|
819
|
+
stripe?: number | undefined;
|
|
713
820
|
_id?: number | undefined;
|
|
714
821
|
googleId?: number | undefined;
|
|
715
822
|
appleId?: number | undefined;
|
|
823
|
+
"stripe.id"?: number | undefined;
|
|
716
824
|
verifyToken?: number | undefined;
|
|
717
825
|
};
|
|
718
|
-
$select: ("email" | "_id" | "googleId" | "appleId" | "verifyToken")[];
|
|
826
|
+
$select: ("email" | "stripe" | "_id" | "googleId" | "appleId" | "stripe.id" | "verifyToken")[];
|
|
719
827
|
$and: ({
|
|
720
828
|
email?: string | Partial<{
|
|
721
829
|
$gt: string;
|
|
@@ -726,17 +834,19 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
726
834
|
$in: string | string[];
|
|
727
835
|
$nin: string | string[];
|
|
728
836
|
} & {}> | undefined;
|
|
837
|
+
stripe?: any;
|
|
729
838
|
_id?: string | {} | Partial<{
|
|
730
|
-
$gt
|
|
731
|
-
$gte
|
|
732
|
-
$lt
|
|
733
|
-
$lte
|
|
734
|
-
$ne
|
|
839
|
+
$gt?: string | {} | undefined;
|
|
840
|
+
$gte?: string | {} | undefined;
|
|
841
|
+
$lt?: string | {} | undefined;
|
|
842
|
+
$lte?: string | {} | undefined;
|
|
843
|
+
$ne?: string | {} | undefined;
|
|
735
844
|
$in: string | {} | (string | {})[];
|
|
736
845
|
$nin: string | {} | (string | {})[];
|
|
737
846
|
} & {}> | undefined;
|
|
738
847
|
googleId?: any;
|
|
739
848
|
appleId?: any;
|
|
849
|
+
"stripe.id"?: any;
|
|
740
850
|
verifyToken?: string | Partial<{
|
|
741
851
|
$gt?: string | null | undefined;
|
|
742
852
|
$gte?: string | null | undefined;
|
|
@@ -757,17 +867,19 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
757
867
|
$in: string | string[];
|
|
758
868
|
$nin: string | string[];
|
|
759
869
|
} & {}> | undefined;
|
|
870
|
+
stripe?: any;
|
|
760
871
|
_id?: string | {} | Partial<{
|
|
761
|
-
$gt
|
|
762
|
-
$gte
|
|
763
|
-
$lt
|
|
764
|
-
$lte
|
|
765
|
-
$ne
|
|
872
|
+
$gt?: string | {} | undefined;
|
|
873
|
+
$gte?: string | {} | undefined;
|
|
874
|
+
$lt?: string | {} | undefined;
|
|
875
|
+
$lte?: string | {} | undefined;
|
|
876
|
+
$ne?: string | {} | undefined;
|
|
766
877
|
$in: string | {} | (string | {})[];
|
|
767
878
|
$nin: string | {} | (string | {})[];
|
|
768
879
|
} & {}> | undefined;
|
|
769
880
|
googleId?: any;
|
|
770
881
|
appleId?: any;
|
|
882
|
+
"stripe.id"?: any;
|
|
771
883
|
verifyToken?: string | Partial<{
|
|
772
884
|
$gt?: string | null | undefined;
|
|
773
885
|
$gte?: string | null | undefined;
|
|
@@ -789,17 +901,19 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
789
901
|
$in: string | string[];
|
|
790
902
|
$nin: string | string[];
|
|
791
903
|
} & {}> | undefined;
|
|
904
|
+
stripe?: any;
|
|
792
905
|
_id?: string | {} | Partial<{
|
|
793
|
-
$gt
|
|
794
|
-
$gte
|
|
795
|
-
$lt
|
|
796
|
-
$lte
|
|
797
|
-
$ne
|
|
906
|
+
$gt?: string | {} | undefined;
|
|
907
|
+
$gte?: string | {} | undefined;
|
|
908
|
+
$lt?: string | {} | undefined;
|
|
909
|
+
$lte?: string | {} | undefined;
|
|
910
|
+
$ne?: string | {} | undefined;
|
|
798
911
|
$in: string | {} | (string | {})[];
|
|
799
912
|
$nin: string | {} | (string | {})[];
|
|
800
913
|
} & {}> | undefined;
|
|
801
914
|
googleId?: any;
|
|
802
915
|
appleId?: any;
|
|
916
|
+
"stripe.id"?: any;
|
|
803
917
|
verifyToken?: string | Partial<{
|
|
804
918
|
$gt?: string | null | undefined;
|
|
805
919
|
$gte?: string | null | undefined;
|
|
@@ -820,17 +934,19 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
820
934
|
$in: string | string[];
|
|
821
935
|
$nin: string | string[];
|
|
822
936
|
} & {}> | undefined;
|
|
937
|
+
stripe?: any;
|
|
823
938
|
_id?: string | {} | Partial<{
|
|
824
|
-
$gt
|
|
825
|
-
$gte
|
|
826
|
-
$lt
|
|
827
|
-
$lte
|
|
828
|
-
$ne
|
|
939
|
+
$gt?: string | {} | undefined;
|
|
940
|
+
$gte?: string | {} | undefined;
|
|
941
|
+
$lt?: string | {} | undefined;
|
|
942
|
+
$lte?: string | {} | undefined;
|
|
943
|
+
$ne?: string | {} | undefined;
|
|
829
944
|
$in: string | {} | (string | {})[];
|
|
830
945
|
$nin: string | {} | (string | {})[];
|
|
831
946
|
} & {}> | undefined;
|
|
832
947
|
googleId?: any;
|
|
833
948
|
appleId?: any;
|
|
949
|
+
"stripe.id"?: any;
|
|
834
950
|
verifyToken?: string | Partial<{
|
|
835
951
|
$gt?: string | null | undefined;
|
|
836
952
|
$gte?: string | null | undefined;
|