discord-protos 1.2.81 → 1.2.83
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/discord_protos/__init__.py +1 -1
- package/discord_protos/discord_experimentation/v1/Experiment.proto +6 -0
- package/discord_protos/discord_experimentation/v1/Experiment_pb2.py +24 -22
- package/discord_protos/discord_users/v1/PreloadedUserSettings.proto +1 -0
- package/discord_protos/discord_users/v1/PreloadedUserSettings_pb2.py +111 -111
- package/dist/discord_protos/discord_experimentation/v1/Experiment.d.ts +29 -0
- package/dist/discord_protos/discord_experimentation/v1/Experiment.js +75 -2
- package/dist/discord_protos/discord_users/v1/PreloadedUserSettings.d.ts +8 -0
- package/dist/discord_protos/discord_users/v1/PreloadedUserSettings.js +16 -2
- package/dist/discord_protos/users/v1/GuildShardingConfig.d.ts +26 -0
- package/dist/discord_protos/users/v1/GuildShardingConfig.js +62 -0
- package/dist/discord_protos/users/v1/MediumUser.d.ts +55 -0
- package/dist/discord_protos/users/v1/MediumUser.js +108 -0
- package/dist/discord_protos/users/v1/User.d.ts +552 -0
- package/dist/discord_protos/users/v1/User.js +989 -0
- package/dist/discord_protos/users/v1/UserData.d.ts +802 -0
- package/dist/discord_protos/users/v1/UserData.js +1493 -0
- package/dist/index.d.ts +5 -1
- package/dist/index.js +5 -1
- package/package.json +1 -1
|
@@ -0,0 +1,552 @@
|
|
|
1
|
+
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
2
|
+
import type { IBinaryWriter } from "@protobuf-ts/runtime";
|
|
3
|
+
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
|
|
4
|
+
import type { IBinaryReader } from "@protobuf-ts/runtime";
|
|
5
|
+
import type { PartialMessage } from "@protobuf-ts/runtime";
|
|
6
|
+
import { MessageType } from "@protobuf-ts/runtime";
|
|
7
|
+
import { Timestamp } from "../../google/protobuf/timestamp";
|
|
8
|
+
import { BoolValue } from "../../google/protobuf/wrappers";
|
|
9
|
+
import { UInt32Value } from "../../google/protobuf/wrappers";
|
|
10
|
+
import { UInt64Value } from "../../google/protobuf/wrappers";
|
|
11
|
+
import { StringValue } from "../../google/protobuf/wrappers";
|
|
12
|
+
/**
|
|
13
|
+
* @generated from protobuf message discord_protos.users.v1.User
|
|
14
|
+
*/
|
|
15
|
+
export interface User {
|
|
16
|
+
/**
|
|
17
|
+
* @generated from protobuf field: uint64 id = 1
|
|
18
|
+
*/
|
|
19
|
+
id: bigint;
|
|
20
|
+
/**
|
|
21
|
+
* @generated from protobuf field: string username = 2
|
|
22
|
+
*/
|
|
23
|
+
username: string;
|
|
24
|
+
/**
|
|
25
|
+
* @generated from protobuf field: string discriminator = 3
|
|
26
|
+
*/
|
|
27
|
+
discriminator: string;
|
|
28
|
+
/**
|
|
29
|
+
* @generated from protobuf field: optional google.protobuf.StringValue avatar = 4
|
|
30
|
+
*/
|
|
31
|
+
avatar?: StringValue;
|
|
32
|
+
/**
|
|
33
|
+
* @generated from protobuf field: bool bot = 5
|
|
34
|
+
*/
|
|
35
|
+
bot: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* @generated from protobuf field: uint64 public_flags = 6
|
|
38
|
+
*/
|
|
39
|
+
publicFlags: bigint;
|
|
40
|
+
/**
|
|
41
|
+
* @generated from protobuf field: optional google.protobuf.StringValue global_name = 8
|
|
42
|
+
*/
|
|
43
|
+
globalName?: StringValue;
|
|
44
|
+
/**
|
|
45
|
+
* @generated from protobuf field: optional discord_protos.users.v1.User.UserAvatarDecoration avatar_decoration_data = 9
|
|
46
|
+
*/
|
|
47
|
+
avatarDecorationData?: User_UserAvatarDecoration;
|
|
48
|
+
/**
|
|
49
|
+
* @generated from protobuf field: optional discord_protos.users.v1.User.UserPrimaryGuild primary_guild = 10
|
|
50
|
+
*/
|
|
51
|
+
primaryGuild?: User_UserPrimaryGuild;
|
|
52
|
+
/**
|
|
53
|
+
* @generated from protobuf field: optional discord_protos.users.v1.User.UserCollectibles collectibles = 11
|
|
54
|
+
*/
|
|
55
|
+
collectibles?: User_UserCollectibles;
|
|
56
|
+
/**
|
|
57
|
+
* @generated from protobuf field: optional discord_protos.users.v1.User.SafetyState safety_state = 12
|
|
58
|
+
*/
|
|
59
|
+
safetyState?: User_SafetyState;
|
|
60
|
+
/**
|
|
61
|
+
* @generated from protobuf field: optional discord_protos.users.v1.User.DisplayNameStyles display_name_styles = 13
|
|
62
|
+
*/
|
|
63
|
+
displayNameStyles?: User_DisplayNameStyles;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* @generated from protobuf message discord_protos.users.v1.User.UserAvatarDecoration
|
|
67
|
+
*/
|
|
68
|
+
export interface User_UserAvatarDecoration {
|
|
69
|
+
/**
|
|
70
|
+
* @generated from protobuf field: string asset = 1
|
|
71
|
+
*/
|
|
72
|
+
asset: string;
|
|
73
|
+
/**
|
|
74
|
+
* @generated from protobuf field: optional google.protobuf.UInt64Value sku_id = 2
|
|
75
|
+
*/
|
|
76
|
+
skuId?: UInt64Value;
|
|
77
|
+
/**
|
|
78
|
+
* @generated from protobuf field: optional google.protobuf.UInt32Value expires_at = 3
|
|
79
|
+
*/
|
|
80
|
+
expiresAt?: UInt32Value;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* @generated from protobuf message discord_protos.users.v1.User.UserPrimaryGuild
|
|
84
|
+
*/
|
|
85
|
+
export interface User_UserPrimaryGuild {
|
|
86
|
+
/**
|
|
87
|
+
* @generated from protobuf field: optional google.protobuf.UInt64Value identity_guild_id = 1
|
|
88
|
+
*/
|
|
89
|
+
identityGuildId?: UInt64Value;
|
|
90
|
+
/**
|
|
91
|
+
* @generated from protobuf field: optional google.protobuf.BoolValue identity_enabled = 2
|
|
92
|
+
*/
|
|
93
|
+
identityEnabled?: BoolValue;
|
|
94
|
+
/**
|
|
95
|
+
* @generated from protobuf field: optional google.protobuf.StringValue tag = 3
|
|
96
|
+
*/
|
|
97
|
+
tag?: StringValue;
|
|
98
|
+
/**
|
|
99
|
+
* @generated from protobuf field: optional google.protobuf.StringValue badge = 4
|
|
100
|
+
*/
|
|
101
|
+
badge?: StringValue;
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* @generated from protobuf message discord_protos.users.v1.User.UserNameplate
|
|
105
|
+
*/
|
|
106
|
+
export interface User_UserNameplate {
|
|
107
|
+
/**
|
|
108
|
+
* @generated from protobuf field: string asset = 1
|
|
109
|
+
*/
|
|
110
|
+
asset: string;
|
|
111
|
+
/**
|
|
112
|
+
* @generated from protobuf field: string palette = 2
|
|
113
|
+
*/
|
|
114
|
+
palette: string;
|
|
115
|
+
/**
|
|
116
|
+
* @generated from protobuf field: optional google.protobuf.UInt64Value sku_id = 3
|
|
117
|
+
*/
|
|
118
|
+
skuId?: UInt64Value;
|
|
119
|
+
/**
|
|
120
|
+
* @generated from protobuf field: optional google.protobuf.Timestamp expires_at = 4
|
|
121
|
+
*/
|
|
122
|
+
expiresAt?: Timestamp;
|
|
123
|
+
/**
|
|
124
|
+
* @generated from protobuf field: string label = 5
|
|
125
|
+
*/
|
|
126
|
+
label: string;
|
|
127
|
+
}
|
|
128
|
+
/**
|
|
129
|
+
* @generated from protobuf message discord_protos.users.v1.User.UserCollectibles
|
|
130
|
+
*/
|
|
131
|
+
export interface User_UserCollectibles {
|
|
132
|
+
/**
|
|
133
|
+
* @generated from protobuf field: optional discord_protos.users.v1.User.UserNameplate nameplate = 1
|
|
134
|
+
*/
|
|
135
|
+
nameplate?: User_UserNameplate;
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* @generated from protobuf message discord_protos.users.v1.User.NormalState
|
|
139
|
+
*/
|
|
140
|
+
export interface User_NormalState {
|
|
141
|
+
}
|
|
142
|
+
/**
|
|
143
|
+
* @generated from protobuf message discord_protos.users.v1.User.RestrictedState
|
|
144
|
+
*/
|
|
145
|
+
export interface User_RestrictedState {
|
|
146
|
+
/**
|
|
147
|
+
* @generated from protobuf field: optional google.protobuf.Timestamp restricted_until = 1
|
|
148
|
+
*/
|
|
149
|
+
restrictedUntil?: Timestamp;
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* @generated from protobuf message discord_protos.users.v1.User.DeferredActionState
|
|
153
|
+
*/
|
|
154
|
+
export interface User_DeferredActionState {
|
|
155
|
+
/**
|
|
156
|
+
* @generated from protobuf field: optional google.protobuf.Timestamp action_deferred_until = 1
|
|
157
|
+
*/
|
|
158
|
+
actionDeferredUntil?: Timestamp;
|
|
159
|
+
}
|
|
160
|
+
/**
|
|
161
|
+
* @generated from protobuf message discord_protos.users.v1.User.TempBannedState
|
|
162
|
+
*/
|
|
163
|
+
export interface User_TempBannedState {
|
|
164
|
+
/**
|
|
165
|
+
* @generated from protobuf field: optional google.protobuf.Timestamp banned_until = 1
|
|
166
|
+
*/
|
|
167
|
+
bannedUntil?: Timestamp;
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* @generated from protobuf message discord_protos.users.v1.User.BannedState
|
|
171
|
+
*/
|
|
172
|
+
export interface User_BannedState {
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* @generated from protobuf message discord_protos.users.v1.User.SafetyState
|
|
176
|
+
*/
|
|
177
|
+
export interface User_SafetyState {
|
|
178
|
+
/**
|
|
179
|
+
* @generated from protobuf oneof: state
|
|
180
|
+
*/
|
|
181
|
+
state: {
|
|
182
|
+
oneofKind: "normal";
|
|
183
|
+
/**
|
|
184
|
+
* @generated from protobuf field: discord_protos.users.v1.User.NormalState normal = 101
|
|
185
|
+
*/
|
|
186
|
+
normal: User_NormalState;
|
|
187
|
+
} | {
|
|
188
|
+
oneofKind: "restricted";
|
|
189
|
+
/**
|
|
190
|
+
* @generated from protobuf field: discord_protos.users.v1.User.RestrictedState restricted = 102
|
|
191
|
+
*/
|
|
192
|
+
restricted: User_RestrictedState;
|
|
193
|
+
} | {
|
|
194
|
+
oneofKind: "deferredAction";
|
|
195
|
+
/**
|
|
196
|
+
* @generated from protobuf field: discord_protos.users.v1.User.DeferredActionState deferred_action = 103
|
|
197
|
+
*/
|
|
198
|
+
deferredAction: User_DeferredActionState;
|
|
199
|
+
} | {
|
|
200
|
+
oneofKind: "tempBanned";
|
|
201
|
+
/**
|
|
202
|
+
* @generated from protobuf field: discord_protos.users.v1.User.TempBannedState temp_banned = 104
|
|
203
|
+
*/
|
|
204
|
+
tempBanned: User_TempBannedState;
|
|
205
|
+
} | {
|
|
206
|
+
oneofKind: "banned";
|
|
207
|
+
/**
|
|
208
|
+
* @generated from protobuf field: discord_protos.users.v1.User.BannedState banned = 105
|
|
209
|
+
*/
|
|
210
|
+
banned: User_BannedState;
|
|
211
|
+
} | {
|
|
212
|
+
oneofKind: undefined;
|
|
213
|
+
};
|
|
214
|
+
/**
|
|
215
|
+
* @generated from protobuf field: discord_protos.users.v1.User.SafetyStateReason reason = 1
|
|
216
|
+
*/
|
|
217
|
+
reason: User_SafetyStateReason;
|
|
218
|
+
/**
|
|
219
|
+
* @generated from protobuf field: repeated discord_protos.users.v1.User.SafetyAnnotations annotations = 2
|
|
220
|
+
*/
|
|
221
|
+
annotations: User_SafetyAnnotations[];
|
|
222
|
+
/**
|
|
223
|
+
* @generated from protobuf field: optional google.protobuf.UInt64Value last_mutation_id = 3
|
|
224
|
+
*/
|
|
225
|
+
lastMutationId?: UInt64Value;
|
|
226
|
+
}
|
|
227
|
+
/**
|
|
228
|
+
* @generated from protobuf message discord_protos.users.v1.User.DisplayNameStyles
|
|
229
|
+
*/
|
|
230
|
+
export interface User_DisplayNameStyles {
|
|
231
|
+
/**
|
|
232
|
+
* @generated from protobuf field: discord_protos.users.v1.User.DisplayNameFont font_id = 1
|
|
233
|
+
*/
|
|
234
|
+
fontId: User_DisplayNameFont;
|
|
235
|
+
/**
|
|
236
|
+
* @generated from protobuf field: discord_protos.users.v1.User.DisplayNameEffect effect_id = 2
|
|
237
|
+
*/
|
|
238
|
+
effectId: User_DisplayNameEffect;
|
|
239
|
+
/**
|
|
240
|
+
* @generated from protobuf field: repeated uint32 colors = 3
|
|
241
|
+
*/
|
|
242
|
+
colors: number[];
|
|
243
|
+
}
|
|
244
|
+
/**
|
|
245
|
+
* @generated from protobuf enum discord_protos.users.v1.User.SafetyStateReason
|
|
246
|
+
*/
|
|
247
|
+
export declare enum User_SafetyStateReason {
|
|
248
|
+
/**
|
|
249
|
+
* @generated from protobuf enum value: SAFETY_STATE_REASON_REASON_UNSPECIFIED = 0;
|
|
250
|
+
*/
|
|
251
|
+
REASON_UNSPECIFIED = 0,
|
|
252
|
+
/**
|
|
253
|
+
* @generated from protobuf enum value: SAFETY_STATE_REASON_DISABLED_SUSPICIOUS_ACTIVITY = 1;
|
|
254
|
+
*/
|
|
255
|
+
DISABLED_SUSPICIOUS_ACTIVITY = 1,
|
|
256
|
+
/**
|
|
257
|
+
* @generated from protobuf enum value: SAFETY_STATE_REASON_SMITE_REMOVE_EMAIL_VERIFICATION = 2;
|
|
258
|
+
*/
|
|
259
|
+
SMITE_REMOVE_EMAIL_VERIFICATION = 2,
|
|
260
|
+
/**
|
|
261
|
+
* @generated from protobuf enum value: SAFETY_STATE_REASON_USER_REQUIRED_VERIFICATION_INTERVENTIONS_CLIENT = 3;
|
|
262
|
+
*/
|
|
263
|
+
USER_REQUIRED_VERIFICATION_INTERVENTIONS_CLIENT = 3,
|
|
264
|
+
/**
|
|
265
|
+
* @generated from protobuf enum value: SAFETY_STATE_REASON_ACTIVE_ASSIGNMENT_COMPLETED = 4;
|
|
266
|
+
*/
|
|
267
|
+
ACTIVE_ASSIGNMENT_COMPLETED = 4,
|
|
268
|
+
/**
|
|
269
|
+
* @generated from protobuf enum value: SAFETY_STATE_REASON_ACTIVE_ASSIGNMENT_CREATED = 5;
|
|
270
|
+
*/
|
|
271
|
+
ACTIVE_ASSIGNMENT_CREATED = 5,
|
|
272
|
+
/**
|
|
273
|
+
* @generated from protobuf enum value: SAFETY_STATE_REASON_DEFERRED_ASSIGNMENT_CREATED = 6;
|
|
274
|
+
*/
|
|
275
|
+
DEFERRED_ASSIGNMENT_CREATED = 6,
|
|
276
|
+
/**
|
|
277
|
+
* @generated from protobuf enum value: SAFETY_STATE_REASON_DEFERRED_ASSIGNMENT_UPGRADED_TO_ACTIVE = 7;
|
|
278
|
+
*/
|
|
279
|
+
DEFERRED_ASSIGNMENT_UPGRADED_TO_ACTIVE = 7,
|
|
280
|
+
/**
|
|
281
|
+
* @generated from protobuf enum value: SAFETY_STATE_REASON_DEFERRED_ASSIGNMENT_CANCELLED = 8;
|
|
282
|
+
*/
|
|
283
|
+
DEFERRED_ASSIGNMENT_CANCELLED = 8,
|
|
284
|
+
/**
|
|
285
|
+
* @generated from protobuf enum value: SAFETY_STATE_REASON_ASSIGNMENT_STATE_REPAIRED = 9;
|
|
286
|
+
*/
|
|
287
|
+
ASSIGNMENT_STATE_REPAIRED = 9,
|
|
288
|
+
/**
|
|
289
|
+
* @generated from protobuf enum value: SAFETY_STATE_REASON_MANUAL_PERMANENT_BAN = 10;
|
|
290
|
+
*/
|
|
291
|
+
MANUAL_PERMANENT_BAN = 10,
|
|
292
|
+
/**
|
|
293
|
+
* @generated from protobuf enum value: SAFETY_STATE_REASON_SAFETY_SYSTEM_UNBAN = 11;
|
|
294
|
+
*/
|
|
295
|
+
SAFETY_SYSTEM_UNBAN = 11,
|
|
296
|
+
/**
|
|
297
|
+
* @generated from protobuf enum value: SAFETY_STATE_REASON_GENERIC_AUTOMATED_SAFETY_ACTION = 12;
|
|
298
|
+
*/
|
|
299
|
+
GENERIC_AUTOMATED_SAFETY_ACTION = 12,
|
|
300
|
+
/**
|
|
301
|
+
* @generated from protobuf enum value: SAFETY_STATE_REASON_GENERIC_MANUAL_SAFETY_ACTION = 13;
|
|
302
|
+
*/
|
|
303
|
+
GENERIC_MANUAL_SAFETY_ACTION = 13
|
|
304
|
+
}
|
|
305
|
+
/**
|
|
306
|
+
* @generated from protobuf enum discord_protos.users.v1.User.SafetyAnnotations
|
|
307
|
+
*/
|
|
308
|
+
export declare enum User_SafetyAnnotations {
|
|
309
|
+
/**
|
|
310
|
+
* @generated from protobuf enum value: SAFETY_ANNOTATIONS_ANNOTATION_UNSPECIFIED = 0;
|
|
311
|
+
*/
|
|
312
|
+
ANNOTATION_UNSPECIFIED = 0,
|
|
313
|
+
/**
|
|
314
|
+
* @generated from protobuf enum value: SAFETY_ANNOTATIONS_SPAMMER = 1;
|
|
315
|
+
*/
|
|
316
|
+
SPAMMER = 1,
|
|
317
|
+
/**
|
|
318
|
+
* @generated from protobuf enum value: SAFETY_ANNOTATIONS_SELF_DELETED = 2;
|
|
319
|
+
*/
|
|
320
|
+
SELF_DELETED = 2,
|
|
321
|
+
/**
|
|
322
|
+
* @generated from protobuf enum value: SAFETY_ANNOTATIONS_SELF_DISABLED = 3;
|
|
323
|
+
*/
|
|
324
|
+
SELF_DISABLED = 3,
|
|
325
|
+
/**
|
|
326
|
+
* @generated from protobuf enum value: SAFETY_ANNOTATIONS_UNDERAGE_DELETED = 4;
|
|
327
|
+
*/
|
|
328
|
+
UNDERAGE_DELETED = 4,
|
|
329
|
+
/**
|
|
330
|
+
* @generated from protobuf enum value: SAFETY_ANNOTATIONS_SAFETY_POLICY_VIOLATION = 5;
|
|
331
|
+
*/
|
|
332
|
+
SAFETY_POLICY_VIOLATION = 5,
|
|
333
|
+
/**
|
|
334
|
+
* @generated from protobuf enum value: SAFETY_ANNOTATIONS_INACTIVITY_DELETED = 6;
|
|
335
|
+
*/
|
|
336
|
+
INACTIVITY_DELETED = 6,
|
|
337
|
+
/**
|
|
338
|
+
* @generated from protobuf enum value: SAFETY_ANNOTATIONS_GENERIC_DELETED = 7;
|
|
339
|
+
*/
|
|
340
|
+
GENERIC_DELETED = 7
|
|
341
|
+
}
|
|
342
|
+
/**
|
|
343
|
+
* @generated from protobuf enum discord_protos.users.v1.User.DisplayNameFont
|
|
344
|
+
*/
|
|
345
|
+
export declare enum User_DisplayNameFont {
|
|
346
|
+
/**
|
|
347
|
+
* @generated from protobuf enum value: DISPLAY_NAME_FONT_UNSPECIFIED = 0;
|
|
348
|
+
*/
|
|
349
|
+
UNSPECIFIED = 0,
|
|
350
|
+
/**
|
|
351
|
+
* @generated from protobuf enum value: DISPLAY_NAME_FONT_DEFAULT = 11;
|
|
352
|
+
*/
|
|
353
|
+
DEFAULT = 11,
|
|
354
|
+
/**
|
|
355
|
+
* @generated from protobuf enum value: DISPLAY_NAME_FONT_BANGERS = 1;
|
|
356
|
+
*/
|
|
357
|
+
BANGERS = 1,
|
|
358
|
+
/**
|
|
359
|
+
* @generated from protobuf enum value: DISPLAY_NAME_FONT_BIO_RHYME = 2;
|
|
360
|
+
*/
|
|
361
|
+
BIO_RHYME = 2,
|
|
362
|
+
/**
|
|
363
|
+
* @generated from protobuf enum value: DISPLAY_NAME_FONT_CHERRY_BOMB = 3;
|
|
364
|
+
*/
|
|
365
|
+
CHERRY_BOMB = 3,
|
|
366
|
+
/**
|
|
367
|
+
* @generated from protobuf enum value: DISPLAY_NAME_FONT_CHICLE = 4;
|
|
368
|
+
*/
|
|
369
|
+
CHICLE = 4,
|
|
370
|
+
/**
|
|
371
|
+
* @generated from protobuf enum value: DISPLAY_NAME_FONT_COMPAGNON = 5;
|
|
372
|
+
*/
|
|
373
|
+
COMPAGNON = 5,
|
|
374
|
+
/**
|
|
375
|
+
* @generated from protobuf enum value: DISPLAY_NAME_FONT_MUSEO_MODERNO = 6;
|
|
376
|
+
*/
|
|
377
|
+
MUSEO_MODERNO = 6,
|
|
378
|
+
/**
|
|
379
|
+
* @generated from protobuf enum value: DISPLAY_NAME_FONT_NEO_CASTEL = 7;
|
|
380
|
+
*/
|
|
381
|
+
NEO_CASTEL = 7,
|
|
382
|
+
/**
|
|
383
|
+
* @generated from protobuf enum value: DISPLAY_NAME_FONT_PIXELIFY = 8;
|
|
384
|
+
*/
|
|
385
|
+
PIXELIFY = 8,
|
|
386
|
+
/**
|
|
387
|
+
* @generated from protobuf enum value: DISPLAY_NAME_FONT_RIBES = 9;
|
|
388
|
+
*/
|
|
389
|
+
RIBES = 9,
|
|
390
|
+
/**
|
|
391
|
+
* @generated from protobuf enum value: DISPLAY_NAME_FONT_SINISTRE = 10;
|
|
392
|
+
*/
|
|
393
|
+
SINISTRE = 10,
|
|
394
|
+
/**
|
|
395
|
+
* @generated from protobuf enum value: DISPLAY_NAME_FONT_ZILLA_SLAB = 12;
|
|
396
|
+
*/
|
|
397
|
+
ZILLA_SLAB = 12
|
|
398
|
+
}
|
|
399
|
+
/**
|
|
400
|
+
* @generated from protobuf enum discord_protos.users.v1.User.DisplayNameEffect
|
|
401
|
+
*/
|
|
402
|
+
export declare enum User_DisplayNameEffect {
|
|
403
|
+
/**
|
|
404
|
+
* @generated from protobuf enum value: DISPLAY_NAME_EFFECT_UNSPECIFIED = 0;
|
|
405
|
+
*/
|
|
406
|
+
UNSPECIFIED = 0,
|
|
407
|
+
/**
|
|
408
|
+
* @generated from protobuf enum value: DISPLAY_NAME_EFFECT_SOLID = 1;
|
|
409
|
+
*/
|
|
410
|
+
SOLID = 1,
|
|
411
|
+
/**
|
|
412
|
+
* @generated from protobuf enum value: DISPLAY_NAME_EFFECT_GRADIENT = 2;
|
|
413
|
+
*/
|
|
414
|
+
GRADIENT = 2,
|
|
415
|
+
/**
|
|
416
|
+
* @generated from protobuf enum value: DISPLAY_NAME_EFFECT_NEON = 3;
|
|
417
|
+
*/
|
|
418
|
+
NEON = 3,
|
|
419
|
+
/**
|
|
420
|
+
* @generated from protobuf enum value: DISPLAY_NAME_EFFECT_TOON = 4;
|
|
421
|
+
*/
|
|
422
|
+
TOON = 4,
|
|
423
|
+
/**
|
|
424
|
+
* @generated from protobuf enum value: DISPLAY_NAME_EFFECT_POP = 5;
|
|
425
|
+
*/
|
|
426
|
+
POP = 5,
|
|
427
|
+
/**
|
|
428
|
+
* @generated from protobuf enum value: DISPLAY_NAME_EFFECT_GLOW = 6;
|
|
429
|
+
*/
|
|
430
|
+
GLOW = 6
|
|
431
|
+
}
|
|
432
|
+
declare class User$Type extends MessageType<User> {
|
|
433
|
+
constructor();
|
|
434
|
+
create(value?: PartialMessage<User>): User;
|
|
435
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: User): User;
|
|
436
|
+
internalBinaryWrite(message: User, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
437
|
+
}
|
|
438
|
+
/**
|
|
439
|
+
* @generated MessageType for protobuf message discord_protos.users.v1.User
|
|
440
|
+
*/
|
|
441
|
+
export declare const User: User$Type;
|
|
442
|
+
declare class User_UserAvatarDecoration$Type extends MessageType<User_UserAvatarDecoration> {
|
|
443
|
+
constructor();
|
|
444
|
+
create(value?: PartialMessage<User_UserAvatarDecoration>): User_UserAvatarDecoration;
|
|
445
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: User_UserAvatarDecoration): User_UserAvatarDecoration;
|
|
446
|
+
internalBinaryWrite(message: User_UserAvatarDecoration, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
447
|
+
}
|
|
448
|
+
/**
|
|
449
|
+
* @generated MessageType for protobuf message discord_protos.users.v1.User.UserAvatarDecoration
|
|
450
|
+
*/
|
|
451
|
+
export declare const User_UserAvatarDecoration: User_UserAvatarDecoration$Type;
|
|
452
|
+
declare class User_UserPrimaryGuild$Type extends MessageType<User_UserPrimaryGuild> {
|
|
453
|
+
constructor();
|
|
454
|
+
create(value?: PartialMessage<User_UserPrimaryGuild>): User_UserPrimaryGuild;
|
|
455
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: User_UserPrimaryGuild): User_UserPrimaryGuild;
|
|
456
|
+
internalBinaryWrite(message: User_UserPrimaryGuild, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
457
|
+
}
|
|
458
|
+
/**
|
|
459
|
+
* @generated MessageType for protobuf message discord_protos.users.v1.User.UserPrimaryGuild
|
|
460
|
+
*/
|
|
461
|
+
export declare const User_UserPrimaryGuild: User_UserPrimaryGuild$Type;
|
|
462
|
+
declare class User_UserNameplate$Type extends MessageType<User_UserNameplate> {
|
|
463
|
+
constructor();
|
|
464
|
+
create(value?: PartialMessage<User_UserNameplate>): User_UserNameplate;
|
|
465
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: User_UserNameplate): User_UserNameplate;
|
|
466
|
+
internalBinaryWrite(message: User_UserNameplate, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
467
|
+
}
|
|
468
|
+
/**
|
|
469
|
+
* @generated MessageType for protobuf message discord_protos.users.v1.User.UserNameplate
|
|
470
|
+
*/
|
|
471
|
+
export declare const User_UserNameplate: User_UserNameplate$Type;
|
|
472
|
+
declare class User_UserCollectibles$Type extends MessageType<User_UserCollectibles> {
|
|
473
|
+
constructor();
|
|
474
|
+
create(value?: PartialMessage<User_UserCollectibles>): User_UserCollectibles;
|
|
475
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: User_UserCollectibles): User_UserCollectibles;
|
|
476
|
+
internalBinaryWrite(message: User_UserCollectibles, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
477
|
+
}
|
|
478
|
+
/**
|
|
479
|
+
* @generated MessageType for protobuf message discord_protos.users.v1.User.UserCollectibles
|
|
480
|
+
*/
|
|
481
|
+
export declare const User_UserCollectibles: User_UserCollectibles$Type;
|
|
482
|
+
declare class User_NormalState$Type extends MessageType<User_NormalState> {
|
|
483
|
+
constructor();
|
|
484
|
+
create(value?: PartialMessage<User_NormalState>): User_NormalState;
|
|
485
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: User_NormalState): User_NormalState;
|
|
486
|
+
internalBinaryWrite(message: User_NormalState, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
487
|
+
}
|
|
488
|
+
/**
|
|
489
|
+
* @generated MessageType for protobuf message discord_protos.users.v1.User.NormalState
|
|
490
|
+
*/
|
|
491
|
+
export declare const User_NormalState: User_NormalState$Type;
|
|
492
|
+
declare class User_RestrictedState$Type extends MessageType<User_RestrictedState> {
|
|
493
|
+
constructor();
|
|
494
|
+
create(value?: PartialMessage<User_RestrictedState>): User_RestrictedState;
|
|
495
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: User_RestrictedState): User_RestrictedState;
|
|
496
|
+
internalBinaryWrite(message: User_RestrictedState, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
497
|
+
}
|
|
498
|
+
/**
|
|
499
|
+
* @generated MessageType for protobuf message discord_protos.users.v1.User.RestrictedState
|
|
500
|
+
*/
|
|
501
|
+
export declare const User_RestrictedState: User_RestrictedState$Type;
|
|
502
|
+
declare class User_DeferredActionState$Type extends MessageType<User_DeferredActionState> {
|
|
503
|
+
constructor();
|
|
504
|
+
create(value?: PartialMessage<User_DeferredActionState>): User_DeferredActionState;
|
|
505
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: User_DeferredActionState): User_DeferredActionState;
|
|
506
|
+
internalBinaryWrite(message: User_DeferredActionState, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
507
|
+
}
|
|
508
|
+
/**
|
|
509
|
+
* @generated MessageType for protobuf message discord_protos.users.v1.User.DeferredActionState
|
|
510
|
+
*/
|
|
511
|
+
export declare const User_DeferredActionState: User_DeferredActionState$Type;
|
|
512
|
+
declare class User_TempBannedState$Type extends MessageType<User_TempBannedState> {
|
|
513
|
+
constructor();
|
|
514
|
+
create(value?: PartialMessage<User_TempBannedState>): User_TempBannedState;
|
|
515
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: User_TempBannedState): User_TempBannedState;
|
|
516
|
+
internalBinaryWrite(message: User_TempBannedState, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
517
|
+
}
|
|
518
|
+
/**
|
|
519
|
+
* @generated MessageType for protobuf message discord_protos.users.v1.User.TempBannedState
|
|
520
|
+
*/
|
|
521
|
+
export declare const User_TempBannedState: User_TempBannedState$Type;
|
|
522
|
+
declare class User_BannedState$Type extends MessageType<User_BannedState> {
|
|
523
|
+
constructor();
|
|
524
|
+
create(value?: PartialMessage<User_BannedState>): User_BannedState;
|
|
525
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: User_BannedState): User_BannedState;
|
|
526
|
+
internalBinaryWrite(message: User_BannedState, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
527
|
+
}
|
|
528
|
+
/**
|
|
529
|
+
* @generated MessageType for protobuf message discord_protos.users.v1.User.BannedState
|
|
530
|
+
*/
|
|
531
|
+
export declare const User_BannedState: User_BannedState$Type;
|
|
532
|
+
declare class User_SafetyState$Type extends MessageType<User_SafetyState> {
|
|
533
|
+
constructor();
|
|
534
|
+
create(value?: PartialMessage<User_SafetyState>): User_SafetyState;
|
|
535
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: User_SafetyState): User_SafetyState;
|
|
536
|
+
internalBinaryWrite(message: User_SafetyState, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
537
|
+
}
|
|
538
|
+
/**
|
|
539
|
+
* @generated MessageType for protobuf message discord_protos.users.v1.User.SafetyState
|
|
540
|
+
*/
|
|
541
|
+
export declare const User_SafetyState: User_SafetyState$Type;
|
|
542
|
+
declare class User_DisplayNameStyles$Type extends MessageType<User_DisplayNameStyles> {
|
|
543
|
+
constructor();
|
|
544
|
+
create(value?: PartialMessage<User_DisplayNameStyles>): User_DisplayNameStyles;
|
|
545
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: User_DisplayNameStyles): User_DisplayNameStyles;
|
|
546
|
+
internalBinaryWrite(message: User_DisplayNameStyles, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
547
|
+
}
|
|
548
|
+
/**
|
|
549
|
+
* @generated MessageType for protobuf message discord_protos.users.v1.User.DisplayNameStyles
|
|
550
|
+
*/
|
|
551
|
+
export declare const User_DisplayNameStyles: User_DisplayNameStyles$Type;
|
|
552
|
+
export {};
|