diff --git a/packages/galaxy-client/index.ts b/packages/galaxy-client/index.ts index a32414df7a..07da5c6ad8 100644 --- a/packages/galaxy-client/index.ts +++ b/packages/galaxy-client/index.ts @@ -33,6 +33,13 @@ export type App = { title: Scalars['String']; }; +export type AuthorizationIdentity = { + __typename?: 'AuthorizationIdentity'; + identityURN?: Maybe; + imageURL?: Maybe; + name?: Maybe; +}; + export type ConnectedAccountPropertiesUpdateInput = { accountURN: Scalars['String']; public?: InputMaybe; @@ -107,6 +114,11 @@ export type PfpInput = { isToken?: InputMaybe; }; +export type Pagination = { + limit: Scalars['Int']; + offset: Scalars['Int']; +}; + export type Profile = { __typename?: 'Profile'; displayName?: Maybe; @@ -124,6 +136,7 @@ export type Query = { accountProfiles: Array; authorizedApps?: Maybe>>; connectedAccounts?: Maybe>; + getAuthorizedIdentities?: Maybe>>; getExternalAppData?: Maybe; identityFromAlias: Scalars['String']; profile?: Maybe; @@ -145,6 +158,11 @@ export type QueryConnectedAccountsArgs = { }; +export type QueryGetAuthorizedIdentitiesArgs = { + opts: Pagination; +}; + + export type QueryIdentityFromAliasArgs = { alias: Scalars['String']; provider: Scalars['String'];