Skip to content

Commit

Permalink
Fixed graphql
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasbordeau committed May 1, 2024
1 parent 6fa9d79 commit 983ccf8
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions packages/twenty-front/src/generated-metadata/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,6 @@ export type CreateRemoteServerInput = {
foreignDataWrapperOptions: Scalars['JSON']['input'];
foreignDataWrapperType: Scalars['String']['input'];
userMappingOptions?: InputMaybe<UserMappingOptionsInput>;
schema?: InputMaybe<Scalars['String']['input']>;
};

export type CursorPaging = {
Expand Down Expand Up @@ -1008,8 +1007,7 @@ export type UpdateOneObjectInput = {
export type UpdateRemoteServerInput = {
foreignDataWrapperOptions?: InputMaybe<Scalars['JSON']['input']>;
id: Scalars['String']['input'];
schema?: InputMaybe<Scalars['String']['input']>;
userMappingOptions?: InputMaybe<UserMappingOptionsUpdateInput>;
userMappingOptions?: InputMaybe<UserMappingOptionsInput>;
};

export type UpdateWorkspaceInput = {
Expand Down Expand Up @@ -1056,21 +1054,11 @@ export type UserExists = {
exists: Scalars['Boolean']['output'];
};

export type UserMappingOptions = {
export type UserMappingOptionsInput = {
password?: InputMaybe<Scalars['String']['input']>;
username?: InputMaybe<Scalars['String']['input']>;
};

export type UserMappingOptionsUpdateInput = {
password?: InputMaybe<Scalars['String']['input']>;
username?: InputMaybe<Scalars['String']['input']>;
};

export type UserMappingOptionsUsername = {
__typename?: 'UserMappingOptionsUsername';
username?: Maybe<Scalars['String']['output']>;
};

export type UserWorkspace = {
__typename?: 'UserWorkspace';
createdAt: Scalars['DateTime']['output'];
Expand Down

0 comments on commit 983ccf8

Please sign in to comment.