File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -243,6 +243,8 @@ export interface TeamResponse {
243243 readonly members : ReadonlyArray < TeamMemberResponse >
244244}
245245
246+ export interface GameResponse { }
247+
246248export interface PrivateApplicationResponse {
247249 readonly id : SnowflakeType
248250 readonly name : string
@@ -275,6 +277,7 @@ export interface PrivateApplicationResponse {
275277 readonly approximate_user_authorization_count : number
276278 readonly explicit_content_filter : ApplicationExplicitContentFilterTypes
277279 readonly team ?: TeamResponse | null | undefined
280+ readonly linked_games ?: ReadonlyArray < GameResponse > | null | undefined
278281}
279282
280283/**
@@ -6087,6 +6090,7 @@ export const ApplicationIdentityProviderAuthType = {
60876090 STEAM_SESSION_TICKET : "STEAM_SESSION_TICKET" ,
60886091 UNITY_SERVICES_ID_TOKEN : "UNITY_SERVICES_ID_TOKEN" ,
60896092 DISCORD_BOT_ISSUED_ACCESS_TOKEN : "DISCORD_BOT_ISSUED_ACCESS_TOKEN" ,
6093+ APPLE_ID_TOKEN : "APPLE_ID_TOKEN" ,
60906094} as const
60916095export type ApplicationIdentityProviderAuthType =
60926096 ( typeof ApplicationIdentityProviderAuthType ) [ keyof typeof ApplicationIdentityProviderAuthType ]
You can’t perform that action at this time.
0 commit comments