Skip to content

Commit

Permalink
chore(galaxy): update client auto-generated module (#2832)
Browse files Browse the repository at this point in the history
  • Loading branch information
szkl committed Feb 5, 2024
1 parent 6e11422 commit 99ef1b9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions packages/galaxy-client/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ export type App = {
title: Scalars['String'];
};

export type AuthorizationIdentity = {
__typename?: 'AuthorizationIdentity';
identityURN?: Maybe<Scalars['String']>;
imageURL?: Maybe<Scalars['String']>;
name?: Maybe<Scalars['String']>;
};

export type ConnectedAccountPropertiesUpdateInput = {
accountURN: Scalars['String'];
public?: InputMaybe<Scalars['Boolean']>;
Expand Down Expand Up @@ -107,6 +114,11 @@ export type PfpInput = {
isToken?: InputMaybe<Scalars['Boolean']>;
};

export type Pagination = {
limit: Scalars['Int'];
offset: Scalars['Int'];
};

export type Profile = {
__typename?: 'Profile';
displayName?: Maybe<Scalars['String']>;
Expand All @@ -124,6 +136,7 @@ export type Query = {
accountProfiles: Array<AccountProfile>;
authorizedApps?: Maybe<Array<Maybe<App>>>;
connectedAccounts?: Maybe<Array<Node>>;
getAuthorizedIdentities?: Maybe<Array<Maybe<AuthorizationIdentity>>>;
getExternalAppData?: Maybe<Scalars['JSON']>;
identityFromAlias: Scalars['String'];
profile?: Maybe<Profile>;
Expand All @@ -145,6 +158,11 @@ export type QueryConnectedAccountsArgs = {
};


export type QueryGetAuthorizedIdentitiesArgs = {
opts: Pagination;
};


export type QueryIdentityFromAliasArgs = {
alias: Scalars['String'];
provider: Scalars['String'];
Expand Down

0 comments on commit 99ef1b9

Please sign in to comment.