feat: add update profile (isPublic: true)
All checks were successful
Publish / Publish Job (push) Successful in 2m33s

This commit is contained in:
Дмитрий
2026-04-10 21:26:47 +03:00
parent 602b805789
commit aad6f5f598
3 changed files with 4 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@lendry-erp/contracts",
"version": "1.1.2",
"version": "1.1.3",
"description": "Protobuf definitions and generated TypeScript types",
"type": "commonjs",
"main": "./dist/index.js",

View File

@@ -93,6 +93,7 @@ message ChangeDataRequest {
optional string custom_status_emoji = 8;
optional string timezone = 9;
optional string language = 10;
optional bool is_public = 11;
}
message ChangeDataResponse {

View File

@@ -5,4 +5,6 @@ export interface SearchUsersEvent {
phone?: string;
fullName?: string;
customStatusText?: string;
isPublic?: boolean;
status?: string;
}