Remove full name input from nda page
Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @generated SignedSource<<d9088a212dfa65ed0a833670cf8bc6d4>>
|
||||
* @generated SignedSource<<426a1227dea8949a1d77d75edf05437a>>
|
||||
* @lightSyntaxTransform
|
||||
* @nogrep
|
||||
*/
|
||||
@@ -26,7 +26,7 @@ export type PeopleGraphPaginatedFragment$data = {
|
||||
readonly emailAddress: string;
|
||||
readonly fullName: string;
|
||||
readonly id: string;
|
||||
readonly kind: ProfileKind;
|
||||
readonly kind: ProfileKind | null | undefined;
|
||||
readonly position: string | null | undefined;
|
||||
};
|
||||
}>;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @generated SignedSource<<1eea90ca68f7381b881c68f0489837cb>>
|
||||
* @generated SignedSource<<e88375170021c3387ee6a5491bc60e52>>
|
||||
* @lightSyntaxTransform
|
||||
* @nogrep
|
||||
*/
|
||||
@@ -20,7 +20,7 @@ export type PersonFormFragment$data = {
|
||||
readonly emailAddress: string;
|
||||
readonly fullName: string;
|
||||
readonly id: string;
|
||||
readonly kind: ProfileKind;
|
||||
readonly kind: ProfileKind | null | undefined;
|
||||
readonly membership: {
|
||||
readonly role: MembershipRole;
|
||||
};
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @generated SignedSource<<7889e38e185230a2c5b41c3b0fb73cca>>
|
||||
* @generated SignedSource<<8ef1dc9de9a669636884e4f60f7f39fc>>
|
||||
* @lightSyntaxTransform
|
||||
* @nogrep
|
||||
*/
|
||||
@@ -18,7 +18,7 @@ export type CreateUserInput = {
|
||||
contractStartDate?: string | null | undefined;
|
||||
emailAddress: string;
|
||||
fullName: string;
|
||||
kind: ProfileKind;
|
||||
kind?: ProfileKind | null | undefined;
|
||||
organizationId: string;
|
||||
position?: string | null | undefined;
|
||||
role: MembershipRole;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @generated SignedSource<<8563f3b122bb8d5b6c2e5e7354a0a0c8>>
|
||||
* @generated SignedSource<<dc04e9218150e42554925f8c39d83b41>>
|
||||
* @lightSyntaxTransform
|
||||
* @nogrep
|
||||
*/
|
||||
@@ -16,7 +16,7 @@ export type UpdateUserInput = {
|
||||
contractStartDate?: string | null | undefined;
|
||||
fullName: string;
|
||||
id: string;
|
||||
kind: ProfileKind;
|
||||
kind?: ProfileKind | null | undefined;
|
||||
position?: string | null | undefined;
|
||||
};
|
||||
export type PersonForm_updateMutation$variables = {
|
||||
|
||||
@@ -68,7 +68,7 @@ const schema = z.object({
|
||||
v => (v as string[]).filter(v => !!v),
|
||||
z.array(z.string().email()),
|
||||
),
|
||||
kind: z.enum(peopleRoles),
|
||||
kind: z.enum(peopleRoles).optional().nullable(),
|
||||
contractStartDate: z.string().optional().nullable(),
|
||||
contractEndDate: z.string().optional().nullable(),
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user