removed deprecation warnings

This commit is contained in:
Stephan D
2025-12-11 11:11:54 +01:00
parent d07e64fc4f
commit 2b68b59eca
3 changed files with 15 additions and 41 deletions

View File

@@ -20,17 +20,18 @@ message RateSnapshot {
}
message RequestMeta {
string request_ref = 1 [deprecated = true];
reserved 1, 4, 5;
reserved "request_ref", "idempotency_key", "trace_ref";
string tenant_ref = 2;
string organization_ref = 3;
string idempotency_key = 4 [deprecated = true];
string trace_ref = 5 [deprecated = true];
common.trace.v1.TraceContext trace = 6;
}
message ResponseMeta {
string request_ref = 1 [deprecated = true];
string trace_ref = 2 [deprecated = true];
reserved 1, 2;
reserved "request_ref", "trace_ref";
common.trace.v1.TraceContext trace = 3;
}