Skip to content

Commit 844236f

Browse files
committed
Add missing metadata
1 parent 2d8900a commit 844236f

File tree

1 file changed

+21
-16
lines changed
  • packages/twenty-front/src/generated-metadata

1 file changed

+21
-16
lines changed

packages/twenty-front/src/generated-metadata/graphql.ts

Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,12 @@ export enum FieldMetadataType {
182182
Uuid = 'UUID'
183183
}
184184

185+
export type FullName = {
186+
__typename?: 'FullName';
187+
firstName: Scalars['String']['output'];
188+
lastName: Scalars['String']['output'];
189+
};
190+
185191
export type IdFilterComparison = {
186192
eq?: InputMaybe<Scalars['ID']['input']>;
187193
gt?: InputMaybe<Scalars['ID']['input']>;
@@ -389,6 +395,11 @@ export enum RelationMetadataType {
389395
OneToOne = 'ONE_TO_ONE'
390396
}
391397

398+
export type Sentry = {
399+
__typename?: 'Sentry';
400+
dsn: Scalars['String']['output'];
401+
};
402+
392403
export type Support = {
393404
__typename?: 'Support';
394405
supportDriver: Scalars['String']['output'];
@@ -454,7 +465,7 @@ export type User = {
454465
lastName: Scalars['String']['output'];
455466
passwordHash?: Maybe<Scalars['String']['output']>;
456467
updatedAt: Scalars['DateTime']['output'];
457-
workspaceMember: UserWorkspaceMember;
468+
workspaceMember: WorkspaceMember;
458469
};
459470

460471
export type UserEdge = {
@@ -465,21 +476,6 @@ export type UserEdge = {
465476
node: User;
466477
};
467478

468-
export type UserWorkspaceMember = {
469-
__typename?: 'UserWorkspaceMember';
470-
avatarUrl?: Maybe<Scalars['String']['output']>;
471-
colorScheme: Scalars['String']['output'];
472-
id: Scalars['ID']['output'];
473-
locale: Scalars['String']['output'];
474-
name: UserWorkspaceMemberName;
475-
};
476-
477-
export type UserWorkspaceMemberName = {
478-
__typename?: 'UserWorkspaceMemberName';
479-
firstName: Scalars['String']['output'];
480-
lastName: Scalars['String']['output'];
481-
};
482-
483479
export type Workspace = {
484480
__typename?: 'Workspace';
485481
allowImpersonation: Scalars['Boolean']['output'];
@@ -502,6 +498,15 @@ export type WorkspaceEdge = {
502498
node: Workspace;
503499
};
504500

501+
export type WorkspaceMember = {
502+
__typename?: 'WorkspaceMember';
503+
avatarUrl?: Maybe<Scalars['String']['output']>;
504+
colorScheme: Scalars['String']['output'];
505+
id: Scalars['ID']['output'];
506+
locale: Scalars['String']['output'];
507+
name: FullName;
508+
};
509+
505510
export type Field = {
506511
__typename?: 'field';
507512
createdAt: Scalars['DateTime']['output'];

0 commit comments

Comments
 (0)