Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(galaxy): update client auto-generated module #2832

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading