Latest generation

This commit is contained in:
ci viz model
2025-06-13 13:42:01 +00:00
parent 4ee9e8d0d8
commit baa774ce5b
48 changed files with 14628 additions and 1932 deletions

View File

@@ -1,4 +1,4 @@
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
// @generated from protobuf file "viz-tab.proto" (package "vizapi", syntax proto3)
// tslint:disable
import { ServiceType } from "@protobuf-ts/runtime-rpc";
@@ -18,7 +18,7 @@ export interface ListTabRequest {
/**
* Identifier of the Tab
*
* @generated from protobuf field: string TabID = 1 [json_name = "TabID"];
* @generated from protobuf field: string TabID = 1
*/
TabID: string;
}
@@ -29,7 +29,7 @@ export interface ListTabResult {
/**
* List of tabs
*
* @generated from protobuf field: string Result = 1 [json_name = "Result"];
* @generated from protobuf field: string Result = 1
*/
Result: string;
}
@@ -52,7 +52,7 @@ class ListTabRequest$Type extends MessageType<ListTabRequest> {
while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag();
switch (fieldNo) {
case /* string TabID = 1 [json_name = "TabID"];*/ 1:
case /* string TabID */ 1:
message.TabID = reader.string();
break;
default:
@@ -67,7 +67,7 @@ class ListTabRequest$Type extends MessageType<ListTabRequest> {
return message;
}
internalBinaryWrite(message: ListTabRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
/* string TabID = 1 [json_name = "TabID"]; */
/* string TabID = 1; */
if (message.TabID !== "")
writer.tag(1, WireType.LengthDelimited).string(message.TabID);
let u = options.writeUnknownFields;
@@ -99,7 +99,7 @@ class ListTabResult$Type extends MessageType<ListTabResult> {
while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag();
switch (fieldNo) {
case /* string Result = 1 [json_name = "Result"];*/ 1:
case /* string Result */ 1:
message.Result = reader.string();
break;
default:
@@ -114,7 +114,7 @@ class ListTabResult$Type extends MessageType<ListTabResult> {
return message;
}
internalBinaryWrite(message: ListTabResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
/* string Result = 1 [json_name = "Result"]; */
/* string Result = 1; */
if (message.Result !== "")
writer.tag(1, WireType.LengthDelimited).string(message.Result);
let u = options.writeUnknownFields;