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 "google/protobuf/any.proto" (package "google.protobuf", syntax proto3)
// tslint:disable
//
@@ -163,13 +163,13 @@ export interface Any {
* used with implementation specific semantics.
*
*
* @generated from protobuf field: string type_url = 1;
* @generated from protobuf field: string type_url = 1
*/
type_url: string;
/**
* Must be a valid serialized protocol buffer of the above specified type.
*
* @generated from protobuf field: bytes value = 2;
* @generated from protobuf field: bytes value = 2
*/
value: Uint8Array;
}

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 "google/protobuf/api.proto" (package "google.protobuf", syntax proto3)
// tslint:disable
//
@@ -62,19 +62,19 @@ export interface Api {
* The fully qualified name of this interface, including package name
* followed by the interface's simple name.
*
* @generated from protobuf field: string name = 1;
* @generated from protobuf field: string name = 1
*/
name: string;
/**
* The methods of this interface, in unspecified order.
*
* @generated from protobuf field: repeated google.protobuf.Method methods = 2;
* @generated from protobuf field: repeated google.protobuf.Method methods = 2
*/
methods: Method[];
/**
* Any metadata attached to the interface.
*
* @generated from protobuf field: repeated google.protobuf.Option options = 3;
* @generated from protobuf field: repeated google.protobuf.Option options = 3
*/
options: Option[];
/**
@@ -100,26 +100,26 @@ export interface Api {
*
*
*
* @generated from protobuf field: string version = 4;
* @generated from protobuf field: string version = 4
*/
version: string;
/**
* Source context for the protocol buffer service represented by this
* message.
*
* @generated from protobuf field: google.protobuf.SourceContext source_context = 5;
* @generated from protobuf field: google.protobuf.SourceContext source_context = 5
*/
source_context?: SourceContext;
/**
* Included interfaces. See [Mixin][].
*
* @generated from protobuf field: repeated google.protobuf.Mixin mixins = 6;
* @generated from protobuf field: repeated google.protobuf.Mixin mixins = 6
*/
mixins: Mixin[];
/**
* The source syntax of the service.
*
* @generated from protobuf field: google.protobuf.Syntax syntax = 7;
* @generated from protobuf field: google.protobuf.Syntax syntax = 7
*/
syntax: Syntax;
}
@@ -132,43 +132,43 @@ export interface Method {
/**
* The simple name of this method.
*
* @generated from protobuf field: string name = 1;
* @generated from protobuf field: string name = 1
*/
name: string;
/**
* A URL of the input message type.
*
* @generated from protobuf field: string request_type_url = 2;
* @generated from protobuf field: string request_type_url = 2
*/
request_type_url: string;
/**
* If true, the request is streamed.
*
* @generated from protobuf field: bool request_streaming = 3;
* @generated from protobuf field: bool request_streaming = 3
*/
request_streaming: boolean;
/**
* The URL of the output message type.
*
* @generated from protobuf field: string response_type_url = 4;
* @generated from protobuf field: string response_type_url = 4
*/
response_type_url: string;
/**
* If true, the response is streamed.
*
* @generated from protobuf field: bool response_streaming = 5;
* @generated from protobuf field: bool response_streaming = 5
*/
response_streaming: boolean;
/**
* Any metadata attached to the method.
*
* @generated from protobuf field: repeated google.protobuf.Option options = 6;
* @generated from protobuf field: repeated google.protobuf.Option options = 6
*/
options: Option[];
/**
* The source syntax of this method.
*
* @generated from protobuf field: google.protobuf.Syntax syntax = 7;
* @generated from protobuf field: google.protobuf.Syntax syntax = 7
*/
syntax: Syntax;
}
@@ -258,14 +258,14 @@ export interface Mixin {
/**
* The fully qualified name of the interface which is included.
*
* @generated from protobuf field: string name = 1;
* @generated from protobuf field: string name = 1
*/
name: string;
/**
* If non-empty specifies a path under which inherited HTTP paths
* are rooted.
*
* @generated from protobuf field: string root = 2;
* @generated from protobuf field: string root = 2
*/
root: string;
}

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 "google/protobuf/compiler/plugin.proto" (package "google.protobuf.compiler", syntax proto2)
// tslint:disable
//
@@ -66,22 +66,22 @@ import { FileDescriptorProto } from "../descriptor";
*/
export interface Version {
/**
* @generated from protobuf field: optional int32 major = 1;
* @generated from protobuf field: optional int32 major = 1
*/
major?: number;
/**
* @generated from protobuf field: optional int32 minor = 2;
* @generated from protobuf field: optional int32 minor = 2
*/
minor?: number;
/**
* @generated from protobuf field: optional int32 patch = 3;
* @generated from protobuf field: optional int32 patch = 3
*/
patch?: number;
/**
* A suffix for alpha, beta or rc release, e.g., "alpha-1", "rc2". It should
* be empty for mainline stable releases.
*
* @generated from protobuf field: optional string suffix = 4;
* @generated from protobuf field: optional string suffix = 4
*/
suffix?: string;
}
@@ -96,13 +96,13 @@ export interface CodeGeneratorRequest {
* code generator should generate code only for these files. Each file's
* descriptor will be included in proto_file, below.
*
* @generated from protobuf field: repeated string file_to_generate = 1;
* @generated from protobuf field: repeated string file_to_generate = 1
*/
file_to_generate: string[];
/**
* The generator parameter passed on the command-line.
*
* @generated from protobuf field: optional string parameter = 2;
* @generated from protobuf field: optional string parameter = 2
*/
parameter?: string;
/**
@@ -121,13 +121,13 @@ export interface CodeGeneratorRequest {
* Type names of fields and extensions in the FileDescriptorProto are always
* fully qualified.
*
* @generated from protobuf field: repeated google.protobuf.FileDescriptorProto proto_file = 15;
* @generated from protobuf field: repeated google.protobuf.FileDescriptorProto proto_file = 15
*/
proto_file: FileDescriptorProto[];
/**
* The version number of protocol compiler.
*
* @generated from protobuf field: optional google.protobuf.compiler.Version compiler_version = 3;
* @generated from protobuf field: optional google.protobuf.compiler.Version compiler_version = 3
*/
compiler_version?: Version;
}
@@ -147,11 +147,11 @@ export interface CodeGeneratorResponse {
* unparseable -- should be reported by writing a message to stderr and
* exiting with a non-zero status code.
*
* @generated from protobuf field: optional string error = 1;
* @generated from protobuf field: optional string error = 1
*/
error?: string;
/**
* @generated from protobuf field: repeated google.protobuf.compiler.CodeGeneratorResponse.File file = 15;
* @generated from protobuf field: repeated google.protobuf.compiler.CodeGeneratorResponse.File file = 15
*/
file: CodeGeneratorResponse_File[];
}
@@ -174,7 +174,7 @@ export interface CodeGeneratorResponse_File {
* this writing protoc does not optimize for this -- it will read the entire
* CodeGeneratorResponse before writing files to disk.
*
* @generated from protobuf field: optional string name = 1;
* @generated from protobuf field: optional string name = 1
*/
name?: string;
/**
@@ -216,13 +216,13 @@ export interface CodeGeneratorResponse_File {
*
* If |insertion_point| is present, |name| must also be present.
*
* @generated from protobuf field: optional string insertion_point = 2;
* @generated from protobuf field: optional string insertion_point = 2
*/
insertion_point?: string;
/**
* The file contents.
*
* @generated from protobuf field: optional string content = 15;
* @generated from protobuf field: optional string content = 15
*/
content?: string;
}

File diff suppressed because it is too large Load Diff

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 "google/protobuf/duration.proto" (package "google.protobuf", syntax proto3)
// tslint:disable
//
@@ -116,7 +116,7 @@ export interface Duration {
* to +315,576,000,000 inclusive. Note: these bounds are computed from:
* 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
*
* @generated from protobuf field: int64 seconds = 1;
* @generated from protobuf field: int64 seconds = 1
*/
seconds: bigint;
/**
@@ -127,7 +127,7 @@ export interface Duration {
* of the same sign as the `seconds` field. Must be from -999,999,999
* to +999,999,999 inclusive.
*
* @generated from protobuf field: int32 nanos = 2;
* @generated from protobuf field: int32 nanos = 2
*/
nanos: number;
}

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 "google/protobuf/empty.proto" (package "google.protobuf", syntax proto3)
// tslint:disable
//

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 "google/protobuf/field_mask.proto" (package "google.protobuf", syntax proto3)
// tslint:disable
//
@@ -253,7 +253,7 @@ export interface FieldMask {
/**
* The set of field mask paths.
*
* @generated from protobuf field: repeated string paths = 1;
* @generated from protobuf field: repeated string paths = 1
*/
paths: string[];
}

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 "google/protobuf/source_context.proto" (package "google.protobuf", syntax proto3)
// tslint:disable
//
@@ -52,7 +52,7 @@ export interface SourceContext {
* The path-qualified name of the .proto file that contained the associated
* protobuf element. For example: `"google/protobuf/source_context.proto"`.
*
* @generated from protobuf field: string file_name = 1;
* @generated from protobuf field: string file_name = 1
*/
file_name: string;
}

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 "google/protobuf/struct.proto" (package "google.protobuf", syntax proto3)
// tslint:disable
//
@@ -63,7 +63,7 @@ export interface Struct {
/**
* Unordered map of dynamically typed values.
*
* @generated from protobuf field: map<string, google.protobuf.Value> fields = 1;
* @generated from protobuf field: map<string, google.protobuf.Value> fields = 1
*/
fields: {
[key: string]: Value;
@@ -81,6 +81,8 @@ export interface Struct {
*/
export interface Value {
/**
* The kind of value.
*
* @generated from protobuf oneof: kind
*/
kind: {
@@ -88,7 +90,7 @@ export interface Value {
/**
* Represents a null value.
*
* @generated from protobuf field: google.protobuf.NullValue null_value = 1;
* @generated from protobuf field: google.protobuf.NullValue null_value = 1
*/
null_value: NullValue;
} | {
@@ -96,7 +98,7 @@ export interface Value {
/**
* Represents a double value.
*
* @generated from protobuf field: double number_value = 2;
* @generated from protobuf field: double number_value = 2
*/
number_value: number;
} | {
@@ -104,7 +106,7 @@ export interface Value {
/**
* Represents a string value.
*
* @generated from protobuf field: string string_value = 3;
* @generated from protobuf field: string string_value = 3
*/
string_value: string;
} | {
@@ -112,7 +114,7 @@ export interface Value {
/**
* Represents a boolean value.
*
* @generated from protobuf field: bool bool_value = 4;
* @generated from protobuf field: bool bool_value = 4
*/
bool_value: boolean;
} | {
@@ -120,7 +122,7 @@ export interface Value {
/**
* Represents a structured value.
*
* @generated from protobuf field: google.protobuf.Struct struct_value = 5;
* @generated from protobuf field: google.protobuf.Struct struct_value = 5
*/
struct_value: Struct;
} | {
@@ -128,7 +130,7 @@ export interface Value {
/**
* Represents a repeated `Value`.
*
* @generated from protobuf field: google.protobuf.ListValue list_value = 6;
* @generated from protobuf field: google.protobuf.ListValue list_value = 6
*/
list_value: ListValue;
} | {
@@ -146,7 +148,7 @@ export interface ListValue {
/**
* Repeated field of dynamically typed values.
*
* @generated from protobuf field: repeated google.protobuf.Value values = 1;
* @generated from protobuf field: repeated google.protobuf.Value values = 1
*/
values: Value[];
}
@@ -233,7 +235,7 @@ class Struct$Type extends MessageType<Struct> {
case 2:
val = Value.internalBinaryRead(reader, reader.uint32(), options);
break;
default: throw new globalThis.Error("unknown map entry field for field google.protobuf.Struct.fields");
default: throw new globalThis.Error("unknown map entry field for google.protobuf.Struct.fields");
}
}
map[key ?? ""] = val ?? Value.create();

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 "google/protobuf/timestamp.proto" (package "google.protobuf", syntax proto3)
// tslint:disable
//
@@ -140,7 +140,7 @@ export interface Timestamp {
* 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
* 9999-12-31T23:59:59Z inclusive.
*
* @generated from protobuf field: int64 seconds = 1;
* @generated from protobuf field: int64 seconds = 1
*/
seconds: bigint;
/**
@@ -149,7 +149,7 @@ export interface Timestamp {
* that count forward in time. Must be from 0 to 999,999,999
* inclusive.
*
* @generated from protobuf field: int32 nanos = 2;
* @generated from protobuf field: int32 nanos = 2
*/
nanos: number;
}

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 "google/protobuf/type.proto" (package "google.protobuf", syntax proto3)
// tslint:disable
//
@@ -52,37 +52,37 @@ export interface Type {
/**
* The fully qualified message name.
*
* @generated from protobuf field: string name = 1;
* @generated from protobuf field: string name = 1
*/
name: string;
/**
* The list of fields.
*
* @generated from protobuf field: repeated google.protobuf.Field fields = 2;
* @generated from protobuf field: repeated google.protobuf.Field fields = 2
*/
fields: Field[];
/**
* The list of types appearing in `oneof` definitions in this type.
*
* @generated from protobuf field: repeated string oneofs = 3;
* @generated from protobuf field: repeated string oneofs = 3
*/
oneofs: string[];
/**
* The protocol buffer options.
*
* @generated from protobuf field: repeated google.protobuf.Option options = 4;
* @generated from protobuf field: repeated google.protobuf.Option options = 4
*/
options: Option[];
/**
* The source context.
*
* @generated from protobuf field: google.protobuf.SourceContext source_context = 5;
* @generated from protobuf field: google.protobuf.SourceContext source_context = 5
*/
source_context?: SourceContext;
/**
* The source syntax.
*
* @generated from protobuf field: google.protobuf.Syntax syntax = 6;
* @generated from protobuf field: google.protobuf.Syntax syntax = 6
*/
syntax: Syntax;
}
@@ -95,63 +95,63 @@ export interface Field {
/**
* The field type.
*
* @generated from protobuf field: google.protobuf.Field.Kind kind = 1;
* @generated from protobuf field: google.protobuf.Field.Kind kind = 1
*/
kind: Field_Kind;
/**
* The field cardinality.
*
* @generated from protobuf field: google.protobuf.Field.Cardinality cardinality = 2;
* @generated from protobuf field: google.protobuf.Field.Cardinality cardinality = 2
*/
cardinality: Field_Cardinality;
/**
* The field number.
*
* @generated from protobuf field: int32 number = 3;
* @generated from protobuf field: int32 number = 3
*/
number: number;
/**
* The field name.
*
* @generated from protobuf field: string name = 4;
* @generated from protobuf field: string name = 4
*/
name: string;
/**
* The field type URL, without the scheme, for message or enumeration
* types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`.
*
* @generated from protobuf field: string type_url = 6;
* @generated from protobuf field: string type_url = 6
*/
type_url: string;
/**
* The index of the field type in `Type.oneofs`, for message or enumeration
* types. The first type has index 1; zero means the type is not in the list.
*
* @generated from protobuf field: int32 oneof_index = 7;
* @generated from protobuf field: int32 oneof_index = 7
*/
oneof_index: number;
/**
* Whether to use alternative packed wire representation.
*
* @generated from protobuf field: bool packed = 8;
* @generated from protobuf field: bool packed = 8
*/
packed: boolean;
/**
* The protocol buffer options.
*
* @generated from protobuf field: repeated google.protobuf.Option options = 9;
* @generated from protobuf field: repeated google.protobuf.Option options = 9
*/
options: Option[];
/**
* The field JSON name.
*
* @generated from protobuf field: string json_name = 10;
* @generated from protobuf field: string json_name = 10
*/
json_name: string;
/**
* The string value of the default value of this field. Proto2 syntax only.
*
* @generated from protobuf field: string default_value = 11;
* @generated from protobuf field: string default_value = 11
*/
default_value: string;
}
@@ -316,31 +316,31 @@ export interface Enum {
/**
* Enum type name.
*
* @generated from protobuf field: string name = 1;
* @generated from protobuf field: string name = 1
*/
name: string;
/**
* Enum value definitions.
*
* @generated from protobuf field: repeated google.protobuf.EnumValue enumvalue = 2;
* @generated from protobuf field: repeated google.protobuf.EnumValue enumvalue = 2
*/
enumvalue: EnumValue[];
/**
* Protocol buffer options.
*
* @generated from protobuf field: repeated google.protobuf.Option options = 3;
* @generated from protobuf field: repeated google.protobuf.Option options = 3
*/
options: Option[];
/**
* The source context.
*
* @generated from protobuf field: google.protobuf.SourceContext source_context = 4;
* @generated from protobuf field: google.protobuf.SourceContext source_context = 4
*/
source_context?: SourceContext;
/**
* The source syntax.
*
* @generated from protobuf field: google.protobuf.Syntax syntax = 5;
* @generated from protobuf field: google.protobuf.Syntax syntax = 5
*/
syntax: Syntax;
}
@@ -353,19 +353,19 @@ export interface EnumValue {
/**
* Enum value name.
*
* @generated from protobuf field: string name = 1;
* @generated from protobuf field: string name = 1
*/
name: string;
/**
* Enum value number.
*
* @generated from protobuf field: int32 number = 2;
* @generated from protobuf field: int32 number = 2
*/
number: number;
/**
* Protocol buffer options.
*
* @generated from protobuf field: repeated google.protobuf.Option options = 3;
* @generated from protobuf field: repeated google.protobuf.Option options = 3
*/
options: Option[];
}
@@ -382,7 +382,7 @@ export interface Option {
* For custom options, it should be the fully-qualified name. For example,
* `"google.api.http"`.
*
* @generated from protobuf field: string name = 1;
* @generated from protobuf field: string name = 1
*/
name: string;
/**
@@ -391,7 +391,7 @@ export interface Option {
* should be used. If the value is an enum, it should be stored as an int32
* value using the google.protobuf.Int32Value type.
*
* @generated from protobuf field: google.protobuf.Any value = 2;
* @generated from protobuf field: google.protobuf.Any value = 2
*/
value?: Any;
}

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 "google/protobuf/wrappers.proto" (package "google.protobuf", syntax proto3)
// tslint:disable
//
@@ -68,7 +68,7 @@ export interface DoubleValue {
/**
* The double value.
*
* @generated from protobuf field: double value = 1;
* @generated from protobuf field: double value = 1
*/
value: number;
}
@@ -83,7 +83,7 @@ export interface FloatValue {
/**
* The float value.
*
* @generated from protobuf field: float value = 1;
* @generated from protobuf field: float value = 1
*/
value: number;
}
@@ -98,7 +98,7 @@ export interface Int64Value {
/**
* The int64 value.
*
* @generated from protobuf field: int64 value = 1;
* @generated from protobuf field: int64 value = 1
*/
value: bigint;
}
@@ -113,7 +113,7 @@ export interface UInt64Value {
/**
* The uint64 value.
*
* @generated from protobuf field: uint64 value = 1;
* @generated from protobuf field: uint64 value = 1
*/
value: bigint;
}
@@ -128,7 +128,7 @@ export interface Int32Value {
/**
* The int32 value.
*
* @generated from protobuf field: int32 value = 1;
* @generated from protobuf field: int32 value = 1
*/
value: number;
}
@@ -143,7 +143,7 @@ export interface UInt32Value {
/**
* The uint32 value.
*
* @generated from protobuf field: uint32 value = 1;
* @generated from protobuf field: uint32 value = 1
*/
value: number;
}
@@ -158,7 +158,7 @@ export interface BoolValue {
/**
* The bool value.
*
* @generated from protobuf field: bool value = 1;
* @generated from protobuf field: bool value = 1
*/
value: boolean;
}
@@ -173,7 +173,7 @@ export interface StringValue {
/**
* The string value.
*
* @generated from protobuf field: string value = 1;
* @generated from protobuf field: string value = 1
*/
value: string;
}
@@ -188,7 +188,7 @@ export interface BytesValue {
/**
* The bytes value.
*
* @generated from protobuf field: bytes value = 1;
* @generated from protobuf field: bytes value = 1
*/
value: Uint8Array;
}