From a90c8d95604c121b1b489f12d8667fb055fb9cef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E8=B6=85?= Date: Fri, 14 Aug 2026 14:13:43 +0800 Subject: [PATCH] =?UTF-8?q?fix(network):=20=E4=BF=AE=E5=A4=8Dproto?= =?UTF-8?q?=E6=89=93=E5=8C=85=E6=8A=A5=E9=94=99=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/i18n/generated/catalog.json | 44 ++++++++++++------------ proto/aiserver_v1.proto | 13 +++++++ 2 files changed, 35 insertions(+), 22 deletions(-) diff --git a/frontend/src/i18n/generated/catalog.json b/frontend/src/i18n/generated/catalog.json index 4ca1a58..ed45223 100644 --- a/frontend/src/i18n/generated/catalog.json +++ b/frontend/src/i18n/generated/catalog.json @@ -125,8 +125,8 @@ "refs": [ { "file": "src/views/Config.vue", - "line": 51, - "column": 1 + "line": 50, + "column": 48 } ] }, @@ -149,8 +149,8 @@ "refs": [ { "file": "src/components/HomeMetricsCard.vue", - "line": 338, - "column": 1 + "line": 337, + "column": 65 } ] }, @@ -366,8 +366,8 @@ "refs": [ { "file": "src/views/Config.vue", - "line": 65, - "column": 1 + "line": 64, + "column": 48 } ] }, @@ -483,8 +483,8 @@ "refs": [ { "file": "src/components/ModelAdapterTestCard.vue", - "line": 146, - "column": 1 + "line": 145, + "column": 7 } ] }, @@ -531,8 +531,8 @@ "refs": [ { "file": "src/components/ModelAdapterTestCard.vue", - "line": 125, - "column": 1 + "line": 124, + "column": 60 } ] }, @@ -604,8 +604,8 @@ }, { "file": "src/components/CursorAccountCard.vue", - "line": 188, - "column": 1 + "line": 187, + "column": 11 } ] }, @@ -1473,8 +1473,8 @@ "refs": [ { "file": "src/components/HomeMetricsCard.vue", - "line": 390, - "column": 1 + "line": 389, + "column": 65 } ] }, @@ -1750,8 +1750,8 @@ "refs": [ { "file": "src/components/HomeMetricsCard.vue", - "line": 342, - "column": 1 + "line": 341, + "column": 23 } ] }, @@ -2666,8 +2666,8 @@ "refs": [ { "file": "src/components/CursorAccountCard.vue", - "line": 170, - "column": 1 + "line": 169, + "column": 53 } ] }, @@ -2777,8 +2777,8 @@ "refs": [ { "file": "src/views/Config.vue", - "line": 77, - "column": 1 + "line": 76, + "column": 48 } ] }, @@ -2854,8 +2854,8 @@ "refs": [ { "file": "src/components/CursorAccountCard.vue", - "line": 173, - "column": 1 + "line": 172, + "column": 81 } ] }, diff --git a/proto/aiserver_v1.proto b/proto/aiserver_v1.proto index f540b19..51ef34b 100644 --- a/proto/aiserver_v1.proto +++ b/proto/aiserver_v1.proto @@ -17785,6 +17785,14 @@ message IsAllowedFreeTrialUsageResponse { bool is_allowed = 1; } +// Copied from: local:aiserver.v1.IsConnectedRequest +message IsConnectedRequest { +} + +// Copied from: local:aiserver.v1.IsConnectedResponse +message IsConnectedResponse { +} + // Copied from: local:aiserver.v1.IsCursorPredictionEnabledRequest (var: An) message IsCursorPredictionEnabledRequest { } @@ -36919,6 +36927,11 @@ service MetricsService { rpc ReportGauge(ReportMetricsRequest) returns (ReportMetricsResponse) {} } +// Source: aiserver.v1.NetworkService +service NetworkService { + rpc IsConnected(IsConnectedRequest) returns (IsConnectedResponse) {} +} + // Source: aiserver.v1.PerformanceEventService (var: i) service PerformanceEventService { rpc SubmitPerformanceEvents(SubmitPerformanceEventsRequest) returns (SubmitPerformanceEventsResponse) {}