@@ -1230,55 +1230,89 @@ class ApplicationFlags(BaseFlags):
1230
1230
representing the currently available flags. You should query
1231
1231
flags via the properties rather than using this raw value.
1232
1232
"""
1233
+ @flag_value
1234
+ def managed_emoji (self ):
1235
+ """:class:`bool`: Returns ``True`` if the application is a managed emoji.
1236
+
1237
+ .. versionadded:: 2.0
1238
+ """
1239
+ return 1 << 2
1233
1240
1241
+ @flag_value
1242
+ def group_dm_create (self ):
1243
+ """:class:`bool`: Returns ``True`` if the application can create group DMs.
1244
+
1245
+ .. versionadded:: 2.0
1246
+ """
1247
+ return 1 << 5
1248
+
1249
+ @flag_value
1250
+ def application_auto_moderation_rule_create_badge (self ):
1251
+ """:class:`bool`: Returns ``True`` if the application uses the Auto Moderation API.
1252
+
1253
+ .. versionadded:: 2.0
1254
+ """
1255
+ return 1 << 6
1256
+
1257
+ @flag_value
1258
+ def rpc_has_connected (self ):
1259
+ """:class:`bool`: Returns ``True`` if the application has connected to RPC.
1260
+
1261
+ .. versionadded:: 2.0
1262
+ """
1263
+ return 1 << 11
1264
+
1234
1265
@flag_value
1235
1266
def gateway_presence (self ):
1236
1267
""":class:`bool`: Returns ``True`` if the application is approved for the privileged gateway presence-intent."""
1237
-
1238
1268
return 1 << 12
1239
1269
1240
1270
@flag_value
1241
1271
def gateway_presence_limited (self ):
1242
1272
""":class:`bool`: Returns ``True`` if the privileged gateway presence-intent
1243
- is enabled in the application in the developer-portal."""
1244
-
1273
+ is enabled in the application in the developer-portal.
1274
+ """
1245
1275
return 1 << 13
1246
1276
1247
1277
@flag_value
1248
1278
def gateway_guild_members (self ):
1249
1279
""":class:`bool`: Returns ``True`` if the application is approved
1250
- for the privileged gateway guild-members-intent."""
1251
-
1280
+ for the privileged gateway guild-members-intent.
1281
+ """
1252
1282
return 1 << 14
1253
1283
1254
1284
@flag_value
1255
1285
def gateway_guild_members_limited (self ):
1256
1286
""":class:`bool`: Returns ``True`` if the privileged gateway guild-members-intent
1257
- is enabled in the application in the developer-portal."""
1258
-
1287
+ is enabled in the application in the developer-portal.
1288
+ """
1259
1289
return 1 << 15
1260
1290
1261
1291
@flag_value
1262
1292
def verification_pending_guild_limit (self ):
1263
1293
""":class:`bool: Returns ``True`` if this application has reached the required number of guilds
1264
- to apply for verification. (76+ Guilds)"""
1294
+ to apply for verification. (76+ Guilds)
1295
+ """
1265
1296
return 1 << 16
1266
1297
1267
1298
@flag_value
1268
1299
def embedded (self ):
1269
- """:class:`bool`: Returns ``True`` if this application could have embedded invites.(usually voice-activity's)"""
1300
+ """:class:`bool`: Returns ``True`` if this application could have embedded invites.(usually voice-activity's)
1301
+ """
1270
1302
return 1 << 17
1271
1303
1272
1304
@flag_value
1273
1305
def gateway_message_content (self ):
1274
1306
""":class:`bool`: Returns ``True`` if the application is approved
1275
- for the privileged gateway message-content-intent."""
1307
+ for the privileged gateway message-content-intent.
1308
+ """
1276
1309
return 1 << 18
1277
1310
1278
1311
@flag_value
1279
1312
def gateway_message_content_limited (self ):
1280
1313
""":class:`bool`: Returns ``True`` if the privileged gateway message-content-intent
1281
- is enabled in the application in the developer-portal."""
1314
+ is enabled in the application in the developer-portal.
1315
+ """
1282
1316
return 1 << 19
1283
1317
1284
1318
@flag_value
0 commit comments