mezon-sdk 2.7.90 → 2.7.92
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/dist/cjs/api/api.d.ts +282 -1886
- package/dist/cjs/api/api.js +739 -3234
- package/dist/cjs/api/api.js.map +1 -1
- package/dist/cjs/constants/enum.d.ts +9 -1
- package/dist/cjs/constants/enum.js +8 -0
- package/dist/cjs/constants/enum.js.map +1 -1
- package/dist/cjs/mezon-client/client/MezonClient.d.ts +12 -7
- package/dist/cjs/mezon-client/client/MezonClient.js +45 -16
- package/dist/cjs/mezon-client/client/MezonClient.js.map +1 -1
- package/dist/cjs/mezon-client/structures/Clan.js +0 -1
- package/dist/cjs/mezon-client/structures/Clan.js.map +1 -1
- package/dist/cjs/mezon-client/structures/Message.d.ts +2 -2
- package/dist/cjs/mezon-client/structures/User.d.ts +6 -6
- package/dist/cjs/mezon-client/structures/User.js +7 -7
- package/dist/cjs/mezon-client/structures/User.js.map +1 -1
- package/dist/cjs/session.d.ts +1 -0
- package/dist/cjs/session.js +1 -0
- package/dist/cjs/session.js.map +1 -1
- package/dist/cjs/utils/helper.d.ts +4 -0
- package/dist/cjs/utils/helper.js +18 -1
- package/dist/cjs/utils/helper.js.map +1 -1
- package/dist/esm/api/api.d.ts +282 -1886
- package/dist/esm/api/api.js +723 -3186
- package/dist/esm/api/api.js.map +1 -1
- package/dist/esm/constants/enum.d.ts +9 -1
- package/dist/esm/constants/enum.js +8 -0
- package/dist/esm/constants/enum.js.map +1 -1
- package/dist/esm/mezon-client/client/MezonClient.d.ts +12 -7
- package/dist/esm/mezon-client/client/MezonClient.js +48 -19
- package/dist/esm/mezon-client/client/MezonClient.js.map +1 -1
- package/dist/esm/mezon-client/structures/Clan.js +0 -1
- package/dist/esm/mezon-client/structures/Clan.js.map +1 -1
- package/dist/esm/mezon-client/structures/Message.d.ts +2 -2
- package/dist/esm/mezon-client/structures/Message.js.map +1 -1
- package/dist/esm/mezon-client/structures/User.d.ts +6 -6
- package/dist/esm/mezon-client/structures/User.js +6 -7
- package/dist/esm/mezon-client/structures/User.js.map +1 -1
- package/dist/esm/session.d.ts +1 -0
- package/dist/esm/session.js +2 -0
- package/dist/esm/session.js.map +1 -1
- package/dist/esm/utils/helper.d.ts +4 -0
- package/dist/esm/utils/helper.js +16 -0
- package/dist/esm/utils/helper.js.map +1 -1
- package/dist/tsconfig.esm.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/esm/api/api.d.ts
CHANGED
|
@@ -51,8 +51,6 @@ export interface Account {
|
|
|
51
51
|
wallet: string;
|
|
52
52
|
/** The email address of the user. */
|
|
53
53
|
email: string;
|
|
54
|
-
/** The devices which belong to the user's account. */
|
|
55
|
-
devices: AccountDevice[];
|
|
56
54
|
/** The mezon id in the user's account. */
|
|
57
55
|
mezon_id: string;
|
|
58
56
|
/** The UNIX time (for gRPC clients) or ISO string (for REST clients) when the user's email was verified. */
|
|
@@ -79,135 +77,6 @@ export interface AccountRefresh_VarsEntry {
|
|
|
79
77
|
key: string;
|
|
80
78
|
value: string;
|
|
81
79
|
}
|
|
82
|
-
/** Send a Apple Sign In token to the server. Used with authenticate/link/unlink. */
|
|
83
|
-
export interface AccountApple {
|
|
84
|
-
/** The ID token received from Apple to validate. */
|
|
85
|
-
token: string;
|
|
86
|
-
/** Extra information that will be bundled in the session token. */
|
|
87
|
-
vars: {
|
|
88
|
-
[key: string]: string;
|
|
89
|
-
};
|
|
90
|
-
}
|
|
91
|
-
export interface AccountApple_VarsEntry {
|
|
92
|
-
key: string;
|
|
93
|
-
value: string;
|
|
94
|
-
}
|
|
95
|
-
/** Send a device to the server. Used with authenticate/link/unlink and user. */
|
|
96
|
-
export interface AccountDevice {
|
|
97
|
-
/** A device identifier. Should be obtained by a platform-specific device API. */
|
|
98
|
-
id: string;
|
|
99
|
-
/** Extra information that will be bundled in the session token. */
|
|
100
|
-
vars: {
|
|
101
|
-
[key: string]: string;
|
|
102
|
-
};
|
|
103
|
-
}
|
|
104
|
-
export interface AccountDevice_VarsEntry {
|
|
105
|
-
key: string;
|
|
106
|
-
value: string;
|
|
107
|
-
}
|
|
108
|
-
/** Send an email with password to the server. Used with authenticate/link/unlink. */
|
|
109
|
-
export interface AccountEmail {
|
|
110
|
-
/** A valid RFC-5322 email address. */
|
|
111
|
-
email: string;
|
|
112
|
-
/** A password for the user account. */
|
|
113
|
-
password: string;
|
|
114
|
-
/** Extra information that will be bundled in the session token. */
|
|
115
|
-
vars: {
|
|
116
|
-
[key: string]: string;
|
|
117
|
-
};
|
|
118
|
-
}
|
|
119
|
-
export interface AccountEmail_VarsEntry {
|
|
120
|
-
key: string;
|
|
121
|
-
value: string;
|
|
122
|
-
}
|
|
123
|
-
/** Send a Facebook token to the server. Used with authenticate/link/unlink. */
|
|
124
|
-
export interface AccountFacebook {
|
|
125
|
-
/** The OAuth token received from Facebook to access their profile API. */
|
|
126
|
-
token: string;
|
|
127
|
-
/** Extra information that will be bundled in the session token. */
|
|
128
|
-
vars: {
|
|
129
|
-
[key: string]: string;
|
|
130
|
-
};
|
|
131
|
-
}
|
|
132
|
-
export interface AccountFacebook_VarsEntry {
|
|
133
|
-
key: string;
|
|
134
|
-
value: string;
|
|
135
|
-
}
|
|
136
|
-
/** Send a Facebook Instant Game token to the server. Used with authenticate/link/unlink. */
|
|
137
|
-
export interface AccountFacebookInstantGame {
|
|
138
|
-
/** The OAuth token received from a Facebook Instant Game that may be decoded with the Application Secret (must be available with the mezon configuration) */
|
|
139
|
-
signed_player_info: string;
|
|
140
|
-
/** Extra information that will be bundled in the session token. */
|
|
141
|
-
vars: {
|
|
142
|
-
[key: string]: string;
|
|
143
|
-
};
|
|
144
|
-
}
|
|
145
|
-
export interface AccountFacebookInstantGame_VarsEntry {
|
|
146
|
-
key: string;
|
|
147
|
-
value: string;
|
|
148
|
-
}
|
|
149
|
-
/** Send Apple's Game Center account credentials to the server. Used with authenticate/link/unlink. */
|
|
150
|
-
export interface AccountGameCenter {
|
|
151
|
-
/** Player ID (generated by GameCenter). */
|
|
152
|
-
player_id: string;
|
|
153
|
-
/** Bundle ID (generated by GameCenter). */
|
|
154
|
-
bundle_id: string;
|
|
155
|
-
/** Time since UNIX epoch when the signature was created. */
|
|
156
|
-
timestamp_seconds: number;
|
|
157
|
-
/** A random "NSString" used to compute the hash and keep it randomized. */
|
|
158
|
-
salt: string;
|
|
159
|
-
/** The verification signature data generated. */
|
|
160
|
-
signature: string;
|
|
161
|
-
/** The URL for the public encryption key. */
|
|
162
|
-
public_key_url: string;
|
|
163
|
-
/** Extra information that will be bundled in the session token. */
|
|
164
|
-
vars: {
|
|
165
|
-
[key: string]: string;
|
|
166
|
-
};
|
|
167
|
-
}
|
|
168
|
-
export interface AccountGameCenter_VarsEntry {
|
|
169
|
-
key: string;
|
|
170
|
-
value: string;
|
|
171
|
-
}
|
|
172
|
-
/** Send a Google token to the server. Used with authenticate/link/unlink. */
|
|
173
|
-
export interface AccountGoogle {
|
|
174
|
-
/** The OAuth token received from Google to access their profile API. */
|
|
175
|
-
token: string;
|
|
176
|
-
/** Extra information that will be bundled in the session token. */
|
|
177
|
-
vars: {
|
|
178
|
-
[key: string]: string;
|
|
179
|
-
};
|
|
180
|
-
}
|
|
181
|
-
export interface AccountGoogle_VarsEntry {
|
|
182
|
-
key: string;
|
|
183
|
-
value: string;
|
|
184
|
-
}
|
|
185
|
-
/** Send a Mezon token to the server. Used with authenticate/link/unlink. */
|
|
186
|
-
export interface AccountMezon {
|
|
187
|
-
/** The OAuth token received from Google to access their profile API. */
|
|
188
|
-
token: string;
|
|
189
|
-
/** Extra information that will be bundled in the session token. */
|
|
190
|
-
vars: {
|
|
191
|
-
[key: string]: string;
|
|
192
|
-
};
|
|
193
|
-
}
|
|
194
|
-
export interface AccountMezon_VarsEntry {
|
|
195
|
-
key: string;
|
|
196
|
-
value: string;
|
|
197
|
-
}
|
|
198
|
-
/** Send a Steam token to the server. Used with authenticate/link/unlink. */
|
|
199
|
-
export interface AccountSteam {
|
|
200
|
-
/** The account token received from Steam to access their profile API. */
|
|
201
|
-
token: string;
|
|
202
|
-
/** Extra information that will be bundled in the session token. */
|
|
203
|
-
vars: {
|
|
204
|
-
[key: string]: string;
|
|
205
|
-
};
|
|
206
|
-
}
|
|
207
|
-
export interface AccountSteam_VarsEntry {
|
|
208
|
-
key: string;
|
|
209
|
-
value: string;
|
|
210
|
-
}
|
|
211
80
|
/** Add one or more friends to the current user. */
|
|
212
81
|
export interface AddFriendsRequest {
|
|
213
82
|
/** The account id of a user. */
|
|
@@ -250,93 +119,6 @@ export interface SessionLogoutRequest {
|
|
|
250
119
|
/** platform */
|
|
251
120
|
platform: string;
|
|
252
121
|
}
|
|
253
|
-
/** Authenticate against the server with Apple Sign In. */
|
|
254
|
-
export interface AuthenticateAppleRequest {
|
|
255
|
-
/** The Apple account details. */
|
|
256
|
-
account: AccountApple | undefined;
|
|
257
|
-
/** Register the account if the user does not already exist. */
|
|
258
|
-
create: boolean | undefined;
|
|
259
|
-
/** Set the username on the account at register. Must be unique. */
|
|
260
|
-
username: string;
|
|
261
|
-
}
|
|
262
|
-
/** Authenticate against the server with a device ID. */
|
|
263
|
-
export interface AuthenticateDeviceRequest {
|
|
264
|
-
/** The device account details. */
|
|
265
|
-
account: AccountDevice | undefined;
|
|
266
|
-
/** Register the account if the user does not already exist. */
|
|
267
|
-
create: boolean | undefined;
|
|
268
|
-
/** Set the username on the account at register. Must be unique. */
|
|
269
|
-
username: string;
|
|
270
|
-
}
|
|
271
|
-
/** Authenticate against the server with email+password. */
|
|
272
|
-
export interface AuthenticateEmailRequest {
|
|
273
|
-
/** The email account details. */
|
|
274
|
-
account: AccountEmail | undefined;
|
|
275
|
-
/** Register the account if the user does not already exist. */
|
|
276
|
-
create: boolean | undefined;
|
|
277
|
-
/** Set the username on the account at register. Must be unique. */
|
|
278
|
-
username: string;
|
|
279
|
-
}
|
|
280
|
-
/** Authenticate against the server with Facebook. */
|
|
281
|
-
export interface AuthenticateFacebookRequest {
|
|
282
|
-
/** The Facebook account details. */
|
|
283
|
-
account: AccountFacebook | undefined;
|
|
284
|
-
/** Register the account if the user does not already exist. */
|
|
285
|
-
create: boolean | undefined;
|
|
286
|
-
/** Set the username on the account at register. Must be unique. */
|
|
287
|
-
username: string;
|
|
288
|
-
/** Import Facebook friends for the user. */
|
|
289
|
-
sync: boolean | undefined;
|
|
290
|
-
}
|
|
291
|
-
/** Authenticate against the server with Facebook Instant Game token. */
|
|
292
|
-
export interface AuthenticateFacebookInstantGameRequest {
|
|
293
|
-
/** The Facebook Instant Game account details. */
|
|
294
|
-
account: AccountFacebookInstantGame | undefined;
|
|
295
|
-
/** Register the account if the user does not already exist. */
|
|
296
|
-
create: boolean | undefined;
|
|
297
|
-
/** Set the username on the account at register. Must be unique. */
|
|
298
|
-
username: string;
|
|
299
|
-
}
|
|
300
|
-
/** Authenticate against the server with Apple's Game Center. */
|
|
301
|
-
export interface AuthenticateGameCenterRequest {
|
|
302
|
-
/** The Game Center account details. */
|
|
303
|
-
account: AccountGameCenter | undefined;
|
|
304
|
-
/** Register the account if the user does not already exist. */
|
|
305
|
-
create: boolean | undefined;
|
|
306
|
-
/** Set the username on the account at register. Must be unique. */
|
|
307
|
-
username: string;
|
|
308
|
-
}
|
|
309
|
-
/** Authenticate against the server with Google. */
|
|
310
|
-
export interface AuthenticateGoogleRequest {
|
|
311
|
-
/** The Google account details. */
|
|
312
|
-
account: AccountGoogle | undefined;
|
|
313
|
-
/** Register the account if the user does not already exist. */
|
|
314
|
-
create: boolean | undefined;
|
|
315
|
-
/** Set the username on the account at register. Must be unique. */
|
|
316
|
-
username: string;
|
|
317
|
-
}
|
|
318
|
-
/** Authenticate against the server with Mezon. */
|
|
319
|
-
export interface AuthenticateMezonRequest {
|
|
320
|
-
/** The Mezon account details. */
|
|
321
|
-
account: AccountMezon | undefined;
|
|
322
|
-
/** Register the account if the user does not already exist. */
|
|
323
|
-
create: boolean | undefined;
|
|
324
|
-
/** Set the username on the account at register. Must be unique. */
|
|
325
|
-
username: string;
|
|
326
|
-
/** Whether to enable "Remember Me" for extended session duration. */
|
|
327
|
-
is_remember: boolean | undefined;
|
|
328
|
-
}
|
|
329
|
-
/** Authenticate against the server with Steam. */
|
|
330
|
-
export interface AuthenticateSteamRequest {
|
|
331
|
-
/** The Steam account details. */
|
|
332
|
-
account: AccountSteam | undefined;
|
|
333
|
-
/** Register the account if the user does not already exist. */
|
|
334
|
-
create: boolean | undefined;
|
|
335
|
-
/** Set the username on the account at register. Must be unique. */
|
|
336
|
-
username: string;
|
|
337
|
-
/** Import Steam friends for the user. */
|
|
338
|
-
sync: boolean | undefined;
|
|
339
|
-
}
|
|
340
122
|
/** Ban users from a group. */
|
|
341
123
|
export interface BanGroupUsersRequest {
|
|
342
124
|
/** The group to ban users from. */
|
|
@@ -794,20 +576,6 @@ export interface ClanUserList_ClanUser {
|
|
|
794
576
|
/** */
|
|
795
577
|
clan_id: string;
|
|
796
578
|
}
|
|
797
|
-
/** Import Facebook friends into the current user's account. */
|
|
798
|
-
export interface ImportFacebookFriendsRequest {
|
|
799
|
-
/** The Facebook account details. */
|
|
800
|
-
account: AccountFacebook | undefined;
|
|
801
|
-
/** Reset the current user's friends list. */
|
|
802
|
-
reset: boolean | undefined;
|
|
803
|
-
}
|
|
804
|
-
/** Import Facebook friends into the current user's account. */
|
|
805
|
-
export interface ImportSteamFriendsRequest {
|
|
806
|
-
/** The Facebook account details. */
|
|
807
|
-
account: AccountSteam | undefined;
|
|
808
|
-
/** Reset the current user's friends list. */
|
|
809
|
-
reset: boolean | undefined;
|
|
810
|
-
}
|
|
811
579
|
export interface RegistFcmDeviceTokenRequest {
|
|
812
580
|
/** The token */
|
|
813
581
|
token: string;
|
|
@@ -824,20 +592,6 @@ export interface RegistFcmDeviceTokenResponse {
|
|
|
824
592
|
/** */
|
|
825
593
|
platform: string;
|
|
826
594
|
}
|
|
827
|
-
/** Link Facebook to the current user's account. */
|
|
828
|
-
export interface LinkFacebookRequest {
|
|
829
|
-
/** The Facebook account details. */
|
|
830
|
-
account: AccountFacebook | undefined;
|
|
831
|
-
/** Import Facebook friends for the user. */
|
|
832
|
-
sync: boolean | undefined;
|
|
833
|
-
}
|
|
834
|
-
/** Link Steam to the current user's account. */
|
|
835
|
-
export interface LinkSteamRequest {
|
|
836
|
-
/** The Facebook account details. */
|
|
837
|
-
account: AccountSteam | undefined;
|
|
838
|
-
/** Import Steam friends for the user. */
|
|
839
|
-
sync: boolean | undefined;
|
|
840
|
-
}
|
|
841
595
|
/** List a channel's message history. */
|
|
842
596
|
export interface ListChannelMessagesRequest {
|
|
843
597
|
/** the clan id */
|
|
@@ -1299,6 +1053,8 @@ export interface InviteUserRes {
|
|
|
1299
1053
|
expiry_time: Date | undefined;
|
|
1300
1054
|
/** */
|
|
1301
1055
|
channel_desc: ChannelDescription | undefined;
|
|
1056
|
+
clan_logo: string;
|
|
1057
|
+
member_count: number;
|
|
1302
1058
|
}
|
|
1303
1059
|
/** Add link invite users to. */
|
|
1304
1060
|
export interface JoinClanChannelRequest {
|
|
@@ -2396,28 +2152,6 @@ export interface AppClan {
|
|
|
2396
2152
|
app_id: string;
|
|
2397
2153
|
clan_id: string;
|
|
2398
2154
|
}
|
|
2399
|
-
/** Authenticate against the server with a device ID. */
|
|
2400
|
-
export interface AuthenticateRequest {
|
|
2401
|
-
/** The App account details. */
|
|
2402
|
-
account: AccountApp | undefined;
|
|
2403
|
-
}
|
|
2404
|
-
/** Send a app token to the server. Used with authenticate/link/unlink. */
|
|
2405
|
-
export interface AccountApp {
|
|
2406
|
-
/** The app id */
|
|
2407
|
-
appid: string;
|
|
2408
|
-
/** the app name */
|
|
2409
|
-
appname: string;
|
|
2410
|
-
/** The account token when create apps to access their profile API. */
|
|
2411
|
-
token: string;
|
|
2412
|
-
/** Extra information that will be bundled in the session token. */
|
|
2413
|
-
vars: {
|
|
2414
|
-
[key: string]: string;
|
|
2415
|
-
};
|
|
2416
|
-
}
|
|
2417
|
-
export interface AccountApp_VarsEntry {
|
|
2418
|
-
key: string;
|
|
2419
|
-
value: string;
|
|
2420
|
-
}
|
|
2421
2155
|
/** Delete channel messages by timestamp or/and ids. */
|
|
2422
2156
|
export interface DeleteChannelMessagesRequest {
|
|
2423
2157
|
/** Timestamp before which messages will be deleted. */
|
|
@@ -3292,10 +3026,6 @@ export interface GenerateHashChannelAppsRequest {
|
|
|
3292
3026
|
export interface GenerateHashChannelAppsResponse {
|
|
3293
3027
|
web_app_data: string;
|
|
3294
3028
|
}
|
|
3295
|
-
export interface GetMezonAccountRequest {
|
|
3296
|
-
secret: string;
|
|
3297
|
-
email: string;
|
|
3298
|
-
}
|
|
3299
3029
|
export interface Message2InboxRequest {
|
|
3300
3030
|
message_id: string;
|
|
3301
3031
|
channel_id: string;
|
|
@@ -3307,6 +3037,34 @@ export interface Message2InboxRequest {
|
|
|
3307
3037
|
reactions: string;
|
|
3308
3038
|
references: string;
|
|
3309
3039
|
}
|
|
3040
|
+
/** Send an email with password to the server. Used with authenticate/link/unlink. */
|
|
3041
|
+
export interface AccountEmail {
|
|
3042
|
+
/** A valid RFC-5322 email address. */
|
|
3043
|
+
email: string;
|
|
3044
|
+
/** A password for the user account. */
|
|
3045
|
+
password: string;
|
|
3046
|
+
/** Extra information that will be bundled in the session token. */
|
|
3047
|
+
vars: {
|
|
3048
|
+
[key: string]: string;
|
|
3049
|
+
};
|
|
3050
|
+
}
|
|
3051
|
+
export interface AccountEmail_VarsEntry {
|
|
3052
|
+
key: string;
|
|
3053
|
+
value: string;
|
|
3054
|
+
}
|
|
3055
|
+
/** Send a Mezon token to the server. Used with authenticate/link/unlink. */
|
|
3056
|
+
export interface AccountMezon {
|
|
3057
|
+
/** The OAuth token received from Google to access their profile API. */
|
|
3058
|
+
token: string;
|
|
3059
|
+
/** Extra information that will be bundled in the session token. */
|
|
3060
|
+
vars: {
|
|
3061
|
+
[key: string]: string;
|
|
3062
|
+
};
|
|
3063
|
+
}
|
|
3064
|
+
export interface AccountMezon_VarsEntry {
|
|
3065
|
+
key: string;
|
|
3066
|
+
value: string;
|
|
3067
|
+
}
|
|
3310
3068
|
export declare const Account: {
|
|
3311
3069
|
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
3312
3070
|
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
@@ -3339,12 +3097,6 @@ export declare const Account: {
|
|
|
3339
3097
|
} | undefined;
|
|
3340
3098
|
wallet?: string | undefined;
|
|
3341
3099
|
email?: string | undefined;
|
|
3342
|
-
devices?: {
|
|
3343
|
-
id?: string | undefined;
|
|
3344
|
-
vars?: {
|
|
3345
|
-
[x: string]: string | undefined;
|
|
3346
|
-
} | undefined;
|
|
3347
|
-
}[] | undefined;
|
|
3348
3100
|
mezon_id?: string | undefined;
|
|
3349
3101
|
verify_time?: Date | undefined;
|
|
3350
3102
|
disable_time?: Date | undefined;
|
|
@@ -3401,36 +3153,13 @@ export declare const Account: {
|
|
|
3401
3153
|
} & { [K in Exclude<keyof I["user"], keyof User>]: never; }) | undefined;
|
|
3402
3154
|
wallet?: string | undefined;
|
|
3403
3155
|
email?: string | undefined;
|
|
3404
|
-
devices?: ({
|
|
3405
|
-
id?: string | undefined;
|
|
3406
|
-
vars?: {
|
|
3407
|
-
[x: string]: string | undefined;
|
|
3408
|
-
} | undefined;
|
|
3409
|
-
}[] & ({
|
|
3410
|
-
id?: string | undefined;
|
|
3411
|
-
vars?: {
|
|
3412
|
-
[x: string]: string | undefined;
|
|
3413
|
-
} | undefined;
|
|
3414
|
-
} & {
|
|
3415
|
-
id?: string | undefined;
|
|
3416
|
-
vars?: ({
|
|
3417
|
-
[x: string]: string | undefined;
|
|
3418
|
-
} & {
|
|
3419
|
-
[x: string]: string | undefined;
|
|
3420
|
-
} & { [K_1 in Exclude<keyof I["devices"][number]["vars"], string | number>]: never; }) | undefined;
|
|
3421
|
-
} & { [K_2 in Exclude<keyof I["devices"][number], keyof AccountDevice>]: never; })[] & { [K_3 in Exclude<keyof I["devices"], keyof {
|
|
3422
|
-
id?: string | undefined;
|
|
3423
|
-
vars?: {
|
|
3424
|
-
[x: string]: string | undefined;
|
|
3425
|
-
} | undefined;
|
|
3426
|
-
}[]>]: never; }) | undefined;
|
|
3427
3156
|
mezon_id?: string | undefined;
|
|
3428
3157
|
verify_time?: Date | undefined;
|
|
3429
3158
|
disable_time?: Date | undefined;
|
|
3430
3159
|
logo?: string | undefined;
|
|
3431
3160
|
splash_screen?: string | undefined;
|
|
3432
3161
|
encrypt_private_key?: string | undefined;
|
|
3433
|
-
} & { [
|
|
3162
|
+
} & { [K_1 in Exclude<keyof I, keyof Account>]: never; }>(base?: I | undefined): Account;
|
|
3434
3163
|
fromPartial<I_1 extends {
|
|
3435
3164
|
user?: {
|
|
3436
3165
|
id?: string | undefined;
|
|
@@ -3458,12 +3187,6 @@ export declare const Account: {
|
|
|
3458
3187
|
} | undefined;
|
|
3459
3188
|
wallet?: string | undefined;
|
|
3460
3189
|
email?: string | undefined;
|
|
3461
|
-
devices?: {
|
|
3462
|
-
id?: string | undefined;
|
|
3463
|
-
vars?: {
|
|
3464
|
-
[x: string]: string | undefined;
|
|
3465
|
-
} | undefined;
|
|
3466
|
-
}[] | undefined;
|
|
3467
3190
|
mezon_id?: string | undefined;
|
|
3468
3191
|
verify_time?: Date | undefined;
|
|
3469
3192
|
disable_time?: Date | undefined;
|
|
@@ -3517,39 +3240,16 @@ export declare const Account: {
|
|
|
3517
3240
|
is_mobile?: boolean | undefined;
|
|
3518
3241
|
dob?: Date | undefined;
|
|
3519
3242
|
mezon_id?: string | undefined;
|
|
3520
|
-
} & { [
|
|
3243
|
+
} & { [K_2 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
3521
3244
|
wallet?: string | undefined;
|
|
3522
3245
|
email?: string | undefined;
|
|
3523
|
-
devices?: ({
|
|
3524
|
-
id?: string | undefined;
|
|
3525
|
-
vars?: {
|
|
3526
|
-
[x: string]: string | undefined;
|
|
3527
|
-
} | undefined;
|
|
3528
|
-
}[] & ({
|
|
3529
|
-
id?: string | undefined;
|
|
3530
|
-
vars?: {
|
|
3531
|
-
[x: string]: string | undefined;
|
|
3532
|
-
} | undefined;
|
|
3533
|
-
} & {
|
|
3534
|
-
id?: string | undefined;
|
|
3535
|
-
vars?: ({
|
|
3536
|
-
[x: string]: string | undefined;
|
|
3537
|
-
} & {
|
|
3538
|
-
[x: string]: string | undefined;
|
|
3539
|
-
} & { [K_6 in Exclude<keyof I_1["devices"][number]["vars"], string | number>]: never; }) | undefined;
|
|
3540
|
-
} & { [K_7 in Exclude<keyof I_1["devices"][number], keyof AccountDevice>]: never; })[] & { [K_8 in Exclude<keyof I_1["devices"], keyof {
|
|
3541
|
-
id?: string | undefined;
|
|
3542
|
-
vars?: {
|
|
3543
|
-
[x: string]: string | undefined;
|
|
3544
|
-
} | undefined;
|
|
3545
|
-
}[]>]: never; }) | undefined;
|
|
3546
3246
|
mezon_id?: string | undefined;
|
|
3547
3247
|
verify_time?: Date | undefined;
|
|
3548
3248
|
disable_time?: Date | undefined;
|
|
3549
3249
|
logo?: string | undefined;
|
|
3550
3250
|
splash_screen?: string | undefined;
|
|
3551
3251
|
encrypt_private_key?: string | undefined;
|
|
3552
|
-
} & { [
|
|
3252
|
+
} & { [K_3 in Exclude<keyof I_1, keyof Account>]: never; }>(object: I_1): Account;
|
|
3553
3253
|
};
|
|
3554
3254
|
export declare const AccountRefresh: {
|
|
3555
3255
|
encode(message: AccountRefresh, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -3596,1202 +3296,140 @@ export declare const AccountRefresh_VarsEntry: {
|
|
|
3596
3296
|
value?: string | undefined;
|
|
3597
3297
|
} & { [K in Exclude<keyof I, keyof AccountRefresh_VarsEntry>]: never; }>(base?: I | undefined): AccountRefresh_VarsEntry;
|
|
3598
3298
|
fromPartial<I_1 extends {
|
|
3599
|
-
key?: string | undefined;
|
|
3600
|
-
value?: string | undefined;
|
|
3601
|
-
} & {
|
|
3602
|
-
key?: string | undefined;
|
|
3603
|
-
value?: string | undefined;
|
|
3604
|
-
} & { [K_1 in Exclude<keyof I_1, keyof AccountRefresh_VarsEntry>]: never; }>(object: I_1): AccountRefresh_VarsEntry;
|
|
3605
|
-
};
|
|
3606
|
-
export declare const AccountApple: {
|
|
3607
|
-
encode(message: AccountApple, writer?: _m0.Writer): _m0.Writer;
|
|
3608
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountApple;
|
|
3609
|
-
fromJSON(object: any): AccountApple;
|
|
3610
|
-
toJSON(message: AccountApple): unknown;
|
|
3611
|
-
create<I extends {
|
|
3612
|
-
token?: string | undefined;
|
|
3613
|
-
vars?: {
|
|
3614
|
-
[x: string]: string | undefined;
|
|
3615
|
-
} | undefined;
|
|
3616
|
-
} & {
|
|
3617
|
-
token?: string | undefined;
|
|
3618
|
-
vars?: ({
|
|
3619
|
-
[x: string]: string | undefined;
|
|
3620
|
-
} & {
|
|
3621
|
-
[x: string]: string | undefined;
|
|
3622
|
-
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
3623
|
-
} & { [K_1 in Exclude<keyof I, keyof AccountApple>]: never; }>(base?: I | undefined): AccountApple;
|
|
3624
|
-
fromPartial<I_1 extends {
|
|
3625
|
-
token?: string | undefined;
|
|
3626
|
-
vars?: {
|
|
3627
|
-
[x: string]: string | undefined;
|
|
3628
|
-
} | undefined;
|
|
3629
|
-
} & {
|
|
3630
|
-
token?: string | undefined;
|
|
3631
|
-
vars?: ({
|
|
3632
|
-
[x: string]: string | undefined;
|
|
3633
|
-
} & {
|
|
3634
|
-
[x: string]: string | undefined;
|
|
3635
|
-
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
3636
|
-
} & { [K_3 in Exclude<keyof I_1, keyof AccountApple>]: never; }>(object: I_1): AccountApple;
|
|
3637
|
-
};
|
|
3638
|
-
export declare const AccountApple_VarsEntry: {
|
|
3639
|
-
encode(message: AccountApple_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
3640
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountApple_VarsEntry;
|
|
3641
|
-
fromJSON(object: any): AccountApple_VarsEntry;
|
|
3642
|
-
toJSON(message: AccountApple_VarsEntry): unknown;
|
|
3643
|
-
create<I extends {
|
|
3644
|
-
key?: string | undefined;
|
|
3645
|
-
value?: string | undefined;
|
|
3646
|
-
} & {
|
|
3647
|
-
key?: string | undefined;
|
|
3648
|
-
value?: string | undefined;
|
|
3649
|
-
} & { [K in Exclude<keyof I, keyof AccountApple_VarsEntry>]: never; }>(base?: I | undefined): AccountApple_VarsEntry;
|
|
3650
|
-
fromPartial<I_1 extends {
|
|
3651
|
-
key?: string | undefined;
|
|
3652
|
-
value?: string | undefined;
|
|
3653
|
-
} & {
|
|
3654
|
-
key?: string | undefined;
|
|
3655
|
-
value?: string | undefined;
|
|
3656
|
-
} & { [K_1 in Exclude<keyof I_1, keyof AccountApple_VarsEntry>]: never; }>(object: I_1): AccountApple_VarsEntry;
|
|
3657
|
-
};
|
|
3658
|
-
export declare const AccountDevice: {
|
|
3659
|
-
encode(message: AccountDevice, writer?: _m0.Writer): _m0.Writer;
|
|
3660
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountDevice;
|
|
3661
|
-
fromJSON(object: any): AccountDevice;
|
|
3662
|
-
toJSON(message: AccountDevice): unknown;
|
|
3663
|
-
create<I extends {
|
|
3664
|
-
id?: string | undefined;
|
|
3665
|
-
vars?: {
|
|
3666
|
-
[x: string]: string | undefined;
|
|
3667
|
-
} | undefined;
|
|
3668
|
-
} & {
|
|
3669
|
-
id?: string | undefined;
|
|
3670
|
-
vars?: ({
|
|
3671
|
-
[x: string]: string | undefined;
|
|
3672
|
-
} & {
|
|
3673
|
-
[x: string]: string | undefined;
|
|
3674
|
-
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
3675
|
-
} & { [K_1 in Exclude<keyof I, keyof AccountDevice>]: never; }>(base?: I | undefined): AccountDevice;
|
|
3676
|
-
fromPartial<I_1 extends {
|
|
3677
|
-
id?: string | undefined;
|
|
3678
|
-
vars?: {
|
|
3679
|
-
[x: string]: string | undefined;
|
|
3680
|
-
} | undefined;
|
|
3681
|
-
} & {
|
|
3682
|
-
id?: string | undefined;
|
|
3683
|
-
vars?: ({
|
|
3684
|
-
[x: string]: string | undefined;
|
|
3685
|
-
} & {
|
|
3686
|
-
[x: string]: string | undefined;
|
|
3687
|
-
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
3688
|
-
} & { [K_3 in Exclude<keyof I_1, keyof AccountDevice>]: never; }>(object: I_1): AccountDevice;
|
|
3689
|
-
};
|
|
3690
|
-
export declare const AccountDevice_VarsEntry: {
|
|
3691
|
-
encode(message: AccountDevice_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
3692
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountDevice_VarsEntry;
|
|
3693
|
-
fromJSON(object: any): AccountDevice_VarsEntry;
|
|
3694
|
-
toJSON(message: AccountDevice_VarsEntry): unknown;
|
|
3695
|
-
create<I extends {
|
|
3696
|
-
key?: string | undefined;
|
|
3697
|
-
value?: string | undefined;
|
|
3698
|
-
} & {
|
|
3699
|
-
key?: string | undefined;
|
|
3700
|
-
value?: string | undefined;
|
|
3701
|
-
} & { [K in Exclude<keyof I, keyof AccountDevice_VarsEntry>]: never; }>(base?: I | undefined): AccountDevice_VarsEntry;
|
|
3702
|
-
fromPartial<I_1 extends {
|
|
3703
|
-
key?: string | undefined;
|
|
3704
|
-
value?: string | undefined;
|
|
3705
|
-
} & {
|
|
3706
|
-
key?: string | undefined;
|
|
3707
|
-
value?: string | undefined;
|
|
3708
|
-
} & { [K_1 in Exclude<keyof I_1, keyof AccountDevice_VarsEntry>]: never; }>(object: I_1): AccountDevice_VarsEntry;
|
|
3709
|
-
};
|
|
3710
|
-
export declare const AccountEmail: {
|
|
3711
|
-
encode(message: AccountEmail, writer?: _m0.Writer): _m0.Writer;
|
|
3712
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountEmail;
|
|
3713
|
-
fromJSON(object: any): AccountEmail;
|
|
3714
|
-
toJSON(message: AccountEmail): unknown;
|
|
3715
|
-
create<I extends {
|
|
3716
|
-
email?: string | undefined;
|
|
3717
|
-
password?: string | undefined;
|
|
3718
|
-
vars?: {
|
|
3719
|
-
[x: string]: string | undefined;
|
|
3720
|
-
} | undefined;
|
|
3721
|
-
} & {
|
|
3722
|
-
email?: string | undefined;
|
|
3723
|
-
password?: string | undefined;
|
|
3724
|
-
vars?: ({
|
|
3725
|
-
[x: string]: string | undefined;
|
|
3726
|
-
} & {
|
|
3727
|
-
[x: string]: string | undefined;
|
|
3728
|
-
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
3729
|
-
} & { [K_1 in Exclude<keyof I, keyof AccountEmail>]: never; }>(base?: I | undefined): AccountEmail;
|
|
3730
|
-
fromPartial<I_1 extends {
|
|
3731
|
-
email?: string | undefined;
|
|
3732
|
-
password?: string | undefined;
|
|
3733
|
-
vars?: {
|
|
3734
|
-
[x: string]: string | undefined;
|
|
3735
|
-
} | undefined;
|
|
3736
|
-
} & {
|
|
3737
|
-
email?: string | undefined;
|
|
3738
|
-
password?: string | undefined;
|
|
3739
|
-
vars?: ({
|
|
3740
|
-
[x: string]: string | undefined;
|
|
3741
|
-
} & {
|
|
3742
|
-
[x: string]: string | undefined;
|
|
3743
|
-
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
3744
|
-
} & { [K_3 in Exclude<keyof I_1, keyof AccountEmail>]: never; }>(object: I_1): AccountEmail;
|
|
3745
|
-
};
|
|
3746
|
-
export declare const AccountEmail_VarsEntry: {
|
|
3747
|
-
encode(message: AccountEmail_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
3748
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountEmail_VarsEntry;
|
|
3749
|
-
fromJSON(object: any): AccountEmail_VarsEntry;
|
|
3750
|
-
toJSON(message: AccountEmail_VarsEntry): unknown;
|
|
3751
|
-
create<I extends {
|
|
3752
|
-
key?: string | undefined;
|
|
3753
|
-
value?: string | undefined;
|
|
3754
|
-
} & {
|
|
3755
|
-
key?: string | undefined;
|
|
3756
|
-
value?: string | undefined;
|
|
3757
|
-
} & { [K in Exclude<keyof I, keyof AccountEmail_VarsEntry>]: never; }>(base?: I | undefined): AccountEmail_VarsEntry;
|
|
3758
|
-
fromPartial<I_1 extends {
|
|
3759
|
-
key?: string | undefined;
|
|
3760
|
-
value?: string | undefined;
|
|
3761
|
-
} & {
|
|
3762
|
-
key?: string | undefined;
|
|
3763
|
-
value?: string | undefined;
|
|
3764
|
-
} & { [K_1 in Exclude<keyof I_1, keyof AccountEmail_VarsEntry>]: never; }>(object: I_1): AccountEmail_VarsEntry;
|
|
3765
|
-
};
|
|
3766
|
-
export declare const AccountFacebook: {
|
|
3767
|
-
encode(message: AccountFacebook, writer?: _m0.Writer): _m0.Writer;
|
|
3768
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountFacebook;
|
|
3769
|
-
fromJSON(object: any): AccountFacebook;
|
|
3770
|
-
toJSON(message: AccountFacebook): unknown;
|
|
3771
|
-
create<I extends {
|
|
3772
|
-
token?: string | undefined;
|
|
3773
|
-
vars?: {
|
|
3774
|
-
[x: string]: string | undefined;
|
|
3775
|
-
} | undefined;
|
|
3776
|
-
} & {
|
|
3777
|
-
token?: string | undefined;
|
|
3778
|
-
vars?: ({
|
|
3779
|
-
[x: string]: string | undefined;
|
|
3780
|
-
} & {
|
|
3781
|
-
[x: string]: string | undefined;
|
|
3782
|
-
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
3783
|
-
} & { [K_1 in Exclude<keyof I, keyof AccountFacebook>]: never; }>(base?: I | undefined): AccountFacebook;
|
|
3784
|
-
fromPartial<I_1 extends {
|
|
3785
|
-
token?: string | undefined;
|
|
3786
|
-
vars?: {
|
|
3787
|
-
[x: string]: string | undefined;
|
|
3788
|
-
} | undefined;
|
|
3789
|
-
} & {
|
|
3790
|
-
token?: string | undefined;
|
|
3791
|
-
vars?: ({
|
|
3792
|
-
[x: string]: string | undefined;
|
|
3793
|
-
} & {
|
|
3794
|
-
[x: string]: string | undefined;
|
|
3795
|
-
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
3796
|
-
} & { [K_3 in Exclude<keyof I_1, keyof AccountFacebook>]: never; }>(object: I_1): AccountFacebook;
|
|
3797
|
-
};
|
|
3798
|
-
export declare const AccountFacebook_VarsEntry: {
|
|
3799
|
-
encode(message: AccountFacebook_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
3800
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountFacebook_VarsEntry;
|
|
3801
|
-
fromJSON(object: any): AccountFacebook_VarsEntry;
|
|
3802
|
-
toJSON(message: AccountFacebook_VarsEntry): unknown;
|
|
3803
|
-
create<I extends {
|
|
3804
|
-
key?: string | undefined;
|
|
3805
|
-
value?: string | undefined;
|
|
3806
|
-
} & {
|
|
3807
|
-
key?: string | undefined;
|
|
3808
|
-
value?: string | undefined;
|
|
3809
|
-
} & { [K in Exclude<keyof I, keyof AccountFacebook_VarsEntry>]: never; }>(base?: I | undefined): AccountFacebook_VarsEntry;
|
|
3810
|
-
fromPartial<I_1 extends {
|
|
3811
|
-
key?: string | undefined;
|
|
3812
|
-
value?: string | undefined;
|
|
3813
|
-
} & {
|
|
3814
|
-
key?: string | undefined;
|
|
3815
|
-
value?: string | undefined;
|
|
3816
|
-
} & { [K_1 in Exclude<keyof I_1, keyof AccountFacebook_VarsEntry>]: never; }>(object: I_1): AccountFacebook_VarsEntry;
|
|
3817
|
-
};
|
|
3818
|
-
export declare const AccountFacebookInstantGame: {
|
|
3819
|
-
encode(message: AccountFacebookInstantGame, writer?: _m0.Writer): _m0.Writer;
|
|
3820
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountFacebookInstantGame;
|
|
3821
|
-
fromJSON(object: any): AccountFacebookInstantGame;
|
|
3822
|
-
toJSON(message: AccountFacebookInstantGame): unknown;
|
|
3823
|
-
create<I extends {
|
|
3824
|
-
signed_player_info?: string | undefined;
|
|
3825
|
-
vars?: {
|
|
3826
|
-
[x: string]: string | undefined;
|
|
3827
|
-
} | undefined;
|
|
3828
|
-
} & {
|
|
3829
|
-
signed_player_info?: string | undefined;
|
|
3830
|
-
vars?: ({
|
|
3831
|
-
[x: string]: string | undefined;
|
|
3832
|
-
} & {
|
|
3833
|
-
[x: string]: string | undefined;
|
|
3834
|
-
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
3835
|
-
} & { [K_1 in Exclude<keyof I, keyof AccountFacebookInstantGame>]: never; }>(base?: I | undefined): AccountFacebookInstantGame;
|
|
3836
|
-
fromPartial<I_1 extends {
|
|
3837
|
-
signed_player_info?: string | undefined;
|
|
3838
|
-
vars?: {
|
|
3839
|
-
[x: string]: string | undefined;
|
|
3840
|
-
} | undefined;
|
|
3841
|
-
} & {
|
|
3842
|
-
signed_player_info?: string | undefined;
|
|
3843
|
-
vars?: ({
|
|
3844
|
-
[x: string]: string | undefined;
|
|
3845
|
-
} & {
|
|
3846
|
-
[x: string]: string | undefined;
|
|
3847
|
-
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
3848
|
-
} & { [K_3 in Exclude<keyof I_1, keyof AccountFacebookInstantGame>]: never; }>(object: I_1): AccountFacebookInstantGame;
|
|
3849
|
-
};
|
|
3850
|
-
export declare const AccountFacebookInstantGame_VarsEntry: {
|
|
3851
|
-
encode(message: AccountFacebookInstantGame_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
3852
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountFacebookInstantGame_VarsEntry;
|
|
3853
|
-
fromJSON(object: any): AccountFacebookInstantGame_VarsEntry;
|
|
3854
|
-
toJSON(message: AccountFacebookInstantGame_VarsEntry): unknown;
|
|
3855
|
-
create<I extends {
|
|
3856
|
-
key?: string | undefined;
|
|
3857
|
-
value?: string | undefined;
|
|
3858
|
-
} & {
|
|
3859
|
-
key?: string | undefined;
|
|
3860
|
-
value?: string | undefined;
|
|
3861
|
-
} & { [K in Exclude<keyof I, keyof AccountFacebookInstantGame_VarsEntry>]: never; }>(base?: I | undefined): AccountFacebookInstantGame_VarsEntry;
|
|
3862
|
-
fromPartial<I_1 extends {
|
|
3863
|
-
key?: string | undefined;
|
|
3864
|
-
value?: string | undefined;
|
|
3865
|
-
} & {
|
|
3866
|
-
key?: string | undefined;
|
|
3867
|
-
value?: string | undefined;
|
|
3868
|
-
} & { [K_1 in Exclude<keyof I_1, keyof AccountFacebookInstantGame_VarsEntry>]: never; }>(object: I_1): AccountFacebookInstantGame_VarsEntry;
|
|
3869
|
-
};
|
|
3870
|
-
export declare const AccountGameCenter: {
|
|
3871
|
-
encode(message: AccountGameCenter, writer?: _m0.Writer): _m0.Writer;
|
|
3872
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountGameCenter;
|
|
3873
|
-
fromJSON(object: any): AccountGameCenter;
|
|
3874
|
-
toJSON(message: AccountGameCenter): unknown;
|
|
3875
|
-
create<I extends {
|
|
3876
|
-
player_id?: string | undefined;
|
|
3877
|
-
bundle_id?: string | undefined;
|
|
3878
|
-
timestamp_seconds?: number | undefined;
|
|
3879
|
-
salt?: string | undefined;
|
|
3880
|
-
signature?: string | undefined;
|
|
3881
|
-
public_key_url?: string | undefined;
|
|
3882
|
-
vars?: {
|
|
3883
|
-
[x: string]: string | undefined;
|
|
3884
|
-
} | undefined;
|
|
3885
|
-
} & {
|
|
3886
|
-
player_id?: string | undefined;
|
|
3887
|
-
bundle_id?: string | undefined;
|
|
3888
|
-
timestamp_seconds?: number | undefined;
|
|
3889
|
-
salt?: string | undefined;
|
|
3890
|
-
signature?: string | undefined;
|
|
3891
|
-
public_key_url?: string | undefined;
|
|
3892
|
-
vars?: ({
|
|
3893
|
-
[x: string]: string | undefined;
|
|
3894
|
-
} & {
|
|
3895
|
-
[x: string]: string | undefined;
|
|
3896
|
-
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
3897
|
-
} & { [K_1 in Exclude<keyof I, keyof AccountGameCenter>]: never; }>(base?: I | undefined): AccountGameCenter;
|
|
3898
|
-
fromPartial<I_1 extends {
|
|
3899
|
-
player_id?: string | undefined;
|
|
3900
|
-
bundle_id?: string | undefined;
|
|
3901
|
-
timestamp_seconds?: number | undefined;
|
|
3902
|
-
salt?: string | undefined;
|
|
3903
|
-
signature?: string | undefined;
|
|
3904
|
-
public_key_url?: string | undefined;
|
|
3905
|
-
vars?: {
|
|
3906
|
-
[x: string]: string | undefined;
|
|
3907
|
-
} | undefined;
|
|
3908
|
-
} & {
|
|
3909
|
-
player_id?: string | undefined;
|
|
3910
|
-
bundle_id?: string | undefined;
|
|
3911
|
-
timestamp_seconds?: number | undefined;
|
|
3912
|
-
salt?: string | undefined;
|
|
3913
|
-
signature?: string | undefined;
|
|
3914
|
-
public_key_url?: string | undefined;
|
|
3915
|
-
vars?: ({
|
|
3916
|
-
[x: string]: string | undefined;
|
|
3917
|
-
} & {
|
|
3918
|
-
[x: string]: string | undefined;
|
|
3919
|
-
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
3920
|
-
} & { [K_3 in Exclude<keyof I_1, keyof AccountGameCenter>]: never; }>(object: I_1): AccountGameCenter;
|
|
3921
|
-
};
|
|
3922
|
-
export declare const AccountGameCenter_VarsEntry: {
|
|
3923
|
-
encode(message: AccountGameCenter_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
3924
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountGameCenter_VarsEntry;
|
|
3925
|
-
fromJSON(object: any): AccountGameCenter_VarsEntry;
|
|
3926
|
-
toJSON(message: AccountGameCenter_VarsEntry): unknown;
|
|
3927
|
-
create<I extends {
|
|
3928
|
-
key?: string | undefined;
|
|
3929
|
-
value?: string | undefined;
|
|
3930
|
-
} & {
|
|
3931
|
-
key?: string | undefined;
|
|
3932
|
-
value?: string | undefined;
|
|
3933
|
-
} & { [K in Exclude<keyof I, keyof AccountGameCenter_VarsEntry>]: never; }>(base?: I | undefined): AccountGameCenter_VarsEntry;
|
|
3934
|
-
fromPartial<I_1 extends {
|
|
3935
|
-
key?: string | undefined;
|
|
3936
|
-
value?: string | undefined;
|
|
3937
|
-
} & {
|
|
3938
|
-
key?: string | undefined;
|
|
3939
|
-
value?: string | undefined;
|
|
3940
|
-
} & { [K_1 in Exclude<keyof I_1, keyof AccountGameCenter_VarsEntry>]: never; }>(object: I_1): AccountGameCenter_VarsEntry;
|
|
3941
|
-
};
|
|
3942
|
-
export declare const AccountGoogle: {
|
|
3943
|
-
encode(message: AccountGoogle, writer?: _m0.Writer): _m0.Writer;
|
|
3944
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountGoogle;
|
|
3945
|
-
fromJSON(object: any): AccountGoogle;
|
|
3946
|
-
toJSON(message: AccountGoogle): unknown;
|
|
3947
|
-
create<I extends {
|
|
3948
|
-
token?: string | undefined;
|
|
3949
|
-
vars?: {
|
|
3950
|
-
[x: string]: string | undefined;
|
|
3951
|
-
} | undefined;
|
|
3952
|
-
} & {
|
|
3953
|
-
token?: string | undefined;
|
|
3954
|
-
vars?: ({
|
|
3955
|
-
[x: string]: string | undefined;
|
|
3956
|
-
} & {
|
|
3957
|
-
[x: string]: string | undefined;
|
|
3958
|
-
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
3959
|
-
} & { [K_1 in Exclude<keyof I, keyof AccountGoogle>]: never; }>(base?: I | undefined): AccountGoogle;
|
|
3960
|
-
fromPartial<I_1 extends {
|
|
3961
|
-
token?: string | undefined;
|
|
3962
|
-
vars?: {
|
|
3963
|
-
[x: string]: string | undefined;
|
|
3964
|
-
} | undefined;
|
|
3965
|
-
} & {
|
|
3966
|
-
token?: string | undefined;
|
|
3967
|
-
vars?: ({
|
|
3968
|
-
[x: string]: string | undefined;
|
|
3969
|
-
} & {
|
|
3970
|
-
[x: string]: string | undefined;
|
|
3971
|
-
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
3972
|
-
} & { [K_3 in Exclude<keyof I_1, keyof AccountGoogle>]: never; }>(object: I_1): AccountGoogle;
|
|
3973
|
-
};
|
|
3974
|
-
export declare const AccountGoogle_VarsEntry: {
|
|
3975
|
-
encode(message: AccountGoogle_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
3976
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountGoogle_VarsEntry;
|
|
3977
|
-
fromJSON(object: any): AccountGoogle_VarsEntry;
|
|
3978
|
-
toJSON(message: AccountGoogle_VarsEntry): unknown;
|
|
3979
|
-
create<I extends {
|
|
3980
|
-
key?: string | undefined;
|
|
3981
|
-
value?: string | undefined;
|
|
3982
|
-
} & {
|
|
3983
|
-
key?: string | undefined;
|
|
3984
|
-
value?: string | undefined;
|
|
3985
|
-
} & { [K in Exclude<keyof I, keyof AccountGoogle_VarsEntry>]: never; }>(base?: I | undefined): AccountGoogle_VarsEntry;
|
|
3986
|
-
fromPartial<I_1 extends {
|
|
3987
|
-
key?: string | undefined;
|
|
3988
|
-
value?: string | undefined;
|
|
3989
|
-
} & {
|
|
3990
|
-
key?: string | undefined;
|
|
3991
|
-
value?: string | undefined;
|
|
3992
|
-
} & { [K_1 in Exclude<keyof I_1, keyof AccountGoogle_VarsEntry>]: never; }>(object: I_1): AccountGoogle_VarsEntry;
|
|
3993
|
-
};
|
|
3994
|
-
export declare const AccountMezon: {
|
|
3995
|
-
encode(message: AccountMezon, writer?: _m0.Writer): _m0.Writer;
|
|
3996
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountMezon;
|
|
3997
|
-
fromJSON(object: any): AccountMezon;
|
|
3998
|
-
toJSON(message: AccountMezon): unknown;
|
|
3999
|
-
create<I extends {
|
|
4000
|
-
token?: string | undefined;
|
|
4001
|
-
vars?: {
|
|
4002
|
-
[x: string]: string | undefined;
|
|
4003
|
-
} | undefined;
|
|
4004
|
-
} & {
|
|
4005
|
-
token?: string | undefined;
|
|
4006
|
-
vars?: ({
|
|
4007
|
-
[x: string]: string | undefined;
|
|
4008
|
-
} & {
|
|
4009
|
-
[x: string]: string | undefined;
|
|
4010
|
-
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
4011
|
-
} & { [K_1 in Exclude<keyof I, keyof AccountMezon>]: never; }>(base?: I | undefined): AccountMezon;
|
|
4012
|
-
fromPartial<I_1 extends {
|
|
4013
|
-
token?: string | undefined;
|
|
4014
|
-
vars?: {
|
|
4015
|
-
[x: string]: string | undefined;
|
|
4016
|
-
} | undefined;
|
|
4017
|
-
} & {
|
|
4018
|
-
token?: string | undefined;
|
|
4019
|
-
vars?: ({
|
|
4020
|
-
[x: string]: string | undefined;
|
|
4021
|
-
} & {
|
|
4022
|
-
[x: string]: string | undefined;
|
|
4023
|
-
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
4024
|
-
} & { [K_3 in Exclude<keyof I_1, keyof AccountMezon>]: never; }>(object: I_1): AccountMezon;
|
|
4025
|
-
};
|
|
4026
|
-
export declare const AccountMezon_VarsEntry: {
|
|
4027
|
-
encode(message: AccountMezon_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
4028
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountMezon_VarsEntry;
|
|
4029
|
-
fromJSON(object: any): AccountMezon_VarsEntry;
|
|
4030
|
-
toJSON(message: AccountMezon_VarsEntry): unknown;
|
|
4031
|
-
create<I extends {
|
|
4032
|
-
key?: string | undefined;
|
|
4033
|
-
value?: string | undefined;
|
|
4034
|
-
} & {
|
|
4035
|
-
key?: string | undefined;
|
|
4036
|
-
value?: string | undefined;
|
|
4037
|
-
} & { [K in Exclude<keyof I, keyof AccountMezon_VarsEntry>]: never; }>(base?: I | undefined): AccountMezon_VarsEntry;
|
|
4038
|
-
fromPartial<I_1 extends {
|
|
4039
|
-
key?: string | undefined;
|
|
4040
|
-
value?: string | undefined;
|
|
4041
|
-
} & {
|
|
4042
|
-
key?: string | undefined;
|
|
4043
|
-
value?: string | undefined;
|
|
4044
|
-
} & { [K_1 in Exclude<keyof I_1, keyof AccountMezon_VarsEntry>]: never; }>(object: I_1): AccountMezon_VarsEntry;
|
|
4045
|
-
};
|
|
4046
|
-
export declare const AccountSteam: {
|
|
4047
|
-
encode(message: AccountSteam, writer?: _m0.Writer): _m0.Writer;
|
|
4048
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountSteam;
|
|
4049
|
-
fromJSON(object: any): AccountSteam;
|
|
4050
|
-
toJSON(message: AccountSteam): unknown;
|
|
4051
|
-
create<I extends {
|
|
4052
|
-
token?: string | undefined;
|
|
4053
|
-
vars?: {
|
|
4054
|
-
[x: string]: string | undefined;
|
|
4055
|
-
} | undefined;
|
|
4056
|
-
} & {
|
|
4057
|
-
token?: string | undefined;
|
|
4058
|
-
vars?: ({
|
|
4059
|
-
[x: string]: string | undefined;
|
|
4060
|
-
} & {
|
|
4061
|
-
[x: string]: string | undefined;
|
|
4062
|
-
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
4063
|
-
} & { [K_1 in Exclude<keyof I, keyof AccountSteam>]: never; }>(base?: I | undefined): AccountSteam;
|
|
4064
|
-
fromPartial<I_1 extends {
|
|
4065
|
-
token?: string | undefined;
|
|
4066
|
-
vars?: {
|
|
4067
|
-
[x: string]: string | undefined;
|
|
4068
|
-
} | undefined;
|
|
4069
|
-
} & {
|
|
4070
|
-
token?: string | undefined;
|
|
4071
|
-
vars?: ({
|
|
4072
|
-
[x: string]: string | undefined;
|
|
4073
|
-
} & {
|
|
4074
|
-
[x: string]: string | undefined;
|
|
4075
|
-
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
4076
|
-
} & { [K_3 in Exclude<keyof I_1, keyof AccountSteam>]: never; }>(object: I_1): AccountSteam;
|
|
4077
|
-
};
|
|
4078
|
-
export declare const AccountSteam_VarsEntry: {
|
|
4079
|
-
encode(message: AccountSteam_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
4080
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountSteam_VarsEntry;
|
|
4081
|
-
fromJSON(object: any): AccountSteam_VarsEntry;
|
|
4082
|
-
toJSON(message: AccountSteam_VarsEntry): unknown;
|
|
4083
|
-
create<I extends {
|
|
4084
|
-
key?: string | undefined;
|
|
4085
|
-
value?: string | undefined;
|
|
4086
|
-
} & {
|
|
4087
|
-
key?: string | undefined;
|
|
4088
|
-
value?: string | undefined;
|
|
4089
|
-
} & { [K in Exclude<keyof I, keyof AccountSteam_VarsEntry>]: never; }>(base?: I | undefined): AccountSteam_VarsEntry;
|
|
4090
|
-
fromPartial<I_1 extends {
|
|
4091
|
-
key?: string | undefined;
|
|
4092
|
-
value?: string | undefined;
|
|
4093
|
-
} & {
|
|
4094
|
-
key?: string | undefined;
|
|
4095
|
-
value?: string | undefined;
|
|
4096
|
-
} & { [K_1 in Exclude<keyof I_1, keyof AccountSteam_VarsEntry>]: never; }>(object: I_1): AccountSteam_VarsEntry;
|
|
4097
|
-
};
|
|
4098
|
-
export declare const AddFriendsRequest: {
|
|
4099
|
-
encode(message: AddFriendsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4100
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AddFriendsRequest;
|
|
4101
|
-
fromJSON(object: any): AddFriendsRequest;
|
|
4102
|
-
toJSON(message: AddFriendsRequest): unknown;
|
|
4103
|
-
create<I extends {
|
|
4104
|
-
ids?: string[] | undefined;
|
|
4105
|
-
usernames?: string[] | undefined;
|
|
4106
|
-
} & {
|
|
4107
|
-
ids?: (string[] & string[] & { [K in Exclude<keyof I["ids"], keyof string[]>]: never; }) | undefined;
|
|
4108
|
-
usernames?: (string[] & string[] & { [K_1 in Exclude<keyof I["usernames"], keyof string[]>]: never; }) | undefined;
|
|
4109
|
-
} & { [K_2 in Exclude<keyof I, keyof AddFriendsRequest>]: never; }>(base?: I | undefined): AddFriendsRequest;
|
|
4110
|
-
fromPartial<I_1 extends {
|
|
4111
|
-
ids?: string[] | undefined;
|
|
4112
|
-
usernames?: string[] | undefined;
|
|
4113
|
-
} & {
|
|
4114
|
-
ids?: (string[] & string[] & { [K_3 in Exclude<keyof I_1["ids"], keyof string[]>]: never; }) | undefined;
|
|
4115
|
-
usernames?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["usernames"], keyof string[]>]: never; }) | undefined;
|
|
4116
|
-
} & { [K_5 in Exclude<keyof I_1, keyof AddFriendsRequest>]: never; }>(object: I_1): AddFriendsRequest;
|
|
4117
|
-
};
|
|
4118
|
-
export declare const AddGroupUsersRequest: {
|
|
4119
|
-
encode(message: AddGroupUsersRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4120
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AddGroupUsersRequest;
|
|
4121
|
-
fromJSON(object: any): AddGroupUsersRequest;
|
|
4122
|
-
toJSON(message: AddGroupUsersRequest): unknown;
|
|
4123
|
-
create<I extends {
|
|
4124
|
-
group_id?: string | undefined;
|
|
4125
|
-
user_ids?: string[] | undefined;
|
|
4126
|
-
} & {
|
|
4127
|
-
group_id?: string | undefined;
|
|
4128
|
-
user_ids?: (string[] & string[] & { [K in Exclude<keyof I["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
4129
|
-
} & { [K_1 in Exclude<keyof I, keyof AddGroupUsersRequest>]: never; }>(base?: I | undefined): AddGroupUsersRequest;
|
|
4130
|
-
fromPartial<I_1 extends {
|
|
4131
|
-
group_id?: string | undefined;
|
|
4132
|
-
user_ids?: string[] | undefined;
|
|
4133
|
-
} & {
|
|
4134
|
-
group_id?: string | undefined;
|
|
4135
|
-
user_ids?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
4136
|
-
} & { [K_3 in Exclude<keyof I_1, keyof AddGroupUsersRequest>]: never; }>(object: I_1): AddGroupUsersRequest;
|
|
4137
|
-
};
|
|
4138
|
-
export declare const SessionRefreshRequest: {
|
|
4139
|
-
encode(message: SessionRefreshRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4140
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): SessionRefreshRequest;
|
|
4141
|
-
fromJSON(object: any): SessionRefreshRequest;
|
|
4142
|
-
toJSON(message: SessionRefreshRequest): unknown;
|
|
4143
|
-
create<I extends {
|
|
4144
|
-
token?: string | undefined;
|
|
4145
|
-
vars?: {
|
|
4146
|
-
[x: string]: string | undefined;
|
|
4147
|
-
} | undefined;
|
|
4148
|
-
is_remember?: boolean | undefined;
|
|
4149
|
-
} & {
|
|
4150
|
-
token?: string | undefined;
|
|
4151
|
-
vars?: ({
|
|
4152
|
-
[x: string]: string | undefined;
|
|
4153
|
-
} & {
|
|
4154
|
-
[x: string]: string | undefined;
|
|
4155
|
-
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
4156
|
-
is_remember?: boolean | undefined;
|
|
4157
|
-
} & { [K_1 in Exclude<keyof I, keyof SessionRefreshRequest>]: never; }>(base?: I | undefined): SessionRefreshRequest;
|
|
4158
|
-
fromPartial<I_1 extends {
|
|
4159
|
-
token?: string | undefined;
|
|
4160
|
-
vars?: {
|
|
4161
|
-
[x: string]: string | undefined;
|
|
4162
|
-
} | undefined;
|
|
4163
|
-
is_remember?: boolean | undefined;
|
|
4164
|
-
} & {
|
|
4165
|
-
token?: string | undefined;
|
|
4166
|
-
vars?: ({
|
|
4167
|
-
[x: string]: string | undefined;
|
|
4168
|
-
} & {
|
|
4169
|
-
[x: string]: string | undefined;
|
|
4170
|
-
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
4171
|
-
is_remember?: boolean | undefined;
|
|
4172
|
-
} & { [K_3 in Exclude<keyof I_1, keyof SessionRefreshRequest>]: never; }>(object: I_1): SessionRefreshRequest;
|
|
4173
|
-
};
|
|
4174
|
-
export declare const SessionRefreshRequest_VarsEntry: {
|
|
4175
|
-
encode(message: SessionRefreshRequest_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
4176
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): SessionRefreshRequest_VarsEntry;
|
|
4177
|
-
fromJSON(object: any): SessionRefreshRequest_VarsEntry;
|
|
4178
|
-
toJSON(message: SessionRefreshRequest_VarsEntry): unknown;
|
|
4179
|
-
create<I extends {
|
|
4180
|
-
key?: string | undefined;
|
|
4181
|
-
value?: string | undefined;
|
|
4182
|
-
} & {
|
|
4183
|
-
key?: string | undefined;
|
|
4184
|
-
value?: string | undefined;
|
|
4185
|
-
} & { [K in Exclude<keyof I, keyof SessionRefreshRequest_VarsEntry>]: never; }>(base?: I | undefined): SessionRefreshRequest_VarsEntry;
|
|
4186
|
-
fromPartial<I_1 extends {
|
|
4187
|
-
key?: string | undefined;
|
|
4188
|
-
value?: string | undefined;
|
|
4189
|
-
} & {
|
|
4190
|
-
key?: string | undefined;
|
|
4191
|
-
value?: string | undefined;
|
|
4192
|
-
} & { [K_1 in Exclude<keyof I_1, keyof SessionRefreshRequest_VarsEntry>]: never; }>(object: I_1): SessionRefreshRequest_VarsEntry;
|
|
4193
|
-
};
|
|
4194
|
-
export declare const SessionLogoutRequest: {
|
|
4195
|
-
encode(message: SessionLogoutRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4196
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): SessionLogoutRequest;
|
|
4197
|
-
fromJSON(object: any): SessionLogoutRequest;
|
|
4198
|
-
toJSON(message: SessionLogoutRequest): unknown;
|
|
4199
|
-
create<I extends {
|
|
4200
|
-
token?: string | undefined;
|
|
4201
|
-
refresh_token?: string | undefined;
|
|
4202
|
-
device_id?: string | undefined;
|
|
4203
|
-
fcm_token?: string | undefined;
|
|
4204
|
-
platform?: string | undefined;
|
|
4205
|
-
} & {
|
|
4206
|
-
token?: string | undefined;
|
|
4207
|
-
refresh_token?: string | undefined;
|
|
4208
|
-
device_id?: string | undefined;
|
|
4209
|
-
fcm_token?: string | undefined;
|
|
4210
|
-
platform?: string | undefined;
|
|
4211
|
-
} & { [K in Exclude<keyof I, keyof SessionLogoutRequest>]: never; }>(base?: I | undefined): SessionLogoutRequest;
|
|
4212
|
-
fromPartial<I_1 extends {
|
|
4213
|
-
token?: string | undefined;
|
|
4214
|
-
refresh_token?: string | undefined;
|
|
4215
|
-
device_id?: string | undefined;
|
|
4216
|
-
fcm_token?: string | undefined;
|
|
4217
|
-
platform?: string | undefined;
|
|
4218
|
-
} & {
|
|
4219
|
-
token?: string | undefined;
|
|
4220
|
-
refresh_token?: string | undefined;
|
|
4221
|
-
device_id?: string | undefined;
|
|
4222
|
-
fcm_token?: string | undefined;
|
|
4223
|
-
platform?: string | undefined;
|
|
4224
|
-
} & { [K_1 in Exclude<keyof I_1, keyof SessionLogoutRequest>]: never; }>(object: I_1): SessionLogoutRequest;
|
|
4225
|
-
};
|
|
4226
|
-
export declare const AuthenticateAppleRequest: {
|
|
4227
|
-
encode(message: AuthenticateAppleRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4228
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AuthenticateAppleRequest;
|
|
4229
|
-
fromJSON(object: any): AuthenticateAppleRequest;
|
|
4230
|
-
toJSON(message: AuthenticateAppleRequest): unknown;
|
|
4231
|
-
create<I extends {
|
|
4232
|
-
account?: {
|
|
4233
|
-
token?: string | undefined;
|
|
4234
|
-
vars?: {
|
|
4235
|
-
[x: string]: string | undefined;
|
|
4236
|
-
} | undefined;
|
|
4237
|
-
} | undefined;
|
|
4238
|
-
create?: boolean | undefined;
|
|
4239
|
-
username?: string | undefined;
|
|
4240
|
-
} & {
|
|
4241
|
-
account?: ({
|
|
4242
|
-
token?: string | undefined;
|
|
4243
|
-
vars?: {
|
|
4244
|
-
[x: string]: string | undefined;
|
|
4245
|
-
} | undefined;
|
|
4246
|
-
} & {
|
|
4247
|
-
token?: string | undefined;
|
|
4248
|
-
vars?: ({
|
|
4249
|
-
[x: string]: string | undefined;
|
|
4250
|
-
} & {
|
|
4251
|
-
[x: string]: string | undefined;
|
|
4252
|
-
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4253
|
-
} & { [K_1 in Exclude<keyof I["account"], keyof AccountApple>]: never; }) | undefined;
|
|
4254
|
-
create?: boolean | undefined;
|
|
4255
|
-
username?: string | undefined;
|
|
4256
|
-
} & { [K_2 in Exclude<keyof I, keyof AuthenticateAppleRequest>]: never; }>(base?: I | undefined): AuthenticateAppleRequest;
|
|
4257
|
-
fromPartial<I_1 extends {
|
|
4258
|
-
account?: {
|
|
4259
|
-
token?: string | undefined;
|
|
4260
|
-
vars?: {
|
|
4261
|
-
[x: string]: string | undefined;
|
|
4262
|
-
} | undefined;
|
|
4263
|
-
} | undefined;
|
|
4264
|
-
create?: boolean | undefined;
|
|
4265
|
-
username?: string | undefined;
|
|
4266
|
-
} & {
|
|
4267
|
-
account?: ({
|
|
4268
|
-
token?: string | undefined;
|
|
4269
|
-
vars?: {
|
|
4270
|
-
[x: string]: string | undefined;
|
|
4271
|
-
} | undefined;
|
|
4272
|
-
} & {
|
|
4273
|
-
token?: string | undefined;
|
|
4274
|
-
vars?: ({
|
|
4275
|
-
[x: string]: string | undefined;
|
|
4276
|
-
} & {
|
|
4277
|
-
[x: string]: string | undefined;
|
|
4278
|
-
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4279
|
-
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountApple>]: never; }) | undefined;
|
|
4280
|
-
create?: boolean | undefined;
|
|
4281
|
-
username?: string | undefined;
|
|
4282
|
-
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateAppleRequest>]: never; }>(object: I_1): AuthenticateAppleRequest;
|
|
4283
|
-
};
|
|
4284
|
-
export declare const AuthenticateDeviceRequest: {
|
|
4285
|
-
encode(message: AuthenticateDeviceRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4286
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AuthenticateDeviceRequest;
|
|
4287
|
-
fromJSON(object: any): AuthenticateDeviceRequest;
|
|
4288
|
-
toJSON(message: AuthenticateDeviceRequest): unknown;
|
|
4289
|
-
create<I extends {
|
|
4290
|
-
account?: {
|
|
4291
|
-
id?: string | undefined;
|
|
4292
|
-
vars?: {
|
|
4293
|
-
[x: string]: string | undefined;
|
|
4294
|
-
} | undefined;
|
|
4295
|
-
} | undefined;
|
|
4296
|
-
create?: boolean | undefined;
|
|
4297
|
-
username?: string | undefined;
|
|
4298
|
-
} & {
|
|
4299
|
-
account?: ({
|
|
4300
|
-
id?: string | undefined;
|
|
4301
|
-
vars?: {
|
|
4302
|
-
[x: string]: string | undefined;
|
|
4303
|
-
} | undefined;
|
|
4304
|
-
} & {
|
|
4305
|
-
id?: string | undefined;
|
|
4306
|
-
vars?: ({
|
|
4307
|
-
[x: string]: string | undefined;
|
|
4308
|
-
} & {
|
|
4309
|
-
[x: string]: string | undefined;
|
|
4310
|
-
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4311
|
-
} & { [K_1 in Exclude<keyof I["account"], keyof AccountDevice>]: never; }) | undefined;
|
|
4312
|
-
create?: boolean | undefined;
|
|
4313
|
-
username?: string | undefined;
|
|
4314
|
-
} & { [K_2 in Exclude<keyof I, keyof AuthenticateDeviceRequest>]: never; }>(base?: I | undefined): AuthenticateDeviceRequest;
|
|
4315
|
-
fromPartial<I_1 extends {
|
|
4316
|
-
account?: {
|
|
4317
|
-
id?: string | undefined;
|
|
4318
|
-
vars?: {
|
|
4319
|
-
[x: string]: string | undefined;
|
|
4320
|
-
} | undefined;
|
|
4321
|
-
} | undefined;
|
|
4322
|
-
create?: boolean | undefined;
|
|
4323
|
-
username?: string | undefined;
|
|
4324
|
-
} & {
|
|
4325
|
-
account?: ({
|
|
4326
|
-
id?: string | undefined;
|
|
4327
|
-
vars?: {
|
|
4328
|
-
[x: string]: string | undefined;
|
|
4329
|
-
} | undefined;
|
|
4330
|
-
} & {
|
|
4331
|
-
id?: string | undefined;
|
|
4332
|
-
vars?: ({
|
|
4333
|
-
[x: string]: string | undefined;
|
|
4334
|
-
} & {
|
|
4335
|
-
[x: string]: string | undefined;
|
|
4336
|
-
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4337
|
-
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountDevice>]: never; }) | undefined;
|
|
4338
|
-
create?: boolean | undefined;
|
|
4339
|
-
username?: string | undefined;
|
|
4340
|
-
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateDeviceRequest>]: never; }>(object: I_1): AuthenticateDeviceRequest;
|
|
4341
|
-
};
|
|
4342
|
-
export declare const AuthenticateEmailRequest: {
|
|
4343
|
-
encode(message: AuthenticateEmailRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4344
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AuthenticateEmailRequest;
|
|
4345
|
-
fromJSON(object: any): AuthenticateEmailRequest;
|
|
4346
|
-
toJSON(message: AuthenticateEmailRequest): unknown;
|
|
4347
|
-
create<I extends {
|
|
4348
|
-
account?: {
|
|
4349
|
-
email?: string | undefined;
|
|
4350
|
-
password?: string | undefined;
|
|
4351
|
-
vars?: {
|
|
4352
|
-
[x: string]: string | undefined;
|
|
4353
|
-
} | undefined;
|
|
4354
|
-
} | undefined;
|
|
4355
|
-
create?: boolean | undefined;
|
|
4356
|
-
username?: string | undefined;
|
|
4357
|
-
} & {
|
|
4358
|
-
account?: ({
|
|
4359
|
-
email?: string | undefined;
|
|
4360
|
-
password?: string | undefined;
|
|
4361
|
-
vars?: {
|
|
4362
|
-
[x: string]: string | undefined;
|
|
4363
|
-
} | undefined;
|
|
4364
|
-
} & {
|
|
4365
|
-
email?: string | undefined;
|
|
4366
|
-
password?: string | undefined;
|
|
4367
|
-
vars?: ({
|
|
4368
|
-
[x: string]: string | undefined;
|
|
4369
|
-
} & {
|
|
4370
|
-
[x: string]: string | undefined;
|
|
4371
|
-
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4372
|
-
} & { [K_1 in Exclude<keyof I["account"], keyof AccountEmail>]: never; }) | undefined;
|
|
4373
|
-
create?: boolean | undefined;
|
|
4374
|
-
username?: string | undefined;
|
|
4375
|
-
} & { [K_2 in Exclude<keyof I, keyof AuthenticateEmailRequest>]: never; }>(base?: I | undefined): AuthenticateEmailRequest;
|
|
4376
|
-
fromPartial<I_1 extends {
|
|
4377
|
-
account?: {
|
|
4378
|
-
email?: string | undefined;
|
|
4379
|
-
password?: string | undefined;
|
|
4380
|
-
vars?: {
|
|
4381
|
-
[x: string]: string | undefined;
|
|
4382
|
-
} | undefined;
|
|
4383
|
-
} | undefined;
|
|
4384
|
-
create?: boolean | undefined;
|
|
4385
|
-
username?: string | undefined;
|
|
4386
|
-
} & {
|
|
4387
|
-
account?: ({
|
|
4388
|
-
email?: string | undefined;
|
|
4389
|
-
password?: string | undefined;
|
|
4390
|
-
vars?: {
|
|
4391
|
-
[x: string]: string | undefined;
|
|
4392
|
-
} | undefined;
|
|
4393
|
-
} & {
|
|
4394
|
-
email?: string | undefined;
|
|
4395
|
-
password?: string | undefined;
|
|
4396
|
-
vars?: ({
|
|
4397
|
-
[x: string]: string | undefined;
|
|
4398
|
-
} & {
|
|
4399
|
-
[x: string]: string | undefined;
|
|
4400
|
-
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4401
|
-
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountEmail>]: never; }) | undefined;
|
|
4402
|
-
create?: boolean | undefined;
|
|
4403
|
-
username?: string | undefined;
|
|
4404
|
-
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateEmailRequest>]: never; }>(object: I_1): AuthenticateEmailRequest;
|
|
4405
|
-
};
|
|
4406
|
-
export declare const AuthenticateFacebookRequest: {
|
|
4407
|
-
encode(message: AuthenticateFacebookRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4408
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AuthenticateFacebookRequest;
|
|
4409
|
-
fromJSON(object: any): AuthenticateFacebookRequest;
|
|
4410
|
-
toJSON(message: AuthenticateFacebookRequest): unknown;
|
|
4411
|
-
create<I extends {
|
|
4412
|
-
account?: {
|
|
4413
|
-
token?: string | undefined;
|
|
4414
|
-
vars?: {
|
|
4415
|
-
[x: string]: string | undefined;
|
|
4416
|
-
} | undefined;
|
|
4417
|
-
} | undefined;
|
|
4418
|
-
create?: boolean | undefined;
|
|
4419
|
-
username?: string | undefined;
|
|
4420
|
-
sync?: boolean | undefined;
|
|
4421
|
-
} & {
|
|
4422
|
-
account?: ({
|
|
4423
|
-
token?: string | undefined;
|
|
4424
|
-
vars?: {
|
|
4425
|
-
[x: string]: string | undefined;
|
|
4426
|
-
} | undefined;
|
|
4427
|
-
} & {
|
|
4428
|
-
token?: string | undefined;
|
|
4429
|
-
vars?: ({
|
|
4430
|
-
[x: string]: string | undefined;
|
|
4431
|
-
} & {
|
|
4432
|
-
[x: string]: string | undefined;
|
|
4433
|
-
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4434
|
-
} & { [K_1 in Exclude<keyof I["account"], keyof AccountFacebook>]: never; }) | undefined;
|
|
4435
|
-
create?: boolean | undefined;
|
|
4436
|
-
username?: string | undefined;
|
|
4437
|
-
sync?: boolean | undefined;
|
|
4438
|
-
} & { [K_2 in Exclude<keyof I, keyof AuthenticateFacebookRequest>]: never; }>(base?: I | undefined): AuthenticateFacebookRequest;
|
|
4439
|
-
fromPartial<I_1 extends {
|
|
4440
|
-
account?: {
|
|
4441
|
-
token?: string | undefined;
|
|
4442
|
-
vars?: {
|
|
4443
|
-
[x: string]: string | undefined;
|
|
4444
|
-
} | undefined;
|
|
4445
|
-
} | undefined;
|
|
4446
|
-
create?: boolean | undefined;
|
|
4447
|
-
username?: string | undefined;
|
|
4448
|
-
sync?: boolean | undefined;
|
|
4449
|
-
} & {
|
|
4450
|
-
account?: ({
|
|
4451
|
-
token?: string | undefined;
|
|
4452
|
-
vars?: {
|
|
4453
|
-
[x: string]: string | undefined;
|
|
4454
|
-
} | undefined;
|
|
4455
|
-
} & {
|
|
4456
|
-
token?: string | undefined;
|
|
4457
|
-
vars?: ({
|
|
4458
|
-
[x: string]: string | undefined;
|
|
4459
|
-
} & {
|
|
4460
|
-
[x: string]: string | undefined;
|
|
4461
|
-
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4462
|
-
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountFacebook>]: never; }) | undefined;
|
|
4463
|
-
create?: boolean | undefined;
|
|
4464
|
-
username?: string | undefined;
|
|
4465
|
-
sync?: boolean | undefined;
|
|
4466
|
-
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateFacebookRequest>]: never; }>(object: I_1): AuthenticateFacebookRequest;
|
|
4467
|
-
};
|
|
4468
|
-
export declare const AuthenticateFacebookInstantGameRequest: {
|
|
4469
|
-
encode(message: AuthenticateFacebookInstantGameRequest, writer?: _m0.Writer): _m0.Writer;
|
|
4470
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AuthenticateFacebookInstantGameRequest;
|
|
4471
|
-
fromJSON(object: any): AuthenticateFacebookInstantGameRequest;
|
|
4472
|
-
toJSON(message: AuthenticateFacebookInstantGameRequest): unknown;
|
|
4473
|
-
create<I extends {
|
|
4474
|
-
account?: {
|
|
4475
|
-
signed_player_info?: string | undefined;
|
|
4476
|
-
vars?: {
|
|
4477
|
-
[x: string]: string | undefined;
|
|
4478
|
-
} | undefined;
|
|
4479
|
-
} | undefined;
|
|
4480
|
-
create?: boolean | undefined;
|
|
4481
|
-
username?: string | undefined;
|
|
4482
|
-
} & {
|
|
4483
|
-
account?: ({
|
|
4484
|
-
signed_player_info?: string | undefined;
|
|
4485
|
-
vars?: {
|
|
4486
|
-
[x: string]: string | undefined;
|
|
4487
|
-
} | undefined;
|
|
4488
|
-
} & {
|
|
4489
|
-
signed_player_info?: string | undefined;
|
|
4490
|
-
vars?: ({
|
|
4491
|
-
[x: string]: string | undefined;
|
|
4492
|
-
} & {
|
|
4493
|
-
[x: string]: string | undefined;
|
|
4494
|
-
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4495
|
-
} & { [K_1 in Exclude<keyof I["account"], keyof AccountFacebookInstantGame>]: never; }) | undefined;
|
|
4496
|
-
create?: boolean | undefined;
|
|
4497
|
-
username?: string | undefined;
|
|
4498
|
-
} & { [K_2 in Exclude<keyof I, keyof AuthenticateFacebookInstantGameRequest>]: never; }>(base?: I | undefined): AuthenticateFacebookInstantGameRequest;
|
|
4499
|
-
fromPartial<I_1 extends {
|
|
4500
|
-
account?: {
|
|
4501
|
-
signed_player_info?: string | undefined;
|
|
4502
|
-
vars?: {
|
|
4503
|
-
[x: string]: string | undefined;
|
|
4504
|
-
} | undefined;
|
|
4505
|
-
} | undefined;
|
|
4506
|
-
create?: boolean | undefined;
|
|
4507
|
-
username?: string | undefined;
|
|
3299
|
+
key?: string | undefined;
|
|
3300
|
+
value?: string | undefined;
|
|
4508
3301
|
} & {
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
|
|
4512
|
-
[x: string]: string | undefined;
|
|
4513
|
-
} | undefined;
|
|
4514
|
-
} & {
|
|
4515
|
-
signed_player_info?: string | undefined;
|
|
4516
|
-
vars?: ({
|
|
4517
|
-
[x: string]: string | undefined;
|
|
4518
|
-
} & {
|
|
4519
|
-
[x: string]: string | undefined;
|
|
4520
|
-
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4521
|
-
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountFacebookInstantGame>]: never; }) | undefined;
|
|
4522
|
-
create?: boolean | undefined;
|
|
4523
|
-
username?: string | undefined;
|
|
4524
|
-
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateFacebookInstantGameRequest>]: never; }>(object: I_1): AuthenticateFacebookInstantGameRequest;
|
|
3302
|
+
key?: string | undefined;
|
|
3303
|
+
value?: string | undefined;
|
|
3304
|
+
} & { [K_1 in Exclude<keyof I_1, keyof AccountRefresh_VarsEntry>]: never; }>(object: I_1): AccountRefresh_VarsEntry;
|
|
4525
3305
|
};
|
|
4526
|
-
export declare const
|
|
4527
|
-
encode(message:
|
|
4528
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
4529
|
-
fromJSON(object: any):
|
|
4530
|
-
toJSON(message:
|
|
3306
|
+
export declare const AddFriendsRequest: {
|
|
3307
|
+
encode(message: AddFriendsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
3308
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AddFriendsRequest;
|
|
3309
|
+
fromJSON(object: any): AddFriendsRequest;
|
|
3310
|
+
toJSON(message: AddFriendsRequest): unknown;
|
|
4531
3311
|
create<I extends {
|
|
4532
|
-
|
|
4533
|
-
|
|
4534
|
-
bundle_id?: string | undefined;
|
|
4535
|
-
timestamp_seconds?: number | undefined;
|
|
4536
|
-
salt?: string | undefined;
|
|
4537
|
-
signature?: string | undefined;
|
|
4538
|
-
public_key_url?: string | undefined;
|
|
4539
|
-
vars?: {
|
|
4540
|
-
[x: string]: string | undefined;
|
|
4541
|
-
} | undefined;
|
|
4542
|
-
} | undefined;
|
|
4543
|
-
create?: boolean | undefined;
|
|
4544
|
-
username?: string | undefined;
|
|
3312
|
+
ids?: string[] | undefined;
|
|
3313
|
+
usernames?: string[] | undefined;
|
|
4545
3314
|
} & {
|
|
4546
|
-
|
|
4547
|
-
|
|
4548
|
-
|
|
4549
|
-
timestamp_seconds?: number | undefined;
|
|
4550
|
-
salt?: string | undefined;
|
|
4551
|
-
signature?: string | undefined;
|
|
4552
|
-
public_key_url?: string | undefined;
|
|
4553
|
-
vars?: {
|
|
4554
|
-
[x: string]: string | undefined;
|
|
4555
|
-
} | undefined;
|
|
4556
|
-
} & {
|
|
4557
|
-
player_id?: string | undefined;
|
|
4558
|
-
bundle_id?: string | undefined;
|
|
4559
|
-
timestamp_seconds?: number | undefined;
|
|
4560
|
-
salt?: string | undefined;
|
|
4561
|
-
signature?: string | undefined;
|
|
4562
|
-
public_key_url?: string | undefined;
|
|
4563
|
-
vars?: ({
|
|
4564
|
-
[x: string]: string | undefined;
|
|
4565
|
-
} & {
|
|
4566
|
-
[x: string]: string | undefined;
|
|
4567
|
-
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4568
|
-
} & { [K_1 in Exclude<keyof I["account"], keyof AccountGameCenter>]: never; }) | undefined;
|
|
4569
|
-
create?: boolean | undefined;
|
|
4570
|
-
username?: string | undefined;
|
|
4571
|
-
} & { [K_2 in Exclude<keyof I, keyof AuthenticateGameCenterRequest>]: never; }>(base?: I | undefined): AuthenticateGameCenterRequest;
|
|
3315
|
+
ids?: (string[] & string[] & { [K in Exclude<keyof I["ids"], keyof string[]>]: never; }) | undefined;
|
|
3316
|
+
usernames?: (string[] & string[] & { [K_1 in Exclude<keyof I["usernames"], keyof string[]>]: never; }) | undefined;
|
|
3317
|
+
} & { [K_2 in Exclude<keyof I, keyof AddFriendsRequest>]: never; }>(base?: I | undefined): AddFriendsRequest;
|
|
4572
3318
|
fromPartial<I_1 extends {
|
|
4573
|
-
|
|
4574
|
-
|
|
4575
|
-
bundle_id?: string | undefined;
|
|
4576
|
-
timestamp_seconds?: number | undefined;
|
|
4577
|
-
salt?: string | undefined;
|
|
4578
|
-
signature?: string | undefined;
|
|
4579
|
-
public_key_url?: string | undefined;
|
|
4580
|
-
vars?: {
|
|
4581
|
-
[x: string]: string | undefined;
|
|
4582
|
-
} | undefined;
|
|
4583
|
-
} | undefined;
|
|
4584
|
-
create?: boolean | undefined;
|
|
4585
|
-
username?: string | undefined;
|
|
3319
|
+
ids?: string[] | undefined;
|
|
3320
|
+
usernames?: string[] | undefined;
|
|
4586
3321
|
} & {
|
|
4587
|
-
|
|
4588
|
-
|
|
4589
|
-
|
|
4590
|
-
timestamp_seconds?: number | undefined;
|
|
4591
|
-
salt?: string | undefined;
|
|
4592
|
-
signature?: string | undefined;
|
|
4593
|
-
public_key_url?: string | undefined;
|
|
4594
|
-
vars?: {
|
|
4595
|
-
[x: string]: string | undefined;
|
|
4596
|
-
} | undefined;
|
|
4597
|
-
} & {
|
|
4598
|
-
player_id?: string | undefined;
|
|
4599
|
-
bundle_id?: string | undefined;
|
|
4600
|
-
timestamp_seconds?: number | undefined;
|
|
4601
|
-
salt?: string | undefined;
|
|
4602
|
-
signature?: string | undefined;
|
|
4603
|
-
public_key_url?: string | undefined;
|
|
4604
|
-
vars?: ({
|
|
4605
|
-
[x: string]: string | undefined;
|
|
4606
|
-
} & {
|
|
4607
|
-
[x: string]: string | undefined;
|
|
4608
|
-
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4609
|
-
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountGameCenter>]: never; }) | undefined;
|
|
4610
|
-
create?: boolean | undefined;
|
|
4611
|
-
username?: string | undefined;
|
|
4612
|
-
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateGameCenterRequest>]: never; }>(object: I_1): AuthenticateGameCenterRequest;
|
|
3322
|
+
ids?: (string[] & string[] & { [K_3 in Exclude<keyof I_1["ids"], keyof string[]>]: never; }) | undefined;
|
|
3323
|
+
usernames?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["usernames"], keyof string[]>]: never; }) | undefined;
|
|
3324
|
+
} & { [K_5 in Exclude<keyof I_1, keyof AddFriendsRequest>]: never; }>(object: I_1): AddFriendsRequest;
|
|
4613
3325
|
};
|
|
4614
|
-
export declare const
|
|
4615
|
-
encode(message:
|
|
4616
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
4617
|
-
fromJSON(object: any):
|
|
4618
|
-
toJSON(message:
|
|
3326
|
+
export declare const AddGroupUsersRequest: {
|
|
3327
|
+
encode(message: AddGroupUsersRequest, writer?: _m0.Writer): _m0.Writer;
|
|
3328
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AddGroupUsersRequest;
|
|
3329
|
+
fromJSON(object: any): AddGroupUsersRequest;
|
|
3330
|
+
toJSON(message: AddGroupUsersRequest): unknown;
|
|
4619
3331
|
create<I extends {
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
vars?: {
|
|
4623
|
-
[x: string]: string | undefined;
|
|
4624
|
-
} | undefined;
|
|
4625
|
-
} | undefined;
|
|
4626
|
-
create?: boolean | undefined;
|
|
4627
|
-
username?: string | undefined;
|
|
3332
|
+
group_id?: string | undefined;
|
|
3333
|
+
user_ids?: string[] | undefined;
|
|
4628
3334
|
} & {
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
[x: string]: string | undefined;
|
|
4633
|
-
} | undefined;
|
|
4634
|
-
} & {
|
|
4635
|
-
token?: string | undefined;
|
|
4636
|
-
vars?: ({
|
|
4637
|
-
[x: string]: string | undefined;
|
|
4638
|
-
} & {
|
|
4639
|
-
[x: string]: string | undefined;
|
|
4640
|
-
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4641
|
-
} & { [K_1 in Exclude<keyof I["account"], keyof AccountGoogle>]: never; }) | undefined;
|
|
4642
|
-
create?: boolean | undefined;
|
|
4643
|
-
username?: string | undefined;
|
|
4644
|
-
} & { [K_2 in Exclude<keyof I, keyof AuthenticateGoogleRequest>]: never; }>(base?: I | undefined): AuthenticateGoogleRequest;
|
|
3335
|
+
group_id?: string | undefined;
|
|
3336
|
+
user_ids?: (string[] & string[] & { [K in Exclude<keyof I["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
3337
|
+
} & { [K_1 in Exclude<keyof I, keyof AddGroupUsersRequest>]: never; }>(base?: I | undefined): AddGroupUsersRequest;
|
|
4645
3338
|
fromPartial<I_1 extends {
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
vars?: {
|
|
4649
|
-
[x: string]: string | undefined;
|
|
4650
|
-
} | undefined;
|
|
4651
|
-
} | undefined;
|
|
4652
|
-
create?: boolean | undefined;
|
|
4653
|
-
username?: string | undefined;
|
|
3339
|
+
group_id?: string | undefined;
|
|
3340
|
+
user_ids?: string[] | undefined;
|
|
4654
3341
|
} & {
|
|
4655
|
-
|
|
4656
|
-
|
|
4657
|
-
|
|
4658
|
-
[x: string]: string | undefined;
|
|
4659
|
-
} | undefined;
|
|
4660
|
-
} & {
|
|
4661
|
-
token?: string | undefined;
|
|
4662
|
-
vars?: ({
|
|
4663
|
-
[x: string]: string | undefined;
|
|
4664
|
-
} & {
|
|
4665
|
-
[x: string]: string | undefined;
|
|
4666
|
-
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4667
|
-
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountGoogle>]: never; }) | undefined;
|
|
4668
|
-
create?: boolean | undefined;
|
|
4669
|
-
username?: string | undefined;
|
|
4670
|
-
} & { [K_5 in Exclude<keyof I_1, keyof AuthenticateGoogleRequest>]: never; }>(object: I_1): AuthenticateGoogleRequest;
|
|
3342
|
+
group_id?: string | undefined;
|
|
3343
|
+
user_ids?: (string[] & string[] & { [K_2 in Exclude<keyof I_1["user_ids"], keyof string[]>]: never; }) | undefined;
|
|
3344
|
+
} & { [K_3 in Exclude<keyof I_1, keyof AddGroupUsersRequest>]: never; }>(object: I_1): AddGroupUsersRequest;
|
|
4671
3345
|
};
|
|
4672
|
-
export declare const
|
|
4673
|
-
encode(message:
|
|
4674
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
4675
|
-
fromJSON(object: any):
|
|
4676
|
-
toJSON(message:
|
|
3346
|
+
export declare const SessionRefreshRequest: {
|
|
3347
|
+
encode(message: SessionRefreshRequest, writer?: _m0.Writer): _m0.Writer;
|
|
3348
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): SessionRefreshRequest;
|
|
3349
|
+
fromJSON(object: any): SessionRefreshRequest;
|
|
3350
|
+
toJSON(message: SessionRefreshRequest): unknown;
|
|
4677
3351
|
create<I extends {
|
|
4678
|
-
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
[x: string]: string | undefined;
|
|
4682
|
-
} | undefined;
|
|
3352
|
+
token?: string | undefined;
|
|
3353
|
+
vars?: {
|
|
3354
|
+
[x: string]: string | undefined;
|
|
4683
3355
|
} | undefined;
|
|
4684
|
-
create?: boolean | undefined;
|
|
4685
|
-
username?: string | undefined;
|
|
4686
3356
|
is_remember?: boolean | undefined;
|
|
4687
3357
|
} & {
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
[x: string]: string | undefined;
|
|
4692
|
-
} | undefined;
|
|
3358
|
+
token?: string | undefined;
|
|
3359
|
+
vars?: ({
|
|
3360
|
+
[x: string]: string | undefined;
|
|
4693
3361
|
} & {
|
|
4694
|
-
|
|
4695
|
-
|
|
4696
|
-
[x: string]: string | undefined;
|
|
4697
|
-
} & {
|
|
4698
|
-
[x: string]: string | undefined;
|
|
4699
|
-
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4700
|
-
} & { [K_1 in Exclude<keyof I["account"], keyof AccountMezon>]: never; }) | undefined;
|
|
4701
|
-
create?: boolean | undefined;
|
|
4702
|
-
username?: string | undefined;
|
|
3362
|
+
[x: string]: string | undefined;
|
|
3363
|
+
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
4703
3364
|
is_remember?: boolean | undefined;
|
|
4704
|
-
} & { [
|
|
3365
|
+
} & { [K_1 in Exclude<keyof I, keyof SessionRefreshRequest>]: never; }>(base?: I | undefined): SessionRefreshRequest;
|
|
4705
3366
|
fromPartial<I_1 extends {
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
|
|
4709
|
-
[x: string]: string | undefined;
|
|
4710
|
-
} | undefined;
|
|
3367
|
+
token?: string | undefined;
|
|
3368
|
+
vars?: {
|
|
3369
|
+
[x: string]: string | undefined;
|
|
4711
3370
|
} | undefined;
|
|
4712
|
-
create?: boolean | undefined;
|
|
4713
|
-
username?: string | undefined;
|
|
4714
3371
|
is_remember?: boolean | undefined;
|
|
4715
3372
|
} & {
|
|
4716
|
-
|
|
4717
|
-
|
|
4718
|
-
|
|
4719
|
-
[x: string]: string | undefined;
|
|
4720
|
-
} | undefined;
|
|
3373
|
+
token?: string | undefined;
|
|
3374
|
+
vars?: ({
|
|
3375
|
+
[x: string]: string | undefined;
|
|
4721
3376
|
} & {
|
|
4722
|
-
|
|
4723
|
-
|
|
4724
|
-
[x: string]: string | undefined;
|
|
4725
|
-
} & {
|
|
4726
|
-
[x: string]: string | undefined;
|
|
4727
|
-
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4728
|
-
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountMezon>]: never; }) | undefined;
|
|
4729
|
-
create?: boolean | undefined;
|
|
4730
|
-
username?: string | undefined;
|
|
3377
|
+
[x: string]: string | undefined;
|
|
3378
|
+
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
4731
3379
|
is_remember?: boolean | undefined;
|
|
4732
|
-
} & { [
|
|
3380
|
+
} & { [K_3 in Exclude<keyof I_1, keyof SessionRefreshRequest>]: never; }>(object: I_1): SessionRefreshRequest;
|
|
4733
3381
|
};
|
|
4734
|
-
export declare const
|
|
4735
|
-
encode(message:
|
|
4736
|
-
decode(input: _m0.Reader | Uint8Array, length?: number):
|
|
4737
|
-
fromJSON(object: any):
|
|
4738
|
-
toJSON(message:
|
|
3382
|
+
export declare const SessionRefreshRequest_VarsEntry: {
|
|
3383
|
+
encode(message: SessionRefreshRequest_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
3384
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): SessionRefreshRequest_VarsEntry;
|
|
3385
|
+
fromJSON(object: any): SessionRefreshRequest_VarsEntry;
|
|
3386
|
+
toJSON(message: SessionRefreshRequest_VarsEntry): unknown;
|
|
4739
3387
|
create<I extends {
|
|
4740
|
-
|
|
4741
|
-
|
|
4742
|
-
vars?: {
|
|
4743
|
-
[x: string]: string | undefined;
|
|
4744
|
-
} | undefined;
|
|
4745
|
-
} | undefined;
|
|
4746
|
-
create?: boolean | undefined;
|
|
4747
|
-
username?: string | undefined;
|
|
4748
|
-
sync?: boolean | undefined;
|
|
3388
|
+
key?: string | undefined;
|
|
3389
|
+
value?: string | undefined;
|
|
4749
3390
|
} & {
|
|
4750
|
-
|
|
4751
|
-
|
|
4752
|
-
|
|
4753
|
-
[x: string]: string | undefined;
|
|
4754
|
-
} | undefined;
|
|
4755
|
-
} & {
|
|
4756
|
-
token?: string | undefined;
|
|
4757
|
-
vars?: ({
|
|
4758
|
-
[x: string]: string | undefined;
|
|
4759
|
-
} & {
|
|
4760
|
-
[x: string]: string | undefined;
|
|
4761
|
-
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
4762
|
-
} & { [K_1 in Exclude<keyof I["account"], keyof AccountSteam>]: never; }) | undefined;
|
|
4763
|
-
create?: boolean | undefined;
|
|
4764
|
-
username?: string | undefined;
|
|
4765
|
-
sync?: boolean | undefined;
|
|
4766
|
-
} & { [K_2 in Exclude<keyof I, keyof AuthenticateSteamRequest>]: never; }>(base?: I | undefined): AuthenticateSteamRequest;
|
|
3391
|
+
key?: string | undefined;
|
|
3392
|
+
value?: string | undefined;
|
|
3393
|
+
} & { [K in Exclude<keyof I, keyof SessionRefreshRequest_VarsEntry>]: never; }>(base?: I | undefined): SessionRefreshRequest_VarsEntry;
|
|
4767
3394
|
fromPartial<I_1 extends {
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
vars?: {
|
|
4771
|
-
[x: string]: string | undefined;
|
|
4772
|
-
} | undefined;
|
|
4773
|
-
} | undefined;
|
|
4774
|
-
create?: boolean | undefined;
|
|
4775
|
-
username?: string | undefined;
|
|
4776
|
-
sync?: boolean | undefined;
|
|
3395
|
+
key?: string | undefined;
|
|
3396
|
+
value?: string | undefined;
|
|
4777
3397
|
} & {
|
|
4778
|
-
|
|
4779
|
-
|
|
4780
|
-
|
|
4781
|
-
|
|
4782
|
-
|
|
4783
|
-
|
|
4784
|
-
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
|
|
4788
|
-
|
|
4789
|
-
|
|
4790
|
-
|
|
4791
|
-
|
|
4792
|
-
|
|
4793
|
-
|
|
4794
|
-
|
|
3398
|
+
key?: string | undefined;
|
|
3399
|
+
value?: string | undefined;
|
|
3400
|
+
} & { [K_1 in Exclude<keyof I_1, keyof SessionRefreshRequest_VarsEntry>]: never; }>(object: I_1): SessionRefreshRequest_VarsEntry;
|
|
3401
|
+
};
|
|
3402
|
+
export declare const SessionLogoutRequest: {
|
|
3403
|
+
encode(message: SessionLogoutRequest, writer?: _m0.Writer): _m0.Writer;
|
|
3404
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): SessionLogoutRequest;
|
|
3405
|
+
fromJSON(object: any): SessionLogoutRequest;
|
|
3406
|
+
toJSON(message: SessionLogoutRequest): unknown;
|
|
3407
|
+
create<I extends {
|
|
3408
|
+
token?: string | undefined;
|
|
3409
|
+
refresh_token?: string | undefined;
|
|
3410
|
+
device_id?: string | undefined;
|
|
3411
|
+
fcm_token?: string | undefined;
|
|
3412
|
+
platform?: string | undefined;
|
|
3413
|
+
} & {
|
|
3414
|
+
token?: string | undefined;
|
|
3415
|
+
refresh_token?: string | undefined;
|
|
3416
|
+
device_id?: string | undefined;
|
|
3417
|
+
fcm_token?: string | undefined;
|
|
3418
|
+
platform?: string | undefined;
|
|
3419
|
+
} & { [K in Exclude<keyof I, keyof SessionLogoutRequest>]: never; }>(base?: I | undefined): SessionLogoutRequest;
|
|
3420
|
+
fromPartial<I_1 extends {
|
|
3421
|
+
token?: string | undefined;
|
|
3422
|
+
refresh_token?: string | undefined;
|
|
3423
|
+
device_id?: string | undefined;
|
|
3424
|
+
fcm_token?: string | undefined;
|
|
3425
|
+
platform?: string | undefined;
|
|
3426
|
+
} & {
|
|
3427
|
+
token?: string | undefined;
|
|
3428
|
+
refresh_token?: string | undefined;
|
|
3429
|
+
device_id?: string | undefined;
|
|
3430
|
+
fcm_token?: string | undefined;
|
|
3431
|
+
platform?: string | undefined;
|
|
3432
|
+
} & { [K_1 in Exclude<keyof I_1, keyof SessionLogoutRequest>]: never; }>(object: I_1): SessionLogoutRequest;
|
|
4795
3433
|
};
|
|
4796
3434
|
export declare const BanGroupUsersRequest: {
|
|
4797
3435
|
encode(message: BanGroupUsersRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -8322,142 +6960,34 @@ export declare const ClanUserList_ClanUser: {
|
|
|
8322
6960
|
dob?: Date | undefined;
|
|
8323
6961
|
mezon_id?: string | undefined;
|
|
8324
6962
|
} & {
|
|
8325
|
-
id?: string | undefined;
|
|
8326
|
-
username?: string | undefined;
|
|
8327
|
-
display_name?: string | undefined;
|
|
8328
|
-
avatar_url?: string | undefined;
|
|
8329
|
-
lang_tag?: string | undefined;
|
|
8330
|
-
location?: string | undefined;
|
|
8331
|
-
timezone?: string | undefined;
|
|
8332
|
-
metadata?: string | undefined;
|
|
8333
|
-
facebook_id?: string | undefined;
|
|
8334
|
-
google_id?: string | undefined;
|
|
8335
|
-
gamecenter_id?: string | undefined;
|
|
8336
|
-
steam_id?: string | undefined;
|
|
8337
|
-
online?: boolean | undefined;
|
|
8338
|
-
edge_count?: number | undefined;
|
|
8339
|
-
create_time?: Date | undefined;
|
|
8340
|
-
update_time?: Date | undefined;
|
|
8341
|
-
apple_id?: string | undefined;
|
|
8342
|
-
about_me?: string | undefined;
|
|
8343
|
-
join_time?: Date | undefined;
|
|
8344
|
-
is_mobile?: boolean | undefined;
|
|
8345
|
-
dob?: Date | undefined;
|
|
8346
|
-
mezon_id?: string | undefined;
|
|
8347
|
-
} & { [K_3 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
8348
|
-
role_id?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["role_id"], keyof string[]>]: never; }) | undefined;
|
|
8349
|
-
clan_nick?: string | undefined;
|
|
8350
|
-
clan_avatar?: string | undefined;
|
|
8351
|
-
clan_id?: string | undefined;
|
|
8352
|
-
} & { [K_5 in Exclude<keyof I_1, keyof ClanUserList_ClanUser>]: never; }>(object: I_1): ClanUserList_ClanUser;
|
|
8353
|
-
};
|
|
8354
|
-
export declare const ImportFacebookFriendsRequest: {
|
|
8355
|
-
encode(message: ImportFacebookFriendsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
8356
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ImportFacebookFriendsRequest;
|
|
8357
|
-
fromJSON(object: any): ImportFacebookFriendsRequest;
|
|
8358
|
-
toJSON(message: ImportFacebookFriendsRequest): unknown;
|
|
8359
|
-
create<I extends {
|
|
8360
|
-
account?: {
|
|
8361
|
-
token?: string | undefined;
|
|
8362
|
-
vars?: {
|
|
8363
|
-
[x: string]: string | undefined;
|
|
8364
|
-
} | undefined;
|
|
8365
|
-
} | undefined;
|
|
8366
|
-
reset?: boolean | undefined;
|
|
8367
|
-
} & {
|
|
8368
|
-
account?: ({
|
|
8369
|
-
token?: string | undefined;
|
|
8370
|
-
vars?: {
|
|
8371
|
-
[x: string]: string | undefined;
|
|
8372
|
-
} | undefined;
|
|
8373
|
-
} & {
|
|
8374
|
-
token?: string | undefined;
|
|
8375
|
-
vars?: ({
|
|
8376
|
-
[x: string]: string | undefined;
|
|
8377
|
-
} & {
|
|
8378
|
-
[x: string]: string | undefined;
|
|
8379
|
-
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
8380
|
-
} & { [K_1 in Exclude<keyof I["account"], keyof AccountFacebook>]: never; }) | undefined;
|
|
8381
|
-
reset?: boolean | undefined;
|
|
8382
|
-
} & { [K_2 in Exclude<keyof I, keyof ImportFacebookFriendsRequest>]: never; }>(base?: I | undefined): ImportFacebookFriendsRequest;
|
|
8383
|
-
fromPartial<I_1 extends {
|
|
8384
|
-
account?: {
|
|
8385
|
-
token?: string | undefined;
|
|
8386
|
-
vars?: {
|
|
8387
|
-
[x: string]: string | undefined;
|
|
8388
|
-
} | undefined;
|
|
8389
|
-
} | undefined;
|
|
8390
|
-
reset?: boolean | undefined;
|
|
8391
|
-
} & {
|
|
8392
|
-
account?: ({
|
|
8393
|
-
token?: string | undefined;
|
|
8394
|
-
vars?: {
|
|
8395
|
-
[x: string]: string | undefined;
|
|
8396
|
-
} | undefined;
|
|
8397
|
-
} & {
|
|
8398
|
-
token?: string | undefined;
|
|
8399
|
-
vars?: ({
|
|
8400
|
-
[x: string]: string | undefined;
|
|
8401
|
-
} & {
|
|
8402
|
-
[x: string]: string | undefined;
|
|
8403
|
-
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
8404
|
-
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountFacebook>]: never; }) | undefined;
|
|
8405
|
-
reset?: boolean | undefined;
|
|
8406
|
-
} & { [K_5 in Exclude<keyof I_1, keyof ImportFacebookFriendsRequest>]: never; }>(object: I_1): ImportFacebookFriendsRequest;
|
|
8407
|
-
};
|
|
8408
|
-
export declare const ImportSteamFriendsRequest: {
|
|
8409
|
-
encode(message: ImportSteamFriendsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
8410
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ImportSteamFriendsRequest;
|
|
8411
|
-
fromJSON(object: any): ImportSteamFriendsRequest;
|
|
8412
|
-
toJSON(message: ImportSteamFriendsRequest): unknown;
|
|
8413
|
-
create<I extends {
|
|
8414
|
-
account?: {
|
|
8415
|
-
token?: string | undefined;
|
|
8416
|
-
vars?: {
|
|
8417
|
-
[x: string]: string | undefined;
|
|
8418
|
-
} | undefined;
|
|
8419
|
-
} | undefined;
|
|
8420
|
-
reset?: boolean | undefined;
|
|
8421
|
-
} & {
|
|
8422
|
-
account?: ({
|
|
8423
|
-
token?: string | undefined;
|
|
8424
|
-
vars?: {
|
|
8425
|
-
[x: string]: string | undefined;
|
|
8426
|
-
} | undefined;
|
|
8427
|
-
} & {
|
|
8428
|
-
token?: string | undefined;
|
|
8429
|
-
vars?: ({
|
|
8430
|
-
[x: string]: string | undefined;
|
|
8431
|
-
} & {
|
|
8432
|
-
[x: string]: string | undefined;
|
|
8433
|
-
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
8434
|
-
} & { [K_1 in Exclude<keyof I["account"], keyof AccountSteam>]: never; }) | undefined;
|
|
8435
|
-
reset?: boolean | undefined;
|
|
8436
|
-
} & { [K_2 in Exclude<keyof I, keyof ImportSteamFriendsRequest>]: never; }>(base?: I | undefined): ImportSteamFriendsRequest;
|
|
8437
|
-
fromPartial<I_1 extends {
|
|
8438
|
-
account?: {
|
|
8439
|
-
token?: string | undefined;
|
|
8440
|
-
vars?: {
|
|
8441
|
-
[x: string]: string | undefined;
|
|
8442
|
-
} | undefined;
|
|
8443
|
-
} | undefined;
|
|
8444
|
-
reset?: boolean | undefined;
|
|
8445
|
-
} & {
|
|
8446
|
-
account?: ({
|
|
8447
|
-
token?: string | undefined;
|
|
8448
|
-
vars?: {
|
|
8449
|
-
[x: string]: string | undefined;
|
|
8450
|
-
} | undefined;
|
|
8451
|
-
} & {
|
|
8452
|
-
token?: string | undefined;
|
|
8453
|
-
vars?: ({
|
|
8454
|
-
[x: string]: string | undefined;
|
|
8455
|
-
} & {
|
|
8456
|
-
[x: string]: string | undefined;
|
|
8457
|
-
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
8458
|
-
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountSteam>]: never; }) | undefined;
|
|
8459
|
-
reset?: boolean | undefined;
|
|
8460
|
-
} & { [K_5 in Exclude<keyof I_1, keyof ImportSteamFriendsRequest>]: never; }>(object: I_1): ImportSteamFriendsRequest;
|
|
6963
|
+
id?: string | undefined;
|
|
6964
|
+
username?: string | undefined;
|
|
6965
|
+
display_name?: string | undefined;
|
|
6966
|
+
avatar_url?: string | undefined;
|
|
6967
|
+
lang_tag?: string | undefined;
|
|
6968
|
+
location?: string | undefined;
|
|
6969
|
+
timezone?: string | undefined;
|
|
6970
|
+
metadata?: string | undefined;
|
|
6971
|
+
facebook_id?: string | undefined;
|
|
6972
|
+
google_id?: string | undefined;
|
|
6973
|
+
gamecenter_id?: string | undefined;
|
|
6974
|
+
steam_id?: string | undefined;
|
|
6975
|
+
online?: boolean | undefined;
|
|
6976
|
+
edge_count?: number | undefined;
|
|
6977
|
+
create_time?: Date | undefined;
|
|
6978
|
+
update_time?: Date | undefined;
|
|
6979
|
+
apple_id?: string | undefined;
|
|
6980
|
+
about_me?: string | undefined;
|
|
6981
|
+
join_time?: Date | undefined;
|
|
6982
|
+
is_mobile?: boolean | undefined;
|
|
6983
|
+
dob?: Date | undefined;
|
|
6984
|
+
mezon_id?: string | undefined;
|
|
6985
|
+
} & { [K_3 in Exclude<keyof I_1["user"], keyof User>]: never; }) | undefined;
|
|
6986
|
+
role_id?: (string[] & string[] & { [K_4 in Exclude<keyof I_1["role_id"], keyof string[]>]: never; }) | undefined;
|
|
6987
|
+
clan_nick?: string | undefined;
|
|
6988
|
+
clan_avatar?: string | undefined;
|
|
6989
|
+
clan_id?: string | undefined;
|
|
6990
|
+
} & { [K_5 in Exclude<keyof I_1, keyof ClanUserList_ClanUser>]: never; }>(object: I_1): ClanUserList_ClanUser;
|
|
8461
6991
|
};
|
|
8462
6992
|
export declare const RegistFcmDeviceTokenRequest: {
|
|
8463
6993
|
encode(message: RegistFcmDeviceTokenRequest, writer?: _m0.Writer): _m0.Writer;
|
|
@@ -8507,114 +7037,6 @@ export declare const RegistFcmDeviceTokenResponse: {
|
|
|
8507
7037
|
platform?: string | undefined;
|
|
8508
7038
|
} & { [K_1 in Exclude<keyof I_1, keyof RegistFcmDeviceTokenResponse>]: never; }>(object: I_1): RegistFcmDeviceTokenResponse;
|
|
8509
7039
|
};
|
|
8510
|
-
export declare const LinkFacebookRequest: {
|
|
8511
|
-
encode(message: LinkFacebookRequest, writer?: _m0.Writer): _m0.Writer;
|
|
8512
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): LinkFacebookRequest;
|
|
8513
|
-
fromJSON(object: any): LinkFacebookRequest;
|
|
8514
|
-
toJSON(message: LinkFacebookRequest): unknown;
|
|
8515
|
-
create<I extends {
|
|
8516
|
-
account?: {
|
|
8517
|
-
token?: string | undefined;
|
|
8518
|
-
vars?: {
|
|
8519
|
-
[x: string]: string | undefined;
|
|
8520
|
-
} | undefined;
|
|
8521
|
-
} | undefined;
|
|
8522
|
-
sync?: boolean | undefined;
|
|
8523
|
-
} & {
|
|
8524
|
-
account?: ({
|
|
8525
|
-
token?: string | undefined;
|
|
8526
|
-
vars?: {
|
|
8527
|
-
[x: string]: string | undefined;
|
|
8528
|
-
} | undefined;
|
|
8529
|
-
} & {
|
|
8530
|
-
token?: string | undefined;
|
|
8531
|
-
vars?: ({
|
|
8532
|
-
[x: string]: string | undefined;
|
|
8533
|
-
} & {
|
|
8534
|
-
[x: string]: string | undefined;
|
|
8535
|
-
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
8536
|
-
} & { [K_1 in Exclude<keyof I["account"], keyof AccountFacebook>]: never; }) | undefined;
|
|
8537
|
-
sync?: boolean | undefined;
|
|
8538
|
-
} & { [K_2 in Exclude<keyof I, keyof LinkFacebookRequest>]: never; }>(base?: I | undefined): LinkFacebookRequest;
|
|
8539
|
-
fromPartial<I_1 extends {
|
|
8540
|
-
account?: {
|
|
8541
|
-
token?: string | undefined;
|
|
8542
|
-
vars?: {
|
|
8543
|
-
[x: string]: string | undefined;
|
|
8544
|
-
} | undefined;
|
|
8545
|
-
} | undefined;
|
|
8546
|
-
sync?: boolean | undefined;
|
|
8547
|
-
} & {
|
|
8548
|
-
account?: ({
|
|
8549
|
-
token?: string | undefined;
|
|
8550
|
-
vars?: {
|
|
8551
|
-
[x: string]: string | undefined;
|
|
8552
|
-
} | undefined;
|
|
8553
|
-
} & {
|
|
8554
|
-
token?: string | undefined;
|
|
8555
|
-
vars?: ({
|
|
8556
|
-
[x: string]: string | undefined;
|
|
8557
|
-
} & {
|
|
8558
|
-
[x: string]: string | undefined;
|
|
8559
|
-
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
8560
|
-
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountFacebook>]: never; }) | undefined;
|
|
8561
|
-
sync?: boolean | undefined;
|
|
8562
|
-
} & { [K_5 in Exclude<keyof I_1, keyof LinkFacebookRequest>]: never; }>(object: I_1): LinkFacebookRequest;
|
|
8563
|
-
};
|
|
8564
|
-
export declare const LinkSteamRequest: {
|
|
8565
|
-
encode(message: LinkSteamRequest, writer?: _m0.Writer): _m0.Writer;
|
|
8566
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): LinkSteamRequest;
|
|
8567
|
-
fromJSON(object: any): LinkSteamRequest;
|
|
8568
|
-
toJSON(message: LinkSteamRequest): unknown;
|
|
8569
|
-
create<I extends {
|
|
8570
|
-
account?: {
|
|
8571
|
-
token?: string | undefined;
|
|
8572
|
-
vars?: {
|
|
8573
|
-
[x: string]: string | undefined;
|
|
8574
|
-
} | undefined;
|
|
8575
|
-
} | undefined;
|
|
8576
|
-
sync?: boolean | undefined;
|
|
8577
|
-
} & {
|
|
8578
|
-
account?: ({
|
|
8579
|
-
token?: string | undefined;
|
|
8580
|
-
vars?: {
|
|
8581
|
-
[x: string]: string | undefined;
|
|
8582
|
-
} | undefined;
|
|
8583
|
-
} & {
|
|
8584
|
-
token?: string | undefined;
|
|
8585
|
-
vars?: ({
|
|
8586
|
-
[x: string]: string | undefined;
|
|
8587
|
-
} & {
|
|
8588
|
-
[x: string]: string | undefined;
|
|
8589
|
-
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
8590
|
-
} & { [K_1 in Exclude<keyof I["account"], keyof AccountSteam>]: never; }) | undefined;
|
|
8591
|
-
sync?: boolean | undefined;
|
|
8592
|
-
} & { [K_2 in Exclude<keyof I, keyof LinkSteamRequest>]: never; }>(base?: I | undefined): LinkSteamRequest;
|
|
8593
|
-
fromPartial<I_1 extends {
|
|
8594
|
-
account?: {
|
|
8595
|
-
token?: string | undefined;
|
|
8596
|
-
vars?: {
|
|
8597
|
-
[x: string]: string | undefined;
|
|
8598
|
-
} | undefined;
|
|
8599
|
-
} | undefined;
|
|
8600
|
-
sync?: boolean | undefined;
|
|
8601
|
-
} & {
|
|
8602
|
-
account?: ({
|
|
8603
|
-
token?: string | undefined;
|
|
8604
|
-
vars?: {
|
|
8605
|
-
[x: string]: string | undefined;
|
|
8606
|
-
} | undefined;
|
|
8607
|
-
} & {
|
|
8608
|
-
token?: string | undefined;
|
|
8609
|
-
vars?: ({
|
|
8610
|
-
[x: string]: string | undefined;
|
|
8611
|
-
} & {
|
|
8612
|
-
[x: string]: string | undefined;
|
|
8613
|
-
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
8614
|
-
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountSteam>]: never; }) | undefined;
|
|
8615
|
-
sync?: boolean | undefined;
|
|
8616
|
-
} & { [K_5 in Exclude<keyof I_1, keyof LinkSteamRequest>]: never; }>(object: I_1): LinkSteamRequest;
|
|
8617
|
-
};
|
|
8618
7040
|
export declare const ListChannelMessagesRequest: {
|
|
8619
7041
|
encode(message: ListChannelMessagesRequest, writer?: _m0.Writer): _m0.Writer;
|
|
8620
7042
|
decode(input: _m0.Reader | Uint8Array, length?: number): ListChannelMessagesRequest;
|
|
@@ -11580,6 +10002,8 @@ export declare const InviteUserRes: {
|
|
|
11580
10002
|
e2ee?: number | undefined;
|
|
11581
10003
|
display_names?: string[] | undefined;
|
|
11582
10004
|
} | undefined;
|
|
10005
|
+
clan_logo?: string | undefined;
|
|
10006
|
+
member_count?: number | undefined;
|
|
11583
10007
|
} & {
|
|
11584
10008
|
clan_id?: string | undefined;
|
|
11585
10009
|
channel_id?: string | undefined;
|
|
@@ -11712,6 +10136,8 @@ export declare const InviteUserRes: {
|
|
|
11712
10136
|
e2ee?: number | undefined;
|
|
11713
10137
|
display_names?: (string[] & string[] & { [K_10 in Exclude<keyof I["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
11714
10138
|
} & { [K_11 in Exclude<keyof I["channel_desc"], keyof ChannelDescription>]: never; }) | undefined;
|
|
10139
|
+
clan_logo?: string | undefined;
|
|
10140
|
+
member_count?: number | undefined;
|
|
11715
10141
|
} & { [K_12 in Exclude<keyof I, keyof InviteUserRes>]: never; }>(base?: I | undefined): InviteUserRes;
|
|
11716
10142
|
fromPartial<I_1 extends {
|
|
11717
10143
|
clan_id?: string | undefined;
|
|
@@ -11773,6 +10199,8 @@ export declare const InviteUserRes: {
|
|
|
11773
10199
|
e2ee?: number | undefined;
|
|
11774
10200
|
display_names?: string[] | undefined;
|
|
11775
10201
|
} | undefined;
|
|
10202
|
+
clan_logo?: string | undefined;
|
|
10203
|
+
member_count?: number | undefined;
|
|
11776
10204
|
} & {
|
|
11777
10205
|
clan_id?: string | undefined;
|
|
11778
10206
|
channel_id?: string | undefined;
|
|
@@ -11905,6 +10333,8 @@ export declare const InviteUserRes: {
|
|
|
11905
10333
|
e2ee?: number | undefined;
|
|
11906
10334
|
display_names?: (string[] & string[] & { [K_23 in Exclude<keyof I_1["channel_desc"]["display_names"], keyof string[]>]: never; }) | undefined;
|
|
11907
10335
|
} & { [K_24 in Exclude<keyof I_1["channel_desc"], keyof ChannelDescription>]: never; }) | undefined;
|
|
10336
|
+
clan_logo?: string | undefined;
|
|
10337
|
+
member_count?: number | undefined;
|
|
11908
10338
|
} & { [K_25 in Exclude<keyof I_1, keyof InviteUserRes>]: never; }>(object: I_1): InviteUserRes;
|
|
11909
10339
|
};
|
|
11910
10340
|
export declare const JoinClanChannelRequest: {
|
|
@@ -18615,128 +17045,6 @@ export declare const AppClan: {
|
|
|
18615
17045
|
clan_id?: string | undefined;
|
|
18616
17046
|
} & { [K_1 in Exclude<keyof I_1, keyof AppClan>]: never; }>(object: I_1): AppClan;
|
|
18617
17047
|
};
|
|
18618
|
-
export declare const AuthenticateRequest: {
|
|
18619
|
-
encode(message: AuthenticateRequest, writer?: _m0.Writer): _m0.Writer;
|
|
18620
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AuthenticateRequest;
|
|
18621
|
-
fromJSON(object: any): AuthenticateRequest;
|
|
18622
|
-
toJSON(message: AuthenticateRequest): unknown;
|
|
18623
|
-
create<I extends {
|
|
18624
|
-
account?: {
|
|
18625
|
-
appid?: string | undefined;
|
|
18626
|
-
appname?: string | undefined;
|
|
18627
|
-
token?: string | undefined;
|
|
18628
|
-
vars?: {
|
|
18629
|
-
[x: string]: string | undefined;
|
|
18630
|
-
} | undefined;
|
|
18631
|
-
} | undefined;
|
|
18632
|
-
} & {
|
|
18633
|
-
account?: ({
|
|
18634
|
-
appid?: string | undefined;
|
|
18635
|
-
appname?: string | undefined;
|
|
18636
|
-
token?: string | undefined;
|
|
18637
|
-
vars?: {
|
|
18638
|
-
[x: string]: string | undefined;
|
|
18639
|
-
} | undefined;
|
|
18640
|
-
} & {
|
|
18641
|
-
appid?: string | undefined;
|
|
18642
|
-
appname?: string | undefined;
|
|
18643
|
-
token?: string | undefined;
|
|
18644
|
-
vars?: ({
|
|
18645
|
-
[x: string]: string | undefined;
|
|
18646
|
-
} & {
|
|
18647
|
-
[x: string]: string | undefined;
|
|
18648
|
-
} & { [K in Exclude<keyof I["account"]["vars"], string | number>]: never; }) | undefined;
|
|
18649
|
-
} & { [K_1 in Exclude<keyof I["account"], keyof AccountApp>]: never; }) | undefined;
|
|
18650
|
-
} & { [K_2 in Exclude<keyof I, "account">]: never; }>(base?: I | undefined): AuthenticateRequest;
|
|
18651
|
-
fromPartial<I_1 extends {
|
|
18652
|
-
account?: {
|
|
18653
|
-
appid?: string | undefined;
|
|
18654
|
-
appname?: string | undefined;
|
|
18655
|
-
token?: string | undefined;
|
|
18656
|
-
vars?: {
|
|
18657
|
-
[x: string]: string | undefined;
|
|
18658
|
-
} | undefined;
|
|
18659
|
-
} | undefined;
|
|
18660
|
-
} & {
|
|
18661
|
-
account?: ({
|
|
18662
|
-
appid?: string | undefined;
|
|
18663
|
-
appname?: string | undefined;
|
|
18664
|
-
token?: string | undefined;
|
|
18665
|
-
vars?: {
|
|
18666
|
-
[x: string]: string | undefined;
|
|
18667
|
-
} | undefined;
|
|
18668
|
-
} & {
|
|
18669
|
-
appid?: string | undefined;
|
|
18670
|
-
appname?: string | undefined;
|
|
18671
|
-
token?: string | undefined;
|
|
18672
|
-
vars?: ({
|
|
18673
|
-
[x: string]: string | undefined;
|
|
18674
|
-
} & {
|
|
18675
|
-
[x: string]: string | undefined;
|
|
18676
|
-
} & { [K_3 in Exclude<keyof I_1["account"]["vars"], string | number>]: never; }) | undefined;
|
|
18677
|
-
} & { [K_4 in Exclude<keyof I_1["account"], keyof AccountApp>]: never; }) | undefined;
|
|
18678
|
-
} & { [K_5 in Exclude<keyof I_1, "account">]: never; }>(object: I_1): AuthenticateRequest;
|
|
18679
|
-
};
|
|
18680
|
-
export declare const AccountApp: {
|
|
18681
|
-
encode(message: AccountApp, writer?: _m0.Writer): _m0.Writer;
|
|
18682
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountApp;
|
|
18683
|
-
fromJSON(object: any): AccountApp;
|
|
18684
|
-
toJSON(message: AccountApp): unknown;
|
|
18685
|
-
create<I extends {
|
|
18686
|
-
appid?: string | undefined;
|
|
18687
|
-
appname?: string | undefined;
|
|
18688
|
-
token?: string | undefined;
|
|
18689
|
-
vars?: {
|
|
18690
|
-
[x: string]: string | undefined;
|
|
18691
|
-
} | undefined;
|
|
18692
|
-
} & {
|
|
18693
|
-
appid?: string | undefined;
|
|
18694
|
-
appname?: string | undefined;
|
|
18695
|
-
token?: string | undefined;
|
|
18696
|
-
vars?: ({
|
|
18697
|
-
[x: string]: string | undefined;
|
|
18698
|
-
} & {
|
|
18699
|
-
[x: string]: string | undefined;
|
|
18700
|
-
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
18701
|
-
} & { [K_1 in Exclude<keyof I, keyof AccountApp>]: never; }>(base?: I | undefined): AccountApp;
|
|
18702
|
-
fromPartial<I_1 extends {
|
|
18703
|
-
appid?: string | undefined;
|
|
18704
|
-
appname?: string | undefined;
|
|
18705
|
-
token?: string | undefined;
|
|
18706
|
-
vars?: {
|
|
18707
|
-
[x: string]: string | undefined;
|
|
18708
|
-
} | undefined;
|
|
18709
|
-
} & {
|
|
18710
|
-
appid?: string | undefined;
|
|
18711
|
-
appname?: string | undefined;
|
|
18712
|
-
token?: string | undefined;
|
|
18713
|
-
vars?: ({
|
|
18714
|
-
[x: string]: string | undefined;
|
|
18715
|
-
} & {
|
|
18716
|
-
[x: string]: string | undefined;
|
|
18717
|
-
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
18718
|
-
} & { [K_3 in Exclude<keyof I_1, keyof AccountApp>]: never; }>(object: I_1): AccountApp;
|
|
18719
|
-
};
|
|
18720
|
-
export declare const AccountApp_VarsEntry: {
|
|
18721
|
-
encode(message: AccountApp_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
18722
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): AccountApp_VarsEntry;
|
|
18723
|
-
fromJSON(object: any): AccountApp_VarsEntry;
|
|
18724
|
-
toJSON(message: AccountApp_VarsEntry): unknown;
|
|
18725
|
-
create<I extends {
|
|
18726
|
-
key?: string | undefined;
|
|
18727
|
-
value?: string | undefined;
|
|
18728
|
-
} & {
|
|
18729
|
-
key?: string | undefined;
|
|
18730
|
-
value?: string | undefined;
|
|
18731
|
-
} & { [K in Exclude<keyof I, keyof AccountApp_VarsEntry>]: never; }>(base?: I | undefined): AccountApp_VarsEntry;
|
|
18732
|
-
fromPartial<I_1 extends {
|
|
18733
|
-
key?: string | undefined;
|
|
18734
|
-
value?: string | undefined;
|
|
18735
|
-
} & {
|
|
18736
|
-
key?: string | undefined;
|
|
18737
|
-
value?: string | undefined;
|
|
18738
|
-
} & { [K_1 in Exclude<keyof I_1, keyof AccountApp_VarsEntry>]: never; }>(object: I_1): AccountApp_VarsEntry;
|
|
18739
|
-
};
|
|
18740
17048
|
export declare const DeleteChannelMessagesRequest: {
|
|
18741
17049
|
encode(message: DeleteChannelMessagesRequest, writer?: _m0.Writer): _m0.Writer;
|
|
18742
17050
|
decode(input: _m0.Reader | Uint8Array, length?: number): DeleteChannelMessagesRequest;
|
|
@@ -25759,26 +24067,6 @@ export declare const GenerateHashChannelAppsResponse: {
|
|
|
25759
24067
|
web_app_data?: string | undefined;
|
|
25760
24068
|
} & { [K_1 in Exclude<keyof I_1, "web_app_data">]: never; }>(object: I_1): GenerateHashChannelAppsResponse;
|
|
25761
24069
|
};
|
|
25762
|
-
export declare const GetMezonAccountRequest: {
|
|
25763
|
-
encode(message: GetMezonAccountRequest, writer?: _m0.Writer): _m0.Writer;
|
|
25764
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): GetMezonAccountRequest;
|
|
25765
|
-
fromJSON(object: any): GetMezonAccountRequest;
|
|
25766
|
-
toJSON(message: GetMezonAccountRequest): unknown;
|
|
25767
|
-
create<I extends {
|
|
25768
|
-
secret?: string | undefined;
|
|
25769
|
-
email?: string | undefined;
|
|
25770
|
-
} & {
|
|
25771
|
-
secret?: string | undefined;
|
|
25772
|
-
email?: string | undefined;
|
|
25773
|
-
} & { [K in Exclude<keyof I, keyof GetMezonAccountRequest>]: never; }>(base?: I | undefined): GetMezonAccountRequest;
|
|
25774
|
-
fromPartial<I_1 extends {
|
|
25775
|
-
secret?: string | undefined;
|
|
25776
|
-
email?: string | undefined;
|
|
25777
|
-
} & {
|
|
25778
|
-
secret?: string | undefined;
|
|
25779
|
-
email?: string | undefined;
|
|
25780
|
-
} & { [K_1 in Exclude<keyof I_1, keyof GetMezonAccountRequest>]: never; }>(object: I_1): GetMezonAccountRequest;
|
|
25781
|
-
};
|
|
25782
24070
|
export declare const Message2InboxRequest: {
|
|
25783
24071
|
encode(message: Message2InboxRequest, writer?: _m0.Writer): _m0.Writer;
|
|
25784
24072
|
decode(input: _m0.Reader | Uint8Array, length?: number): Message2InboxRequest;
|
|
@@ -25827,6 +24115,114 @@ export declare const Message2InboxRequest: {
|
|
|
25827
24115
|
references?: string | undefined;
|
|
25828
24116
|
} & { [K_1 in Exclude<keyof I_1, keyof Message2InboxRequest>]: never; }>(object: I_1): Message2InboxRequest;
|
|
25829
24117
|
};
|
|
24118
|
+
export declare const AccountEmail: {
|
|
24119
|
+
encode(message: AccountEmail, writer?: _m0.Writer): _m0.Writer;
|
|
24120
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AccountEmail;
|
|
24121
|
+
fromJSON(object: any): AccountEmail;
|
|
24122
|
+
toJSON(message: AccountEmail): unknown;
|
|
24123
|
+
create<I extends {
|
|
24124
|
+
email?: string | undefined;
|
|
24125
|
+
password?: string | undefined;
|
|
24126
|
+
vars?: {
|
|
24127
|
+
[x: string]: string | undefined;
|
|
24128
|
+
} | undefined;
|
|
24129
|
+
} & {
|
|
24130
|
+
email?: string | undefined;
|
|
24131
|
+
password?: string | undefined;
|
|
24132
|
+
vars?: ({
|
|
24133
|
+
[x: string]: string | undefined;
|
|
24134
|
+
} & {
|
|
24135
|
+
[x: string]: string | undefined;
|
|
24136
|
+
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
24137
|
+
} & { [K_1 in Exclude<keyof I, keyof AccountEmail>]: never; }>(base?: I | undefined): AccountEmail;
|
|
24138
|
+
fromPartial<I_1 extends {
|
|
24139
|
+
email?: string | undefined;
|
|
24140
|
+
password?: string | undefined;
|
|
24141
|
+
vars?: {
|
|
24142
|
+
[x: string]: string | undefined;
|
|
24143
|
+
} | undefined;
|
|
24144
|
+
} & {
|
|
24145
|
+
email?: string | undefined;
|
|
24146
|
+
password?: string | undefined;
|
|
24147
|
+
vars?: ({
|
|
24148
|
+
[x: string]: string | undefined;
|
|
24149
|
+
} & {
|
|
24150
|
+
[x: string]: string | undefined;
|
|
24151
|
+
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
24152
|
+
} & { [K_3 in Exclude<keyof I_1, keyof AccountEmail>]: never; }>(object: I_1): AccountEmail;
|
|
24153
|
+
};
|
|
24154
|
+
export declare const AccountEmail_VarsEntry: {
|
|
24155
|
+
encode(message: AccountEmail_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
24156
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AccountEmail_VarsEntry;
|
|
24157
|
+
fromJSON(object: any): AccountEmail_VarsEntry;
|
|
24158
|
+
toJSON(message: AccountEmail_VarsEntry): unknown;
|
|
24159
|
+
create<I extends {
|
|
24160
|
+
key?: string | undefined;
|
|
24161
|
+
value?: string | undefined;
|
|
24162
|
+
} & {
|
|
24163
|
+
key?: string | undefined;
|
|
24164
|
+
value?: string | undefined;
|
|
24165
|
+
} & { [K in Exclude<keyof I, keyof AccountEmail_VarsEntry>]: never; }>(base?: I | undefined): AccountEmail_VarsEntry;
|
|
24166
|
+
fromPartial<I_1 extends {
|
|
24167
|
+
key?: string | undefined;
|
|
24168
|
+
value?: string | undefined;
|
|
24169
|
+
} & {
|
|
24170
|
+
key?: string | undefined;
|
|
24171
|
+
value?: string | undefined;
|
|
24172
|
+
} & { [K_1 in Exclude<keyof I_1, keyof AccountEmail_VarsEntry>]: never; }>(object: I_1): AccountEmail_VarsEntry;
|
|
24173
|
+
};
|
|
24174
|
+
export declare const AccountMezon: {
|
|
24175
|
+
encode(message: AccountMezon, writer?: _m0.Writer): _m0.Writer;
|
|
24176
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AccountMezon;
|
|
24177
|
+
fromJSON(object: any): AccountMezon;
|
|
24178
|
+
toJSON(message: AccountMezon): unknown;
|
|
24179
|
+
create<I extends {
|
|
24180
|
+
token?: string | undefined;
|
|
24181
|
+
vars?: {
|
|
24182
|
+
[x: string]: string | undefined;
|
|
24183
|
+
} | undefined;
|
|
24184
|
+
} & {
|
|
24185
|
+
token?: string | undefined;
|
|
24186
|
+
vars?: ({
|
|
24187
|
+
[x: string]: string | undefined;
|
|
24188
|
+
} & {
|
|
24189
|
+
[x: string]: string | undefined;
|
|
24190
|
+
} & { [K in Exclude<keyof I["vars"], string | number>]: never; }) | undefined;
|
|
24191
|
+
} & { [K_1 in Exclude<keyof I, keyof AccountMezon>]: never; }>(base?: I | undefined): AccountMezon;
|
|
24192
|
+
fromPartial<I_1 extends {
|
|
24193
|
+
token?: string | undefined;
|
|
24194
|
+
vars?: {
|
|
24195
|
+
[x: string]: string | undefined;
|
|
24196
|
+
} | undefined;
|
|
24197
|
+
} & {
|
|
24198
|
+
token?: string | undefined;
|
|
24199
|
+
vars?: ({
|
|
24200
|
+
[x: string]: string | undefined;
|
|
24201
|
+
} & {
|
|
24202
|
+
[x: string]: string | undefined;
|
|
24203
|
+
} & { [K_2 in Exclude<keyof I_1["vars"], string | number>]: never; }) | undefined;
|
|
24204
|
+
} & { [K_3 in Exclude<keyof I_1, keyof AccountMezon>]: never; }>(object: I_1): AccountMezon;
|
|
24205
|
+
};
|
|
24206
|
+
export declare const AccountMezon_VarsEntry: {
|
|
24207
|
+
encode(message: AccountMezon_VarsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
24208
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): AccountMezon_VarsEntry;
|
|
24209
|
+
fromJSON(object: any): AccountMezon_VarsEntry;
|
|
24210
|
+
toJSON(message: AccountMezon_VarsEntry): unknown;
|
|
24211
|
+
create<I extends {
|
|
24212
|
+
key?: string | undefined;
|
|
24213
|
+
value?: string | undefined;
|
|
24214
|
+
} & {
|
|
24215
|
+
key?: string | undefined;
|
|
24216
|
+
value?: string | undefined;
|
|
24217
|
+
} & { [K in Exclude<keyof I, keyof AccountMezon_VarsEntry>]: never; }>(base?: I | undefined): AccountMezon_VarsEntry;
|
|
24218
|
+
fromPartial<I_1 extends {
|
|
24219
|
+
key?: string | undefined;
|
|
24220
|
+
value?: string | undefined;
|
|
24221
|
+
} & {
|
|
24222
|
+
key?: string | undefined;
|
|
24223
|
+
value?: string | undefined;
|
|
24224
|
+
} & { [K_1 in Exclude<keyof I_1, keyof AccountMezon_VarsEntry>]: never; }>(object: I_1): AccountMezon_VarsEntry;
|
|
24225
|
+
};
|
|
25830
24226
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
25831
24227
|
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
25832
24228
|
[K in keyof T]?: DeepPartial<T[K]>;
|