chore: auto-generate protobuf files [skip ci]

This commit is contained in:
github-actions[bot]
2026-04-17 18:02:38 +00:00
parent dcb1c9a43b
commit b286ef9b3b
2 changed files with 84 additions and 69 deletions

View File

@@ -12,19 +12,19 @@ import { Observable } from "rxjs";
export const protobufPackage = "users.v1";
export interface UserSettingsMessage {
privacyPhone: string;
privacyLastSeen: string;
privacyPhoto: string;
privacyBio: string;
privacyCalls: string;
privacyGroups: string;
privacyVoiceMsgs: string;
notifyPrivateChats: boolean;
notifyGroups: boolean;
notifyChannels: boolean;
showMessagePreview: boolean;
theme: string;
textSize: number;
privacyPhone?: string | undefined;
privacyLastSeen?: string | undefined;
privacyPhoto?: string | undefined;
privacyBio?: string | undefined;
privacyCalls?: string | undefined;
privacyGroups?: string | undefined;
privacyVoiceMsgs?: string | undefined;
notifyPrivateChats?: boolean | undefined;
notifyGroups?: boolean | undefined;
notifyChannels?: boolean | undefined;
showMessagePreview?: boolean | undefined;
theme?: string | undefined;
textSize?: number | undefined;
chatBackground?: string | undefined;
}