feat: add new activity flags (#6699)

This commit is contained in:
Almeida
2021-11-01 17:50:36 +00:00
committed by GitHub
parent e94073a6ab
commit 47d74ebf81
2 changed files with 16 additions and 1 deletions

11
typings/index.d.ts vendored
View File

@@ -3048,7 +3048,16 @@ export interface WebhookFields extends PartialWebhookFields {
//#region Typedefs
export type ActivityFlagsString = 'INSTANCE' | 'JOIN' | 'SPECTATE' | 'JOIN_REQUEST' | 'SYNC' | 'PLAY';
export type ActivityFlagsString =
| 'INSTANCE'
| 'JOIN'
| 'SPECTATE'
| 'JOIN_REQUEST'
| 'SYNC'
| 'PLAY'
| 'PARTY_PRIVACY_FRIENDS'
| 'PARTY_PRIVACY_VOICE_CHANNEL'
| 'EMBEDDED';
export type ActivitiesOptions = Omit<ActivityOptions, 'shardId'>;