From a8a57a1b28f843494d3585b69af8fc3e6af0a405 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9?= Date: Sat, 4 Apr 2026 00:15:35 +0300 Subject: [PATCH] fix: rename session_id -> current_session_id --- package.json | 2 +- proto/auth.proto | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1db5810..3ca9066 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lendry-erp/contracts", - "version": "1.0.46", + "version": "1.0.47", "description": "Protobuf definitions and generated TypeScript types", "type": "commonjs", "main": "./dist/index.js", diff --git a/proto/auth.proto b/proto/auth.proto index d324bfb..0a62939 100644 --- a/proto/auth.proto +++ b/proto/auth.proto @@ -76,7 +76,7 @@ message GetAccountRoleLevelResponse { message GetSessionRequest { string user_id = 1; - string session_id = 2; + string current_session_id = 2; } message SessionItem {