@cryptorobot.ai/client 0.0.31 → 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 +48 -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 +254 -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,12 @@ 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>;
|
|
23
|
+
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
22
24
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
23
25
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
24
26
|
appearance: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
@@ -35,10 +37,11 @@ export declare const userSchema: import("@feathersjs/typebox").TObject<{
|
|
|
35
37
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
36
38
|
}>>;
|
|
37
39
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
40
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
38
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">]>>;
|
|
39
42
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
40
43
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
41
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
44
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
42
45
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
43
46
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
44
47
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -68,6 +71,7 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
68
71
|
} | undefined;
|
|
69
72
|
country?: string | undefined;
|
|
70
73
|
stripe?: any;
|
|
74
|
+
_id?: string | {} | undefined;
|
|
71
75
|
googleId?: any;
|
|
72
76
|
appleId?: any;
|
|
73
77
|
avatar?: string | undefined;
|
|
@@ -76,9 +80,11 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
76
80
|
language?: string | undefined;
|
|
77
81
|
about?: string | null | undefined;
|
|
78
82
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
79
|
-
payment?: "stripe" | undefined;
|
|
83
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
80
84
|
yearly?: boolean | undefined;
|
|
81
85
|
paymentIntent?: any;
|
|
86
|
+
'stripe.id'?: any;
|
|
87
|
+
customerInfo?: any;
|
|
82
88
|
subscription?: any;
|
|
83
89
|
plan?: string | undefined;
|
|
84
90
|
appearance?: {
|
|
@@ -90,9 +96,11 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
90
96
|
hyperopt?: any;
|
|
91
97
|
} | undefined;
|
|
92
98
|
$inc?: any;
|
|
99
|
+
$aggregate?: any;
|
|
93
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;
|
|
94
101
|
timezone?: string | undefined;
|
|
95
102
|
subscribe?: string | undefined;
|
|
103
|
+
isVerified?: boolean | undefined;
|
|
96
104
|
verifyToken?: string | null | undefined;
|
|
97
105
|
verifyTokenShort?: string | null | undefined;
|
|
98
106
|
verifyShortToken?: string | null | undefined;
|
|
@@ -110,8 +118,6 @@ export declare const userResolver: import("@feathersjs/schema").Resolver<{
|
|
|
110
118
|
skipEmailVerification?: boolean | undefined;
|
|
111
119
|
email: string;
|
|
112
120
|
name: string;
|
|
113
|
-
_id: string | {};
|
|
114
|
-
isVerified: boolean;
|
|
115
121
|
agreements: boolean;
|
|
116
122
|
bootstrap: any;
|
|
117
123
|
}, HookContext<UserService<import("./users.class").UserParams>>>;
|
|
@@ -124,6 +130,7 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
124
130
|
} | undefined;
|
|
125
131
|
country?: string | undefined;
|
|
126
132
|
stripe?: any;
|
|
133
|
+
_id?: string | {} | undefined;
|
|
127
134
|
googleId?: any;
|
|
128
135
|
appleId?: any;
|
|
129
136
|
avatar?: string | undefined;
|
|
@@ -132,9 +139,11 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
132
139
|
language?: string | undefined;
|
|
133
140
|
about?: string | null | undefined;
|
|
134
141
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
135
|
-
payment?: "stripe" | undefined;
|
|
142
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
136
143
|
yearly?: boolean | undefined;
|
|
137
144
|
paymentIntent?: any;
|
|
145
|
+
'stripe.id'?: any;
|
|
146
|
+
customerInfo?: any;
|
|
138
147
|
subscription?: any;
|
|
139
148
|
plan?: string | undefined;
|
|
140
149
|
appearance?: {
|
|
@@ -146,9 +155,11 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
146
155
|
hyperopt?: any;
|
|
147
156
|
} | undefined;
|
|
148
157
|
$inc?: any;
|
|
158
|
+
$aggregate?: any;
|
|
149
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;
|
|
150
160
|
timezone?: string | undefined;
|
|
151
161
|
subscribe?: string | undefined;
|
|
162
|
+
isVerified?: boolean | undefined;
|
|
152
163
|
verifyToken?: string | null | undefined;
|
|
153
164
|
verifyTokenShort?: string | null | undefined;
|
|
154
165
|
verifyShortToken?: string | null | undefined;
|
|
@@ -166,13 +177,11 @@ export declare const userExternalResolver: import("@feathersjs/schema").Resolver
|
|
|
166
177
|
skipEmailVerification?: boolean | undefined;
|
|
167
178
|
email: string;
|
|
168
179
|
name: string;
|
|
169
|
-
_id: string | {};
|
|
170
|
-
isVerified: boolean;
|
|
171
180
|
agreements: boolean;
|
|
172
181
|
bootstrap: any;
|
|
173
182
|
}, HookContext<UserService<import("./users.class").UserParams>>>;
|
|
174
183
|
export declare const userDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
175
|
-
_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<{}>]>]>>;
|
|
176
185
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
177
186
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
178
187
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -185,10 +194,12 @@ export declare const userDataSchema: import("@feathersjs/typebox").TPick<import(
|
|
|
185
194
|
language: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
186
195
|
about: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
187
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">]>>;
|
|
188
|
-
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">]>>;
|
|
189
198
|
yearly: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
190
199
|
paymentIntent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
191
200
|
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
201
|
+
'stripe.id': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
202
|
+
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
192
203
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
193
204
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
194
205
|
appearance: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
@@ -205,10 +216,11 @@ export declare const userDataSchema: import("@feathersjs/typebox").TPick<import(
|
|
|
205
216
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
206
217
|
}>>;
|
|
207
218
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
219
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
208
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">]>>;
|
|
209
221
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
210
222
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
211
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
223
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
212
224
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
213
225
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
214
226
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -226,7 +238,7 @@ export declare const userDataSchema: import("@feathersjs/typebox").TPick<import(
|
|
|
226
238
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
227
239
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
228
240
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
229
|
-
}>, ["email", "password", "name", "avatar", "googleId", "agreements", "createdAt", "skipEmailVerification"]>;
|
|
241
|
+
}>, ["_id", "email", "password", "name", "avatar", "googleId", "appleId", "agreements", "createdAt", "skipEmailVerification"]>;
|
|
230
242
|
export type UserData = Static<typeof userDataSchema>;
|
|
231
243
|
export declare const userDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
232
244
|
export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
@@ -238,6 +250,7 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
238
250
|
} | undefined;
|
|
239
251
|
country?: string | undefined;
|
|
240
252
|
stripe?: any;
|
|
253
|
+
_id?: string | {} | undefined;
|
|
241
254
|
googleId?: any;
|
|
242
255
|
appleId?: any;
|
|
243
256
|
avatar?: string | undefined;
|
|
@@ -246,9 +259,11 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
246
259
|
language?: string | undefined;
|
|
247
260
|
about?: string | null | undefined;
|
|
248
261
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
249
|
-
payment?: "stripe" | undefined;
|
|
262
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
250
263
|
yearly?: boolean | undefined;
|
|
251
264
|
paymentIntent?: any;
|
|
265
|
+
'stripe.id'?: any;
|
|
266
|
+
customerInfo?: any;
|
|
252
267
|
subscription?: any;
|
|
253
268
|
plan?: string | undefined;
|
|
254
269
|
appearance?: {
|
|
@@ -260,9 +275,11 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
260
275
|
hyperopt?: any;
|
|
261
276
|
} | undefined;
|
|
262
277
|
$inc?: any;
|
|
278
|
+
$aggregate?: any;
|
|
263
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;
|
|
264
280
|
timezone?: string | undefined;
|
|
265
281
|
subscribe?: string | undefined;
|
|
282
|
+
isVerified?: boolean | undefined;
|
|
266
283
|
verifyToken?: string | null | undefined;
|
|
267
284
|
verifyTokenShort?: string | null | undefined;
|
|
268
285
|
verifyShortToken?: string | null | undefined;
|
|
@@ -280,13 +297,11 @@ export declare const userDataResolver: import("@feathersjs/schema").Resolver<{
|
|
|
280
297
|
skipEmailVerification?: boolean | undefined;
|
|
281
298
|
email: string;
|
|
282
299
|
name: string;
|
|
283
|
-
_id: string | {};
|
|
284
|
-
isVerified: boolean;
|
|
285
300
|
agreements: boolean;
|
|
286
301
|
bootstrap: any;
|
|
287
302
|
}, HookContext<UserService<import("./users.class").UserParams>>>;
|
|
288
303
|
export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
289
|
-
_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<{}>]>]>>;
|
|
290
305
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
291
306
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
292
307
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -299,10 +314,12 @@ export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<imp
|
|
|
299
314
|
language: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
300
315
|
about: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
301
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">]>>;
|
|
302
|
-
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">]>>;
|
|
303
318
|
yearly: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
304
319
|
paymentIntent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
305
320
|
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
321
|
+
'stripe.id': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
322
|
+
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
306
323
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
307
324
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
308
325
|
appearance: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
@@ -319,10 +336,11 @@ export declare const userPatchSchema: import("@feathersjs/typebox").TPartial<imp
|
|
|
319
336
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
320
337
|
}>>;
|
|
321
338
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
339
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
322
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">]>>;
|
|
323
341
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
324
342
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
325
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
343
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
326
344
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
327
345
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
328
346
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -352,6 +370,7 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
352
370
|
} | undefined;
|
|
353
371
|
country?: string | undefined;
|
|
354
372
|
stripe?: any;
|
|
373
|
+
_id?: string | {} | undefined;
|
|
355
374
|
googleId?: any;
|
|
356
375
|
appleId?: any;
|
|
357
376
|
avatar?: string | undefined;
|
|
@@ -360,9 +379,11 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
360
379
|
language?: string | undefined;
|
|
361
380
|
about?: string | null | undefined;
|
|
362
381
|
profile?: "conservative" | "moderate" | "aggressive" | undefined;
|
|
363
|
-
payment?: "stripe" | undefined;
|
|
382
|
+
payment?: "stripe" | "revenuecat" | undefined;
|
|
364
383
|
yearly?: boolean | undefined;
|
|
365
384
|
paymentIntent?: any;
|
|
385
|
+
'stripe.id'?: any;
|
|
386
|
+
customerInfo?: any;
|
|
366
387
|
subscription?: any;
|
|
367
388
|
plan?: string | undefined;
|
|
368
389
|
appearance?: {
|
|
@@ -374,9 +395,11 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
374
395
|
hyperopt?: any;
|
|
375
396
|
} | undefined;
|
|
376
397
|
$inc?: any;
|
|
398
|
+
$aggregate?: any;
|
|
377
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;
|
|
378
400
|
timezone?: string | undefined;
|
|
379
401
|
subscribe?: string | undefined;
|
|
402
|
+
isVerified?: boolean | undefined;
|
|
380
403
|
verifyToken?: string | null | undefined;
|
|
381
404
|
verifyTokenShort?: string | null | undefined;
|
|
382
405
|
verifyShortToken?: string | null | undefined;
|
|
@@ -394,13 +417,11 @@ export declare const userPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
|
394
417
|
skipEmailVerification?: boolean | undefined;
|
|
395
418
|
email: string;
|
|
396
419
|
name: string;
|
|
397
|
-
_id: string | {};
|
|
398
|
-
isVerified: boolean;
|
|
399
420
|
agreements: boolean;
|
|
400
421
|
bootstrap: any;
|
|
401
422
|
}, HookContext<UserService<import("./users.class").UserParams>>>;
|
|
402
423
|
export declare const userQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
403
|
-
_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<{}>]>]>>;
|
|
404
425
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
405
426
|
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
406
427
|
email: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -413,10 +434,12 @@ export declare const userQueryProperties: import("@feathersjs/typebox").TPick<im
|
|
|
413
434
|
language: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
414
435
|
about: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
415
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">]>>;
|
|
416
|
-
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">]>>;
|
|
417
438
|
yearly: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
418
439
|
paymentIntent: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
419
440
|
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
441
|
+
'stripe.id': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
442
|
+
customerInfo: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
420
443
|
subscription: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
421
444
|
plan: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
422
445
|
appearance: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
@@ -433,10 +456,11 @@ export declare const userQueryProperties: import("@feathersjs/typebox").TPick<im
|
|
|
433
456
|
android: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
434
457
|
}>>;
|
|
435
458
|
$inc: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
459
|
+
$aggregate: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
436
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">]>>;
|
|
437
461
|
timezone: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
438
462
|
subscribe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
439
|
-
isVerified: import("@feathersjs/typebox").TBoolean
|
|
463
|
+
isVerified: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
440
464
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
441
465
|
verifyTokenShort: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
442
466
|
verifyShortToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -454,17 +478,20 @@ export declare const userQueryProperties: import("@feathersjs/typebox").TPick<im
|
|
|
454
478
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
455
479
|
updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
456
480
|
skipEmailVerification: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
457
|
-
}>, ["_id", "email", "verifyToken", "googleId"]>;
|
|
481
|
+
}>, ["_id", "email", "verifyToken", "googleId", "appleId", "stripe", "stripe.id"]>;
|
|
458
482
|
export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
459
483
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
460
484
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
461
485
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
462
486
|
email: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
487
|
+
stripe: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
463
488
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
464
489
|
googleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
490
|
+
appleId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
491
|
+
"stripe.id": import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
465
492
|
verifyToken: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
466
493
|
}>;
|
|
467
|
-
$select: import("@feathersjs/typebox").TUnsafe<("email" | "_id" | "googleId" | "verifyToken")[]>;
|
|
494
|
+
$select: import("@feathersjs/typebox").TUnsafe<("email" | "stripe" | "_id" | "googleId" | "appleId" | "stripe.id" | "verifyToken")[]>;
|
|
468
495
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
469
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<{
|
|
470
497
|
$gt: import("@feathersjs/typebox").TString<"email">;
|
|
@@ -477,14 +504,25 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
477
504
|
}>, import("@feathersjs/typebox").TObject<{
|
|
478
505
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
479
506
|
} | undefined>]>>]>>;
|
|
480
|
-
|
|
481
|
-
$gt: import("@feathersjs/typebox").
|
|
482
|
-
$gte: import("@feathersjs/typebox").
|
|
483
|
-
$lt: import("@feathersjs/typebox").
|
|
484
|
-
$lte: import("@feathersjs/typebox").
|
|
485
|
-
$ne: import("@feathersjs/typebox").
|
|
486
|
-
$in: import("@feathersjs/typebox").
|
|
487
|
-
$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<{}>]>]>>>;
|
|
488
526
|
}>, import("@feathersjs/typebox").TObject<{
|
|
489
527
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
490
528
|
} | undefined>]>>]>>;
|
|
@@ -499,6 +537,28 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
499
537
|
}>, import("@feathersjs/typebox").TObject<{
|
|
500
538
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
501
539
|
} | undefined>]>>]>>;
|
|
540
|
+
appleId: 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<{
|
|
541
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
542
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
543
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
544
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
545
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
546
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
547
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
548
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
549
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
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>]>>]>>;
|
|
502
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<{
|
|
503
563
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
504
564
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -523,14 +583,25 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
523
583
|
}>, import("@feathersjs/typebox").TObject<{
|
|
524
584
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
525
585
|
} | undefined>]>>]>>;
|
|
526
|
-
|
|
527
|
-
$gt: import("@feathersjs/typebox").
|
|
528
|
-
$gte: import("@feathersjs/typebox").
|
|
529
|
-
$lt: import("@feathersjs/typebox").
|
|
530
|
-
$lte: import("@feathersjs/typebox").
|
|
531
|
-
$ne: import("@feathersjs/typebox").
|
|
532
|
-
$in: import("@feathersjs/typebox").
|
|
533
|
-
$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<{}>]>]>>>;
|
|
534
605
|
}>, import("@feathersjs/typebox").TObject<{
|
|
535
606
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
536
607
|
} | undefined>]>>]>>;
|
|
@@ -545,6 +616,28 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
545
616
|
}>, import("@feathersjs/typebox").TObject<{
|
|
546
617
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
547
618
|
} | undefined>]>>]>>;
|
|
619
|
+
appleId: 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<{
|
|
620
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
621
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
622
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
623
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
624
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
625
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
626
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
627
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
628
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
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>]>>]>>;
|
|
548
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<{
|
|
549
642
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
550
643
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -570,14 +663,25 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
570
663
|
}>, import("@feathersjs/typebox").TObject<{
|
|
571
664
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
572
665
|
} | undefined>]>>]>>;
|
|
573
|
-
|
|
574
|
-
$gt: import("@feathersjs/typebox").
|
|
575
|
-
$gte: import("@feathersjs/typebox").
|
|
576
|
-
$lt: import("@feathersjs/typebox").
|
|
577
|
-
$lte: import("@feathersjs/typebox").
|
|
578
|
-
$ne: import("@feathersjs/typebox").
|
|
579
|
-
$in: import("@feathersjs/typebox").
|
|
580
|
-
$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<{}>]>]>>>;
|
|
581
685
|
}>, import("@feathersjs/typebox").TObject<{
|
|
582
686
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
583
687
|
} | undefined>]>>]>>;
|
|
@@ -592,6 +696,28 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
592
696
|
}>, import("@feathersjs/typebox").TObject<{
|
|
593
697
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
594
698
|
} | undefined>]>>]>>;
|
|
699
|
+
appleId: 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<{
|
|
700
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
701
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
702
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
703
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
704
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
705
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
706
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
707
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
708
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
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>]>>]>>;
|
|
595
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<{
|
|
596
722
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
597
723
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -616,14 +742,25 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
616
742
|
}>, import("@feathersjs/typebox").TObject<{
|
|
617
743
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
618
744
|
} | undefined>]>>]>>;
|
|
619
|
-
|
|
620
|
-
$gt: import("@feathersjs/typebox").
|
|
621
|
-
$gte: import("@feathersjs/typebox").
|
|
622
|
-
$lt: import("@feathersjs/typebox").
|
|
623
|
-
$lte: import("@feathersjs/typebox").
|
|
624
|
-
$ne: import("@feathersjs/typebox").
|
|
625
|
-
$in: import("@feathersjs/typebox").
|
|
626
|
-
$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<{}>]>]>>>;
|
|
627
764
|
}>, import("@feathersjs/typebox").TObject<{
|
|
628
765
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
629
766
|
} | undefined>]>>]>>;
|
|
@@ -638,6 +775,28 @@ export declare const userQuerySchema: import("@feathersjs/typebox").TIntersect<[
|
|
|
638
775
|
}>, import("@feathersjs/typebox").TObject<{
|
|
639
776
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
640
777
|
} | undefined>]>>]>>;
|
|
778
|
+
appleId: 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<{
|
|
779
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
780
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
781
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
782
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
783
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
784
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
785
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
786
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
787
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
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>]>>]>>;
|
|
641
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<{
|
|
642
801
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
643
802
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
@@ -657,11 +816,14 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
657
816
|
$skip: number;
|
|
658
817
|
$sort: {
|
|
659
818
|
email?: number | undefined;
|
|
819
|
+
stripe?: number | undefined;
|
|
660
820
|
_id?: number | undefined;
|
|
661
821
|
googleId?: number | undefined;
|
|
822
|
+
appleId?: number | undefined;
|
|
823
|
+
"stripe.id"?: number | undefined;
|
|
662
824
|
verifyToken?: number | undefined;
|
|
663
825
|
};
|
|
664
|
-
$select: ("email" | "_id" | "googleId" | "verifyToken")[];
|
|
826
|
+
$select: ("email" | "stripe" | "_id" | "googleId" | "appleId" | "stripe.id" | "verifyToken")[];
|
|
665
827
|
$and: ({
|
|
666
828
|
email?: string | Partial<{
|
|
667
829
|
$gt: string;
|
|
@@ -672,16 +834,19 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
672
834
|
$in: string | string[];
|
|
673
835
|
$nin: string | string[];
|
|
674
836
|
} & {}> | undefined;
|
|
837
|
+
stripe?: any;
|
|
675
838
|
_id?: string | {} | Partial<{
|
|
676
|
-
$gt
|
|
677
|
-
$gte
|
|
678
|
-
$lt
|
|
679
|
-
$lte
|
|
680
|
-
$ne
|
|
839
|
+
$gt?: string | {} | undefined;
|
|
840
|
+
$gte?: string | {} | undefined;
|
|
841
|
+
$lt?: string | {} | undefined;
|
|
842
|
+
$lte?: string | {} | undefined;
|
|
843
|
+
$ne?: string | {} | undefined;
|
|
681
844
|
$in: string | {} | (string | {})[];
|
|
682
845
|
$nin: string | {} | (string | {})[];
|
|
683
846
|
} & {}> | undefined;
|
|
684
847
|
googleId?: any;
|
|
848
|
+
appleId?: any;
|
|
849
|
+
"stripe.id"?: any;
|
|
685
850
|
verifyToken?: string | Partial<{
|
|
686
851
|
$gt?: string | null | undefined;
|
|
687
852
|
$gte?: string | null | undefined;
|
|
@@ -702,16 +867,19 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
702
867
|
$in: string | string[];
|
|
703
868
|
$nin: string | string[];
|
|
704
869
|
} & {}> | undefined;
|
|
870
|
+
stripe?: any;
|
|
705
871
|
_id?: string | {} | Partial<{
|
|
706
|
-
$gt
|
|
707
|
-
$gte
|
|
708
|
-
$lt
|
|
709
|
-
$lte
|
|
710
|
-
$ne
|
|
872
|
+
$gt?: string | {} | undefined;
|
|
873
|
+
$gte?: string | {} | undefined;
|
|
874
|
+
$lt?: string | {} | undefined;
|
|
875
|
+
$lte?: string | {} | undefined;
|
|
876
|
+
$ne?: string | {} | undefined;
|
|
711
877
|
$in: string | {} | (string | {})[];
|
|
712
878
|
$nin: string | {} | (string | {})[];
|
|
713
879
|
} & {}> | undefined;
|
|
714
880
|
googleId?: any;
|
|
881
|
+
appleId?: any;
|
|
882
|
+
"stripe.id"?: any;
|
|
715
883
|
verifyToken?: string | Partial<{
|
|
716
884
|
$gt?: string | null | undefined;
|
|
717
885
|
$gte?: string | null | undefined;
|
|
@@ -733,16 +901,19 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
733
901
|
$in: string | string[];
|
|
734
902
|
$nin: string | string[];
|
|
735
903
|
} & {}> | undefined;
|
|
904
|
+
stripe?: any;
|
|
736
905
|
_id?: string | {} | Partial<{
|
|
737
|
-
$gt
|
|
738
|
-
$gte
|
|
739
|
-
$lt
|
|
740
|
-
$lte
|
|
741
|
-
$ne
|
|
906
|
+
$gt?: string | {} | undefined;
|
|
907
|
+
$gte?: string | {} | undefined;
|
|
908
|
+
$lt?: string | {} | undefined;
|
|
909
|
+
$lte?: string | {} | undefined;
|
|
910
|
+
$ne?: string | {} | undefined;
|
|
742
911
|
$in: string | {} | (string | {})[];
|
|
743
912
|
$nin: string | {} | (string | {})[];
|
|
744
913
|
} & {}> | undefined;
|
|
745
914
|
googleId?: any;
|
|
915
|
+
appleId?: any;
|
|
916
|
+
"stripe.id"?: any;
|
|
746
917
|
verifyToken?: string | Partial<{
|
|
747
918
|
$gt?: string | null | undefined;
|
|
748
919
|
$gte?: string | null | undefined;
|
|
@@ -763,16 +934,19 @@ export declare const userQueryResolver: import("@feathersjs/schema").Resolver<Pa
|
|
|
763
934
|
$in: string | string[];
|
|
764
935
|
$nin: string | string[];
|
|
765
936
|
} & {}> | undefined;
|
|
937
|
+
stripe?: any;
|
|
766
938
|
_id?: string | {} | Partial<{
|
|
767
|
-
$gt
|
|
768
|
-
$gte
|
|
769
|
-
$lt
|
|
770
|
-
$lte
|
|
771
|
-
$ne
|
|
939
|
+
$gt?: string | {} | undefined;
|
|
940
|
+
$gte?: string | {} | undefined;
|
|
941
|
+
$lt?: string | {} | undefined;
|
|
942
|
+
$lte?: string | {} | undefined;
|
|
943
|
+
$ne?: string | {} | undefined;
|
|
772
944
|
$in: string | {} | (string | {})[];
|
|
773
945
|
$nin: string | {} | (string | {})[];
|
|
774
946
|
} & {}> | undefined;
|
|
775
947
|
googleId?: any;
|
|
948
|
+
appleId?: any;
|
|
949
|
+
"stripe.id"?: any;
|
|
776
950
|
verifyToken?: string | Partial<{
|
|
777
951
|
$gt?: string | null | undefined;
|
|
778
952
|
$gte?: string | null | undefined;
|