Added gender
This commit is contained in:
@@ -3,6 +3,7 @@ export type WorkspaceRole = 'owner' | 'manager' | 'staff' | 'viewer';
|
||||
export type BillingPlan = 'rescue_free' | 'household_basic' | 'household_plus' | 'household_macaw';
|
||||
export type ProviderKey = 'google' | 'microsoft' | 'apple';
|
||||
export type IntegrationTokenScope = 'read_only' | 'read_write';
|
||||
export type BirdGender = 'unknown' | 'male' | 'female';
|
||||
|
||||
export type UserRow = {
|
||||
id: string;
|
||||
@@ -89,6 +90,7 @@ export type BirdRow = {
|
||||
name: string;
|
||||
tag_id: string;
|
||||
species: string;
|
||||
gender: BirdGender;
|
||||
date_of_birth: string | null;
|
||||
gotcha_day: string | null;
|
||||
chart_color: string;
|
||||
|
||||
Reference in New Issue
Block a user