Add people kind support

Signed-off-by: gearnode <bryan@frimin.fr>
This commit is contained in:
gearnode
2025-02-12 16:54:31 -08:00
parent 5864e092e6
commit de0d41c6fe
8 changed files with 107 additions and 77 deletions

View File

@@ -1,5 +1,5 @@
/**
* @generated SignedSource<<c8acfac5384ba48fe05ca8f73f32a8c5>>
* @generated SignedSource<<26992373ce2e1751c6d070a6bbf6c8db>>
* @lightSyntaxTransform
* @nogrep
*/
@@ -9,7 +9,7 @@
// @ts-nocheck
import { ConcreteRequest } from 'relay-runtime';
export type PeopleKind = "CONTRACTOR" | "EMPLOYEE" | "VENDOR";
export type PeopleKind = "CONTRACTOR" | "EMPLOYEE";
export type CreatePeopleInput = {
fullName: string;
kind: PeopleKind;

View File

@@ -1,5 +1,5 @@
/**
* @generated SignedSource<<c0df862d094bf6825bbda32ecda36bdd>>
* @generated SignedSource<<be78dd1183cd02907304e452fdec348b>>
* @lightSyntaxTransform
* @nogrep
*/
@@ -9,7 +9,7 @@
// @ts-nocheck
import { ConcreteRequest } from 'relay-runtime';
export type PeopleKind = "CONTRACTOR" | "EMPLOYEE" | "VENDOR";
export type PeopleKind = "CONTRACTOR" | "EMPLOYEE";
export type PeopleListPageQuery$variables = {
after?: any | null | undefined;
before?: any | null | undefined;