More merge fixes

This commit is contained in:
Arnab Chakraborty 2024-08-13 14:08:13 +03:00
parent 541e228410
commit 54b72a7015
3 changed files with 514 additions and 416 deletions

927
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -13,3 +13,4 @@ prisma-client-rust = { workspace = true }
rspc = { workspace = true, features = ["unstable"] }
thiserror = { workspace = true }
uuid = { workspace = true }
tracing = { workspace = true }

View File

@ -245,7 +245,7 @@ export type Device = { pub_id: DevicePubId; name: string; os: DeviceOS; storage_
export type DeviceDeleteRequest = { access_token: AccessToken; pub_id: DevicePubId }
export type DeviceOS = "Linux" | "Windows" | "MacOS" | "IOS" | "Android"
export type DeviceOS = "Linux" | "Windows" | "MacOS" | "iOS" | "Android"
export type DevicePubId = string