fixed transfer process
This commit is contained in:
@@ -106,6 +106,18 @@ export type BirdRow = {
|
||||
latest_recorded_on: string | null;
|
||||
};
|
||||
|
||||
export type PendingBirdTransferRow = {
|
||||
id: string;
|
||||
bird_id: string;
|
||||
source_workspace_id: number;
|
||||
destination_owner_email: string;
|
||||
requested_by_user_id: string;
|
||||
completed_at: string | null;
|
||||
completed_workspace_id: number | null;
|
||||
last_error: string | null;
|
||||
created_at: string;
|
||||
};
|
||||
|
||||
export type WeightRow = {
|
||||
id: string;
|
||||
bird_id: string;
|
||||
|
||||
Reference in New Issue
Block a user