uuid codegen update (#4897)

Following https://github.com/twentyhq/twenty/pull/4895/files
This commit is contained in:
Weiko
2024-04-09 18:06:39 +02:00
committed by GitHub
parent ee5aaae796
commit 4f2c29dce0
2 changed files with 13 additions and 26 deletions

View File

@ -20,6 +20,8 @@ export type Scalars = {
DateTime: { input: any; output: any; }
/** The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */
JSON: { input: any; output: any; }
/** A UUID scalar type */
UUID: { input: any; output: any; }
/** The `Upload` scalar type represents a file upload. */
Upload: { input: any; output: any; }
};
@ -1080,7 +1082,7 @@ export type WorkspaceMember = {
__typename?: 'WorkspaceMember';
avatarUrl?: Maybe<Scalars['String']['output']>;
colorScheme: Scalars['String']['output'];
id: Scalars['ID']['output'];
id: Scalars['UUID']['output'];
locale: Scalars['String']['output'];
name: FullName;
};