@bufbuild/protobuf
Advanced tools
Comparing version 2.0.0 to 2.1.0
@@ -233,3 +233,3 @@ "use strict"; | ||
// bootstrap-inject defaults: EDITION_PROTO2 to EDITION_2023: export const minimumEdition: SupportedEdition = $minimumEdition, maximumEdition: SupportedEdition = $maximumEdition; | ||
// generated from protoc v27.0 | ||
// generated from protoc v28.0 | ||
exports.minimumEdition = 998, exports.maximumEdition = 1000; | ||
@@ -236,0 +236,0 @@ const featureDefaults = { |
@@ -31,3 +31,3 @@ import type { GenEnum, GenExtension, GenMessage } from "./codegenv1/types.js"; | ||
*/ | ||
export type MessageInitShape<Desc extends DescMessage> = Desc extends GenMessage<infer RuntimeShape> ? RuntimeShape | MessageInit<RuntimeShape> : Record<string, unknown>; | ||
export type MessageInitShape<Desc extends DescMessage> = Desc extends GenMessage<infer RuntimeShape> ? MessageInit<RuntimeShape> : Record<string, unknown>; | ||
/** | ||
@@ -62,4 +62,4 @@ * Extract the enum type of from an enum descriptor. | ||
*/ | ||
type MessageInit<T extends Message> = { | ||
[P in keyof T as P extends "$typeName" | "$unknown" ? never : P]?: FieldInit<T[P]>; | ||
type MessageInit<T extends Message> = T | { | ||
[P in keyof T as P extends "$unknown" ? never : P]?: P extends "$typeName" ? never : FieldInit<T[P]>; | ||
}; | ||
@@ -66,0 +66,0 @@ type FieldInit<F> = F extends (Date | Uint8Array | bigint | boolean | string | number) ? F : F extends Array<infer U> ? Array<FieldInit<U>> : F extends ReadonlyArray<infer U> ? ReadonlyArray<FieldInit<U>> : F extends Message ? MessageInit<F> : F extends OneofSelectedMessage<infer C, infer V> ? { |
@@ -140,3 +140,90 @@ import type { GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.Any. | ||
* `Any` contains an arbitrary serialized protocol buffer message along with a | ||
* URL that describes the type of the serialized message. | ||
* | ||
* Protobuf library provides support to pack/unpack Any values in the form | ||
* of utility functions or additional generated methods of the Any type. | ||
* | ||
* Example 1: Pack and unpack a message in C++. | ||
* | ||
* Foo foo = ...; | ||
* Any any; | ||
* any.PackFrom(foo); | ||
* ... | ||
* if (any.UnpackTo(&foo)) { | ||
* ... | ||
* } | ||
* | ||
* Example 2: Pack and unpack a message in Java. | ||
* | ||
* Foo foo = ...; | ||
* Any any = Any.pack(foo); | ||
* ... | ||
* if (any.is(Foo.class)) { | ||
* foo = any.unpack(Foo.class); | ||
* } | ||
* // or ... | ||
* if (any.isSameTypeAs(Foo.getDefaultInstance())) { | ||
* foo = any.unpack(Foo.getDefaultInstance()); | ||
* } | ||
* | ||
* Example 3: Pack and unpack a message in Python. | ||
* | ||
* foo = Foo(...) | ||
* any = Any() | ||
* any.Pack(foo) | ||
* ... | ||
* if any.Is(Foo.DESCRIPTOR): | ||
* any.Unpack(foo) | ||
* ... | ||
* | ||
* Example 4: Pack and unpack a message in Go | ||
* | ||
* foo := &pb.Foo{...} | ||
* any, err := anypb.New(foo) | ||
* if err != nil { | ||
* ... | ||
* } | ||
* ... | ||
* foo := &pb.Foo{} | ||
* if err := any.UnmarshalTo(foo); err != nil { | ||
* ... | ||
* } | ||
* | ||
* The pack methods provided by protobuf library will by default use | ||
* 'type.googleapis.com/full.type.name' as the type URL and the unpack | ||
* methods only use the fully qualified type name after the last '/' | ||
* in the type URL, for example "foo.bar.com/x/y.z" will yield type | ||
* name "y.z". | ||
* | ||
* JSON | ||
* ==== | ||
* The JSON representation of an `Any` value uses the regular | ||
* representation of the deserialized, embedded message, with an | ||
* additional field `@type` which contains the type URL. Example: | ||
* | ||
* package google.profile; | ||
* message Person { | ||
* string first_name = 1; | ||
* string last_name = 2; | ||
* } | ||
* | ||
* { | ||
* "@type": "type.googleapis.com/google.profile.Person", | ||
* "firstName": <string>, | ||
* "lastName": <string> | ||
* } | ||
* | ||
* If the embedded message type is well-known and has a custom JSON | ||
* representation, that representation will be embedded adding a field | ||
* `value` which holds the custom JSON in addition to the `@type` | ||
* field. Example (for message [google.protobuf.Duration][]): | ||
* | ||
* { | ||
* "@type": "type.googleapis.com/google.protobuf.Duration", | ||
* "value": "1.212s" | ||
* } | ||
* | ||
* | ||
* @generated from message google.protobuf.Any | ||
*/ | ||
@@ -143,0 +230,0 @@ export type AnyJson = { |
@@ -88,6 +88,19 @@ import type { GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.Api. | ||
* Api is a light-weight descriptor for an API Interface. | ||
* | ||
* Interfaces are also described as "protocol buffer services" in some contexts, | ||
* such as by the "service" keyword in a .proto file, but they are different | ||
* from API Services, which represent a concrete implementation of an interface | ||
* as opposed to simply a description of methods and bindings. They are also | ||
* sometimes simply referred to as "APIs" in other contexts, such as the name of | ||
* this message itself. See https://cloud.google.com/apis/design/glossary for | ||
* detailed terminology. | ||
* | ||
* @generated from message google.protobuf.Api | ||
*/ | ||
export type ApiJson = { | ||
/** | ||
* The fully qualified name of this interface, including package name | ||
* followed by the interface's simple name. | ||
* | ||
* @generated from field: string name = 1; | ||
@@ -97,2 +110,4 @@ */ | ||
/** | ||
* The methods of this interface, in unspecified order. | ||
* | ||
* @generated from field: repeated google.protobuf.Method methods = 2; | ||
@@ -102,2 +117,4 @@ */ | ||
/** | ||
* Any metadata attached to the interface. | ||
* | ||
* @generated from field: repeated google.protobuf.Option options = 3; | ||
@@ -107,2 +124,23 @@ */ | ||
/** | ||
* A version string for this interface. If specified, must have the form | ||
* `major-version.minor-version`, as in `1.10`. If the minor version is | ||
* omitted, it defaults to zero. If the entire version field is empty, the | ||
* major version is derived from the package name, as outlined below. If the | ||
* field is not empty, the version in the package name will be verified to be | ||
* consistent with what is provided here. | ||
* | ||
* The versioning schema uses [semantic | ||
* versioning](http://semver.org) where the major version number | ||
* indicates a breaking change and the minor version an additive, | ||
* non-breaking change. Both version numbers are signals to users | ||
* what to expect from different versions, and should be carefully | ||
* chosen based on the product plan. | ||
* | ||
* The major version is also reflected in the package name of the | ||
* interface, which must end in `v<major-version>`, as in | ||
* `google.feature.v1`. For major versions 0 and 1, the suffix can | ||
* be omitted. Zero major versions must only be used for | ||
* experimental, non-GA interfaces. | ||
* | ||
* | ||
* @generated from field: string version = 4; | ||
@@ -112,2 +150,5 @@ */ | ||
/** | ||
* Source context for the protocol buffer service represented by this | ||
* message. | ||
* | ||
* @generated from field: google.protobuf.SourceContext source_context = 5; | ||
@@ -117,2 +158,4 @@ */ | ||
/** | ||
* Included interfaces. See [Mixin][]. | ||
* | ||
* @generated from field: repeated google.protobuf.Mixin mixins = 6; | ||
@@ -122,2 +165,4 @@ */ | ||
/** | ||
* The source syntax of the service. | ||
* | ||
* @generated from field: google.protobuf.Syntax syntax = 7; | ||
@@ -182,6 +227,10 @@ */ | ||
/** | ||
* JSON type for the message google.protobuf.Method. | ||
* Method represents a method of an API interface. | ||
* | ||
* @generated from message google.protobuf.Method | ||
*/ | ||
export type MethodJson = { | ||
/** | ||
* The simple name of this method. | ||
* | ||
* @generated from field: string name = 1; | ||
@@ -191,2 +240,4 @@ */ | ||
/** | ||
* A URL of the input message type. | ||
* | ||
* @generated from field: string request_type_url = 2; | ||
@@ -196,2 +247,4 @@ */ | ||
/** | ||
* If true, the request is streamed. | ||
* | ||
* @generated from field: bool request_streaming = 3; | ||
@@ -201,2 +254,4 @@ */ | ||
/** | ||
* The URL of the output message type. | ||
* | ||
* @generated from field: string response_type_url = 4; | ||
@@ -206,2 +261,4 @@ */ | ||
/** | ||
* If true, the response is streamed. | ||
* | ||
* @generated from field: bool response_streaming = 5; | ||
@@ -211,2 +268,4 @@ */ | ||
/** | ||
* Any metadata attached to the method. | ||
* | ||
* @generated from field: repeated google.protobuf.Option options = 6; | ||
@@ -216,2 +275,4 @@ */ | ||
/** | ||
* The source syntax of this method. | ||
* | ||
* @generated from field: google.protobuf.Syntax syntax = 7; | ||
@@ -324,6 +385,87 @@ */ | ||
/** | ||
* JSON type for the message google.protobuf.Mixin. | ||
* Declares an API Interface to be included in this interface. The including | ||
* interface must redeclare all the methods from the included interface, but | ||
* documentation and options are inherited as follows: | ||
* | ||
* - If after comment and whitespace stripping, the documentation | ||
* string of the redeclared method is empty, it will be inherited | ||
* from the original method. | ||
* | ||
* - Each annotation belonging to the service config (http, | ||
* visibility) which is not set in the redeclared method will be | ||
* inherited. | ||
* | ||
* - If an http annotation is inherited, the path pattern will be | ||
* modified as follows. Any version prefix will be replaced by the | ||
* version of the including interface plus the [root][] path if | ||
* specified. | ||
* | ||
* Example of a simple mixin: | ||
* | ||
* package google.acl.v1; | ||
* service AccessControl { | ||
* // Get the underlying ACL object. | ||
* rpc GetAcl(GetAclRequest) returns (Acl) { | ||
* option (google.api.http).get = "/v1/{resource=**}:getAcl"; | ||
* } | ||
* } | ||
* | ||
* package google.storage.v2; | ||
* service Storage { | ||
* rpc GetAcl(GetAclRequest) returns (Acl); | ||
* | ||
* // Get a data record. | ||
* rpc GetData(GetDataRequest) returns (Data) { | ||
* option (google.api.http).get = "/v2/{resource=**}"; | ||
* } | ||
* } | ||
* | ||
* Example of a mixin configuration: | ||
* | ||
* apis: | ||
* - name: google.storage.v2.Storage | ||
* mixins: | ||
* - name: google.acl.v1.AccessControl | ||
* | ||
* The mixin construct implies that all methods in `AccessControl` are | ||
* also declared with same name and request/response types in | ||
* `Storage`. A documentation generator or annotation processor will | ||
* see the effective `Storage.GetAcl` method after inherting | ||
* documentation and annotations as follows: | ||
* | ||
* service Storage { | ||
* // Get the underlying ACL object. | ||
* rpc GetAcl(GetAclRequest) returns (Acl) { | ||
* option (google.api.http).get = "/v2/{resource=**}:getAcl"; | ||
* } | ||
* ... | ||
* } | ||
* | ||
* Note how the version in the path pattern changed from `v1` to `v2`. | ||
* | ||
* If the `root` field in the mixin is specified, it should be a | ||
* relative path under which inherited HTTP paths are placed. Example: | ||
* | ||
* apis: | ||
* - name: google.storage.v2.Storage | ||
* mixins: | ||
* - name: google.acl.v1.AccessControl | ||
* root: acls | ||
* | ||
* This implies the following inherited HTTP annotation: | ||
* | ||
* service Storage { | ||
* // Get the underlying ACL object. | ||
* rpc GetAcl(GetAclRequest) returns (Acl) { | ||
* option (google.api.http).get = "/v2/acls/{resource=**}:getAcl"; | ||
* } | ||
* ... | ||
* } | ||
* | ||
* @generated from message google.protobuf.Mixin | ||
*/ | ||
export type MixinJson = { | ||
/** | ||
* The fully qualified name of the interface which is included. | ||
* | ||
* @generated from field: string name = 1; | ||
@@ -333,2 +475,5 @@ */ | ||
/** | ||
* If non-empty specifies a path under which inherited HTTP paths | ||
* are rooted. | ||
* | ||
* @generated from field: string root = 2; | ||
@@ -335,0 +480,0 @@ */ |
@@ -35,3 +35,5 @@ import type { GenEnum, GenFile, GenMessage } from "../../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.compiler.Version. | ||
* The version number of protocol compiler. | ||
* | ||
* @generated from message google.protobuf.compiler.Version | ||
*/ | ||
@@ -52,2 +54,5 @@ export type VersionJson = { | ||
/** | ||
* A suffix for alpha, beta or rc release, e.g., "alpha-1", "rc2". It should | ||
* be empty for mainline stable releases. | ||
* | ||
* @generated from field: optional string suffix = 4; | ||
@@ -122,6 +127,12 @@ */ | ||
/** | ||
* JSON type for the message google.protobuf.compiler.CodeGeneratorRequest. | ||
* An encoded CodeGeneratorRequest is written to the plugin's stdin. | ||
* | ||
* @generated from message google.protobuf.compiler.CodeGeneratorRequest | ||
*/ | ||
export type CodeGeneratorRequestJson = { | ||
/** | ||
* The .proto files that were explicitly listed on the command-line. The | ||
* code generator should generate code only for these files. Each file's | ||
* descriptor will be included in proto_file, below. | ||
* | ||
* @generated from field: repeated string file_to_generate = 1; | ||
@@ -131,2 +142,4 @@ */ | ||
/** | ||
* The generator parameter passed on the command-line. | ||
* | ||
* @generated from field: optional string parameter = 2; | ||
@@ -136,2 +149,22 @@ */ | ||
/** | ||
* FileDescriptorProtos for all files in files_to_generate and everything | ||
* they import. The files will appear in topological order, so each file | ||
* appears before any file that imports it. | ||
* | ||
* Note: the files listed in files_to_generate will include runtime-retention | ||
* options only, but all other files will include source-retention options. | ||
* The source_file_descriptors field below is available in case you need | ||
* source-retention options for files_to_generate. | ||
* | ||
* protoc guarantees that all proto_files will be written after | ||
* the fields above, even though this is not technically guaranteed by the | ||
* protobuf wire format. This theoretically could allow a plugin to stream | ||
* in the FileDescriptorProtos and handle them one by one rather than read | ||
* the entire set into memory at once. However, as of this writing, this | ||
* is not similarly optimized on protoc's end -- it will store all fields in | ||
* memory at once before sending them to the plugin. | ||
* | ||
* Type names of fields and extensions in the FileDescriptorProto are always | ||
* fully qualified. | ||
* | ||
* @generated from field: repeated google.protobuf.FileDescriptorProto proto_file = 15; | ||
@@ -141,2 +174,6 @@ */ | ||
/** | ||
* File descriptors with all options, including source-retention options. | ||
* These descriptors are only provided for the files listed in | ||
* files_to_generate. | ||
* | ||
* @generated from field: repeated google.protobuf.FileDescriptorProto source_file_descriptors = 17; | ||
@@ -146,2 +183,4 @@ */ | ||
/** | ||
* The version number of protocol compiler. | ||
* | ||
* @generated from field: optional google.protobuf.compiler.Version compiler_version = 3; | ||
@@ -206,6 +245,17 @@ */ | ||
/** | ||
* JSON type for the message google.protobuf.compiler.CodeGeneratorResponse. | ||
* The plugin writes an encoded CodeGeneratorResponse to stdout. | ||
* | ||
* @generated from message google.protobuf.compiler.CodeGeneratorResponse | ||
*/ | ||
export type CodeGeneratorResponseJson = { | ||
/** | ||
* Error message. If non-empty, code generation failed. The plugin process | ||
* should exit with status code zero even if it reports an error in this way. | ||
* | ||
* This should be used to indicate errors in .proto files which prevent the | ||
* code generator from generating correct code. Errors which indicate a | ||
* problem in protoc itself -- such as the input CodeGeneratorRequest being | ||
* unparseable -- should be reported by writing a message to stderr and | ||
* exiting with a non-zero status code. | ||
* | ||
* @generated from field: optional string error = 1; | ||
@@ -215,2 +265,5 @@ */ | ||
/** | ||
* A bitmask of supported features that the code generator supports. | ||
* This is a bitwise "or" of values from the Feature enum. | ||
* | ||
* @generated from field: optional uint64 supported_features = 2; | ||
@@ -220,2 +273,7 @@ */ | ||
/** | ||
* The minimum edition this plugin supports. This will be treated as an | ||
* Edition enum, but we want to allow unknown values. It should be specified | ||
* according the edition enum value, *not* the edition number. Only takes | ||
* effect for plugins that have FEATURE_SUPPORTS_EDITIONS set. | ||
* | ||
* @generated from field: optional int32 minimum_edition = 3; | ||
@@ -225,2 +283,7 @@ */ | ||
/** | ||
* The maximum edition this plugin supports. This will be treated as an | ||
* Edition enum, but we want to allow unknown values. It should be specified | ||
* according the edition enum value, *not* the edition number. Only takes | ||
* effect for plugins that have FEATURE_SUPPORTS_EDITIONS set. | ||
* | ||
* @generated from field: optional int32 maximum_edition = 4; | ||
@@ -319,6 +382,20 @@ */ | ||
/** | ||
* JSON type for the message google.protobuf.compiler.CodeGeneratorResponse.File. | ||
* Represents a single generated file. | ||
* | ||
* @generated from message google.protobuf.compiler.CodeGeneratorResponse.File | ||
*/ | ||
export type CodeGeneratorResponse_FileJson = { | ||
/** | ||
* The file name, relative to the output directory. The name must not | ||
* contain "." or ".." components and must be relative, not be absolute (so, | ||
* the file cannot lie outside the output directory). "/" must be used as | ||
* the path separator, not "\". | ||
* | ||
* If the name is omitted, the content will be appended to the previous | ||
* file. This allows the generator to break large files into small chunks, | ||
* and allows the generated text to be streamed back to protoc so that large | ||
* files need not reside completely in memory at one time. Note that as of | ||
* this writing protoc does not optimize for this -- it will read the entire | ||
* CodeGeneratorResponse before writing files to disk. | ||
* | ||
* @generated from field: optional string name = 1; | ||
@@ -328,2 +405,40 @@ */ | ||
/** | ||
* If non-empty, indicates that the named file should already exist, and the | ||
* content here is to be inserted into that file at a defined insertion | ||
* point. This feature allows a code generator to extend the output | ||
* produced by another code generator. The original generator may provide | ||
* insertion points by placing special annotations in the file that look | ||
* like: | ||
* @@protoc_insertion_point(NAME) | ||
* The annotation can have arbitrary text before and after it on the line, | ||
* which allows it to be placed in a comment. NAME should be replaced with | ||
* an identifier naming the point -- this is what other generators will use | ||
* as the insertion_point. Code inserted at this point will be placed | ||
* immediately above the line containing the insertion point (thus multiple | ||
* insertions to the same point will come out in the order they were added). | ||
* The double-@ is intended to make it unlikely that the generated code | ||
* could contain things that look like insertion points by accident. | ||
* | ||
* For example, the C++ code generator places the following line in the | ||
* .pb.h files that it generates: | ||
* // @@protoc_insertion_point(namespace_scope) | ||
* This line appears within the scope of the file's package namespace, but | ||
* outside of any particular class. Another plugin can then specify the | ||
* insertion_point "namespace_scope" to generate additional classes or | ||
* other declarations that should be placed in this scope. | ||
* | ||
* Note that if the line containing the insertion point begins with | ||
* whitespace, the same whitespace will be added to every line of the | ||
* inserted text. This is useful for languages like Python, where | ||
* indentation matters. In these languages, the insertion point comment | ||
* should be indented the same amount as any inserted code will need to be | ||
* in order to work correctly in that context. | ||
* | ||
* The code generator that generates the initial file and the one which | ||
* inserts into it must both run as part of a single invocation of protoc. | ||
* Code generators are executed in the order in which they appear on the | ||
* command line. | ||
* | ||
* If |insertion_point| is present, |name| must also be present. | ||
* | ||
* @generated from field: optional string insertion_point = 2; | ||
@@ -333,2 +448,4 @@ */ | ||
/** | ||
* The file contents. | ||
* | ||
* @generated from field: optional string content = 15; | ||
@@ -338,2 +455,6 @@ */ | ||
/** | ||
* Information describing the file content being inserted. If an insertion | ||
* point is used, this information will be appropriately offset and inserted | ||
* into the code generation metadata for the generated files. | ||
* | ||
* @generated from field: optional google.protobuf.GeneratedCodeInfo generated_code_info = 16; | ||
@@ -368,3 +489,5 @@ */ | ||
/** | ||
* JSON type for the enum google.protobuf.compiler.CodeGeneratorResponse.Feature. | ||
* Sync with code_generator.h. | ||
* | ||
* @generated from enum google.protobuf.compiler.CodeGeneratorResponse.Feature | ||
*/ | ||
@@ -371,0 +494,0 @@ export type CodeGeneratorResponse_FeatureJson = "FEATURE_NONE" | "FEATURE_PROTO3_OPTIONAL" | "FEATURE_SUPPORTS_EDITIONS"; |
@@ -24,3 +24,3 @@ "use strict"; | ||
*/ | ||
exports.file_google_protobuf_descriptor = (0, boot_js_1.boot)({ "name": "google/protobuf/descriptor.proto", "package": "google.protobuf", "messageType": [{ "name": "FileDescriptorSet", "field": [{ "name": "file", "number": 1, "type": 11, "label": 3, "typeName": ".google.protobuf.FileDescriptorProto" }] }, { "name": "FileDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "package", "number": 2, "type": 9, "label": 1 }, { "name": "dependency", "number": 3, "type": 9, "label": 3 }, { "name": "public_dependency", "number": 10, "type": 5, "label": 3 }, { "name": "weak_dependency", "number": 11, "type": 5, "label": 3 }, { "name": "message_type", "number": 4, "type": 11, "label": 3, "typeName": ".google.protobuf.DescriptorProto" }, { "name": "enum_type", "number": 5, "type": 11, "label": 3, "typeName": ".google.protobuf.EnumDescriptorProto" }, { "name": "service", "number": 6, "type": 11, "label": 3, "typeName": ".google.protobuf.ServiceDescriptorProto" }, { "name": "extension", "number": 7, "type": 11, "label": 3, "typeName": ".google.protobuf.FieldDescriptorProto" }, { "name": "options", "number": 8, "type": 11, "label": 1, "typeName": ".google.protobuf.FileOptions" }, { "name": "source_code_info", "number": 9, "type": 11, "label": 1, "typeName": ".google.protobuf.SourceCodeInfo" }, { "name": "syntax", "number": 12, "type": 9, "label": 1 }, { "name": "edition", "number": 14, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }] }, { "name": "DescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "field", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.FieldDescriptorProto" }, { "name": "extension", "number": 6, "type": 11, "label": 3, "typeName": ".google.protobuf.FieldDescriptorProto" }, { "name": "nested_type", "number": 3, "type": 11, "label": 3, "typeName": ".google.protobuf.DescriptorProto" }, { "name": "enum_type", "number": 4, "type": 11, "label": 3, "typeName": ".google.protobuf.EnumDescriptorProto" }, { "name": "extension_range", "number": 5, "type": 11, "label": 3, "typeName": ".google.protobuf.DescriptorProto.ExtensionRange" }, { "name": "oneof_decl", "number": 8, "type": 11, "label": 3, "typeName": ".google.protobuf.OneofDescriptorProto" }, { "name": "options", "number": 7, "type": 11, "label": 1, "typeName": ".google.protobuf.MessageOptions" }, { "name": "reserved_range", "number": 9, "type": 11, "label": 3, "typeName": ".google.protobuf.DescriptorProto.ReservedRange" }, { "name": "reserved_name", "number": 10, "type": 9, "label": 3 }], "nestedType": [{ "name": "ExtensionRange", "field": [{ "name": "start", "number": 1, "type": 5, "label": 1 }, { "name": "end", "number": 2, "type": 5, "label": 1 }, { "name": "options", "number": 3, "type": 11, "label": 1, "typeName": ".google.protobuf.ExtensionRangeOptions" }] }, { "name": "ReservedRange", "field": [{ "name": "start", "number": 1, "type": 5, "label": 1 }, { "name": "end", "number": 2, "type": 5, "label": 1 }] }] }, { "name": "ExtensionRangeOptions", "field": [{ "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }, { "name": "declaration", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.ExtensionRangeOptions.Declaration", "options": { "retention": 2 } }, { "name": "features", "number": 50, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "verification", "number": 3, "type": 14, "label": 1, "typeName": ".google.protobuf.ExtensionRangeOptions.VerificationState", "defaultValue": "UNVERIFIED", "options": { "retention": 2 } }], "nestedType": [{ "name": "Declaration", "field": [{ "name": "number", "number": 1, "type": 5, "label": 1 }, { "name": "full_name", "number": 2, "type": 9, "label": 1 }, { "name": "type", "number": 3, "type": 9, "label": 1 }, { "name": "reserved", "number": 5, "type": 8, "label": 1 }, { "name": "repeated", "number": 6, "type": 8, "label": 1 }] }], "enumType": [{ "name": "VerificationState", "value": [{ "name": "DECLARATION", "number": 0 }, { "name": "UNVERIFIED", "number": 1 }] }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "FieldDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "number", "number": 3, "type": 5, "label": 1 }, { "name": "label", "number": 4, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldDescriptorProto.Label" }, { "name": "type", "number": 5, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldDescriptorProto.Type" }, { "name": "type_name", "number": 6, "type": 9, "label": 1 }, { "name": "extendee", "number": 2, "type": 9, "label": 1 }, { "name": "default_value", "number": 7, "type": 9, "label": 1 }, { "name": "oneof_index", "number": 9, "type": 5, "label": 1 }, { "name": "json_name", "number": 10, "type": 9, "label": 1 }, { "name": "options", "number": 8, "type": 11, "label": 1, "typeName": ".google.protobuf.FieldOptions" }, { "name": "proto3_optional", "number": 17, "type": 8, "label": 1 }], "enumType": [{ "name": "Type", "value": [{ "name": "TYPE_DOUBLE", "number": 1 }, { "name": "TYPE_FLOAT", "number": 2 }, { "name": "TYPE_INT64", "number": 3 }, { "name": "TYPE_UINT64", "number": 4 }, { "name": "TYPE_INT32", "number": 5 }, { "name": "TYPE_FIXED64", "number": 6 }, { "name": "TYPE_FIXED32", "number": 7 }, { "name": "TYPE_BOOL", "number": 8 }, { "name": "TYPE_STRING", "number": 9 }, { "name": "TYPE_GROUP", "number": 10 }, { "name": "TYPE_MESSAGE", "number": 11 }, { "name": "TYPE_BYTES", "number": 12 }, { "name": "TYPE_UINT32", "number": 13 }, { "name": "TYPE_ENUM", "number": 14 }, { "name": "TYPE_SFIXED32", "number": 15 }, { "name": "TYPE_SFIXED64", "number": 16 }, { "name": "TYPE_SINT32", "number": 17 }, { "name": "TYPE_SINT64", "number": 18 }] }, { "name": "Label", "value": [{ "name": "LABEL_OPTIONAL", "number": 1 }, { "name": "LABEL_REPEATED", "number": 3 }, { "name": "LABEL_REQUIRED", "number": 2 }] }] }, { "name": "OneofDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "options", "number": 2, "type": 11, "label": 1, "typeName": ".google.protobuf.OneofOptions" }] }, { "name": "EnumDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "value", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.EnumValueDescriptorProto" }, { "name": "options", "number": 3, "type": 11, "label": 1, "typeName": ".google.protobuf.EnumOptions" }, { "name": "reserved_range", "number": 4, "type": 11, "label": 3, "typeName": ".google.protobuf.EnumDescriptorProto.EnumReservedRange" }, { "name": "reserved_name", "number": 5, "type": 9, "label": 3 }], "nestedType": [{ "name": "EnumReservedRange", "field": [{ "name": "start", "number": 1, "type": 5, "label": 1 }, { "name": "end", "number": 2, "type": 5, "label": 1 }] }] }, { "name": "EnumValueDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "number", "number": 2, "type": 5, "label": 1 }, { "name": "options", "number": 3, "type": 11, "label": 1, "typeName": ".google.protobuf.EnumValueOptions" }] }, { "name": "ServiceDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "method", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.MethodDescriptorProto" }, { "name": "options", "number": 3, "type": 11, "label": 1, "typeName": ".google.protobuf.ServiceOptions" }] }, { "name": "MethodDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "input_type", "number": 2, "type": 9, "label": 1 }, { "name": "output_type", "number": 3, "type": 9, "label": 1 }, { "name": "options", "number": 4, "type": 11, "label": 1, "typeName": ".google.protobuf.MethodOptions" }, { "name": "client_streaming", "number": 5, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "server_streaming", "number": 6, "type": 8, "label": 1, "defaultValue": "false" }] }, { "name": "FileOptions", "field": [{ "name": "java_package", "number": 1, "type": 9, "label": 1 }, { "name": "java_outer_classname", "number": 8, "type": 9, "label": 1 }, { "name": "java_multiple_files", "number": 10, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "java_generate_equals_and_hash", "number": 20, "type": 8, "label": 1, "options": { "deprecated": true } }, { "name": "java_string_check_utf8", "number": 27, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "optimize_for", "number": 9, "type": 14, "label": 1, "typeName": ".google.protobuf.FileOptions.OptimizeMode", "defaultValue": "SPEED" }, { "name": "go_package", "number": 11, "type": 9, "label": 1 }, { "name": "cc_generic_services", "number": 16, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "java_generic_services", "number": 17, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "py_generic_services", "number": 18, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "deprecated", "number": 23, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "cc_enable_arenas", "number": 31, "type": 8, "label": 1, "defaultValue": "true" }, { "name": "objc_class_prefix", "number": 36, "type": 9, "label": 1 }, { "name": "csharp_namespace", "number": 37, "type": 9, "label": 1 }, { "name": "swift_prefix", "number": 39, "type": 9, "label": 1 }, { "name": "php_class_prefix", "number": 40, "type": 9, "label": 1 }, { "name": "php_namespace", "number": 41, "type": 9, "label": 1 }, { "name": "php_metadata_namespace", "number": 44, "type": 9, "label": 1 }, { "name": "ruby_package", "number": 45, "type": 9, "label": 1 }, { "name": "features", "number": 50, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "enumType": [{ "name": "OptimizeMode", "value": [{ "name": "SPEED", "number": 1 }, { "name": "CODE_SIZE", "number": 2 }, { "name": "LITE_RUNTIME", "number": 3 }] }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "MessageOptions", "field": [{ "name": "message_set_wire_format", "number": 1, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "no_standard_descriptor_accessor", "number": 2, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "deprecated", "number": 3, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "map_entry", "number": 7, "type": 8, "label": 1 }, { "name": "deprecated_legacy_json_field_conflicts", "number": 11, "type": 8, "label": 1, "options": { "deprecated": true } }, { "name": "features", "number": 12, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "FieldOptions", "field": [{ "name": "ctype", "number": 1, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldOptions.CType", "defaultValue": "STRING" }, { "name": "packed", "number": 2, "type": 8, "label": 1 }, { "name": "jstype", "number": 6, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldOptions.JSType", "defaultValue": "JS_NORMAL" }, { "name": "lazy", "number": 5, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "unverified_lazy", "number": 15, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "deprecated", "number": 3, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "weak", "number": 10, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "debug_redact", "number": 16, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "retention", "number": 17, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldOptions.OptionRetention" }, { "name": "targets", "number": 19, "type": 14, "label": 3, "typeName": ".google.protobuf.FieldOptions.OptionTargetType" }, { "name": "edition_defaults", "number": 20, "type": 11, "label": 3, "typeName": ".google.protobuf.FieldOptions.EditionDefault" }, { "name": "features", "number": 21, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "feature_support", "number": 22, "type": 11, "label": 1, "typeName": ".google.protobuf.FieldOptions.FeatureSupport" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "nestedType": [{ "name": "EditionDefault", "field": [{ "name": "edition", "number": 3, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "value", "number": 2, "type": 9, "label": 1 }] }, { "name": "FeatureSupport", "field": [{ "name": "edition_introduced", "number": 1, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "edition_deprecated", "number": 2, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "deprecation_warning", "number": 3, "type": 9, "label": 1 }, { "name": "edition_removed", "number": 4, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }] }], "enumType": [{ "name": "CType", "value": [{ "name": "STRING", "number": 0 }, { "name": "CORD", "number": 1 }, { "name": "STRING_PIECE", "number": 2 }] }, { "name": "JSType", "value": [{ "name": "JS_NORMAL", "number": 0 }, { "name": "JS_STRING", "number": 1 }, { "name": "JS_NUMBER", "number": 2 }] }, { "name": "OptionRetention", "value": [{ "name": "RETENTION_UNKNOWN", "number": 0 }, { "name": "RETENTION_RUNTIME", "number": 1 }, { "name": "RETENTION_SOURCE", "number": 2 }] }, { "name": "OptionTargetType", "value": [{ "name": "TARGET_TYPE_UNKNOWN", "number": 0 }, { "name": "TARGET_TYPE_FILE", "number": 1 }, { "name": "TARGET_TYPE_EXTENSION_RANGE", "number": 2 }, { "name": "TARGET_TYPE_MESSAGE", "number": 3 }, { "name": "TARGET_TYPE_FIELD", "number": 4 }, { "name": "TARGET_TYPE_ONEOF", "number": 5 }, { "name": "TARGET_TYPE_ENUM", "number": 6 }, { "name": "TARGET_TYPE_ENUM_ENTRY", "number": 7 }, { "name": "TARGET_TYPE_SERVICE", "number": 8 }, { "name": "TARGET_TYPE_METHOD", "number": 9 }] }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "OneofOptions", "field": [{ "name": "features", "number": 1, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "EnumOptions", "field": [{ "name": "allow_alias", "number": 2, "type": 8, "label": 1 }, { "name": "deprecated", "number": 3, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "deprecated_legacy_json_field_conflicts", "number": 6, "type": 8, "label": 1, "options": { "deprecated": true } }, { "name": "features", "number": 7, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "EnumValueOptions", "field": [{ "name": "deprecated", "number": 1, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "features", "number": 2, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "debug_redact", "number": 3, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "feature_support", "number": 4, "type": 11, "label": 1, "typeName": ".google.protobuf.FieldOptions.FeatureSupport" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "ServiceOptions", "field": [{ "name": "features", "number": 34, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "deprecated", "number": 33, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "MethodOptions", "field": [{ "name": "deprecated", "number": 33, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "idempotency_level", "number": 34, "type": 14, "label": 1, "typeName": ".google.protobuf.MethodOptions.IdempotencyLevel", "defaultValue": "IDEMPOTENCY_UNKNOWN" }, { "name": "features", "number": 35, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "enumType": [{ "name": "IdempotencyLevel", "value": [{ "name": "IDEMPOTENCY_UNKNOWN", "number": 0 }, { "name": "NO_SIDE_EFFECTS", "number": 1 }, { "name": "IDEMPOTENT", "number": 2 }] }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "UninterpretedOption", "field": [{ "name": "name", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption.NamePart" }, { "name": "identifier_value", "number": 3, "type": 9, "label": 1 }, { "name": "positive_int_value", "number": 4, "type": 4, "label": 1 }, { "name": "negative_int_value", "number": 5, "type": 3, "label": 1 }, { "name": "double_value", "number": 6, "type": 1, "label": 1 }, { "name": "string_value", "number": 7, "type": 12, "label": 1 }, { "name": "aggregate_value", "number": 8, "type": 9, "label": 1 }], "nestedType": [{ "name": "NamePart", "field": [{ "name": "name_part", "number": 1, "type": 9, "label": 2 }, { "name": "is_extension", "number": 2, "type": 8, "label": 2 }] }] }, { "name": "FeatureSet", "field": [{ "name": "field_presence", "number": 1, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.FieldPresence", "options": { "retention": 1, "targets": [4, 1], "editionDefaults": [{ "value": "EXPLICIT", "edition": 998 }, { "value": "IMPLICIT", "edition": 999 }, { "value": "EXPLICIT", "edition": 1000 }] } }, { "name": "enum_type", "number": 2, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.EnumType", "options": { "retention": 1, "targets": [6, 1], "editionDefaults": [{ "value": "CLOSED", "edition": 998 }, { "value": "OPEN", "edition": 999 }] } }, { "name": "repeated_field_encoding", "number": 3, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.RepeatedFieldEncoding", "options": { "retention": 1, "targets": [4, 1], "editionDefaults": [{ "value": "EXPANDED", "edition": 998 }, { "value": "PACKED", "edition": 999 }] } }, { "name": "utf8_validation", "number": 4, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.Utf8Validation", "options": { "retention": 1, "targets": [4, 1], "editionDefaults": [{ "value": "NONE", "edition": 998 }, { "value": "VERIFY", "edition": 999 }] } }, { "name": "message_encoding", "number": 5, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.MessageEncoding", "options": { "retention": 1, "targets": [4, 1], "editionDefaults": [{ "value": "LENGTH_PREFIXED", "edition": 998 }] } }, { "name": "json_format", "number": 6, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.JsonFormat", "options": { "retention": 1, "targets": [3, 6, 1], "editionDefaults": [{ "value": "LEGACY_BEST_EFFORT", "edition": 998 }, { "value": "ALLOW", "edition": 999 }] } }], "enumType": [{ "name": "FieldPresence", "value": [{ "name": "FIELD_PRESENCE_UNKNOWN", "number": 0 }, { "name": "EXPLICIT", "number": 1 }, { "name": "IMPLICIT", "number": 2 }, { "name": "LEGACY_REQUIRED", "number": 3 }] }, { "name": "EnumType", "value": [{ "name": "ENUM_TYPE_UNKNOWN", "number": 0 }, { "name": "OPEN", "number": 1 }, { "name": "CLOSED", "number": 2 }] }, { "name": "RepeatedFieldEncoding", "value": [{ "name": "REPEATED_FIELD_ENCODING_UNKNOWN", "number": 0 }, { "name": "PACKED", "number": 1 }, { "name": "EXPANDED", "number": 2 }] }, { "name": "Utf8Validation", "value": [{ "name": "UTF8_VALIDATION_UNKNOWN", "number": 0 }, { "name": "VERIFY", "number": 2 }, { "name": "NONE", "number": 3 }] }, { "name": "MessageEncoding", "value": [{ "name": "MESSAGE_ENCODING_UNKNOWN", "number": 0 }, { "name": "LENGTH_PREFIXED", "number": 1 }, { "name": "DELIMITED", "number": 2 }] }, { "name": "JsonFormat", "value": [{ "name": "JSON_FORMAT_UNKNOWN", "number": 0 }, { "name": "ALLOW", "number": 1 }, { "name": "LEGACY_BEST_EFFORT", "number": 2 }] }], "extensionRange": [{ "start": 1000, "end": 9995 }, { "start": 9995, "end": 10000 }, { "start": 10000, "end": 10001 }] }, { "name": "FeatureSetDefaults", "field": [{ "name": "defaults", "number": 1, "type": 11, "label": 3, "typeName": ".google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault" }, { "name": "minimum_edition", "number": 4, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "maximum_edition", "number": 5, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }], "nestedType": [{ "name": "FeatureSetEditionDefault", "field": [{ "name": "edition", "number": 3, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "overridable_features", "number": 4, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "fixed_features", "number": 5, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }] }] }, { "name": "SourceCodeInfo", "field": [{ "name": "location", "number": 1, "type": 11, "label": 3, "typeName": ".google.protobuf.SourceCodeInfo.Location" }], "nestedType": [{ "name": "Location", "field": [{ "name": "path", "number": 1, "type": 5, "label": 3, "options": { "packed": true } }, { "name": "span", "number": 2, "type": 5, "label": 3, "options": { "packed": true } }, { "name": "leading_comments", "number": 3, "type": 9, "label": 1 }, { "name": "trailing_comments", "number": 4, "type": 9, "label": 1 }, { "name": "leading_detached_comments", "number": 6, "type": 9, "label": 3 }] }] }, { "name": "GeneratedCodeInfo", "field": [{ "name": "annotation", "number": 1, "type": 11, "label": 3, "typeName": ".google.protobuf.GeneratedCodeInfo.Annotation" }], "nestedType": [{ "name": "Annotation", "field": [{ "name": "path", "number": 1, "type": 5, "label": 3, "options": { "packed": true } }, { "name": "source_file", "number": 2, "type": 9, "label": 1 }, { "name": "begin", "number": 3, "type": 5, "label": 1 }, { "name": "end", "number": 4, "type": 5, "label": 1 }, { "name": "semantic", "number": 5, "type": 14, "label": 1, "typeName": ".google.protobuf.GeneratedCodeInfo.Annotation.Semantic" }], "enumType": [{ "name": "Semantic", "value": [{ "name": "NONE", "number": 0 }, { "name": "SET", "number": 1 }, { "name": "ALIAS", "number": 2 }] }] }] }], "enumType": [{ "name": "Edition", "value": [{ "name": "EDITION_UNKNOWN", "number": 0 }, { "name": "EDITION_LEGACY", "number": 900 }, { "name": "EDITION_PROTO2", "number": 998 }, { "name": "EDITION_PROTO3", "number": 999 }, { "name": "EDITION_2023", "number": 1000 }, { "name": "EDITION_2024", "number": 1001 }, { "name": "EDITION_1_TEST_ONLY", "number": 1 }, { "name": "EDITION_2_TEST_ONLY", "number": 2 }, { "name": "EDITION_99997_TEST_ONLY", "number": 99997 }, { "name": "EDITION_99998_TEST_ONLY", "number": 99998 }, { "name": "EDITION_99999_TEST_ONLY", "number": 99999 }, { "name": "EDITION_MAX", "number": 2147483647 }] }] }); | ||
exports.file_google_protobuf_descriptor = (0, boot_js_1.boot)({ "name": "google/protobuf/descriptor.proto", "package": "google.protobuf", "messageType": [{ "name": "FileDescriptorSet", "field": [{ "name": "file", "number": 1, "type": 11, "label": 3, "typeName": ".google.protobuf.FileDescriptorProto" }] }, { "name": "FileDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "package", "number": 2, "type": 9, "label": 1 }, { "name": "dependency", "number": 3, "type": 9, "label": 3 }, { "name": "public_dependency", "number": 10, "type": 5, "label": 3 }, { "name": "weak_dependency", "number": 11, "type": 5, "label": 3 }, { "name": "message_type", "number": 4, "type": 11, "label": 3, "typeName": ".google.protobuf.DescriptorProto" }, { "name": "enum_type", "number": 5, "type": 11, "label": 3, "typeName": ".google.protobuf.EnumDescriptorProto" }, { "name": "service", "number": 6, "type": 11, "label": 3, "typeName": ".google.protobuf.ServiceDescriptorProto" }, { "name": "extension", "number": 7, "type": 11, "label": 3, "typeName": ".google.protobuf.FieldDescriptorProto" }, { "name": "options", "number": 8, "type": 11, "label": 1, "typeName": ".google.protobuf.FileOptions" }, { "name": "source_code_info", "number": 9, "type": 11, "label": 1, "typeName": ".google.protobuf.SourceCodeInfo" }, { "name": "syntax", "number": 12, "type": 9, "label": 1 }, { "name": "edition", "number": 14, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }] }, { "name": "DescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "field", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.FieldDescriptorProto" }, { "name": "extension", "number": 6, "type": 11, "label": 3, "typeName": ".google.protobuf.FieldDescriptorProto" }, { "name": "nested_type", "number": 3, "type": 11, "label": 3, "typeName": ".google.protobuf.DescriptorProto" }, { "name": "enum_type", "number": 4, "type": 11, "label": 3, "typeName": ".google.protobuf.EnumDescriptorProto" }, { "name": "extension_range", "number": 5, "type": 11, "label": 3, "typeName": ".google.protobuf.DescriptorProto.ExtensionRange" }, { "name": "oneof_decl", "number": 8, "type": 11, "label": 3, "typeName": ".google.protobuf.OneofDescriptorProto" }, { "name": "options", "number": 7, "type": 11, "label": 1, "typeName": ".google.protobuf.MessageOptions" }, { "name": "reserved_range", "number": 9, "type": 11, "label": 3, "typeName": ".google.protobuf.DescriptorProto.ReservedRange" }, { "name": "reserved_name", "number": 10, "type": 9, "label": 3 }], "nestedType": [{ "name": "ExtensionRange", "field": [{ "name": "start", "number": 1, "type": 5, "label": 1 }, { "name": "end", "number": 2, "type": 5, "label": 1 }, { "name": "options", "number": 3, "type": 11, "label": 1, "typeName": ".google.protobuf.ExtensionRangeOptions" }] }, { "name": "ReservedRange", "field": [{ "name": "start", "number": 1, "type": 5, "label": 1 }, { "name": "end", "number": 2, "type": 5, "label": 1 }] }] }, { "name": "ExtensionRangeOptions", "field": [{ "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }, { "name": "declaration", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.ExtensionRangeOptions.Declaration", "options": { "retention": 2 } }, { "name": "features", "number": 50, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "verification", "number": 3, "type": 14, "label": 1, "typeName": ".google.protobuf.ExtensionRangeOptions.VerificationState", "defaultValue": "UNVERIFIED", "options": { "retention": 2 } }], "nestedType": [{ "name": "Declaration", "field": [{ "name": "number", "number": 1, "type": 5, "label": 1 }, { "name": "full_name", "number": 2, "type": 9, "label": 1 }, { "name": "type", "number": 3, "type": 9, "label": 1 }, { "name": "reserved", "number": 5, "type": 8, "label": 1 }, { "name": "repeated", "number": 6, "type": 8, "label": 1 }] }], "enumType": [{ "name": "VerificationState", "value": [{ "name": "DECLARATION", "number": 0 }, { "name": "UNVERIFIED", "number": 1 }] }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "FieldDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "number", "number": 3, "type": 5, "label": 1 }, { "name": "label", "number": 4, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldDescriptorProto.Label" }, { "name": "type", "number": 5, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldDescriptorProto.Type" }, { "name": "type_name", "number": 6, "type": 9, "label": 1 }, { "name": "extendee", "number": 2, "type": 9, "label": 1 }, { "name": "default_value", "number": 7, "type": 9, "label": 1 }, { "name": "oneof_index", "number": 9, "type": 5, "label": 1 }, { "name": "json_name", "number": 10, "type": 9, "label": 1 }, { "name": "options", "number": 8, "type": 11, "label": 1, "typeName": ".google.protobuf.FieldOptions" }, { "name": "proto3_optional", "number": 17, "type": 8, "label": 1 }], "enumType": [{ "name": "Type", "value": [{ "name": "TYPE_DOUBLE", "number": 1 }, { "name": "TYPE_FLOAT", "number": 2 }, { "name": "TYPE_INT64", "number": 3 }, { "name": "TYPE_UINT64", "number": 4 }, { "name": "TYPE_INT32", "number": 5 }, { "name": "TYPE_FIXED64", "number": 6 }, { "name": "TYPE_FIXED32", "number": 7 }, { "name": "TYPE_BOOL", "number": 8 }, { "name": "TYPE_STRING", "number": 9 }, { "name": "TYPE_GROUP", "number": 10 }, { "name": "TYPE_MESSAGE", "number": 11 }, { "name": "TYPE_BYTES", "number": 12 }, { "name": "TYPE_UINT32", "number": 13 }, { "name": "TYPE_ENUM", "number": 14 }, { "name": "TYPE_SFIXED32", "number": 15 }, { "name": "TYPE_SFIXED64", "number": 16 }, { "name": "TYPE_SINT32", "number": 17 }, { "name": "TYPE_SINT64", "number": 18 }] }, { "name": "Label", "value": [{ "name": "LABEL_OPTIONAL", "number": 1 }, { "name": "LABEL_REPEATED", "number": 3 }, { "name": "LABEL_REQUIRED", "number": 2 }] }] }, { "name": "OneofDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "options", "number": 2, "type": 11, "label": 1, "typeName": ".google.protobuf.OneofOptions" }] }, { "name": "EnumDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "value", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.EnumValueDescriptorProto" }, { "name": "options", "number": 3, "type": 11, "label": 1, "typeName": ".google.protobuf.EnumOptions" }, { "name": "reserved_range", "number": 4, "type": 11, "label": 3, "typeName": ".google.protobuf.EnumDescriptorProto.EnumReservedRange" }, { "name": "reserved_name", "number": 5, "type": 9, "label": 3 }], "nestedType": [{ "name": "EnumReservedRange", "field": [{ "name": "start", "number": 1, "type": 5, "label": 1 }, { "name": "end", "number": 2, "type": 5, "label": 1 }] }] }, { "name": "EnumValueDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "number", "number": 2, "type": 5, "label": 1 }, { "name": "options", "number": 3, "type": 11, "label": 1, "typeName": ".google.protobuf.EnumValueOptions" }] }, { "name": "ServiceDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "method", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.MethodDescriptorProto" }, { "name": "options", "number": 3, "type": 11, "label": 1, "typeName": ".google.protobuf.ServiceOptions" }] }, { "name": "MethodDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "input_type", "number": 2, "type": 9, "label": 1 }, { "name": "output_type", "number": 3, "type": 9, "label": 1 }, { "name": "options", "number": 4, "type": 11, "label": 1, "typeName": ".google.protobuf.MethodOptions" }, { "name": "client_streaming", "number": 5, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "server_streaming", "number": 6, "type": 8, "label": 1, "defaultValue": "false" }] }, { "name": "FileOptions", "field": [{ "name": "java_package", "number": 1, "type": 9, "label": 1 }, { "name": "java_outer_classname", "number": 8, "type": 9, "label": 1 }, { "name": "java_multiple_files", "number": 10, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "java_generate_equals_and_hash", "number": 20, "type": 8, "label": 1, "options": { "deprecated": true } }, { "name": "java_string_check_utf8", "number": 27, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "optimize_for", "number": 9, "type": 14, "label": 1, "typeName": ".google.protobuf.FileOptions.OptimizeMode", "defaultValue": "SPEED" }, { "name": "go_package", "number": 11, "type": 9, "label": 1 }, { "name": "cc_generic_services", "number": 16, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "java_generic_services", "number": 17, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "py_generic_services", "number": 18, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "deprecated", "number": 23, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "cc_enable_arenas", "number": 31, "type": 8, "label": 1, "defaultValue": "true" }, { "name": "objc_class_prefix", "number": 36, "type": 9, "label": 1 }, { "name": "csharp_namespace", "number": 37, "type": 9, "label": 1 }, { "name": "swift_prefix", "number": 39, "type": 9, "label": 1 }, { "name": "php_class_prefix", "number": 40, "type": 9, "label": 1 }, { "name": "php_namespace", "number": 41, "type": 9, "label": 1 }, { "name": "php_metadata_namespace", "number": 44, "type": 9, "label": 1 }, { "name": "ruby_package", "number": 45, "type": 9, "label": 1 }, { "name": "features", "number": 50, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "enumType": [{ "name": "OptimizeMode", "value": [{ "name": "SPEED", "number": 1 }, { "name": "CODE_SIZE", "number": 2 }, { "name": "LITE_RUNTIME", "number": 3 }] }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "MessageOptions", "field": [{ "name": "message_set_wire_format", "number": 1, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "no_standard_descriptor_accessor", "number": 2, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "deprecated", "number": 3, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "map_entry", "number": 7, "type": 8, "label": 1 }, { "name": "deprecated_legacy_json_field_conflicts", "number": 11, "type": 8, "label": 1, "options": { "deprecated": true } }, { "name": "features", "number": 12, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "FieldOptions", "field": [{ "name": "ctype", "number": 1, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldOptions.CType", "defaultValue": "STRING" }, { "name": "packed", "number": 2, "type": 8, "label": 1 }, { "name": "jstype", "number": 6, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldOptions.JSType", "defaultValue": "JS_NORMAL" }, { "name": "lazy", "number": 5, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "unverified_lazy", "number": 15, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "deprecated", "number": 3, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "weak", "number": 10, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "debug_redact", "number": 16, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "retention", "number": 17, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldOptions.OptionRetention" }, { "name": "targets", "number": 19, "type": 14, "label": 3, "typeName": ".google.protobuf.FieldOptions.OptionTargetType" }, { "name": "edition_defaults", "number": 20, "type": 11, "label": 3, "typeName": ".google.protobuf.FieldOptions.EditionDefault" }, { "name": "features", "number": 21, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "feature_support", "number": 22, "type": 11, "label": 1, "typeName": ".google.protobuf.FieldOptions.FeatureSupport" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "nestedType": [{ "name": "EditionDefault", "field": [{ "name": "edition", "number": 3, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "value", "number": 2, "type": 9, "label": 1 }] }, { "name": "FeatureSupport", "field": [{ "name": "edition_introduced", "number": 1, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "edition_deprecated", "number": 2, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "deprecation_warning", "number": 3, "type": 9, "label": 1 }, { "name": "edition_removed", "number": 4, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }] }], "enumType": [{ "name": "CType", "value": [{ "name": "STRING", "number": 0 }, { "name": "CORD", "number": 1 }, { "name": "STRING_PIECE", "number": 2 }] }, { "name": "JSType", "value": [{ "name": "JS_NORMAL", "number": 0 }, { "name": "JS_STRING", "number": 1 }, { "name": "JS_NUMBER", "number": 2 }] }, { "name": "OptionRetention", "value": [{ "name": "RETENTION_UNKNOWN", "number": 0 }, { "name": "RETENTION_RUNTIME", "number": 1 }, { "name": "RETENTION_SOURCE", "number": 2 }] }, { "name": "OptionTargetType", "value": [{ "name": "TARGET_TYPE_UNKNOWN", "number": 0 }, { "name": "TARGET_TYPE_FILE", "number": 1 }, { "name": "TARGET_TYPE_EXTENSION_RANGE", "number": 2 }, { "name": "TARGET_TYPE_MESSAGE", "number": 3 }, { "name": "TARGET_TYPE_FIELD", "number": 4 }, { "name": "TARGET_TYPE_ONEOF", "number": 5 }, { "name": "TARGET_TYPE_ENUM", "number": 6 }, { "name": "TARGET_TYPE_ENUM_ENTRY", "number": 7 }, { "name": "TARGET_TYPE_SERVICE", "number": 8 }, { "name": "TARGET_TYPE_METHOD", "number": 9 }] }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "OneofOptions", "field": [{ "name": "features", "number": 1, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "EnumOptions", "field": [{ "name": "allow_alias", "number": 2, "type": 8, "label": 1 }, { "name": "deprecated", "number": 3, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "deprecated_legacy_json_field_conflicts", "number": 6, "type": 8, "label": 1, "options": { "deprecated": true } }, { "name": "features", "number": 7, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "EnumValueOptions", "field": [{ "name": "deprecated", "number": 1, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "features", "number": 2, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "debug_redact", "number": 3, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "feature_support", "number": 4, "type": 11, "label": 1, "typeName": ".google.protobuf.FieldOptions.FeatureSupport" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "ServiceOptions", "field": [{ "name": "features", "number": 34, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "deprecated", "number": 33, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "MethodOptions", "field": [{ "name": "deprecated", "number": 33, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "idempotency_level", "number": 34, "type": 14, "label": 1, "typeName": ".google.protobuf.MethodOptions.IdempotencyLevel", "defaultValue": "IDEMPOTENCY_UNKNOWN" }, { "name": "features", "number": 35, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "enumType": [{ "name": "IdempotencyLevel", "value": [{ "name": "IDEMPOTENCY_UNKNOWN", "number": 0 }, { "name": "NO_SIDE_EFFECTS", "number": 1 }, { "name": "IDEMPOTENT", "number": 2 }] }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "UninterpretedOption", "field": [{ "name": "name", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption.NamePart" }, { "name": "identifier_value", "number": 3, "type": 9, "label": 1 }, { "name": "positive_int_value", "number": 4, "type": 4, "label": 1 }, { "name": "negative_int_value", "number": 5, "type": 3, "label": 1 }, { "name": "double_value", "number": 6, "type": 1, "label": 1 }, { "name": "string_value", "number": 7, "type": 12, "label": 1 }, { "name": "aggregate_value", "number": 8, "type": 9, "label": 1 }], "nestedType": [{ "name": "NamePart", "field": [{ "name": "name_part", "number": 1, "type": 9, "label": 2 }, { "name": "is_extension", "number": 2, "type": 8, "label": 2 }] }] }, { "name": "FeatureSet", "field": [{ "name": "field_presence", "number": 1, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.FieldPresence", "options": { "retention": 1, "targets": [4, 1], "editionDefaults": [{ "value": "EXPLICIT", "edition": 900 }, { "value": "IMPLICIT", "edition": 999 }, { "value": "EXPLICIT", "edition": 1000 }] } }, { "name": "enum_type", "number": 2, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.EnumType", "options": { "retention": 1, "targets": [6, 1], "editionDefaults": [{ "value": "CLOSED", "edition": 900 }, { "value": "OPEN", "edition": 999 }] } }, { "name": "repeated_field_encoding", "number": 3, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.RepeatedFieldEncoding", "options": { "retention": 1, "targets": [4, 1], "editionDefaults": [{ "value": "EXPANDED", "edition": 900 }, { "value": "PACKED", "edition": 999 }] } }, { "name": "utf8_validation", "number": 4, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.Utf8Validation", "options": { "retention": 1, "targets": [4, 1], "editionDefaults": [{ "value": "NONE", "edition": 900 }, { "value": "VERIFY", "edition": 999 }] } }, { "name": "message_encoding", "number": 5, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.MessageEncoding", "options": { "retention": 1, "targets": [4, 1], "editionDefaults": [{ "value": "LENGTH_PREFIXED", "edition": 900 }] } }, { "name": "json_format", "number": 6, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.JsonFormat", "options": { "retention": 1, "targets": [3, 6, 1], "editionDefaults": [{ "value": "LEGACY_BEST_EFFORT", "edition": 900 }, { "value": "ALLOW", "edition": 999 }] } }], "enumType": [{ "name": "FieldPresence", "value": [{ "name": "FIELD_PRESENCE_UNKNOWN", "number": 0 }, { "name": "EXPLICIT", "number": 1 }, { "name": "IMPLICIT", "number": 2 }, { "name": "LEGACY_REQUIRED", "number": 3 }] }, { "name": "EnumType", "value": [{ "name": "ENUM_TYPE_UNKNOWN", "number": 0 }, { "name": "OPEN", "number": 1 }, { "name": "CLOSED", "number": 2 }] }, { "name": "RepeatedFieldEncoding", "value": [{ "name": "REPEATED_FIELD_ENCODING_UNKNOWN", "number": 0 }, { "name": "PACKED", "number": 1 }, { "name": "EXPANDED", "number": 2 }] }, { "name": "Utf8Validation", "value": [{ "name": "UTF8_VALIDATION_UNKNOWN", "number": 0 }, { "name": "VERIFY", "number": 2 }, { "name": "NONE", "number": 3 }] }, { "name": "MessageEncoding", "value": [{ "name": "MESSAGE_ENCODING_UNKNOWN", "number": 0 }, { "name": "LENGTH_PREFIXED", "number": 1 }, { "name": "DELIMITED", "number": 2 }] }, { "name": "JsonFormat", "value": [{ "name": "JSON_FORMAT_UNKNOWN", "number": 0 }, { "name": "ALLOW", "number": 1 }, { "name": "LEGACY_BEST_EFFORT", "number": 2 }] }], "extensionRange": [{ "start": 1000, "end": 9995 }, { "start": 9995, "end": 10000 }, { "start": 10000, "end": 10001 }] }, { "name": "FeatureSetDefaults", "field": [{ "name": "defaults", "number": 1, "type": 11, "label": 3, "typeName": ".google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault" }, { "name": "minimum_edition", "number": 4, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "maximum_edition", "number": 5, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }], "nestedType": [{ "name": "FeatureSetEditionDefault", "field": [{ "name": "edition", "number": 3, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "overridable_features", "number": 4, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "fixed_features", "number": 5, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }] }] }, { "name": "SourceCodeInfo", "field": [{ "name": "location", "number": 1, "type": 11, "label": 3, "typeName": ".google.protobuf.SourceCodeInfo.Location" }], "nestedType": [{ "name": "Location", "field": [{ "name": "path", "number": 1, "type": 5, "label": 3, "options": { "packed": true } }, { "name": "span", "number": 2, "type": 5, "label": 3, "options": { "packed": true } }, { "name": "leading_comments", "number": 3, "type": 9, "label": 1 }, { "name": "trailing_comments", "number": 4, "type": 9, "label": 1 }, { "name": "leading_detached_comments", "number": 6, "type": 9, "label": 3 }] }] }, { "name": "GeneratedCodeInfo", "field": [{ "name": "annotation", "number": 1, "type": 11, "label": 3, "typeName": ".google.protobuf.GeneratedCodeInfo.Annotation" }], "nestedType": [{ "name": "Annotation", "field": [{ "name": "path", "number": 1, "type": 5, "label": 3, "options": { "packed": true } }, { "name": "source_file", "number": 2, "type": 9, "label": 1 }, { "name": "begin", "number": 3, "type": 5, "label": 1 }, { "name": "end", "number": 4, "type": 5, "label": 1 }, { "name": "semantic", "number": 5, "type": 14, "label": 1, "typeName": ".google.protobuf.GeneratedCodeInfo.Annotation.Semantic" }], "enumType": [{ "name": "Semantic", "value": [{ "name": "NONE", "number": 0 }, { "name": "SET", "number": 1 }, { "name": "ALIAS", "number": 2 }] }] }] }], "enumType": [{ "name": "Edition", "value": [{ "name": "EDITION_UNKNOWN", "number": 0 }, { "name": "EDITION_LEGACY", "number": 900 }, { "name": "EDITION_PROTO2", "number": 998 }, { "name": "EDITION_PROTO3", "number": 999 }, { "name": "EDITION_2023", "number": 1000 }, { "name": "EDITION_2024", "number": 1001 }, { "name": "EDITION_1_TEST_ONLY", "number": 1 }, { "name": "EDITION_2_TEST_ONLY", "number": 2 }, { "name": "EDITION_99997_TEST_ONLY", "number": 99997 }, { "name": "EDITION_99998_TEST_ONLY", "number": 99998 }, { "name": "EDITION_99999_TEST_ONLY", "number": 99999 }, { "name": "EDITION_MAX", "number": 2147483647 }] }] }); | ||
/** | ||
@@ -27,0 +27,0 @@ * Describes the message google.protobuf.FileDescriptorSet. |
@@ -92,3 +92,63 @@ import type { GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.Duration. | ||
* A Duration represents a signed, fixed-length span of time represented | ||
* as a count of seconds and fractions of seconds at nanosecond | ||
* resolution. It is independent of any calendar and concepts like "day" | ||
* or "month". It is related to Timestamp in that the difference between | ||
* two Timestamp values is a Duration and it can be added or subtracted | ||
* from a Timestamp. Range is approximately +-10,000 years. | ||
* | ||
* # Examples | ||
* | ||
* Example 1: Compute Duration from two Timestamps in pseudo code. | ||
* | ||
* Timestamp start = ...; | ||
* Timestamp end = ...; | ||
* Duration duration = ...; | ||
* | ||
* duration.seconds = end.seconds - start.seconds; | ||
* duration.nanos = end.nanos - start.nanos; | ||
* | ||
* if (duration.seconds < 0 && duration.nanos > 0) { | ||
* duration.seconds += 1; | ||
* duration.nanos -= 1000000000; | ||
* } else if (duration.seconds > 0 && duration.nanos < 0) { | ||
* duration.seconds -= 1; | ||
* duration.nanos += 1000000000; | ||
* } | ||
* | ||
* Example 2: Compute Timestamp from Timestamp + Duration in pseudo code. | ||
* | ||
* Timestamp start = ...; | ||
* Duration duration = ...; | ||
* Timestamp end = ...; | ||
* | ||
* end.seconds = start.seconds + duration.seconds; | ||
* end.nanos = start.nanos + duration.nanos; | ||
* | ||
* if (end.nanos < 0) { | ||
* end.seconds -= 1; | ||
* end.nanos += 1000000000; | ||
* } else if (end.nanos >= 1000000000) { | ||
* end.seconds += 1; | ||
* end.nanos -= 1000000000; | ||
* } | ||
* | ||
* Example 3: Compute Duration from datetime.timedelta in Python. | ||
* | ||
* td = datetime.timedelta(days=3, minutes=10) | ||
* duration = Duration() | ||
* duration.FromTimedelta(td) | ||
* | ||
* # JSON Mapping | ||
* | ||
* In JSON format, the Duration type is encoded as a string rather than an | ||
* object, where the string ends in the suffix "s" (indicating seconds) and | ||
* is preceded by the number of seconds, with nanoseconds expressed as | ||
* fractional seconds. For example, 3 seconds with 0 nanoseconds should be | ||
* encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should | ||
* be expressed in JSON format as "3.000000001s", and 3 seconds and 1 | ||
* microsecond should be expressed in JSON format as "3.000001s". | ||
* | ||
* | ||
* @generated from message google.protobuf.Duration | ||
*/ | ||
@@ -95,0 +155,0 @@ export type DurationJson = string; |
@@ -21,3 +21,12 @@ import type { GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.Empty. | ||
* A generic empty message that you can re-use to avoid defining duplicated | ||
* empty messages in your APIs. A typical example is to use it as the request | ||
* or the response type of an API method. For instance: | ||
* | ||
* service Foo { | ||
* rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); | ||
* } | ||
* | ||
* | ||
* @generated from message google.protobuf.Empty | ||
*/ | ||
@@ -24,0 +33,0 @@ export type EmptyJson = Record<string, never>; |
@@ -219,3 +219,203 @@ import type { GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.FieldMask. | ||
* `FieldMask` represents a set of symbolic field paths, for example: | ||
* | ||
* paths: "f.a" | ||
* paths: "f.b.d" | ||
* | ||
* Here `f` represents a field in some root message, `a` and `b` | ||
* fields in the message found in `f`, and `d` a field found in the | ||
* message in `f.b`. | ||
* | ||
* Field masks are used to specify a subset of fields that should be | ||
* returned by a get operation or modified by an update operation. | ||
* Field masks also have a custom JSON encoding (see below). | ||
* | ||
* # Field Masks in Projections | ||
* | ||
* When used in the context of a projection, a response message or | ||
* sub-message is filtered by the API to only contain those fields as | ||
* specified in the mask. For example, if the mask in the previous | ||
* example is applied to a response message as follows: | ||
* | ||
* f { | ||
* a : 22 | ||
* b { | ||
* d : 1 | ||
* x : 2 | ||
* } | ||
* y : 13 | ||
* } | ||
* z: 8 | ||
* | ||
* The result will not contain specific values for fields x,y and z | ||
* (their value will be set to the default, and omitted in proto text | ||
* output): | ||
* | ||
* | ||
* f { | ||
* a : 22 | ||
* b { | ||
* d : 1 | ||
* } | ||
* } | ||
* | ||
* A repeated field is not allowed except at the last position of a | ||
* paths string. | ||
* | ||
* If a FieldMask object is not present in a get operation, the | ||
* operation applies to all fields (as if a FieldMask of all fields | ||
* had been specified). | ||
* | ||
* Note that a field mask does not necessarily apply to the | ||
* top-level response message. In case of a REST get operation, the | ||
* field mask applies directly to the response, but in case of a REST | ||
* list operation, the mask instead applies to each individual message | ||
* in the returned resource list. In case of a REST custom method, | ||
* other definitions may be used. Where the mask applies will be | ||
* clearly documented together with its declaration in the API. In | ||
* any case, the effect on the returned resource/resources is required | ||
* behavior for APIs. | ||
* | ||
* # Field Masks in Update Operations | ||
* | ||
* A field mask in update operations specifies which fields of the | ||
* targeted resource are going to be updated. The API is required | ||
* to only change the values of the fields as specified in the mask | ||
* and leave the others untouched. If a resource is passed in to | ||
* describe the updated values, the API ignores the values of all | ||
* fields not covered by the mask. | ||
* | ||
* If a repeated field is specified for an update operation, new values will | ||
* be appended to the existing repeated field in the target resource. Note that | ||
* a repeated field is only allowed in the last position of a `paths` string. | ||
* | ||
* If a sub-message is specified in the last position of the field mask for an | ||
* update operation, then new value will be merged into the existing sub-message | ||
* in the target resource. | ||
* | ||
* For example, given the target message: | ||
* | ||
* f { | ||
* b { | ||
* d: 1 | ||
* x: 2 | ||
* } | ||
* c: [1] | ||
* } | ||
* | ||
* And an update message: | ||
* | ||
* f { | ||
* b { | ||
* d: 10 | ||
* } | ||
* c: [2] | ||
* } | ||
* | ||
* then if the field mask is: | ||
* | ||
* paths: ["f.b", "f.c"] | ||
* | ||
* then the result will be: | ||
* | ||
* f { | ||
* b { | ||
* d: 10 | ||
* x: 2 | ||
* } | ||
* c: [1, 2] | ||
* } | ||
* | ||
* An implementation may provide options to override this default behavior for | ||
* repeated and message fields. | ||
* | ||
* In order to reset a field's value to the default, the field must | ||
* be in the mask and set to the default value in the provided resource. | ||
* Hence, in order to reset all fields of a resource, provide a default | ||
* instance of the resource and set all fields in the mask, or do | ||
* not provide a mask as described below. | ||
* | ||
* If a field mask is not present on update, the operation applies to | ||
* all fields (as if a field mask of all fields has been specified). | ||
* Note that in the presence of schema evolution, this may mean that | ||
* fields the client does not know and has therefore not filled into | ||
* the request will be reset to their default. If this is unwanted | ||
* behavior, a specific service may require a client to always specify | ||
* a field mask, producing an error if not. | ||
* | ||
* As with get operations, the location of the resource which | ||
* describes the updated values in the request message depends on the | ||
* operation kind. In any case, the effect of the field mask is | ||
* required to be honored by the API. | ||
* | ||
* ## Considerations for HTTP REST | ||
* | ||
* The HTTP kind of an update operation which uses a field mask must | ||
* be set to PATCH instead of PUT in order to satisfy HTTP semantics | ||
* (PUT must only be used for full updates). | ||
* | ||
* # JSON Encoding of Field Masks | ||
* | ||
* In JSON, a field mask is encoded as a single string where paths are | ||
* separated by a comma. Fields name in each path are converted | ||
* to/from lower-camel naming conventions. | ||
* | ||
* As an example, consider the following message declarations: | ||
* | ||
* message Profile { | ||
* User user = 1; | ||
* Photo photo = 2; | ||
* } | ||
* message User { | ||
* string display_name = 1; | ||
* string address = 2; | ||
* } | ||
* | ||
* In proto a field mask for `Profile` may look as such: | ||
* | ||
* mask { | ||
* paths: "user.display_name" | ||
* paths: "photo" | ||
* } | ||
* | ||
* In JSON, the same mask is represented as below: | ||
* | ||
* { | ||
* mask: "user.displayName,photo" | ||
* } | ||
* | ||
* # Field Masks and Oneof Fields | ||
* | ||
* Field masks treat fields in oneofs just as regular fields. Consider the | ||
* following message: | ||
* | ||
* message SampleMessage { | ||
* oneof test_oneof { | ||
* string name = 4; | ||
* SubMessage sub_message = 9; | ||
* } | ||
* } | ||
* | ||
* The field mask can be: | ||
* | ||
* mask { | ||
* paths: "name" | ||
* } | ||
* | ||
* Or: | ||
* | ||
* mask { | ||
* paths: "sub_message" | ||
* } | ||
* | ||
* Note that oneof type names ("test_oneof" in this case) cannot be used in | ||
* paths. | ||
* | ||
* ## Field Mask Verification | ||
* | ||
* The implementation of any API method which has a FieldMask type field in the | ||
* request should verify the included field paths, and return an | ||
* `INVALID_ARGUMENT` error if any path is unmappable. | ||
* | ||
* @generated from message google.protobuf.FieldMask | ||
*/ | ||
@@ -222,0 +422,0 @@ export type FieldMaskJson = string; |
@@ -23,6 +23,12 @@ import type { GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.SourceContext. | ||
* `SourceContext` represents information about the source of a | ||
* protobuf element, like the file in which it is defined. | ||
* | ||
* @generated from message google.protobuf.SourceContext | ||
*/ | ||
export type SourceContextJson = { | ||
/** | ||
* The path-qualified name of the .proto file that contained the associated | ||
* protobuf element. For example: `"google/protobuf/source_context.proto"`. | ||
* | ||
* @generated from field: string file_name = 1; | ||
@@ -29,0 +35,0 @@ */ |
@@ -31,3 +31,12 @@ import type { GenEnum, GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.Struct. | ||
* `Struct` represents a structured data value, consisting of fields | ||
* which map to dynamically typed values. In some languages, `Struct` | ||
* might be supported by a native representation. For example, in | ||
* scripting languages like JS a struct is represented as an | ||
* object. The details of that representation are described together | ||
* with the proto support for the language. | ||
* | ||
* The JSON representation for `Struct` is JSON object. | ||
* | ||
* @generated from message google.protobuf.Struct | ||
*/ | ||
@@ -110,3 +119,10 @@ export type StructJson = JsonObject; | ||
/** | ||
* JSON type for the message google.protobuf.Value. | ||
* `Value` represents a dynamically typed value which can be either | ||
* null, a number, a string, a boolean, a recursive struct value, or a | ||
* list of values. A producer of value is expected to set one of these | ||
* variants. Absence of any variant indicates an error. | ||
* | ||
* The JSON representation for `Value` is JSON value. | ||
* | ||
* @generated from message google.protobuf.Value | ||
*/ | ||
@@ -135,3 +151,7 @@ export type ValueJson = JsonValue; | ||
/** | ||
* JSON type for the message google.protobuf.ListValue. | ||
* `ListValue` is a wrapper around a repeated field of values. | ||
* | ||
* The JSON representation for `ListValue` is JSON array. | ||
* | ||
* @generated from message google.protobuf.ListValue | ||
*/ | ||
@@ -161,3 +181,8 @@ export type ListValueJson = JsonValue[]; | ||
/** | ||
* JSON type for the enum google.protobuf.NullValue. | ||
* `NullValue` is a singleton enumeration to represent the null value for the | ||
* `Value` type union. | ||
* | ||
* The JSON representation for `NullValue` is JSON `null`. | ||
* | ||
* @generated from enum google.protobuf.NullValue | ||
*/ | ||
@@ -164,0 +189,0 @@ export type NullValueJson = null; |
@@ -121,3 +121,94 @@ import type { GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.Timestamp. | ||
* A Timestamp represents a point in time independent of any time zone or local | ||
* calendar, encoded as a count of seconds and fractions of seconds at | ||
* nanosecond resolution. The count is relative to an epoch at UTC midnight on | ||
* January 1, 1970, in the proleptic Gregorian calendar which extends the | ||
* Gregorian calendar backwards to year one. | ||
* | ||
* All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap | ||
* second table is needed for interpretation, using a [24-hour linear | ||
* smear](https://developers.google.com/time/smear). | ||
* | ||
* The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By | ||
* restricting to that range, we ensure that we can convert to and from [RFC | ||
* 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings. | ||
* | ||
* # Examples | ||
* | ||
* Example 1: Compute Timestamp from POSIX `time()`. | ||
* | ||
* Timestamp timestamp; | ||
* timestamp.set_seconds(time(NULL)); | ||
* timestamp.set_nanos(0); | ||
* | ||
* Example 2: Compute Timestamp from POSIX `gettimeofday()`. | ||
* | ||
* struct timeval tv; | ||
* gettimeofday(&tv, NULL); | ||
* | ||
* Timestamp timestamp; | ||
* timestamp.set_seconds(tv.tv_sec); | ||
* timestamp.set_nanos(tv.tv_usec * 1000); | ||
* | ||
* Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`. | ||
* | ||
* FILETIME ft; | ||
* GetSystemTimeAsFileTime(&ft); | ||
* UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime; | ||
* | ||
* // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z | ||
* // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z. | ||
* Timestamp timestamp; | ||
* timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL)); | ||
* timestamp.set_nanos((INT32) ((ticks % 10000000) * 100)); | ||
* | ||
* Example 4: Compute Timestamp from Java `System.currentTimeMillis()`. | ||
* | ||
* long millis = System.currentTimeMillis(); | ||
* | ||
* Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000) | ||
* .setNanos((int) ((millis % 1000) * 1000000)).build(); | ||
* | ||
* Example 5: Compute Timestamp from Java `Instant.now()`. | ||
* | ||
* Instant now = Instant.now(); | ||
* | ||
* Timestamp timestamp = | ||
* Timestamp.newBuilder().setSeconds(now.getEpochSecond()) | ||
* .setNanos(now.getNano()).build(); | ||
* | ||
* Example 6: Compute Timestamp from current time in Python. | ||
* | ||
* timestamp = Timestamp() | ||
* timestamp.GetCurrentTime() | ||
* | ||
* # JSON Mapping | ||
* | ||
* In JSON format, the Timestamp type is encoded as a string in the | ||
* [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the | ||
* format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z" | ||
* where {year} is always expressed using four digits while {month}, {day}, | ||
* {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional | ||
* seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution), | ||
* are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone | ||
* is required. A proto3 JSON serializer should always use UTC (as indicated by | ||
* "Z") when printing the Timestamp type and a proto3 JSON parser should be | ||
* able to accept both UTC and other timezones (as indicated by an offset). | ||
* | ||
* For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past | ||
* 01:30 UTC on January 15, 2017. | ||
* | ||
* In JavaScript, one can convert a Date object to this format using the | ||
* standard | ||
* [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString) | ||
* method. In Python, a standard `datetime.datetime` object can be converted | ||
* to this format using | ||
* [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with | ||
* the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use | ||
* the Joda Time's [`ISODateTimeFormat.dateTime()`]( | ||
* http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime() | ||
* ) to obtain a formatter capable of generating timestamps in this format. | ||
* | ||
* | ||
* @generated from message google.protobuf.Timestamp | ||
*/ | ||
@@ -124,0 +215,0 @@ export type TimestampJson = string; |
@@ -59,6 +59,10 @@ import type { GenEnum, GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.Type. | ||
* A protocol buffer message type. | ||
* | ||
* @generated from message google.protobuf.Type | ||
*/ | ||
export type TypeJson = { | ||
/** | ||
* The fully qualified message name. | ||
* | ||
* @generated from field: string name = 1; | ||
@@ -68,2 +72,4 @@ */ | ||
/** | ||
* The list of fields. | ||
* | ||
* @generated from field: repeated google.protobuf.Field fields = 2; | ||
@@ -73,2 +79,4 @@ */ | ||
/** | ||
* The list of types appearing in `oneof` definitions in this type. | ||
* | ||
* @generated from field: repeated string oneofs = 3; | ||
@@ -78,2 +86,4 @@ */ | ||
/** | ||
* The protocol buffer options. | ||
* | ||
* @generated from field: repeated google.protobuf.Option options = 4; | ||
@@ -83,2 +93,4 @@ */ | ||
/** | ||
* The source context. | ||
* | ||
* @generated from field: google.protobuf.SourceContext source_context = 5; | ||
@@ -88,2 +100,4 @@ */ | ||
/** | ||
* The source syntax. | ||
* | ||
* @generated from field: google.protobuf.Syntax syntax = 6; | ||
@@ -93,2 +107,4 @@ */ | ||
/** | ||
* The source edition string, only valid when syntax is SYNTAX_EDITIONS. | ||
* | ||
* @generated from field: string edition = 7; | ||
@@ -173,6 +189,10 @@ */ | ||
/** | ||
* JSON type for the message google.protobuf.Field. | ||
* A single field of a message type. | ||
* | ||
* @generated from message google.protobuf.Field | ||
*/ | ||
export type FieldJson = { | ||
/** | ||
* The field type. | ||
* | ||
* @generated from field: google.protobuf.Field.Kind kind = 1; | ||
@@ -182,2 +202,4 @@ */ | ||
/** | ||
* The field cardinality. | ||
* | ||
* @generated from field: google.protobuf.Field.Cardinality cardinality = 2; | ||
@@ -187,2 +209,4 @@ */ | ||
/** | ||
* The field number. | ||
* | ||
* @generated from field: int32 number = 3; | ||
@@ -192,2 +216,4 @@ */ | ||
/** | ||
* The field name. | ||
* | ||
* @generated from field: string name = 4; | ||
@@ -197,2 +223,5 @@ */ | ||
/** | ||
* The field type URL, without the scheme, for message or enumeration | ||
* types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`. | ||
* | ||
* @generated from field: string type_url = 6; | ||
@@ -202,2 +231,5 @@ */ | ||
/** | ||
* 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 field: int32 oneof_index = 7; | ||
@@ -207,2 +239,4 @@ */ | ||
/** | ||
* Whether to use alternative packed wire representation. | ||
* | ||
* @generated from field: bool packed = 8; | ||
@@ -212,2 +246,4 @@ */ | ||
/** | ||
* The protocol buffer options. | ||
* | ||
* @generated from field: repeated google.protobuf.Option options = 9; | ||
@@ -217,2 +253,4 @@ */ | ||
/** | ||
* The field JSON name. | ||
* | ||
* @generated from field: string json_name = 10; | ||
@@ -222,2 +260,4 @@ */ | ||
/** | ||
* The string value of the default value of this field. Proto2 syntax only. | ||
* | ||
* @generated from field: string default_value = 11; | ||
@@ -354,3 +394,5 @@ */ | ||
/** | ||
* JSON type for the enum google.protobuf.Field.Kind. | ||
* Basic field types. | ||
* | ||
* @generated from enum google.protobuf.Field.Kind | ||
*/ | ||
@@ -394,3 +436,5 @@ export type Field_KindJson = "TYPE_UNKNOWN" | "TYPE_DOUBLE" | "TYPE_FLOAT" | "TYPE_INT64" | "TYPE_UINT64" | "TYPE_INT32" | "TYPE_FIXED64" | "TYPE_FIXED32" | "TYPE_BOOL" | "TYPE_STRING" | "TYPE_GROUP" | "TYPE_MESSAGE" | "TYPE_BYTES" | "TYPE_UINT32" | "TYPE_ENUM" | "TYPE_SFIXED32" | "TYPE_SFIXED64" | "TYPE_SINT32" | "TYPE_SINT64"; | ||
/** | ||
* JSON type for the enum google.protobuf.Field.Cardinality. | ||
* Whether a field is optional, required, or repeated. | ||
* | ||
* @generated from enum google.protobuf.Field.Cardinality | ||
*/ | ||
@@ -446,6 +490,10 @@ export type Field_CardinalityJson = "CARDINALITY_UNKNOWN" | "CARDINALITY_OPTIONAL" | "CARDINALITY_REQUIRED" | "CARDINALITY_REPEATED"; | ||
/** | ||
* JSON type for the message google.protobuf.Enum. | ||
* Enum type definition. | ||
* | ||
* @generated from message google.protobuf.Enum | ||
*/ | ||
export type EnumJson = { | ||
/** | ||
* Enum type name. | ||
* | ||
* @generated from field: string name = 1; | ||
@@ -455,2 +503,4 @@ */ | ||
/** | ||
* Enum value definitions. | ||
* | ||
* @generated from field: repeated google.protobuf.EnumValue enumvalue = 2; | ||
@@ -460,2 +510,4 @@ */ | ||
/** | ||
* Protocol buffer options. | ||
* | ||
* @generated from field: repeated google.protobuf.Option options = 3; | ||
@@ -465,2 +517,4 @@ */ | ||
/** | ||
* The source context. | ||
* | ||
* @generated from field: google.protobuf.SourceContext source_context = 4; | ||
@@ -470,2 +524,4 @@ */ | ||
/** | ||
* The source syntax. | ||
* | ||
* @generated from field: google.protobuf.Syntax syntax = 5; | ||
@@ -475,2 +531,4 @@ */ | ||
/** | ||
* The source edition string, only valid when syntax is SYNTAX_EDITIONS. | ||
* | ||
* @generated from field: string edition = 6; | ||
@@ -511,6 +569,10 @@ */ | ||
/** | ||
* JSON type for the message google.protobuf.EnumValue. | ||
* Enum value definition. | ||
* | ||
* @generated from message google.protobuf.EnumValue | ||
*/ | ||
export type EnumValueJson = { | ||
/** | ||
* Enum value name. | ||
* | ||
* @generated from field: string name = 1; | ||
@@ -520,2 +582,4 @@ */ | ||
/** | ||
* Enum value number. | ||
* | ||
* @generated from field: int32 number = 2; | ||
@@ -525,2 +589,4 @@ */ | ||
/** | ||
* Protocol buffer options. | ||
* | ||
* @generated from field: repeated google.protobuf.Option options = 3; | ||
@@ -562,6 +628,14 @@ */ | ||
/** | ||
* JSON type for the message google.protobuf.Option. | ||
* A protocol buffer option, which can be attached to a message, field, | ||
* enumeration, etc. | ||
* | ||
* @generated from message google.protobuf.Option | ||
*/ | ||
export type OptionJson = { | ||
/** | ||
* The option's name. For protobuf built-in options (options defined in | ||
* descriptor.proto), this is the short name. For example, `"map_entry"`. | ||
* For custom options, it should be the fully-qualified name. For example, | ||
* `"google.api.http"`. | ||
* | ||
* @generated from field: string name = 1; | ||
@@ -571,2 +645,7 @@ */ | ||
/** | ||
* The option's value packed in an Any message. If the value is a primitive, | ||
* the corresponding wrapper type defined in google/protobuf/wrappers.proto | ||
* 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 field: google.protobuf.Any value = 2; | ||
@@ -607,3 +686,5 @@ */ | ||
/** | ||
* JSON type for the enum google.protobuf.Syntax. | ||
* The syntax in which a protocol buffer element is defined. | ||
* | ||
* @generated from enum google.protobuf.Syntax | ||
*/ | ||
@@ -610,0 +691,0 @@ export type SyntaxJson = "SYNTAX_PROTO2" | "SYNTAX_PROTO3" | "SYNTAX_EDITIONS"; |
@@ -23,3 +23,7 @@ import type { GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.DoubleValue. | ||
* Wrapper message for `double`. | ||
* | ||
* The JSON representation for `DoubleValue` is JSON number. | ||
* | ||
* @generated from message google.protobuf.DoubleValue | ||
*/ | ||
@@ -48,3 +52,7 @@ export type DoubleValueJson = number | "NaN" | "Infinity" | "-Infinity"; | ||
/** | ||
* JSON type for the message google.protobuf.FloatValue. | ||
* Wrapper message for `float`. | ||
* | ||
* The JSON representation for `FloatValue` is JSON number. | ||
* | ||
* @generated from message google.protobuf.FloatValue | ||
*/ | ||
@@ -73,3 +81,7 @@ export type FloatValueJson = number | "NaN" | "Infinity" | "-Infinity"; | ||
/** | ||
* JSON type for the message google.protobuf.Int64Value. | ||
* Wrapper message for `int64`. | ||
* | ||
* The JSON representation for `Int64Value` is JSON string. | ||
* | ||
* @generated from message google.protobuf.Int64Value | ||
*/ | ||
@@ -98,3 +110,7 @@ export type Int64ValueJson = string; | ||
/** | ||
* JSON type for the message google.protobuf.UInt64Value. | ||
* Wrapper message for `uint64`. | ||
* | ||
* The JSON representation for `UInt64Value` is JSON string. | ||
* | ||
* @generated from message google.protobuf.UInt64Value | ||
*/ | ||
@@ -123,3 +139,7 @@ export type UInt64ValueJson = string; | ||
/** | ||
* JSON type for the message google.protobuf.Int32Value. | ||
* Wrapper message for `int32`. | ||
* | ||
* The JSON representation for `Int32Value` is JSON number. | ||
* | ||
* @generated from message google.protobuf.Int32Value | ||
*/ | ||
@@ -148,3 +168,7 @@ export type Int32ValueJson = number; | ||
/** | ||
* JSON type for the message google.protobuf.UInt32Value. | ||
* Wrapper message for `uint32`. | ||
* | ||
* The JSON representation for `UInt32Value` is JSON number. | ||
* | ||
* @generated from message google.protobuf.UInt32Value | ||
*/ | ||
@@ -173,3 +197,7 @@ export type UInt32ValueJson = number; | ||
/** | ||
* JSON type for the message google.protobuf.BoolValue. | ||
* Wrapper message for `bool`. | ||
* | ||
* The JSON representation for `BoolValue` is JSON `true` and `false`. | ||
* | ||
* @generated from message google.protobuf.BoolValue | ||
*/ | ||
@@ -198,3 +226,7 @@ export type BoolValueJson = boolean; | ||
/** | ||
* JSON type for the message google.protobuf.StringValue. | ||
* Wrapper message for `string`. | ||
* | ||
* The JSON representation for `StringValue` is JSON string. | ||
* | ||
* @generated from message google.protobuf.StringValue | ||
*/ | ||
@@ -223,3 +255,7 @@ export type StringValueJson = string; | ||
/** | ||
* JSON type for the message google.protobuf.BytesValue. | ||
* Wrapper message for `bytes`. | ||
* | ||
* The JSON representation for `BytesValue` is JSON string. | ||
* | ||
* @generated from message google.protobuf.BytesValue | ||
*/ | ||
@@ -226,0 +262,0 @@ export type BytesValueJson = string; |
@@ -227,3 +227,3 @@ // Copyright 2021-2024 Buf Technologies, Inc. | ||
// bootstrap-inject defaults: EDITION_PROTO2 to EDITION_2023: export const minimumEdition: SupportedEdition = $minimumEdition, maximumEdition: SupportedEdition = $maximumEdition; | ||
// generated from protoc v27.0 | ||
// generated from protoc v28.0 | ||
export const minimumEdition = 998, maximumEdition = 1000; | ||
@@ -230,0 +230,0 @@ const featureDefaults = { |
@@ -31,3 +31,3 @@ import type { GenEnum, GenExtension, GenMessage } from "./codegenv1/types.js"; | ||
*/ | ||
export type MessageInitShape<Desc extends DescMessage> = Desc extends GenMessage<infer RuntimeShape> ? RuntimeShape | MessageInit<RuntimeShape> : Record<string, unknown>; | ||
export type MessageInitShape<Desc extends DescMessage> = Desc extends GenMessage<infer RuntimeShape> ? MessageInit<RuntimeShape> : Record<string, unknown>; | ||
/** | ||
@@ -62,4 +62,4 @@ * Extract the enum type of from an enum descriptor. | ||
*/ | ||
type MessageInit<T extends Message> = { | ||
[P in keyof T as P extends "$typeName" | "$unknown" ? never : P]?: FieldInit<T[P]>; | ||
type MessageInit<T extends Message> = T | { | ||
[P in keyof T as P extends "$unknown" ? never : P]?: P extends "$typeName" ? never : FieldInit<T[P]>; | ||
}; | ||
@@ -66,0 +66,0 @@ type FieldInit<F> = F extends (Date | Uint8Array | bigint | boolean | string | number) ? F : F extends Array<infer U> ? Array<FieldInit<U>> : F extends ReadonlyArray<infer U> ? ReadonlyArray<FieldInit<U>> : F extends Message ? MessageInit<F> : F extends OneofSelectedMessage<infer C, infer V> ? { |
@@ -140,3 +140,90 @@ import type { GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.Any. | ||
* `Any` contains an arbitrary serialized protocol buffer message along with a | ||
* URL that describes the type of the serialized message. | ||
* | ||
* Protobuf library provides support to pack/unpack Any values in the form | ||
* of utility functions or additional generated methods of the Any type. | ||
* | ||
* Example 1: Pack and unpack a message in C++. | ||
* | ||
* Foo foo = ...; | ||
* Any any; | ||
* any.PackFrom(foo); | ||
* ... | ||
* if (any.UnpackTo(&foo)) { | ||
* ... | ||
* } | ||
* | ||
* Example 2: Pack and unpack a message in Java. | ||
* | ||
* Foo foo = ...; | ||
* Any any = Any.pack(foo); | ||
* ... | ||
* if (any.is(Foo.class)) { | ||
* foo = any.unpack(Foo.class); | ||
* } | ||
* // or ... | ||
* if (any.isSameTypeAs(Foo.getDefaultInstance())) { | ||
* foo = any.unpack(Foo.getDefaultInstance()); | ||
* } | ||
* | ||
* Example 3: Pack and unpack a message in Python. | ||
* | ||
* foo = Foo(...) | ||
* any = Any() | ||
* any.Pack(foo) | ||
* ... | ||
* if any.Is(Foo.DESCRIPTOR): | ||
* any.Unpack(foo) | ||
* ... | ||
* | ||
* Example 4: Pack and unpack a message in Go | ||
* | ||
* foo := &pb.Foo{...} | ||
* any, err := anypb.New(foo) | ||
* if err != nil { | ||
* ... | ||
* } | ||
* ... | ||
* foo := &pb.Foo{} | ||
* if err := any.UnmarshalTo(foo); err != nil { | ||
* ... | ||
* } | ||
* | ||
* The pack methods provided by protobuf library will by default use | ||
* 'type.googleapis.com/full.type.name' as the type URL and the unpack | ||
* methods only use the fully qualified type name after the last '/' | ||
* in the type URL, for example "foo.bar.com/x/y.z" will yield type | ||
* name "y.z". | ||
* | ||
* JSON | ||
* ==== | ||
* The JSON representation of an `Any` value uses the regular | ||
* representation of the deserialized, embedded message, with an | ||
* additional field `@type` which contains the type URL. Example: | ||
* | ||
* package google.profile; | ||
* message Person { | ||
* string first_name = 1; | ||
* string last_name = 2; | ||
* } | ||
* | ||
* { | ||
* "@type": "type.googleapis.com/google.profile.Person", | ||
* "firstName": <string>, | ||
* "lastName": <string> | ||
* } | ||
* | ||
* If the embedded message type is well-known and has a custom JSON | ||
* representation, that representation will be embedded adding a field | ||
* `value` which holds the custom JSON in addition to the `@type` | ||
* field. Example (for message [google.protobuf.Duration][]): | ||
* | ||
* { | ||
* "@type": "type.googleapis.com/google.protobuf.Duration", | ||
* "value": "1.212s" | ||
* } | ||
* | ||
* | ||
* @generated from message google.protobuf.Any | ||
*/ | ||
@@ -143,0 +230,0 @@ export type AnyJson = { |
@@ -88,6 +88,19 @@ import type { GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.Api. | ||
* Api is a light-weight descriptor for an API Interface. | ||
* | ||
* Interfaces are also described as "protocol buffer services" in some contexts, | ||
* such as by the "service" keyword in a .proto file, but they are different | ||
* from API Services, which represent a concrete implementation of an interface | ||
* as opposed to simply a description of methods and bindings. They are also | ||
* sometimes simply referred to as "APIs" in other contexts, such as the name of | ||
* this message itself. See https://cloud.google.com/apis/design/glossary for | ||
* detailed terminology. | ||
* | ||
* @generated from message google.protobuf.Api | ||
*/ | ||
export type ApiJson = { | ||
/** | ||
* The fully qualified name of this interface, including package name | ||
* followed by the interface's simple name. | ||
* | ||
* @generated from field: string name = 1; | ||
@@ -97,2 +110,4 @@ */ | ||
/** | ||
* The methods of this interface, in unspecified order. | ||
* | ||
* @generated from field: repeated google.protobuf.Method methods = 2; | ||
@@ -102,2 +117,4 @@ */ | ||
/** | ||
* Any metadata attached to the interface. | ||
* | ||
* @generated from field: repeated google.protobuf.Option options = 3; | ||
@@ -107,2 +124,23 @@ */ | ||
/** | ||
* A version string for this interface. If specified, must have the form | ||
* `major-version.minor-version`, as in `1.10`. If the minor version is | ||
* omitted, it defaults to zero. If the entire version field is empty, the | ||
* major version is derived from the package name, as outlined below. If the | ||
* field is not empty, the version in the package name will be verified to be | ||
* consistent with what is provided here. | ||
* | ||
* The versioning schema uses [semantic | ||
* versioning](http://semver.org) where the major version number | ||
* indicates a breaking change and the minor version an additive, | ||
* non-breaking change. Both version numbers are signals to users | ||
* what to expect from different versions, and should be carefully | ||
* chosen based on the product plan. | ||
* | ||
* The major version is also reflected in the package name of the | ||
* interface, which must end in `v<major-version>`, as in | ||
* `google.feature.v1`. For major versions 0 and 1, the suffix can | ||
* be omitted. Zero major versions must only be used for | ||
* experimental, non-GA interfaces. | ||
* | ||
* | ||
* @generated from field: string version = 4; | ||
@@ -112,2 +150,5 @@ */ | ||
/** | ||
* Source context for the protocol buffer service represented by this | ||
* message. | ||
* | ||
* @generated from field: google.protobuf.SourceContext source_context = 5; | ||
@@ -117,2 +158,4 @@ */ | ||
/** | ||
* Included interfaces. See [Mixin][]. | ||
* | ||
* @generated from field: repeated google.protobuf.Mixin mixins = 6; | ||
@@ -122,2 +165,4 @@ */ | ||
/** | ||
* The source syntax of the service. | ||
* | ||
* @generated from field: google.protobuf.Syntax syntax = 7; | ||
@@ -182,6 +227,10 @@ */ | ||
/** | ||
* JSON type for the message google.protobuf.Method. | ||
* Method represents a method of an API interface. | ||
* | ||
* @generated from message google.protobuf.Method | ||
*/ | ||
export type MethodJson = { | ||
/** | ||
* The simple name of this method. | ||
* | ||
* @generated from field: string name = 1; | ||
@@ -191,2 +240,4 @@ */ | ||
/** | ||
* A URL of the input message type. | ||
* | ||
* @generated from field: string request_type_url = 2; | ||
@@ -196,2 +247,4 @@ */ | ||
/** | ||
* If true, the request is streamed. | ||
* | ||
* @generated from field: bool request_streaming = 3; | ||
@@ -201,2 +254,4 @@ */ | ||
/** | ||
* The URL of the output message type. | ||
* | ||
* @generated from field: string response_type_url = 4; | ||
@@ -206,2 +261,4 @@ */ | ||
/** | ||
* If true, the response is streamed. | ||
* | ||
* @generated from field: bool response_streaming = 5; | ||
@@ -211,2 +268,4 @@ */ | ||
/** | ||
* Any metadata attached to the method. | ||
* | ||
* @generated from field: repeated google.protobuf.Option options = 6; | ||
@@ -216,2 +275,4 @@ */ | ||
/** | ||
* The source syntax of this method. | ||
* | ||
* @generated from field: google.protobuf.Syntax syntax = 7; | ||
@@ -324,6 +385,87 @@ */ | ||
/** | ||
* JSON type for the message google.protobuf.Mixin. | ||
* Declares an API Interface to be included in this interface. The including | ||
* interface must redeclare all the methods from the included interface, but | ||
* documentation and options are inherited as follows: | ||
* | ||
* - If after comment and whitespace stripping, the documentation | ||
* string of the redeclared method is empty, it will be inherited | ||
* from the original method. | ||
* | ||
* - Each annotation belonging to the service config (http, | ||
* visibility) which is not set in the redeclared method will be | ||
* inherited. | ||
* | ||
* - If an http annotation is inherited, the path pattern will be | ||
* modified as follows. Any version prefix will be replaced by the | ||
* version of the including interface plus the [root][] path if | ||
* specified. | ||
* | ||
* Example of a simple mixin: | ||
* | ||
* package google.acl.v1; | ||
* service AccessControl { | ||
* // Get the underlying ACL object. | ||
* rpc GetAcl(GetAclRequest) returns (Acl) { | ||
* option (google.api.http).get = "/v1/{resource=**}:getAcl"; | ||
* } | ||
* } | ||
* | ||
* package google.storage.v2; | ||
* service Storage { | ||
* rpc GetAcl(GetAclRequest) returns (Acl); | ||
* | ||
* // Get a data record. | ||
* rpc GetData(GetDataRequest) returns (Data) { | ||
* option (google.api.http).get = "/v2/{resource=**}"; | ||
* } | ||
* } | ||
* | ||
* Example of a mixin configuration: | ||
* | ||
* apis: | ||
* - name: google.storage.v2.Storage | ||
* mixins: | ||
* - name: google.acl.v1.AccessControl | ||
* | ||
* The mixin construct implies that all methods in `AccessControl` are | ||
* also declared with same name and request/response types in | ||
* `Storage`. A documentation generator or annotation processor will | ||
* see the effective `Storage.GetAcl` method after inherting | ||
* documentation and annotations as follows: | ||
* | ||
* service Storage { | ||
* // Get the underlying ACL object. | ||
* rpc GetAcl(GetAclRequest) returns (Acl) { | ||
* option (google.api.http).get = "/v2/{resource=**}:getAcl"; | ||
* } | ||
* ... | ||
* } | ||
* | ||
* Note how the version in the path pattern changed from `v1` to `v2`. | ||
* | ||
* If the `root` field in the mixin is specified, it should be a | ||
* relative path under which inherited HTTP paths are placed. Example: | ||
* | ||
* apis: | ||
* - name: google.storage.v2.Storage | ||
* mixins: | ||
* - name: google.acl.v1.AccessControl | ||
* root: acls | ||
* | ||
* This implies the following inherited HTTP annotation: | ||
* | ||
* service Storage { | ||
* // Get the underlying ACL object. | ||
* rpc GetAcl(GetAclRequest) returns (Acl) { | ||
* option (google.api.http).get = "/v2/acls/{resource=**}:getAcl"; | ||
* } | ||
* ... | ||
* } | ||
* | ||
* @generated from message google.protobuf.Mixin | ||
*/ | ||
export type MixinJson = { | ||
/** | ||
* The fully qualified name of the interface which is included. | ||
* | ||
* @generated from field: string name = 1; | ||
@@ -333,2 +475,5 @@ */ | ||
/** | ||
* If non-empty specifies a path under which inherited HTTP paths | ||
* are rooted. | ||
* | ||
* @generated from field: string root = 2; | ||
@@ -335,0 +480,0 @@ */ |
@@ -35,3 +35,5 @@ import type { GenEnum, GenFile, GenMessage } from "../../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.compiler.Version. | ||
* The version number of protocol compiler. | ||
* | ||
* @generated from message google.protobuf.compiler.Version | ||
*/ | ||
@@ -52,2 +54,5 @@ export type VersionJson = { | ||
/** | ||
* A suffix for alpha, beta or rc release, e.g., "alpha-1", "rc2". It should | ||
* be empty for mainline stable releases. | ||
* | ||
* @generated from field: optional string suffix = 4; | ||
@@ -122,6 +127,12 @@ */ | ||
/** | ||
* JSON type for the message google.protobuf.compiler.CodeGeneratorRequest. | ||
* An encoded CodeGeneratorRequest is written to the plugin's stdin. | ||
* | ||
* @generated from message google.protobuf.compiler.CodeGeneratorRequest | ||
*/ | ||
export type CodeGeneratorRequestJson = { | ||
/** | ||
* The .proto files that were explicitly listed on the command-line. The | ||
* code generator should generate code only for these files. Each file's | ||
* descriptor will be included in proto_file, below. | ||
* | ||
* @generated from field: repeated string file_to_generate = 1; | ||
@@ -131,2 +142,4 @@ */ | ||
/** | ||
* The generator parameter passed on the command-line. | ||
* | ||
* @generated from field: optional string parameter = 2; | ||
@@ -136,2 +149,22 @@ */ | ||
/** | ||
* FileDescriptorProtos for all files in files_to_generate and everything | ||
* they import. The files will appear in topological order, so each file | ||
* appears before any file that imports it. | ||
* | ||
* Note: the files listed in files_to_generate will include runtime-retention | ||
* options only, but all other files will include source-retention options. | ||
* The source_file_descriptors field below is available in case you need | ||
* source-retention options for files_to_generate. | ||
* | ||
* protoc guarantees that all proto_files will be written after | ||
* the fields above, even though this is not technically guaranteed by the | ||
* protobuf wire format. This theoretically could allow a plugin to stream | ||
* in the FileDescriptorProtos and handle them one by one rather than read | ||
* the entire set into memory at once. However, as of this writing, this | ||
* is not similarly optimized on protoc's end -- it will store all fields in | ||
* memory at once before sending them to the plugin. | ||
* | ||
* Type names of fields and extensions in the FileDescriptorProto are always | ||
* fully qualified. | ||
* | ||
* @generated from field: repeated google.protobuf.FileDescriptorProto proto_file = 15; | ||
@@ -141,2 +174,6 @@ */ | ||
/** | ||
* File descriptors with all options, including source-retention options. | ||
* These descriptors are only provided for the files listed in | ||
* files_to_generate. | ||
* | ||
* @generated from field: repeated google.protobuf.FileDescriptorProto source_file_descriptors = 17; | ||
@@ -146,2 +183,4 @@ */ | ||
/** | ||
* The version number of protocol compiler. | ||
* | ||
* @generated from field: optional google.protobuf.compiler.Version compiler_version = 3; | ||
@@ -206,6 +245,17 @@ */ | ||
/** | ||
* JSON type for the message google.protobuf.compiler.CodeGeneratorResponse. | ||
* The plugin writes an encoded CodeGeneratorResponse to stdout. | ||
* | ||
* @generated from message google.protobuf.compiler.CodeGeneratorResponse | ||
*/ | ||
export type CodeGeneratorResponseJson = { | ||
/** | ||
* Error message. If non-empty, code generation failed. The plugin process | ||
* should exit with status code zero even if it reports an error in this way. | ||
* | ||
* This should be used to indicate errors in .proto files which prevent the | ||
* code generator from generating correct code. Errors which indicate a | ||
* problem in protoc itself -- such as the input CodeGeneratorRequest being | ||
* unparseable -- should be reported by writing a message to stderr and | ||
* exiting with a non-zero status code. | ||
* | ||
* @generated from field: optional string error = 1; | ||
@@ -215,2 +265,5 @@ */ | ||
/** | ||
* A bitmask of supported features that the code generator supports. | ||
* This is a bitwise "or" of values from the Feature enum. | ||
* | ||
* @generated from field: optional uint64 supported_features = 2; | ||
@@ -220,2 +273,7 @@ */ | ||
/** | ||
* The minimum edition this plugin supports. This will be treated as an | ||
* Edition enum, but we want to allow unknown values. It should be specified | ||
* according the edition enum value, *not* the edition number. Only takes | ||
* effect for plugins that have FEATURE_SUPPORTS_EDITIONS set. | ||
* | ||
* @generated from field: optional int32 minimum_edition = 3; | ||
@@ -225,2 +283,7 @@ */ | ||
/** | ||
* The maximum edition this plugin supports. This will be treated as an | ||
* Edition enum, but we want to allow unknown values. It should be specified | ||
* according the edition enum value, *not* the edition number. Only takes | ||
* effect for plugins that have FEATURE_SUPPORTS_EDITIONS set. | ||
* | ||
* @generated from field: optional int32 maximum_edition = 4; | ||
@@ -319,6 +382,20 @@ */ | ||
/** | ||
* JSON type for the message google.protobuf.compiler.CodeGeneratorResponse.File. | ||
* Represents a single generated file. | ||
* | ||
* @generated from message google.protobuf.compiler.CodeGeneratorResponse.File | ||
*/ | ||
export type CodeGeneratorResponse_FileJson = { | ||
/** | ||
* The file name, relative to the output directory. The name must not | ||
* contain "." or ".." components and must be relative, not be absolute (so, | ||
* the file cannot lie outside the output directory). "/" must be used as | ||
* the path separator, not "\". | ||
* | ||
* If the name is omitted, the content will be appended to the previous | ||
* file. This allows the generator to break large files into small chunks, | ||
* and allows the generated text to be streamed back to protoc so that large | ||
* files need not reside completely in memory at one time. Note that as of | ||
* this writing protoc does not optimize for this -- it will read the entire | ||
* CodeGeneratorResponse before writing files to disk. | ||
* | ||
* @generated from field: optional string name = 1; | ||
@@ -328,2 +405,40 @@ */ | ||
/** | ||
* If non-empty, indicates that the named file should already exist, and the | ||
* content here is to be inserted into that file at a defined insertion | ||
* point. This feature allows a code generator to extend the output | ||
* produced by another code generator. The original generator may provide | ||
* insertion points by placing special annotations in the file that look | ||
* like: | ||
* @@protoc_insertion_point(NAME) | ||
* The annotation can have arbitrary text before and after it on the line, | ||
* which allows it to be placed in a comment. NAME should be replaced with | ||
* an identifier naming the point -- this is what other generators will use | ||
* as the insertion_point. Code inserted at this point will be placed | ||
* immediately above the line containing the insertion point (thus multiple | ||
* insertions to the same point will come out in the order they were added). | ||
* The double-@ is intended to make it unlikely that the generated code | ||
* could contain things that look like insertion points by accident. | ||
* | ||
* For example, the C++ code generator places the following line in the | ||
* .pb.h files that it generates: | ||
* // @@protoc_insertion_point(namespace_scope) | ||
* This line appears within the scope of the file's package namespace, but | ||
* outside of any particular class. Another plugin can then specify the | ||
* insertion_point "namespace_scope" to generate additional classes or | ||
* other declarations that should be placed in this scope. | ||
* | ||
* Note that if the line containing the insertion point begins with | ||
* whitespace, the same whitespace will be added to every line of the | ||
* inserted text. This is useful for languages like Python, where | ||
* indentation matters. In these languages, the insertion point comment | ||
* should be indented the same amount as any inserted code will need to be | ||
* in order to work correctly in that context. | ||
* | ||
* The code generator that generates the initial file and the one which | ||
* inserts into it must both run as part of a single invocation of protoc. | ||
* Code generators are executed in the order in which they appear on the | ||
* command line. | ||
* | ||
* If |insertion_point| is present, |name| must also be present. | ||
* | ||
* @generated from field: optional string insertion_point = 2; | ||
@@ -333,2 +448,4 @@ */ | ||
/** | ||
* The file contents. | ||
* | ||
* @generated from field: optional string content = 15; | ||
@@ -338,2 +455,6 @@ */ | ||
/** | ||
* Information describing the file content being inserted. If an insertion | ||
* point is used, this information will be appropriately offset and inserted | ||
* into the code generation metadata for the generated files. | ||
* | ||
* @generated from field: optional google.protobuf.GeneratedCodeInfo generated_code_info = 16; | ||
@@ -368,3 +489,5 @@ */ | ||
/** | ||
* JSON type for the enum google.protobuf.compiler.CodeGeneratorResponse.Feature. | ||
* Sync with code_generator.h. | ||
* | ||
* @generated from enum google.protobuf.compiler.CodeGeneratorResponse.Feature | ||
*/ | ||
@@ -371,0 +494,0 @@ export type CodeGeneratorResponse_FeatureJson = "FEATURE_NONE" | "FEATURE_PROTO3_OPTIONAL" | "FEATURE_SUPPORTS_EDITIONS"; |
@@ -20,3 +20,3 @@ // Copyright 2021-2024 Buf Technologies, Inc. | ||
*/ | ||
export const file_google_protobuf_descriptor = /*@__PURE__*/ boot({ "name": "google/protobuf/descriptor.proto", "package": "google.protobuf", "messageType": [{ "name": "FileDescriptorSet", "field": [{ "name": "file", "number": 1, "type": 11, "label": 3, "typeName": ".google.protobuf.FileDescriptorProto" }] }, { "name": "FileDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "package", "number": 2, "type": 9, "label": 1 }, { "name": "dependency", "number": 3, "type": 9, "label": 3 }, { "name": "public_dependency", "number": 10, "type": 5, "label": 3 }, { "name": "weak_dependency", "number": 11, "type": 5, "label": 3 }, { "name": "message_type", "number": 4, "type": 11, "label": 3, "typeName": ".google.protobuf.DescriptorProto" }, { "name": "enum_type", "number": 5, "type": 11, "label": 3, "typeName": ".google.protobuf.EnumDescriptorProto" }, { "name": "service", "number": 6, "type": 11, "label": 3, "typeName": ".google.protobuf.ServiceDescriptorProto" }, { "name": "extension", "number": 7, "type": 11, "label": 3, "typeName": ".google.protobuf.FieldDescriptorProto" }, { "name": "options", "number": 8, "type": 11, "label": 1, "typeName": ".google.protobuf.FileOptions" }, { "name": "source_code_info", "number": 9, "type": 11, "label": 1, "typeName": ".google.protobuf.SourceCodeInfo" }, { "name": "syntax", "number": 12, "type": 9, "label": 1 }, { "name": "edition", "number": 14, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }] }, { "name": "DescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "field", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.FieldDescriptorProto" }, { "name": "extension", "number": 6, "type": 11, "label": 3, "typeName": ".google.protobuf.FieldDescriptorProto" }, { "name": "nested_type", "number": 3, "type": 11, "label": 3, "typeName": ".google.protobuf.DescriptorProto" }, { "name": "enum_type", "number": 4, "type": 11, "label": 3, "typeName": ".google.protobuf.EnumDescriptorProto" }, { "name": "extension_range", "number": 5, "type": 11, "label": 3, "typeName": ".google.protobuf.DescriptorProto.ExtensionRange" }, { "name": "oneof_decl", "number": 8, "type": 11, "label": 3, "typeName": ".google.protobuf.OneofDescriptorProto" }, { "name": "options", "number": 7, "type": 11, "label": 1, "typeName": ".google.protobuf.MessageOptions" }, { "name": "reserved_range", "number": 9, "type": 11, "label": 3, "typeName": ".google.protobuf.DescriptorProto.ReservedRange" }, { "name": "reserved_name", "number": 10, "type": 9, "label": 3 }], "nestedType": [{ "name": "ExtensionRange", "field": [{ "name": "start", "number": 1, "type": 5, "label": 1 }, { "name": "end", "number": 2, "type": 5, "label": 1 }, { "name": "options", "number": 3, "type": 11, "label": 1, "typeName": ".google.protobuf.ExtensionRangeOptions" }] }, { "name": "ReservedRange", "field": [{ "name": "start", "number": 1, "type": 5, "label": 1 }, { "name": "end", "number": 2, "type": 5, "label": 1 }] }] }, { "name": "ExtensionRangeOptions", "field": [{ "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }, { "name": "declaration", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.ExtensionRangeOptions.Declaration", "options": { "retention": 2 } }, { "name": "features", "number": 50, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "verification", "number": 3, "type": 14, "label": 1, "typeName": ".google.protobuf.ExtensionRangeOptions.VerificationState", "defaultValue": "UNVERIFIED", "options": { "retention": 2 } }], "nestedType": [{ "name": "Declaration", "field": [{ "name": "number", "number": 1, "type": 5, "label": 1 }, { "name": "full_name", "number": 2, "type": 9, "label": 1 }, { "name": "type", "number": 3, "type": 9, "label": 1 }, { "name": "reserved", "number": 5, "type": 8, "label": 1 }, { "name": "repeated", "number": 6, "type": 8, "label": 1 }] }], "enumType": [{ "name": "VerificationState", "value": [{ "name": "DECLARATION", "number": 0 }, { "name": "UNVERIFIED", "number": 1 }] }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "FieldDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "number", "number": 3, "type": 5, "label": 1 }, { "name": "label", "number": 4, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldDescriptorProto.Label" }, { "name": "type", "number": 5, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldDescriptorProto.Type" }, { "name": "type_name", "number": 6, "type": 9, "label": 1 }, { "name": "extendee", "number": 2, "type": 9, "label": 1 }, { "name": "default_value", "number": 7, "type": 9, "label": 1 }, { "name": "oneof_index", "number": 9, "type": 5, "label": 1 }, { "name": "json_name", "number": 10, "type": 9, "label": 1 }, { "name": "options", "number": 8, "type": 11, "label": 1, "typeName": ".google.protobuf.FieldOptions" }, { "name": "proto3_optional", "number": 17, "type": 8, "label": 1 }], "enumType": [{ "name": "Type", "value": [{ "name": "TYPE_DOUBLE", "number": 1 }, { "name": "TYPE_FLOAT", "number": 2 }, { "name": "TYPE_INT64", "number": 3 }, { "name": "TYPE_UINT64", "number": 4 }, { "name": "TYPE_INT32", "number": 5 }, { "name": "TYPE_FIXED64", "number": 6 }, { "name": "TYPE_FIXED32", "number": 7 }, { "name": "TYPE_BOOL", "number": 8 }, { "name": "TYPE_STRING", "number": 9 }, { "name": "TYPE_GROUP", "number": 10 }, { "name": "TYPE_MESSAGE", "number": 11 }, { "name": "TYPE_BYTES", "number": 12 }, { "name": "TYPE_UINT32", "number": 13 }, { "name": "TYPE_ENUM", "number": 14 }, { "name": "TYPE_SFIXED32", "number": 15 }, { "name": "TYPE_SFIXED64", "number": 16 }, { "name": "TYPE_SINT32", "number": 17 }, { "name": "TYPE_SINT64", "number": 18 }] }, { "name": "Label", "value": [{ "name": "LABEL_OPTIONAL", "number": 1 }, { "name": "LABEL_REPEATED", "number": 3 }, { "name": "LABEL_REQUIRED", "number": 2 }] }] }, { "name": "OneofDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "options", "number": 2, "type": 11, "label": 1, "typeName": ".google.protobuf.OneofOptions" }] }, { "name": "EnumDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "value", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.EnumValueDescriptorProto" }, { "name": "options", "number": 3, "type": 11, "label": 1, "typeName": ".google.protobuf.EnumOptions" }, { "name": "reserved_range", "number": 4, "type": 11, "label": 3, "typeName": ".google.protobuf.EnumDescriptorProto.EnumReservedRange" }, { "name": "reserved_name", "number": 5, "type": 9, "label": 3 }], "nestedType": [{ "name": "EnumReservedRange", "field": [{ "name": "start", "number": 1, "type": 5, "label": 1 }, { "name": "end", "number": 2, "type": 5, "label": 1 }] }] }, { "name": "EnumValueDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "number", "number": 2, "type": 5, "label": 1 }, { "name": "options", "number": 3, "type": 11, "label": 1, "typeName": ".google.protobuf.EnumValueOptions" }] }, { "name": "ServiceDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "method", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.MethodDescriptorProto" }, { "name": "options", "number": 3, "type": 11, "label": 1, "typeName": ".google.protobuf.ServiceOptions" }] }, { "name": "MethodDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "input_type", "number": 2, "type": 9, "label": 1 }, { "name": "output_type", "number": 3, "type": 9, "label": 1 }, { "name": "options", "number": 4, "type": 11, "label": 1, "typeName": ".google.protobuf.MethodOptions" }, { "name": "client_streaming", "number": 5, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "server_streaming", "number": 6, "type": 8, "label": 1, "defaultValue": "false" }] }, { "name": "FileOptions", "field": [{ "name": "java_package", "number": 1, "type": 9, "label": 1 }, { "name": "java_outer_classname", "number": 8, "type": 9, "label": 1 }, { "name": "java_multiple_files", "number": 10, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "java_generate_equals_and_hash", "number": 20, "type": 8, "label": 1, "options": { "deprecated": true } }, { "name": "java_string_check_utf8", "number": 27, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "optimize_for", "number": 9, "type": 14, "label": 1, "typeName": ".google.protobuf.FileOptions.OptimizeMode", "defaultValue": "SPEED" }, { "name": "go_package", "number": 11, "type": 9, "label": 1 }, { "name": "cc_generic_services", "number": 16, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "java_generic_services", "number": 17, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "py_generic_services", "number": 18, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "deprecated", "number": 23, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "cc_enable_arenas", "number": 31, "type": 8, "label": 1, "defaultValue": "true" }, { "name": "objc_class_prefix", "number": 36, "type": 9, "label": 1 }, { "name": "csharp_namespace", "number": 37, "type": 9, "label": 1 }, { "name": "swift_prefix", "number": 39, "type": 9, "label": 1 }, { "name": "php_class_prefix", "number": 40, "type": 9, "label": 1 }, { "name": "php_namespace", "number": 41, "type": 9, "label": 1 }, { "name": "php_metadata_namespace", "number": 44, "type": 9, "label": 1 }, { "name": "ruby_package", "number": 45, "type": 9, "label": 1 }, { "name": "features", "number": 50, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "enumType": [{ "name": "OptimizeMode", "value": [{ "name": "SPEED", "number": 1 }, { "name": "CODE_SIZE", "number": 2 }, { "name": "LITE_RUNTIME", "number": 3 }] }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "MessageOptions", "field": [{ "name": "message_set_wire_format", "number": 1, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "no_standard_descriptor_accessor", "number": 2, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "deprecated", "number": 3, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "map_entry", "number": 7, "type": 8, "label": 1 }, { "name": "deprecated_legacy_json_field_conflicts", "number": 11, "type": 8, "label": 1, "options": { "deprecated": true } }, { "name": "features", "number": 12, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "FieldOptions", "field": [{ "name": "ctype", "number": 1, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldOptions.CType", "defaultValue": "STRING" }, { "name": "packed", "number": 2, "type": 8, "label": 1 }, { "name": "jstype", "number": 6, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldOptions.JSType", "defaultValue": "JS_NORMAL" }, { "name": "lazy", "number": 5, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "unverified_lazy", "number": 15, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "deprecated", "number": 3, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "weak", "number": 10, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "debug_redact", "number": 16, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "retention", "number": 17, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldOptions.OptionRetention" }, { "name": "targets", "number": 19, "type": 14, "label": 3, "typeName": ".google.protobuf.FieldOptions.OptionTargetType" }, { "name": "edition_defaults", "number": 20, "type": 11, "label": 3, "typeName": ".google.protobuf.FieldOptions.EditionDefault" }, { "name": "features", "number": 21, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "feature_support", "number": 22, "type": 11, "label": 1, "typeName": ".google.protobuf.FieldOptions.FeatureSupport" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "nestedType": [{ "name": "EditionDefault", "field": [{ "name": "edition", "number": 3, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "value", "number": 2, "type": 9, "label": 1 }] }, { "name": "FeatureSupport", "field": [{ "name": "edition_introduced", "number": 1, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "edition_deprecated", "number": 2, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "deprecation_warning", "number": 3, "type": 9, "label": 1 }, { "name": "edition_removed", "number": 4, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }] }], "enumType": [{ "name": "CType", "value": [{ "name": "STRING", "number": 0 }, { "name": "CORD", "number": 1 }, { "name": "STRING_PIECE", "number": 2 }] }, { "name": "JSType", "value": [{ "name": "JS_NORMAL", "number": 0 }, { "name": "JS_STRING", "number": 1 }, { "name": "JS_NUMBER", "number": 2 }] }, { "name": "OptionRetention", "value": [{ "name": "RETENTION_UNKNOWN", "number": 0 }, { "name": "RETENTION_RUNTIME", "number": 1 }, { "name": "RETENTION_SOURCE", "number": 2 }] }, { "name": "OptionTargetType", "value": [{ "name": "TARGET_TYPE_UNKNOWN", "number": 0 }, { "name": "TARGET_TYPE_FILE", "number": 1 }, { "name": "TARGET_TYPE_EXTENSION_RANGE", "number": 2 }, { "name": "TARGET_TYPE_MESSAGE", "number": 3 }, { "name": "TARGET_TYPE_FIELD", "number": 4 }, { "name": "TARGET_TYPE_ONEOF", "number": 5 }, { "name": "TARGET_TYPE_ENUM", "number": 6 }, { "name": "TARGET_TYPE_ENUM_ENTRY", "number": 7 }, { "name": "TARGET_TYPE_SERVICE", "number": 8 }, { "name": "TARGET_TYPE_METHOD", "number": 9 }] }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "OneofOptions", "field": [{ "name": "features", "number": 1, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "EnumOptions", "field": [{ "name": "allow_alias", "number": 2, "type": 8, "label": 1 }, { "name": "deprecated", "number": 3, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "deprecated_legacy_json_field_conflicts", "number": 6, "type": 8, "label": 1, "options": { "deprecated": true } }, { "name": "features", "number": 7, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "EnumValueOptions", "field": [{ "name": "deprecated", "number": 1, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "features", "number": 2, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "debug_redact", "number": 3, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "feature_support", "number": 4, "type": 11, "label": 1, "typeName": ".google.protobuf.FieldOptions.FeatureSupport" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "ServiceOptions", "field": [{ "name": "features", "number": 34, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "deprecated", "number": 33, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "MethodOptions", "field": [{ "name": "deprecated", "number": 33, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "idempotency_level", "number": 34, "type": 14, "label": 1, "typeName": ".google.protobuf.MethodOptions.IdempotencyLevel", "defaultValue": "IDEMPOTENCY_UNKNOWN" }, { "name": "features", "number": 35, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "enumType": [{ "name": "IdempotencyLevel", "value": [{ "name": "IDEMPOTENCY_UNKNOWN", "number": 0 }, { "name": "NO_SIDE_EFFECTS", "number": 1 }, { "name": "IDEMPOTENT", "number": 2 }] }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "UninterpretedOption", "field": [{ "name": "name", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption.NamePart" }, { "name": "identifier_value", "number": 3, "type": 9, "label": 1 }, { "name": "positive_int_value", "number": 4, "type": 4, "label": 1 }, { "name": "negative_int_value", "number": 5, "type": 3, "label": 1 }, { "name": "double_value", "number": 6, "type": 1, "label": 1 }, { "name": "string_value", "number": 7, "type": 12, "label": 1 }, { "name": "aggregate_value", "number": 8, "type": 9, "label": 1 }], "nestedType": [{ "name": "NamePart", "field": [{ "name": "name_part", "number": 1, "type": 9, "label": 2 }, { "name": "is_extension", "number": 2, "type": 8, "label": 2 }] }] }, { "name": "FeatureSet", "field": [{ "name": "field_presence", "number": 1, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.FieldPresence", "options": { "retention": 1, "targets": [4, 1], "editionDefaults": [{ "value": "EXPLICIT", "edition": 998 }, { "value": "IMPLICIT", "edition": 999 }, { "value": "EXPLICIT", "edition": 1000 }] } }, { "name": "enum_type", "number": 2, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.EnumType", "options": { "retention": 1, "targets": [6, 1], "editionDefaults": [{ "value": "CLOSED", "edition": 998 }, { "value": "OPEN", "edition": 999 }] } }, { "name": "repeated_field_encoding", "number": 3, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.RepeatedFieldEncoding", "options": { "retention": 1, "targets": [4, 1], "editionDefaults": [{ "value": "EXPANDED", "edition": 998 }, { "value": "PACKED", "edition": 999 }] } }, { "name": "utf8_validation", "number": 4, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.Utf8Validation", "options": { "retention": 1, "targets": [4, 1], "editionDefaults": [{ "value": "NONE", "edition": 998 }, { "value": "VERIFY", "edition": 999 }] } }, { "name": "message_encoding", "number": 5, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.MessageEncoding", "options": { "retention": 1, "targets": [4, 1], "editionDefaults": [{ "value": "LENGTH_PREFIXED", "edition": 998 }] } }, { "name": "json_format", "number": 6, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.JsonFormat", "options": { "retention": 1, "targets": [3, 6, 1], "editionDefaults": [{ "value": "LEGACY_BEST_EFFORT", "edition": 998 }, { "value": "ALLOW", "edition": 999 }] } }], "enumType": [{ "name": "FieldPresence", "value": [{ "name": "FIELD_PRESENCE_UNKNOWN", "number": 0 }, { "name": "EXPLICIT", "number": 1 }, { "name": "IMPLICIT", "number": 2 }, { "name": "LEGACY_REQUIRED", "number": 3 }] }, { "name": "EnumType", "value": [{ "name": "ENUM_TYPE_UNKNOWN", "number": 0 }, { "name": "OPEN", "number": 1 }, { "name": "CLOSED", "number": 2 }] }, { "name": "RepeatedFieldEncoding", "value": [{ "name": "REPEATED_FIELD_ENCODING_UNKNOWN", "number": 0 }, { "name": "PACKED", "number": 1 }, { "name": "EXPANDED", "number": 2 }] }, { "name": "Utf8Validation", "value": [{ "name": "UTF8_VALIDATION_UNKNOWN", "number": 0 }, { "name": "VERIFY", "number": 2 }, { "name": "NONE", "number": 3 }] }, { "name": "MessageEncoding", "value": [{ "name": "MESSAGE_ENCODING_UNKNOWN", "number": 0 }, { "name": "LENGTH_PREFIXED", "number": 1 }, { "name": "DELIMITED", "number": 2 }] }, { "name": "JsonFormat", "value": [{ "name": "JSON_FORMAT_UNKNOWN", "number": 0 }, { "name": "ALLOW", "number": 1 }, { "name": "LEGACY_BEST_EFFORT", "number": 2 }] }], "extensionRange": [{ "start": 1000, "end": 9995 }, { "start": 9995, "end": 10000 }, { "start": 10000, "end": 10001 }] }, { "name": "FeatureSetDefaults", "field": [{ "name": "defaults", "number": 1, "type": 11, "label": 3, "typeName": ".google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault" }, { "name": "minimum_edition", "number": 4, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "maximum_edition", "number": 5, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }], "nestedType": [{ "name": "FeatureSetEditionDefault", "field": [{ "name": "edition", "number": 3, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "overridable_features", "number": 4, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "fixed_features", "number": 5, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }] }] }, { "name": "SourceCodeInfo", "field": [{ "name": "location", "number": 1, "type": 11, "label": 3, "typeName": ".google.protobuf.SourceCodeInfo.Location" }], "nestedType": [{ "name": "Location", "field": [{ "name": "path", "number": 1, "type": 5, "label": 3, "options": { "packed": true } }, { "name": "span", "number": 2, "type": 5, "label": 3, "options": { "packed": true } }, { "name": "leading_comments", "number": 3, "type": 9, "label": 1 }, { "name": "trailing_comments", "number": 4, "type": 9, "label": 1 }, { "name": "leading_detached_comments", "number": 6, "type": 9, "label": 3 }] }] }, { "name": "GeneratedCodeInfo", "field": [{ "name": "annotation", "number": 1, "type": 11, "label": 3, "typeName": ".google.protobuf.GeneratedCodeInfo.Annotation" }], "nestedType": [{ "name": "Annotation", "field": [{ "name": "path", "number": 1, "type": 5, "label": 3, "options": { "packed": true } }, { "name": "source_file", "number": 2, "type": 9, "label": 1 }, { "name": "begin", "number": 3, "type": 5, "label": 1 }, { "name": "end", "number": 4, "type": 5, "label": 1 }, { "name": "semantic", "number": 5, "type": 14, "label": 1, "typeName": ".google.protobuf.GeneratedCodeInfo.Annotation.Semantic" }], "enumType": [{ "name": "Semantic", "value": [{ "name": "NONE", "number": 0 }, { "name": "SET", "number": 1 }, { "name": "ALIAS", "number": 2 }] }] }] }], "enumType": [{ "name": "Edition", "value": [{ "name": "EDITION_UNKNOWN", "number": 0 }, { "name": "EDITION_LEGACY", "number": 900 }, { "name": "EDITION_PROTO2", "number": 998 }, { "name": "EDITION_PROTO3", "number": 999 }, { "name": "EDITION_2023", "number": 1000 }, { "name": "EDITION_2024", "number": 1001 }, { "name": "EDITION_1_TEST_ONLY", "number": 1 }, { "name": "EDITION_2_TEST_ONLY", "number": 2 }, { "name": "EDITION_99997_TEST_ONLY", "number": 99997 }, { "name": "EDITION_99998_TEST_ONLY", "number": 99998 }, { "name": "EDITION_99999_TEST_ONLY", "number": 99999 }, { "name": "EDITION_MAX", "number": 2147483647 }] }] }); | ||
export const file_google_protobuf_descriptor = /*@__PURE__*/ boot({ "name": "google/protobuf/descriptor.proto", "package": "google.protobuf", "messageType": [{ "name": "FileDescriptorSet", "field": [{ "name": "file", "number": 1, "type": 11, "label": 3, "typeName": ".google.protobuf.FileDescriptorProto" }] }, { "name": "FileDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "package", "number": 2, "type": 9, "label": 1 }, { "name": "dependency", "number": 3, "type": 9, "label": 3 }, { "name": "public_dependency", "number": 10, "type": 5, "label": 3 }, { "name": "weak_dependency", "number": 11, "type": 5, "label": 3 }, { "name": "message_type", "number": 4, "type": 11, "label": 3, "typeName": ".google.protobuf.DescriptorProto" }, { "name": "enum_type", "number": 5, "type": 11, "label": 3, "typeName": ".google.protobuf.EnumDescriptorProto" }, { "name": "service", "number": 6, "type": 11, "label": 3, "typeName": ".google.protobuf.ServiceDescriptorProto" }, { "name": "extension", "number": 7, "type": 11, "label": 3, "typeName": ".google.protobuf.FieldDescriptorProto" }, { "name": "options", "number": 8, "type": 11, "label": 1, "typeName": ".google.protobuf.FileOptions" }, { "name": "source_code_info", "number": 9, "type": 11, "label": 1, "typeName": ".google.protobuf.SourceCodeInfo" }, { "name": "syntax", "number": 12, "type": 9, "label": 1 }, { "name": "edition", "number": 14, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }] }, { "name": "DescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "field", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.FieldDescriptorProto" }, { "name": "extension", "number": 6, "type": 11, "label": 3, "typeName": ".google.protobuf.FieldDescriptorProto" }, { "name": "nested_type", "number": 3, "type": 11, "label": 3, "typeName": ".google.protobuf.DescriptorProto" }, { "name": "enum_type", "number": 4, "type": 11, "label": 3, "typeName": ".google.protobuf.EnumDescriptorProto" }, { "name": "extension_range", "number": 5, "type": 11, "label": 3, "typeName": ".google.protobuf.DescriptorProto.ExtensionRange" }, { "name": "oneof_decl", "number": 8, "type": 11, "label": 3, "typeName": ".google.protobuf.OneofDescriptorProto" }, { "name": "options", "number": 7, "type": 11, "label": 1, "typeName": ".google.protobuf.MessageOptions" }, { "name": "reserved_range", "number": 9, "type": 11, "label": 3, "typeName": ".google.protobuf.DescriptorProto.ReservedRange" }, { "name": "reserved_name", "number": 10, "type": 9, "label": 3 }], "nestedType": [{ "name": "ExtensionRange", "field": [{ "name": "start", "number": 1, "type": 5, "label": 1 }, { "name": "end", "number": 2, "type": 5, "label": 1 }, { "name": "options", "number": 3, "type": 11, "label": 1, "typeName": ".google.protobuf.ExtensionRangeOptions" }] }, { "name": "ReservedRange", "field": [{ "name": "start", "number": 1, "type": 5, "label": 1 }, { "name": "end", "number": 2, "type": 5, "label": 1 }] }] }, { "name": "ExtensionRangeOptions", "field": [{ "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }, { "name": "declaration", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.ExtensionRangeOptions.Declaration", "options": { "retention": 2 } }, { "name": "features", "number": 50, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "verification", "number": 3, "type": 14, "label": 1, "typeName": ".google.protobuf.ExtensionRangeOptions.VerificationState", "defaultValue": "UNVERIFIED", "options": { "retention": 2 } }], "nestedType": [{ "name": "Declaration", "field": [{ "name": "number", "number": 1, "type": 5, "label": 1 }, { "name": "full_name", "number": 2, "type": 9, "label": 1 }, { "name": "type", "number": 3, "type": 9, "label": 1 }, { "name": "reserved", "number": 5, "type": 8, "label": 1 }, { "name": "repeated", "number": 6, "type": 8, "label": 1 }] }], "enumType": [{ "name": "VerificationState", "value": [{ "name": "DECLARATION", "number": 0 }, { "name": "UNVERIFIED", "number": 1 }] }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "FieldDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "number", "number": 3, "type": 5, "label": 1 }, { "name": "label", "number": 4, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldDescriptorProto.Label" }, { "name": "type", "number": 5, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldDescriptorProto.Type" }, { "name": "type_name", "number": 6, "type": 9, "label": 1 }, { "name": "extendee", "number": 2, "type": 9, "label": 1 }, { "name": "default_value", "number": 7, "type": 9, "label": 1 }, { "name": "oneof_index", "number": 9, "type": 5, "label": 1 }, { "name": "json_name", "number": 10, "type": 9, "label": 1 }, { "name": "options", "number": 8, "type": 11, "label": 1, "typeName": ".google.protobuf.FieldOptions" }, { "name": "proto3_optional", "number": 17, "type": 8, "label": 1 }], "enumType": [{ "name": "Type", "value": [{ "name": "TYPE_DOUBLE", "number": 1 }, { "name": "TYPE_FLOAT", "number": 2 }, { "name": "TYPE_INT64", "number": 3 }, { "name": "TYPE_UINT64", "number": 4 }, { "name": "TYPE_INT32", "number": 5 }, { "name": "TYPE_FIXED64", "number": 6 }, { "name": "TYPE_FIXED32", "number": 7 }, { "name": "TYPE_BOOL", "number": 8 }, { "name": "TYPE_STRING", "number": 9 }, { "name": "TYPE_GROUP", "number": 10 }, { "name": "TYPE_MESSAGE", "number": 11 }, { "name": "TYPE_BYTES", "number": 12 }, { "name": "TYPE_UINT32", "number": 13 }, { "name": "TYPE_ENUM", "number": 14 }, { "name": "TYPE_SFIXED32", "number": 15 }, { "name": "TYPE_SFIXED64", "number": 16 }, { "name": "TYPE_SINT32", "number": 17 }, { "name": "TYPE_SINT64", "number": 18 }] }, { "name": "Label", "value": [{ "name": "LABEL_OPTIONAL", "number": 1 }, { "name": "LABEL_REPEATED", "number": 3 }, { "name": "LABEL_REQUIRED", "number": 2 }] }] }, { "name": "OneofDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "options", "number": 2, "type": 11, "label": 1, "typeName": ".google.protobuf.OneofOptions" }] }, { "name": "EnumDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "value", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.EnumValueDescriptorProto" }, { "name": "options", "number": 3, "type": 11, "label": 1, "typeName": ".google.protobuf.EnumOptions" }, { "name": "reserved_range", "number": 4, "type": 11, "label": 3, "typeName": ".google.protobuf.EnumDescriptorProto.EnumReservedRange" }, { "name": "reserved_name", "number": 5, "type": 9, "label": 3 }], "nestedType": [{ "name": "EnumReservedRange", "field": [{ "name": "start", "number": 1, "type": 5, "label": 1 }, { "name": "end", "number": 2, "type": 5, "label": 1 }] }] }, { "name": "EnumValueDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "number", "number": 2, "type": 5, "label": 1 }, { "name": "options", "number": 3, "type": 11, "label": 1, "typeName": ".google.protobuf.EnumValueOptions" }] }, { "name": "ServiceDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "method", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.MethodDescriptorProto" }, { "name": "options", "number": 3, "type": 11, "label": 1, "typeName": ".google.protobuf.ServiceOptions" }] }, { "name": "MethodDescriptorProto", "field": [{ "name": "name", "number": 1, "type": 9, "label": 1 }, { "name": "input_type", "number": 2, "type": 9, "label": 1 }, { "name": "output_type", "number": 3, "type": 9, "label": 1 }, { "name": "options", "number": 4, "type": 11, "label": 1, "typeName": ".google.protobuf.MethodOptions" }, { "name": "client_streaming", "number": 5, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "server_streaming", "number": 6, "type": 8, "label": 1, "defaultValue": "false" }] }, { "name": "FileOptions", "field": [{ "name": "java_package", "number": 1, "type": 9, "label": 1 }, { "name": "java_outer_classname", "number": 8, "type": 9, "label": 1 }, { "name": "java_multiple_files", "number": 10, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "java_generate_equals_and_hash", "number": 20, "type": 8, "label": 1, "options": { "deprecated": true } }, { "name": "java_string_check_utf8", "number": 27, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "optimize_for", "number": 9, "type": 14, "label": 1, "typeName": ".google.protobuf.FileOptions.OptimizeMode", "defaultValue": "SPEED" }, { "name": "go_package", "number": 11, "type": 9, "label": 1 }, { "name": "cc_generic_services", "number": 16, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "java_generic_services", "number": 17, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "py_generic_services", "number": 18, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "deprecated", "number": 23, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "cc_enable_arenas", "number": 31, "type": 8, "label": 1, "defaultValue": "true" }, { "name": "objc_class_prefix", "number": 36, "type": 9, "label": 1 }, { "name": "csharp_namespace", "number": 37, "type": 9, "label": 1 }, { "name": "swift_prefix", "number": 39, "type": 9, "label": 1 }, { "name": "php_class_prefix", "number": 40, "type": 9, "label": 1 }, { "name": "php_namespace", "number": 41, "type": 9, "label": 1 }, { "name": "php_metadata_namespace", "number": 44, "type": 9, "label": 1 }, { "name": "ruby_package", "number": 45, "type": 9, "label": 1 }, { "name": "features", "number": 50, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "enumType": [{ "name": "OptimizeMode", "value": [{ "name": "SPEED", "number": 1 }, { "name": "CODE_SIZE", "number": 2 }, { "name": "LITE_RUNTIME", "number": 3 }] }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "MessageOptions", "field": [{ "name": "message_set_wire_format", "number": 1, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "no_standard_descriptor_accessor", "number": 2, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "deprecated", "number": 3, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "map_entry", "number": 7, "type": 8, "label": 1 }, { "name": "deprecated_legacy_json_field_conflicts", "number": 11, "type": 8, "label": 1, "options": { "deprecated": true } }, { "name": "features", "number": 12, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "FieldOptions", "field": [{ "name": "ctype", "number": 1, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldOptions.CType", "defaultValue": "STRING" }, { "name": "packed", "number": 2, "type": 8, "label": 1 }, { "name": "jstype", "number": 6, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldOptions.JSType", "defaultValue": "JS_NORMAL" }, { "name": "lazy", "number": 5, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "unverified_lazy", "number": 15, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "deprecated", "number": 3, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "weak", "number": 10, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "debug_redact", "number": 16, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "retention", "number": 17, "type": 14, "label": 1, "typeName": ".google.protobuf.FieldOptions.OptionRetention" }, { "name": "targets", "number": 19, "type": 14, "label": 3, "typeName": ".google.protobuf.FieldOptions.OptionTargetType" }, { "name": "edition_defaults", "number": 20, "type": 11, "label": 3, "typeName": ".google.protobuf.FieldOptions.EditionDefault" }, { "name": "features", "number": 21, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "feature_support", "number": 22, "type": 11, "label": 1, "typeName": ".google.protobuf.FieldOptions.FeatureSupport" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "nestedType": [{ "name": "EditionDefault", "field": [{ "name": "edition", "number": 3, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "value", "number": 2, "type": 9, "label": 1 }] }, { "name": "FeatureSupport", "field": [{ "name": "edition_introduced", "number": 1, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "edition_deprecated", "number": 2, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "deprecation_warning", "number": 3, "type": 9, "label": 1 }, { "name": "edition_removed", "number": 4, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }] }], "enumType": [{ "name": "CType", "value": [{ "name": "STRING", "number": 0 }, { "name": "CORD", "number": 1 }, { "name": "STRING_PIECE", "number": 2 }] }, { "name": "JSType", "value": [{ "name": "JS_NORMAL", "number": 0 }, { "name": "JS_STRING", "number": 1 }, { "name": "JS_NUMBER", "number": 2 }] }, { "name": "OptionRetention", "value": [{ "name": "RETENTION_UNKNOWN", "number": 0 }, { "name": "RETENTION_RUNTIME", "number": 1 }, { "name": "RETENTION_SOURCE", "number": 2 }] }, { "name": "OptionTargetType", "value": [{ "name": "TARGET_TYPE_UNKNOWN", "number": 0 }, { "name": "TARGET_TYPE_FILE", "number": 1 }, { "name": "TARGET_TYPE_EXTENSION_RANGE", "number": 2 }, { "name": "TARGET_TYPE_MESSAGE", "number": 3 }, { "name": "TARGET_TYPE_FIELD", "number": 4 }, { "name": "TARGET_TYPE_ONEOF", "number": 5 }, { "name": "TARGET_TYPE_ENUM", "number": 6 }, { "name": "TARGET_TYPE_ENUM_ENTRY", "number": 7 }, { "name": "TARGET_TYPE_SERVICE", "number": 8 }, { "name": "TARGET_TYPE_METHOD", "number": 9 }] }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "OneofOptions", "field": [{ "name": "features", "number": 1, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "EnumOptions", "field": [{ "name": "allow_alias", "number": 2, "type": 8, "label": 1 }, { "name": "deprecated", "number": 3, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "deprecated_legacy_json_field_conflicts", "number": 6, "type": 8, "label": 1, "options": { "deprecated": true } }, { "name": "features", "number": 7, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "EnumValueOptions", "field": [{ "name": "deprecated", "number": 1, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "features", "number": 2, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "debug_redact", "number": 3, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "feature_support", "number": 4, "type": 11, "label": 1, "typeName": ".google.protobuf.FieldOptions.FeatureSupport" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "ServiceOptions", "field": [{ "name": "features", "number": 34, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "deprecated", "number": 33, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "MethodOptions", "field": [{ "name": "deprecated", "number": 33, "type": 8, "label": 1, "defaultValue": "false" }, { "name": "idempotency_level", "number": 34, "type": 14, "label": 1, "typeName": ".google.protobuf.MethodOptions.IdempotencyLevel", "defaultValue": "IDEMPOTENCY_UNKNOWN" }, { "name": "features", "number": 35, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "uninterpreted_option", "number": 999, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption" }], "enumType": [{ "name": "IdempotencyLevel", "value": [{ "name": "IDEMPOTENCY_UNKNOWN", "number": 0 }, { "name": "NO_SIDE_EFFECTS", "number": 1 }, { "name": "IDEMPOTENT", "number": 2 }] }], "extensionRange": [{ "start": 1000, "end": 536870912 }] }, { "name": "UninterpretedOption", "field": [{ "name": "name", "number": 2, "type": 11, "label": 3, "typeName": ".google.protobuf.UninterpretedOption.NamePart" }, { "name": "identifier_value", "number": 3, "type": 9, "label": 1 }, { "name": "positive_int_value", "number": 4, "type": 4, "label": 1 }, { "name": "negative_int_value", "number": 5, "type": 3, "label": 1 }, { "name": "double_value", "number": 6, "type": 1, "label": 1 }, { "name": "string_value", "number": 7, "type": 12, "label": 1 }, { "name": "aggregate_value", "number": 8, "type": 9, "label": 1 }], "nestedType": [{ "name": "NamePart", "field": [{ "name": "name_part", "number": 1, "type": 9, "label": 2 }, { "name": "is_extension", "number": 2, "type": 8, "label": 2 }] }] }, { "name": "FeatureSet", "field": [{ "name": "field_presence", "number": 1, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.FieldPresence", "options": { "retention": 1, "targets": [4, 1], "editionDefaults": [{ "value": "EXPLICIT", "edition": 900 }, { "value": "IMPLICIT", "edition": 999 }, { "value": "EXPLICIT", "edition": 1000 }] } }, { "name": "enum_type", "number": 2, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.EnumType", "options": { "retention": 1, "targets": [6, 1], "editionDefaults": [{ "value": "CLOSED", "edition": 900 }, { "value": "OPEN", "edition": 999 }] } }, { "name": "repeated_field_encoding", "number": 3, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.RepeatedFieldEncoding", "options": { "retention": 1, "targets": [4, 1], "editionDefaults": [{ "value": "EXPANDED", "edition": 900 }, { "value": "PACKED", "edition": 999 }] } }, { "name": "utf8_validation", "number": 4, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.Utf8Validation", "options": { "retention": 1, "targets": [4, 1], "editionDefaults": [{ "value": "NONE", "edition": 900 }, { "value": "VERIFY", "edition": 999 }] } }, { "name": "message_encoding", "number": 5, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.MessageEncoding", "options": { "retention": 1, "targets": [4, 1], "editionDefaults": [{ "value": "LENGTH_PREFIXED", "edition": 900 }] } }, { "name": "json_format", "number": 6, "type": 14, "label": 1, "typeName": ".google.protobuf.FeatureSet.JsonFormat", "options": { "retention": 1, "targets": [3, 6, 1], "editionDefaults": [{ "value": "LEGACY_BEST_EFFORT", "edition": 900 }, { "value": "ALLOW", "edition": 999 }] } }], "enumType": [{ "name": "FieldPresence", "value": [{ "name": "FIELD_PRESENCE_UNKNOWN", "number": 0 }, { "name": "EXPLICIT", "number": 1 }, { "name": "IMPLICIT", "number": 2 }, { "name": "LEGACY_REQUIRED", "number": 3 }] }, { "name": "EnumType", "value": [{ "name": "ENUM_TYPE_UNKNOWN", "number": 0 }, { "name": "OPEN", "number": 1 }, { "name": "CLOSED", "number": 2 }] }, { "name": "RepeatedFieldEncoding", "value": [{ "name": "REPEATED_FIELD_ENCODING_UNKNOWN", "number": 0 }, { "name": "PACKED", "number": 1 }, { "name": "EXPANDED", "number": 2 }] }, { "name": "Utf8Validation", "value": [{ "name": "UTF8_VALIDATION_UNKNOWN", "number": 0 }, { "name": "VERIFY", "number": 2 }, { "name": "NONE", "number": 3 }] }, { "name": "MessageEncoding", "value": [{ "name": "MESSAGE_ENCODING_UNKNOWN", "number": 0 }, { "name": "LENGTH_PREFIXED", "number": 1 }, { "name": "DELIMITED", "number": 2 }] }, { "name": "JsonFormat", "value": [{ "name": "JSON_FORMAT_UNKNOWN", "number": 0 }, { "name": "ALLOW", "number": 1 }, { "name": "LEGACY_BEST_EFFORT", "number": 2 }] }], "extensionRange": [{ "start": 1000, "end": 9995 }, { "start": 9995, "end": 10000 }, { "start": 10000, "end": 10001 }] }, { "name": "FeatureSetDefaults", "field": [{ "name": "defaults", "number": 1, "type": 11, "label": 3, "typeName": ".google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault" }, { "name": "minimum_edition", "number": 4, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "maximum_edition", "number": 5, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }], "nestedType": [{ "name": "FeatureSetEditionDefault", "field": [{ "name": "edition", "number": 3, "type": 14, "label": 1, "typeName": ".google.protobuf.Edition" }, { "name": "overridable_features", "number": 4, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }, { "name": "fixed_features", "number": 5, "type": 11, "label": 1, "typeName": ".google.protobuf.FeatureSet" }] }] }, { "name": "SourceCodeInfo", "field": [{ "name": "location", "number": 1, "type": 11, "label": 3, "typeName": ".google.protobuf.SourceCodeInfo.Location" }], "nestedType": [{ "name": "Location", "field": [{ "name": "path", "number": 1, "type": 5, "label": 3, "options": { "packed": true } }, { "name": "span", "number": 2, "type": 5, "label": 3, "options": { "packed": true } }, { "name": "leading_comments", "number": 3, "type": 9, "label": 1 }, { "name": "trailing_comments", "number": 4, "type": 9, "label": 1 }, { "name": "leading_detached_comments", "number": 6, "type": 9, "label": 3 }] }] }, { "name": "GeneratedCodeInfo", "field": [{ "name": "annotation", "number": 1, "type": 11, "label": 3, "typeName": ".google.protobuf.GeneratedCodeInfo.Annotation" }], "nestedType": [{ "name": "Annotation", "field": [{ "name": "path", "number": 1, "type": 5, "label": 3, "options": { "packed": true } }, { "name": "source_file", "number": 2, "type": 9, "label": 1 }, { "name": "begin", "number": 3, "type": 5, "label": 1 }, { "name": "end", "number": 4, "type": 5, "label": 1 }, { "name": "semantic", "number": 5, "type": 14, "label": 1, "typeName": ".google.protobuf.GeneratedCodeInfo.Annotation.Semantic" }], "enumType": [{ "name": "Semantic", "value": [{ "name": "NONE", "number": 0 }, { "name": "SET", "number": 1 }, { "name": "ALIAS", "number": 2 }] }] }] }], "enumType": [{ "name": "Edition", "value": [{ "name": "EDITION_UNKNOWN", "number": 0 }, { "name": "EDITION_LEGACY", "number": 900 }, { "name": "EDITION_PROTO2", "number": 998 }, { "name": "EDITION_PROTO3", "number": 999 }, { "name": "EDITION_2023", "number": 1000 }, { "name": "EDITION_2024", "number": 1001 }, { "name": "EDITION_1_TEST_ONLY", "number": 1 }, { "name": "EDITION_2_TEST_ONLY", "number": 2 }, { "name": "EDITION_99997_TEST_ONLY", "number": 99997 }, { "name": "EDITION_99998_TEST_ONLY", "number": 99998 }, { "name": "EDITION_99999_TEST_ONLY", "number": 99999 }, { "name": "EDITION_MAX", "number": 2147483647 }] }] }); | ||
/** | ||
@@ -23,0 +23,0 @@ * Describes the message google.protobuf.FileDescriptorSet. |
@@ -92,3 +92,63 @@ import type { GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.Duration. | ||
* A Duration represents a signed, fixed-length span of time represented | ||
* as a count of seconds and fractions of seconds at nanosecond | ||
* resolution. It is independent of any calendar and concepts like "day" | ||
* or "month". It is related to Timestamp in that the difference between | ||
* two Timestamp values is a Duration and it can be added or subtracted | ||
* from a Timestamp. Range is approximately +-10,000 years. | ||
* | ||
* # Examples | ||
* | ||
* Example 1: Compute Duration from two Timestamps in pseudo code. | ||
* | ||
* Timestamp start = ...; | ||
* Timestamp end = ...; | ||
* Duration duration = ...; | ||
* | ||
* duration.seconds = end.seconds - start.seconds; | ||
* duration.nanos = end.nanos - start.nanos; | ||
* | ||
* if (duration.seconds < 0 && duration.nanos > 0) { | ||
* duration.seconds += 1; | ||
* duration.nanos -= 1000000000; | ||
* } else if (duration.seconds > 0 && duration.nanos < 0) { | ||
* duration.seconds -= 1; | ||
* duration.nanos += 1000000000; | ||
* } | ||
* | ||
* Example 2: Compute Timestamp from Timestamp + Duration in pseudo code. | ||
* | ||
* Timestamp start = ...; | ||
* Duration duration = ...; | ||
* Timestamp end = ...; | ||
* | ||
* end.seconds = start.seconds + duration.seconds; | ||
* end.nanos = start.nanos + duration.nanos; | ||
* | ||
* if (end.nanos < 0) { | ||
* end.seconds -= 1; | ||
* end.nanos += 1000000000; | ||
* } else if (end.nanos >= 1000000000) { | ||
* end.seconds += 1; | ||
* end.nanos -= 1000000000; | ||
* } | ||
* | ||
* Example 3: Compute Duration from datetime.timedelta in Python. | ||
* | ||
* td = datetime.timedelta(days=3, minutes=10) | ||
* duration = Duration() | ||
* duration.FromTimedelta(td) | ||
* | ||
* # JSON Mapping | ||
* | ||
* In JSON format, the Duration type is encoded as a string rather than an | ||
* object, where the string ends in the suffix "s" (indicating seconds) and | ||
* is preceded by the number of seconds, with nanoseconds expressed as | ||
* fractional seconds. For example, 3 seconds with 0 nanoseconds should be | ||
* encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should | ||
* be expressed in JSON format as "3.000000001s", and 3 seconds and 1 | ||
* microsecond should be expressed in JSON format as "3.000001s". | ||
* | ||
* | ||
* @generated from message google.protobuf.Duration | ||
*/ | ||
@@ -95,0 +155,0 @@ export type DurationJson = string; |
@@ -21,3 +21,12 @@ import type { GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.Empty. | ||
* A generic empty message that you can re-use to avoid defining duplicated | ||
* empty messages in your APIs. A typical example is to use it as the request | ||
* or the response type of an API method. For instance: | ||
* | ||
* service Foo { | ||
* rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); | ||
* } | ||
* | ||
* | ||
* @generated from message google.protobuf.Empty | ||
*/ | ||
@@ -24,0 +33,0 @@ export type EmptyJson = Record<string, never>; |
@@ -219,3 +219,203 @@ import type { GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.FieldMask. | ||
* `FieldMask` represents a set of symbolic field paths, for example: | ||
* | ||
* paths: "f.a" | ||
* paths: "f.b.d" | ||
* | ||
* Here `f` represents a field in some root message, `a` and `b` | ||
* fields in the message found in `f`, and `d` a field found in the | ||
* message in `f.b`. | ||
* | ||
* Field masks are used to specify a subset of fields that should be | ||
* returned by a get operation or modified by an update operation. | ||
* Field masks also have a custom JSON encoding (see below). | ||
* | ||
* # Field Masks in Projections | ||
* | ||
* When used in the context of a projection, a response message or | ||
* sub-message is filtered by the API to only contain those fields as | ||
* specified in the mask. For example, if the mask in the previous | ||
* example is applied to a response message as follows: | ||
* | ||
* f { | ||
* a : 22 | ||
* b { | ||
* d : 1 | ||
* x : 2 | ||
* } | ||
* y : 13 | ||
* } | ||
* z: 8 | ||
* | ||
* The result will not contain specific values for fields x,y and z | ||
* (their value will be set to the default, and omitted in proto text | ||
* output): | ||
* | ||
* | ||
* f { | ||
* a : 22 | ||
* b { | ||
* d : 1 | ||
* } | ||
* } | ||
* | ||
* A repeated field is not allowed except at the last position of a | ||
* paths string. | ||
* | ||
* If a FieldMask object is not present in a get operation, the | ||
* operation applies to all fields (as if a FieldMask of all fields | ||
* had been specified). | ||
* | ||
* Note that a field mask does not necessarily apply to the | ||
* top-level response message. In case of a REST get operation, the | ||
* field mask applies directly to the response, but in case of a REST | ||
* list operation, the mask instead applies to each individual message | ||
* in the returned resource list. In case of a REST custom method, | ||
* other definitions may be used. Where the mask applies will be | ||
* clearly documented together with its declaration in the API. In | ||
* any case, the effect on the returned resource/resources is required | ||
* behavior for APIs. | ||
* | ||
* # Field Masks in Update Operations | ||
* | ||
* A field mask in update operations specifies which fields of the | ||
* targeted resource are going to be updated. The API is required | ||
* to only change the values of the fields as specified in the mask | ||
* and leave the others untouched. If a resource is passed in to | ||
* describe the updated values, the API ignores the values of all | ||
* fields not covered by the mask. | ||
* | ||
* If a repeated field is specified for an update operation, new values will | ||
* be appended to the existing repeated field in the target resource. Note that | ||
* a repeated field is only allowed in the last position of a `paths` string. | ||
* | ||
* If a sub-message is specified in the last position of the field mask for an | ||
* update operation, then new value will be merged into the existing sub-message | ||
* in the target resource. | ||
* | ||
* For example, given the target message: | ||
* | ||
* f { | ||
* b { | ||
* d: 1 | ||
* x: 2 | ||
* } | ||
* c: [1] | ||
* } | ||
* | ||
* And an update message: | ||
* | ||
* f { | ||
* b { | ||
* d: 10 | ||
* } | ||
* c: [2] | ||
* } | ||
* | ||
* then if the field mask is: | ||
* | ||
* paths: ["f.b", "f.c"] | ||
* | ||
* then the result will be: | ||
* | ||
* f { | ||
* b { | ||
* d: 10 | ||
* x: 2 | ||
* } | ||
* c: [1, 2] | ||
* } | ||
* | ||
* An implementation may provide options to override this default behavior for | ||
* repeated and message fields. | ||
* | ||
* In order to reset a field's value to the default, the field must | ||
* be in the mask and set to the default value in the provided resource. | ||
* Hence, in order to reset all fields of a resource, provide a default | ||
* instance of the resource and set all fields in the mask, or do | ||
* not provide a mask as described below. | ||
* | ||
* If a field mask is not present on update, the operation applies to | ||
* all fields (as if a field mask of all fields has been specified). | ||
* Note that in the presence of schema evolution, this may mean that | ||
* fields the client does not know and has therefore not filled into | ||
* the request will be reset to their default. If this is unwanted | ||
* behavior, a specific service may require a client to always specify | ||
* a field mask, producing an error if not. | ||
* | ||
* As with get operations, the location of the resource which | ||
* describes the updated values in the request message depends on the | ||
* operation kind. In any case, the effect of the field mask is | ||
* required to be honored by the API. | ||
* | ||
* ## Considerations for HTTP REST | ||
* | ||
* The HTTP kind of an update operation which uses a field mask must | ||
* be set to PATCH instead of PUT in order to satisfy HTTP semantics | ||
* (PUT must only be used for full updates). | ||
* | ||
* # JSON Encoding of Field Masks | ||
* | ||
* In JSON, a field mask is encoded as a single string where paths are | ||
* separated by a comma. Fields name in each path are converted | ||
* to/from lower-camel naming conventions. | ||
* | ||
* As an example, consider the following message declarations: | ||
* | ||
* message Profile { | ||
* User user = 1; | ||
* Photo photo = 2; | ||
* } | ||
* message User { | ||
* string display_name = 1; | ||
* string address = 2; | ||
* } | ||
* | ||
* In proto a field mask for `Profile` may look as such: | ||
* | ||
* mask { | ||
* paths: "user.display_name" | ||
* paths: "photo" | ||
* } | ||
* | ||
* In JSON, the same mask is represented as below: | ||
* | ||
* { | ||
* mask: "user.displayName,photo" | ||
* } | ||
* | ||
* # Field Masks and Oneof Fields | ||
* | ||
* Field masks treat fields in oneofs just as regular fields. Consider the | ||
* following message: | ||
* | ||
* message SampleMessage { | ||
* oneof test_oneof { | ||
* string name = 4; | ||
* SubMessage sub_message = 9; | ||
* } | ||
* } | ||
* | ||
* The field mask can be: | ||
* | ||
* mask { | ||
* paths: "name" | ||
* } | ||
* | ||
* Or: | ||
* | ||
* mask { | ||
* paths: "sub_message" | ||
* } | ||
* | ||
* Note that oneof type names ("test_oneof" in this case) cannot be used in | ||
* paths. | ||
* | ||
* ## Field Mask Verification | ||
* | ||
* The implementation of any API method which has a FieldMask type field in the | ||
* request should verify the included field paths, and return an | ||
* `INVALID_ARGUMENT` error if any path is unmappable. | ||
* | ||
* @generated from message google.protobuf.FieldMask | ||
*/ | ||
@@ -222,0 +422,0 @@ export type FieldMaskJson = string; |
@@ -23,6 +23,12 @@ import type { GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.SourceContext. | ||
* `SourceContext` represents information about the source of a | ||
* protobuf element, like the file in which it is defined. | ||
* | ||
* @generated from message google.protobuf.SourceContext | ||
*/ | ||
export type SourceContextJson = { | ||
/** | ||
* The path-qualified name of the .proto file that contained the associated | ||
* protobuf element. For example: `"google/protobuf/source_context.proto"`. | ||
* | ||
* @generated from field: string file_name = 1; | ||
@@ -29,0 +35,0 @@ */ |
@@ -31,3 +31,12 @@ import type { GenEnum, GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.Struct. | ||
* `Struct` represents a structured data value, consisting of fields | ||
* which map to dynamically typed values. In some languages, `Struct` | ||
* might be supported by a native representation. For example, in | ||
* scripting languages like JS a struct is represented as an | ||
* object. The details of that representation are described together | ||
* with the proto support for the language. | ||
* | ||
* The JSON representation for `Struct` is JSON object. | ||
* | ||
* @generated from message google.protobuf.Struct | ||
*/ | ||
@@ -110,3 +119,10 @@ export type StructJson = JsonObject; | ||
/** | ||
* JSON type for the message google.protobuf.Value. | ||
* `Value` represents a dynamically typed value which can be either | ||
* null, a number, a string, a boolean, a recursive struct value, or a | ||
* list of values. A producer of value is expected to set one of these | ||
* variants. Absence of any variant indicates an error. | ||
* | ||
* The JSON representation for `Value` is JSON value. | ||
* | ||
* @generated from message google.protobuf.Value | ||
*/ | ||
@@ -135,3 +151,7 @@ export type ValueJson = JsonValue; | ||
/** | ||
* JSON type for the message google.protobuf.ListValue. | ||
* `ListValue` is a wrapper around a repeated field of values. | ||
* | ||
* The JSON representation for `ListValue` is JSON array. | ||
* | ||
* @generated from message google.protobuf.ListValue | ||
*/ | ||
@@ -161,3 +181,8 @@ export type ListValueJson = JsonValue[]; | ||
/** | ||
* JSON type for the enum google.protobuf.NullValue. | ||
* `NullValue` is a singleton enumeration to represent the null value for the | ||
* `Value` type union. | ||
* | ||
* The JSON representation for `NullValue` is JSON `null`. | ||
* | ||
* @generated from enum google.protobuf.NullValue | ||
*/ | ||
@@ -164,0 +189,0 @@ export type NullValueJson = null; |
@@ -121,3 +121,94 @@ import type { GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.Timestamp. | ||
* A Timestamp represents a point in time independent of any time zone or local | ||
* calendar, encoded as a count of seconds and fractions of seconds at | ||
* nanosecond resolution. The count is relative to an epoch at UTC midnight on | ||
* January 1, 1970, in the proleptic Gregorian calendar which extends the | ||
* Gregorian calendar backwards to year one. | ||
* | ||
* All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap | ||
* second table is needed for interpretation, using a [24-hour linear | ||
* smear](https://developers.google.com/time/smear). | ||
* | ||
* The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By | ||
* restricting to that range, we ensure that we can convert to and from [RFC | ||
* 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings. | ||
* | ||
* # Examples | ||
* | ||
* Example 1: Compute Timestamp from POSIX `time()`. | ||
* | ||
* Timestamp timestamp; | ||
* timestamp.set_seconds(time(NULL)); | ||
* timestamp.set_nanos(0); | ||
* | ||
* Example 2: Compute Timestamp from POSIX `gettimeofday()`. | ||
* | ||
* struct timeval tv; | ||
* gettimeofday(&tv, NULL); | ||
* | ||
* Timestamp timestamp; | ||
* timestamp.set_seconds(tv.tv_sec); | ||
* timestamp.set_nanos(tv.tv_usec * 1000); | ||
* | ||
* Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`. | ||
* | ||
* FILETIME ft; | ||
* GetSystemTimeAsFileTime(&ft); | ||
* UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime; | ||
* | ||
* // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z | ||
* // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z. | ||
* Timestamp timestamp; | ||
* timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL)); | ||
* timestamp.set_nanos((INT32) ((ticks % 10000000) * 100)); | ||
* | ||
* Example 4: Compute Timestamp from Java `System.currentTimeMillis()`. | ||
* | ||
* long millis = System.currentTimeMillis(); | ||
* | ||
* Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000) | ||
* .setNanos((int) ((millis % 1000) * 1000000)).build(); | ||
* | ||
* Example 5: Compute Timestamp from Java `Instant.now()`. | ||
* | ||
* Instant now = Instant.now(); | ||
* | ||
* Timestamp timestamp = | ||
* Timestamp.newBuilder().setSeconds(now.getEpochSecond()) | ||
* .setNanos(now.getNano()).build(); | ||
* | ||
* Example 6: Compute Timestamp from current time in Python. | ||
* | ||
* timestamp = Timestamp() | ||
* timestamp.GetCurrentTime() | ||
* | ||
* # JSON Mapping | ||
* | ||
* In JSON format, the Timestamp type is encoded as a string in the | ||
* [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the | ||
* format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z" | ||
* where {year} is always expressed using four digits while {month}, {day}, | ||
* {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional | ||
* seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution), | ||
* are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone | ||
* is required. A proto3 JSON serializer should always use UTC (as indicated by | ||
* "Z") when printing the Timestamp type and a proto3 JSON parser should be | ||
* able to accept both UTC and other timezones (as indicated by an offset). | ||
* | ||
* For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past | ||
* 01:30 UTC on January 15, 2017. | ||
* | ||
* In JavaScript, one can convert a Date object to this format using the | ||
* standard | ||
* [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString) | ||
* method. In Python, a standard `datetime.datetime` object can be converted | ||
* to this format using | ||
* [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with | ||
* the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use | ||
* the Joda Time's [`ISODateTimeFormat.dateTime()`]( | ||
* http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime() | ||
* ) to obtain a formatter capable of generating timestamps in this format. | ||
* | ||
* | ||
* @generated from message google.protobuf.Timestamp | ||
*/ | ||
@@ -124,0 +215,0 @@ export type TimestampJson = string; |
@@ -59,6 +59,10 @@ import type { GenEnum, GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.Type. | ||
* A protocol buffer message type. | ||
* | ||
* @generated from message google.protobuf.Type | ||
*/ | ||
export type TypeJson = { | ||
/** | ||
* The fully qualified message name. | ||
* | ||
* @generated from field: string name = 1; | ||
@@ -68,2 +72,4 @@ */ | ||
/** | ||
* The list of fields. | ||
* | ||
* @generated from field: repeated google.protobuf.Field fields = 2; | ||
@@ -73,2 +79,4 @@ */ | ||
/** | ||
* The list of types appearing in `oneof` definitions in this type. | ||
* | ||
* @generated from field: repeated string oneofs = 3; | ||
@@ -78,2 +86,4 @@ */ | ||
/** | ||
* The protocol buffer options. | ||
* | ||
* @generated from field: repeated google.protobuf.Option options = 4; | ||
@@ -83,2 +93,4 @@ */ | ||
/** | ||
* The source context. | ||
* | ||
* @generated from field: google.protobuf.SourceContext source_context = 5; | ||
@@ -88,2 +100,4 @@ */ | ||
/** | ||
* The source syntax. | ||
* | ||
* @generated from field: google.protobuf.Syntax syntax = 6; | ||
@@ -93,2 +107,4 @@ */ | ||
/** | ||
* The source edition string, only valid when syntax is SYNTAX_EDITIONS. | ||
* | ||
* @generated from field: string edition = 7; | ||
@@ -173,6 +189,10 @@ */ | ||
/** | ||
* JSON type for the message google.protobuf.Field. | ||
* A single field of a message type. | ||
* | ||
* @generated from message google.protobuf.Field | ||
*/ | ||
export type FieldJson = { | ||
/** | ||
* The field type. | ||
* | ||
* @generated from field: google.protobuf.Field.Kind kind = 1; | ||
@@ -182,2 +202,4 @@ */ | ||
/** | ||
* The field cardinality. | ||
* | ||
* @generated from field: google.protobuf.Field.Cardinality cardinality = 2; | ||
@@ -187,2 +209,4 @@ */ | ||
/** | ||
* The field number. | ||
* | ||
* @generated from field: int32 number = 3; | ||
@@ -192,2 +216,4 @@ */ | ||
/** | ||
* The field name. | ||
* | ||
* @generated from field: string name = 4; | ||
@@ -197,2 +223,5 @@ */ | ||
/** | ||
* The field type URL, without the scheme, for message or enumeration | ||
* types. Example: `"type.googleapis.com/google.protobuf.Timestamp"`. | ||
* | ||
* @generated from field: string type_url = 6; | ||
@@ -202,2 +231,5 @@ */ | ||
/** | ||
* 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 field: int32 oneof_index = 7; | ||
@@ -207,2 +239,4 @@ */ | ||
/** | ||
* Whether to use alternative packed wire representation. | ||
* | ||
* @generated from field: bool packed = 8; | ||
@@ -212,2 +246,4 @@ */ | ||
/** | ||
* The protocol buffer options. | ||
* | ||
* @generated from field: repeated google.protobuf.Option options = 9; | ||
@@ -217,2 +253,4 @@ */ | ||
/** | ||
* The field JSON name. | ||
* | ||
* @generated from field: string json_name = 10; | ||
@@ -222,2 +260,4 @@ */ | ||
/** | ||
* The string value of the default value of this field. Proto2 syntax only. | ||
* | ||
* @generated from field: string default_value = 11; | ||
@@ -354,3 +394,5 @@ */ | ||
/** | ||
* JSON type for the enum google.protobuf.Field.Kind. | ||
* Basic field types. | ||
* | ||
* @generated from enum google.protobuf.Field.Kind | ||
*/ | ||
@@ -394,3 +436,5 @@ export type Field_KindJson = "TYPE_UNKNOWN" | "TYPE_DOUBLE" | "TYPE_FLOAT" | "TYPE_INT64" | "TYPE_UINT64" | "TYPE_INT32" | "TYPE_FIXED64" | "TYPE_FIXED32" | "TYPE_BOOL" | "TYPE_STRING" | "TYPE_GROUP" | "TYPE_MESSAGE" | "TYPE_BYTES" | "TYPE_UINT32" | "TYPE_ENUM" | "TYPE_SFIXED32" | "TYPE_SFIXED64" | "TYPE_SINT32" | "TYPE_SINT64"; | ||
/** | ||
* JSON type for the enum google.protobuf.Field.Cardinality. | ||
* Whether a field is optional, required, or repeated. | ||
* | ||
* @generated from enum google.protobuf.Field.Cardinality | ||
*/ | ||
@@ -446,6 +490,10 @@ export type Field_CardinalityJson = "CARDINALITY_UNKNOWN" | "CARDINALITY_OPTIONAL" | "CARDINALITY_REQUIRED" | "CARDINALITY_REPEATED"; | ||
/** | ||
* JSON type for the message google.protobuf.Enum. | ||
* Enum type definition. | ||
* | ||
* @generated from message google.protobuf.Enum | ||
*/ | ||
export type EnumJson = { | ||
/** | ||
* Enum type name. | ||
* | ||
* @generated from field: string name = 1; | ||
@@ -455,2 +503,4 @@ */ | ||
/** | ||
* Enum value definitions. | ||
* | ||
* @generated from field: repeated google.protobuf.EnumValue enumvalue = 2; | ||
@@ -460,2 +510,4 @@ */ | ||
/** | ||
* Protocol buffer options. | ||
* | ||
* @generated from field: repeated google.protobuf.Option options = 3; | ||
@@ -465,2 +517,4 @@ */ | ||
/** | ||
* The source context. | ||
* | ||
* @generated from field: google.protobuf.SourceContext source_context = 4; | ||
@@ -470,2 +524,4 @@ */ | ||
/** | ||
* The source syntax. | ||
* | ||
* @generated from field: google.protobuf.Syntax syntax = 5; | ||
@@ -475,2 +531,4 @@ */ | ||
/** | ||
* The source edition string, only valid when syntax is SYNTAX_EDITIONS. | ||
* | ||
* @generated from field: string edition = 6; | ||
@@ -511,6 +569,10 @@ */ | ||
/** | ||
* JSON type for the message google.protobuf.EnumValue. | ||
* Enum value definition. | ||
* | ||
* @generated from message google.protobuf.EnumValue | ||
*/ | ||
export type EnumValueJson = { | ||
/** | ||
* Enum value name. | ||
* | ||
* @generated from field: string name = 1; | ||
@@ -520,2 +582,4 @@ */ | ||
/** | ||
* Enum value number. | ||
* | ||
* @generated from field: int32 number = 2; | ||
@@ -525,2 +589,4 @@ */ | ||
/** | ||
* Protocol buffer options. | ||
* | ||
* @generated from field: repeated google.protobuf.Option options = 3; | ||
@@ -562,6 +628,14 @@ */ | ||
/** | ||
* JSON type for the message google.protobuf.Option. | ||
* A protocol buffer option, which can be attached to a message, field, | ||
* enumeration, etc. | ||
* | ||
* @generated from message google.protobuf.Option | ||
*/ | ||
export type OptionJson = { | ||
/** | ||
* The option's name. For protobuf built-in options (options defined in | ||
* descriptor.proto), this is the short name. For example, `"map_entry"`. | ||
* For custom options, it should be the fully-qualified name. For example, | ||
* `"google.api.http"`. | ||
* | ||
* @generated from field: string name = 1; | ||
@@ -571,2 +645,7 @@ */ | ||
/** | ||
* The option's value packed in an Any message. If the value is a primitive, | ||
* the corresponding wrapper type defined in google/protobuf/wrappers.proto | ||
* 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 field: google.protobuf.Any value = 2; | ||
@@ -607,3 +686,5 @@ */ | ||
/** | ||
* JSON type for the enum google.protobuf.Syntax. | ||
* The syntax in which a protocol buffer element is defined. | ||
* | ||
* @generated from enum google.protobuf.Syntax | ||
*/ | ||
@@ -610,0 +691,0 @@ export type SyntaxJson = "SYNTAX_PROTO2" | "SYNTAX_PROTO3" | "SYNTAX_EDITIONS"; |
@@ -23,3 +23,7 @@ import type { GenFile, GenMessage } from "../../../../codegenv1/types.js"; | ||
/** | ||
* JSON type for the message google.protobuf.DoubleValue. | ||
* Wrapper message for `double`. | ||
* | ||
* The JSON representation for `DoubleValue` is JSON number. | ||
* | ||
* @generated from message google.protobuf.DoubleValue | ||
*/ | ||
@@ -48,3 +52,7 @@ export type DoubleValueJson = number | "NaN" | "Infinity" | "-Infinity"; | ||
/** | ||
* JSON type for the message google.protobuf.FloatValue. | ||
* Wrapper message for `float`. | ||
* | ||
* The JSON representation for `FloatValue` is JSON number. | ||
* | ||
* @generated from message google.protobuf.FloatValue | ||
*/ | ||
@@ -73,3 +81,7 @@ export type FloatValueJson = number | "NaN" | "Infinity" | "-Infinity"; | ||
/** | ||
* JSON type for the message google.protobuf.Int64Value. | ||
* Wrapper message for `int64`. | ||
* | ||
* The JSON representation for `Int64Value` is JSON string. | ||
* | ||
* @generated from message google.protobuf.Int64Value | ||
*/ | ||
@@ -98,3 +110,7 @@ export type Int64ValueJson = string; | ||
/** | ||
* JSON type for the message google.protobuf.UInt64Value. | ||
* Wrapper message for `uint64`. | ||
* | ||
* The JSON representation for `UInt64Value` is JSON string. | ||
* | ||
* @generated from message google.protobuf.UInt64Value | ||
*/ | ||
@@ -123,3 +139,7 @@ export type UInt64ValueJson = string; | ||
/** | ||
* JSON type for the message google.protobuf.Int32Value. | ||
* Wrapper message for `int32`. | ||
* | ||
* The JSON representation for `Int32Value` is JSON number. | ||
* | ||
* @generated from message google.protobuf.Int32Value | ||
*/ | ||
@@ -148,3 +168,7 @@ export type Int32ValueJson = number; | ||
/** | ||
* JSON type for the message google.protobuf.UInt32Value. | ||
* Wrapper message for `uint32`. | ||
* | ||
* The JSON representation for `UInt32Value` is JSON number. | ||
* | ||
* @generated from message google.protobuf.UInt32Value | ||
*/ | ||
@@ -173,3 +197,7 @@ export type UInt32ValueJson = number; | ||
/** | ||
* JSON type for the message google.protobuf.BoolValue. | ||
* Wrapper message for `bool`. | ||
* | ||
* The JSON representation for `BoolValue` is JSON `true` and `false`. | ||
* | ||
* @generated from message google.protobuf.BoolValue | ||
*/ | ||
@@ -198,3 +226,7 @@ export type BoolValueJson = boolean; | ||
/** | ||
* JSON type for the message google.protobuf.StringValue. | ||
* Wrapper message for `string`. | ||
* | ||
* The JSON representation for `StringValue` is JSON string. | ||
* | ||
* @generated from message google.protobuf.StringValue | ||
*/ | ||
@@ -223,3 +255,7 @@ export type StringValueJson = string; | ||
/** | ||
* JSON type for the message google.protobuf.BytesValue. | ||
* Wrapper message for `bytes`. | ||
* | ||
* The JSON representation for `BytesValue` is JSON string. | ||
* | ||
* @generated from message google.protobuf.BytesValue | ||
*/ | ||
@@ -226,0 +262,0 @@ export type BytesValueJson = string; |
{ | ||
"name": "@bufbuild/protobuf", | ||
"version": "2.0.0", | ||
"version": "2.1.0", | ||
"license": "(Apache-2.0 AND BSD-3-Clause)", | ||
@@ -5,0 +5,0 @@ "description": "A complete implementation of Protocol Buffers in TypeScript, suitable for web browsers and Node.js.", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1374727
35965
52
2
3
1
21