Skip to content

Commit

Permalink
generate types
Browse files Browse the repository at this point in the history
  • Loading branch information
liuliu-dev committed Dec 3, 2024
1 parent 0cd26e5 commit 9013727
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/renderer/gen/graphql-types.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ export enum QueryExecutionStatus {
export type Remote = {
__typename?: 'Remote';
_id: Scalars['ID']['output'];
fetchSpecs: Array<Scalars['String']['output']>;
fetchSpecs?: Maybe<Array<Scalars['String']['output']>>;
name: Scalars['String']['output'];
params?: Maybe<Scalars['String']['output']>;
url: Scalars['String']['output'];
Expand Down Expand Up @@ -1183,15 +1183,15 @@ export type DeleteTagMutationVariables = Exact<{

export type DeleteTagMutation = { __typename?: 'Mutation', deleteTag: boolean };

export type RemoteFragment = { __typename?: 'Remote', _id: string, name: string, url: string, fetchSpecs: Array<string>, params?: string | null };
export type RemoteFragment = { __typename?: 'Remote', _id: string, name: string, url: string, fetchSpecs?: Array<string> | null, params?: string | null };

export type RemoteListQueryVariables = Exact<{
databaseName: Scalars['String']['input'];
offset?: InputMaybe<Scalars['Int']['input']>;
}>;


export type RemoteListQuery = { __typename?: 'Query', remotes: { __typename?: 'RemoteList', nextOffset?: number | null, list: Array<{ __typename?: 'Remote', _id: string, name: string, url: string, fetchSpecs: Array<string>, params?: string | null }> } };
export type RemoteListQuery = { __typename?: 'Query', remotes: { __typename?: 'RemoteList', nextOffset?: number | null, list: Array<{ __typename?: 'Remote', _id: string, name: string, url: string, fetchSpecs?: Array<string> | null, params?: string | null }> } };

export type LoadDataMutationVariables = Exact<{
databaseName: Scalars['String']['input'];
Expand Down

0 comments on commit 9013727

Please sign in to comment.