@milaboratories/pl-drivers 1.6.4 → 1.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2026 -2480
- package/dist/index.mjs.map +1 -1
- package/dist/proto/github.com/googleapis/googleapis/google/rpc/status.d.ts +48 -0
- package/dist/proto/github.com/googleapis/googleapis/google/rpc/status.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.d.ts +2 -2
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.d.ts +13 -5
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.d.ts +2 -2
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.d.ts +11 -11
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.d.ts +4 -4
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.d.ts +10 -10
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.d.ts +10 -10
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.d.ts +25 -25
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.client.d.ts +8 -8
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.client.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.d.ts +24 -16
- package/dist/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts +277 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts +5344 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.d.ts +530 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.d.ts +82 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/import.d.ts +91 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/import.d.ts.map +1 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.d.ts +251 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.d.ts.map +1 -0
- package/dist/proto/google/api/http.d.ts +46 -42
- package/dist/proto/google/api/http.d.ts.map +1 -1
- package/dist/proto/google/protobuf/any.d.ts +172 -0
- package/dist/proto/google/protobuf/any.d.ts.map +1 -0
- package/dist/proto/google/protobuf/descriptor.d.ts +1003 -170
- package/dist/proto/google/protobuf/descriptor.d.ts.map +1 -1
- package/dist/proto/google/protobuf/duration.d.ts +2 -3
- package/dist/proto/google/protobuf/duration.d.ts.map +1 -1
- package/dist/proto/google/protobuf/empty.d.ts +27 -0
- package/dist/proto/google/protobuf/empty.d.ts.map +1 -0
- package/dist/proto/google/protobuf/struct.d.ts +179 -0
- package/dist/proto/google/protobuf/struct.d.ts.map +1 -0
- package/dist/proto/google/protobuf/timestamp.d.ts +3 -6
- package/dist/proto/google/protobuf/timestamp.d.ts.map +1 -1
- package/dist/proto/google/protobuf/wrappers.d.ts +327 -0
- package/dist/proto/google/protobuf/wrappers.d.ts.map +1 -0
- package/package.json +5 -5
- package/src/clients/download.ts +1 -1
- package/src/clients/upload.ts +1 -1
- package/src/proto/github.com/googleapis/googleapis/google/rpc/status.ts +125 -0
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.client.ts +25 -40
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/downloadapi/protocol.ts +252 -396
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.client.ts +25 -37
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/lsapi/protocol.ts +341 -453
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.client.ts +39 -65
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/progressapi/protocol.ts +398 -630
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.client.ts +126 -194
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/streamingapi/protocol.ts +626 -964
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.client.ts +102 -153
- package/src/proto/github.com/milaboratory/pl/controllers/shared/grpc/uploadapi/protocol.ts +741 -1082
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.ts +406 -0
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.ts +14986 -0
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api_types.ts +1474 -0
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/base_types.ts +181 -0
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/import.ts +251 -0
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/resource_types.ts +693 -0
- package/src/proto/google/api/http.ts +336 -492
- package/src/proto/google/protobuf/any.ts +326 -0
- package/src/proto/google/protobuf/descriptor.ts +4383 -4772
- package/src/proto/google/protobuf/duration.ts +122 -169
- package/src/proto/google/protobuf/empty.ts +94 -0
- package/src/proto/google/protobuf/struct.ts +484 -0
- package/src/proto/google/protobuf/timestamp.ts +150 -225
- package/src/proto/google/protobuf/wrappers.ts +785 -0
|
@@ -7,7 +7,7 @@ import { BinaryWriteOptions, IBinaryWriter, BinaryReadOptions, IBinaryReader, Pa
|
|
|
7
7
|
*/
|
|
8
8
|
export interface FileDescriptorSet {
|
|
9
9
|
/**
|
|
10
|
-
* @generated from protobuf field: repeated google.protobuf.FileDescriptorProto file = 1
|
|
10
|
+
* @generated from protobuf field: repeated google.protobuf.FileDescriptorProto file = 1
|
|
11
11
|
*/
|
|
12
12
|
file: FileDescriptorProto[];
|
|
13
13
|
}
|
|
@@ -18,52 +18,59 @@ export interface FileDescriptorSet {
|
|
|
18
18
|
*/
|
|
19
19
|
export interface FileDescriptorProto {
|
|
20
20
|
/**
|
|
21
|
-
* @generated from protobuf field: optional string name = 1
|
|
21
|
+
* @generated from protobuf field: optional string name = 1
|
|
22
22
|
*/
|
|
23
23
|
name?: string;
|
|
24
24
|
/**
|
|
25
|
-
* @generated from protobuf field: optional string package = 2
|
|
25
|
+
* @generated from protobuf field: optional string package = 2
|
|
26
26
|
*/
|
|
27
27
|
package?: string;
|
|
28
28
|
/**
|
|
29
29
|
* Names of files imported by this file.
|
|
30
30
|
*
|
|
31
|
-
* @generated from protobuf field: repeated string dependency = 3
|
|
31
|
+
* @generated from protobuf field: repeated string dependency = 3
|
|
32
32
|
*/
|
|
33
33
|
dependency: string[];
|
|
34
34
|
/**
|
|
35
35
|
* Indexes of the public imported files in the dependency list above.
|
|
36
36
|
*
|
|
37
|
-
* @generated from protobuf field: repeated int32 public_dependency = 10
|
|
37
|
+
* @generated from protobuf field: repeated int32 public_dependency = 10
|
|
38
38
|
*/
|
|
39
39
|
publicDependency: number[];
|
|
40
40
|
/**
|
|
41
41
|
* Indexes of the weak imported files in the dependency list.
|
|
42
42
|
* For Google-internal migration only. Do not use.
|
|
43
43
|
*
|
|
44
|
-
* @generated from protobuf field: repeated int32 weak_dependency = 11
|
|
44
|
+
* @generated from protobuf field: repeated int32 weak_dependency = 11
|
|
45
45
|
*/
|
|
46
46
|
weakDependency: number[];
|
|
47
|
+
/**
|
|
48
|
+
* Names of files imported by this file purely for the purpose of providing
|
|
49
|
+
* option extensions. These are excluded from the dependency list above.
|
|
50
|
+
*
|
|
51
|
+
* @generated from protobuf field: repeated string option_dependency = 15
|
|
52
|
+
*/
|
|
53
|
+
optionDependency: string[];
|
|
47
54
|
/**
|
|
48
55
|
* All top-level definitions in this file.
|
|
49
56
|
*
|
|
50
|
-
* @generated from protobuf field: repeated google.protobuf.DescriptorProto message_type = 4
|
|
57
|
+
* @generated from protobuf field: repeated google.protobuf.DescriptorProto message_type = 4
|
|
51
58
|
*/
|
|
52
59
|
messageType: DescriptorProto[];
|
|
53
60
|
/**
|
|
54
|
-
* @generated from protobuf field: repeated google.protobuf.EnumDescriptorProto enum_type = 5
|
|
61
|
+
* @generated from protobuf field: repeated google.protobuf.EnumDescriptorProto enum_type = 5
|
|
55
62
|
*/
|
|
56
63
|
enumType: EnumDescriptorProto[];
|
|
57
64
|
/**
|
|
58
|
-
* @generated from protobuf field: repeated google.protobuf.ServiceDescriptorProto service = 6
|
|
65
|
+
* @generated from protobuf field: repeated google.protobuf.ServiceDescriptorProto service = 6
|
|
59
66
|
*/
|
|
60
67
|
service: ServiceDescriptorProto[];
|
|
61
68
|
/**
|
|
62
|
-
* @generated from protobuf field: repeated google.protobuf.FieldDescriptorProto extension = 7
|
|
69
|
+
* @generated from protobuf field: repeated google.protobuf.FieldDescriptorProto extension = 7
|
|
63
70
|
*/
|
|
64
71
|
extension: FieldDescriptorProto[];
|
|
65
72
|
/**
|
|
66
|
-
* @generated from protobuf field: optional google.protobuf.FileOptions options = 8
|
|
73
|
+
* @generated from protobuf field: optional google.protobuf.FileOptions options = 8
|
|
67
74
|
*/
|
|
68
75
|
options?: FileOptions;
|
|
69
76
|
/**
|
|
@@ -72,16 +79,30 @@ export interface FileDescriptorProto {
|
|
|
72
79
|
* functionality of the descriptors -- the information is needed only by
|
|
73
80
|
* development tools.
|
|
74
81
|
*
|
|
75
|
-
* @generated from protobuf field: optional google.protobuf.SourceCodeInfo source_code_info = 9
|
|
82
|
+
* @generated from protobuf field: optional google.protobuf.SourceCodeInfo source_code_info = 9
|
|
76
83
|
*/
|
|
77
84
|
sourceCodeInfo?: SourceCodeInfo;
|
|
78
85
|
/**
|
|
79
86
|
* The syntax of the proto file.
|
|
80
|
-
* The supported values are "proto2" and "
|
|
87
|
+
* The supported values are "proto2", "proto3", and "editions".
|
|
88
|
+
*
|
|
89
|
+
* If `edition` is present, this value must be "editions".
|
|
90
|
+
* WARNING: This field should only be used by protobuf plugins or special
|
|
91
|
+
* cases like the proto compiler. Other uses are discouraged and
|
|
92
|
+
* developers should rely on the protoreflect APIs for their client language.
|
|
81
93
|
*
|
|
82
|
-
* @generated from protobuf field: optional string syntax = 12
|
|
94
|
+
* @generated from protobuf field: optional string syntax = 12
|
|
83
95
|
*/
|
|
84
96
|
syntax?: string;
|
|
97
|
+
/**
|
|
98
|
+
* The edition of the proto file.
|
|
99
|
+
* WARNING: This field should only be used by protobuf plugins or special
|
|
100
|
+
* cases like the proto compiler. Other uses are discouraged and
|
|
101
|
+
* developers should rely on the protoreflect APIs for their client language.
|
|
102
|
+
*
|
|
103
|
+
* @generated from protobuf field: optional google.protobuf.Edition edition = 14
|
|
104
|
+
*/
|
|
105
|
+
edition?: Edition;
|
|
85
106
|
}
|
|
86
107
|
/**
|
|
87
108
|
* Describes a message type.
|
|
@@ -90,63 +111,69 @@ export interface FileDescriptorProto {
|
|
|
90
111
|
*/
|
|
91
112
|
export interface DescriptorProto {
|
|
92
113
|
/**
|
|
93
|
-
* @generated from protobuf field: optional string name = 1
|
|
114
|
+
* @generated from protobuf field: optional string name = 1
|
|
94
115
|
*/
|
|
95
116
|
name?: string;
|
|
96
117
|
/**
|
|
97
|
-
* @generated from protobuf field: repeated google.protobuf.FieldDescriptorProto field = 2
|
|
118
|
+
* @generated from protobuf field: repeated google.protobuf.FieldDescriptorProto field = 2
|
|
98
119
|
*/
|
|
99
120
|
field: FieldDescriptorProto[];
|
|
100
121
|
/**
|
|
101
|
-
* @generated from protobuf field: repeated google.protobuf.FieldDescriptorProto extension = 6
|
|
122
|
+
* @generated from protobuf field: repeated google.protobuf.FieldDescriptorProto extension = 6
|
|
102
123
|
*/
|
|
103
124
|
extension: FieldDescriptorProto[];
|
|
104
125
|
/**
|
|
105
|
-
* @generated from protobuf field: repeated google.protobuf.DescriptorProto nested_type = 3
|
|
126
|
+
* @generated from protobuf field: repeated google.protobuf.DescriptorProto nested_type = 3
|
|
106
127
|
*/
|
|
107
128
|
nestedType: DescriptorProto[];
|
|
108
129
|
/**
|
|
109
|
-
* @generated from protobuf field: repeated google.protobuf.EnumDescriptorProto enum_type = 4
|
|
130
|
+
* @generated from protobuf field: repeated google.protobuf.EnumDescriptorProto enum_type = 4
|
|
110
131
|
*/
|
|
111
132
|
enumType: EnumDescriptorProto[];
|
|
112
133
|
/**
|
|
113
|
-
* @generated from protobuf field: repeated google.protobuf.DescriptorProto.ExtensionRange extension_range = 5
|
|
134
|
+
* @generated from protobuf field: repeated google.protobuf.DescriptorProto.ExtensionRange extension_range = 5
|
|
114
135
|
*/
|
|
115
136
|
extensionRange: DescriptorProto_ExtensionRange[];
|
|
116
137
|
/**
|
|
117
|
-
* @generated from protobuf field: repeated google.protobuf.OneofDescriptorProto oneof_decl = 8
|
|
138
|
+
* @generated from protobuf field: repeated google.protobuf.OneofDescriptorProto oneof_decl = 8
|
|
118
139
|
*/
|
|
119
140
|
oneofDecl: OneofDescriptorProto[];
|
|
120
141
|
/**
|
|
121
|
-
* @generated from protobuf field: optional google.protobuf.MessageOptions options = 7
|
|
142
|
+
* @generated from protobuf field: optional google.protobuf.MessageOptions options = 7
|
|
122
143
|
*/
|
|
123
144
|
options?: MessageOptions;
|
|
124
145
|
/**
|
|
125
|
-
* @generated from protobuf field: repeated google.protobuf.DescriptorProto.ReservedRange reserved_range = 9
|
|
146
|
+
* @generated from protobuf field: repeated google.protobuf.DescriptorProto.ReservedRange reserved_range = 9
|
|
126
147
|
*/
|
|
127
148
|
reservedRange: DescriptorProto_ReservedRange[];
|
|
128
149
|
/**
|
|
129
150
|
* Reserved field names, which may not be used by fields in the same message.
|
|
130
151
|
* A given name may only be reserved once.
|
|
131
152
|
*
|
|
132
|
-
* @generated from protobuf field: repeated string reserved_name = 10
|
|
153
|
+
* @generated from protobuf field: repeated string reserved_name = 10
|
|
133
154
|
*/
|
|
134
155
|
reservedName: string[];
|
|
156
|
+
/**
|
|
157
|
+
* Support for `export` and `local` keywords on enums.
|
|
158
|
+
*
|
|
159
|
+
* @generated from protobuf field: optional google.protobuf.SymbolVisibility visibility = 11
|
|
160
|
+
*/
|
|
161
|
+
visibility?: SymbolVisibility;
|
|
135
162
|
}
|
|
136
163
|
/**
|
|
137
164
|
* @generated from protobuf message google.protobuf.DescriptorProto.ExtensionRange
|
|
138
165
|
*/
|
|
139
166
|
export interface DescriptorProto_ExtensionRange {
|
|
140
167
|
/**
|
|
141
|
-
* @generated from protobuf field: optional int32 start = 1
|
|
168
|
+
* @generated from protobuf field: optional int32 start = 1
|
|
142
169
|
*/
|
|
143
170
|
start?: number;
|
|
144
171
|
/**
|
|
145
|
-
* @generated from protobuf field: optional int32 end = 2
|
|
172
|
+
* @generated from protobuf field: optional int32 end = 2
|
|
146
173
|
*/
|
|
147
174
|
end?: number;
|
|
148
175
|
/**
|
|
149
|
-
* @generated from protobuf field: optional google.protobuf.ExtensionRangeOptions options = 3
|
|
176
|
+
* @generated from protobuf field: optional google.protobuf.ExtensionRangeOptions options = 3
|
|
150
177
|
*/
|
|
151
178
|
options?: ExtensionRangeOptions;
|
|
152
179
|
}
|
|
@@ -159,11 +186,11 @@ export interface DescriptorProto_ExtensionRange {
|
|
|
159
186
|
*/
|
|
160
187
|
export interface DescriptorProto_ReservedRange {
|
|
161
188
|
/**
|
|
162
|
-
* @generated from protobuf field: optional int32 start = 1
|
|
189
|
+
* @generated from protobuf field: optional int32 start = 1
|
|
163
190
|
*/
|
|
164
191
|
start?: number;
|
|
165
192
|
/**
|
|
166
|
-
* @generated from protobuf field: optional int32 end = 2
|
|
193
|
+
* @generated from protobuf field: optional int32 end = 2
|
|
167
194
|
*/
|
|
168
195
|
end?: number;
|
|
169
196
|
}
|
|
@@ -174,9 +201,89 @@ export interface ExtensionRangeOptions {
|
|
|
174
201
|
/**
|
|
175
202
|
* The parser stores options it doesn't recognize here. See above.
|
|
176
203
|
*
|
|
177
|
-
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
204
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
178
205
|
*/
|
|
179
206
|
uninterpretedOption: UninterpretedOption[];
|
|
207
|
+
/**
|
|
208
|
+
* For external users: DO NOT USE. We are in the process of open sourcing
|
|
209
|
+
* extension declaration and executing internal cleanups before it can be
|
|
210
|
+
* used externally.
|
|
211
|
+
*
|
|
212
|
+
* @generated from protobuf field: repeated google.protobuf.ExtensionRangeOptions.Declaration declaration = 2
|
|
213
|
+
*/
|
|
214
|
+
declaration: ExtensionRangeOptions_Declaration[];
|
|
215
|
+
/**
|
|
216
|
+
* Any features defined in the specific edition.
|
|
217
|
+
*
|
|
218
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 50
|
|
219
|
+
*/
|
|
220
|
+
features?: FeatureSet;
|
|
221
|
+
/**
|
|
222
|
+
* The verification state of the range.
|
|
223
|
+
* TODO: flip the default to DECLARATION once all empty ranges
|
|
224
|
+
* are marked as UNVERIFIED.
|
|
225
|
+
*
|
|
226
|
+
* @generated from protobuf field: optional google.protobuf.ExtensionRangeOptions.VerificationState verification = 3 [default = UNVERIFIED]
|
|
227
|
+
*/
|
|
228
|
+
verification?: ExtensionRangeOptions_VerificationState;
|
|
229
|
+
}
|
|
230
|
+
/**
|
|
231
|
+
* @generated from protobuf message google.protobuf.ExtensionRangeOptions.Declaration
|
|
232
|
+
*/
|
|
233
|
+
export interface ExtensionRangeOptions_Declaration {
|
|
234
|
+
/**
|
|
235
|
+
* The extension number declared within the extension range.
|
|
236
|
+
*
|
|
237
|
+
* @generated from protobuf field: optional int32 number = 1
|
|
238
|
+
*/
|
|
239
|
+
number?: number;
|
|
240
|
+
/**
|
|
241
|
+
* The fully-qualified name of the extension field. There must be a leading
|
|
242
|
+
* dot in front of the full name.
|
|
243
|
+
*
|
|
244
|
+
* @generated from protobuf field: optional string full_name = 2
|
|
245
|
+
*/
|
|
246
|
+
fullName?: string;
|
|
247
|
+
/**
|
|
248
|
+
* The fully-qualified type name of the extension field. Unlike
|
|
249
|
+
* Metadata.type, Declaration.type must have a leading dot for messages
|
|
250
|
+
* and enums.
|
|
251
|
+
*
|
|
252
|
+
* @generated from protobuf field: optional string type = 3
|
|
253
|
+
*/
|
|
254
|
+
type?: string;
|
|
255
|
+
/**
|
|
256
|
+
* If true, indicates that the number is reserved in the extension range,
|
|
257
|
+
* and any extension field with the number will fail to compile. Set this
|
|
258
|
+
* when a declared extension field is deleted.
|
|
259
|
+
*
|
|
260
|
+
* @generated from protobuf field: optional bool reserved = 5
|
|
261
|
+
*/
|
|
262
|
+
reserved?: boolean;
|
|
263
|
+
/**
|
|
264
|
+
* If true, indicates that the extension must be defined as repeated.
|
|
265
|
+
* Otherwise the extension must be defined as optional.
|
|
266
|
+
*
|
|
267
|
+
* @generated from protobuf field: optional bool repeated = 6
|
|
268
|
+
*/
|
|
269
|
+
repeated?: boolean;
|
|
270
|
+
}
|
|
271
|
+
/**
|
|
272
|
+
* The verification state of the extension range.
|
|
273
|
+
*
|
|
274
|
+
* @generated from protobuf enum google.protobuf.ExtensionRangeOptions.VerificationState
|
|
275
|
+
*/
|
|
276
|
+
export declare enum ExtensionRangeOptions_VerificationState {
|
|
277
|
+
/**
|
|
278
|
+
* All the extensions of the range must be declared.
|
|
279
|
+
*
|
|
280
|
+
* @generated from protobuf enum value: DECLARATION = 0;
|
|
281
|
+
*/
|
|
282
|
+
DECLARATION = 0,
|
|
283
|
+
/**
|
|
284
|
+
* @generated from protobuf enum value: UNVERIFIED = 1;
|
|
285
|
+
*/
|
|
286
|
+
UNVERIFIED = 1
|
|
180
287
|
}
|
|
181
288
|
/**
|
|
182
289
|
* Describes a field within a message.
|
|
@@ -185,22 +292,22 @@ export interface ExtensionRangeOptions {
|
|
|
185
292
|
*/
|
|
186
293
|
export interface FieldDescriptorProto {
|
|
187
294
|
/**
|
|
188
|
-
* @generated from protobuf field: optional string name = 1
|
|
295
|
+
* @generated from protobuf field: optional string name = 1
|
|
189
296
|
*/
|
|
190
297
|
name?: string;
|
|
191
298
|
/**
|
|
192
|
-
* @generated from protobuf field: optional int32 number = 3
|
|
299
|
+
* @generated from protobuf field: optional int32 number = 3
|
|
193
300
|
*/
|
|
194
301
|
number?: number;
|
|
195
302
|
/**
|
|
196
|
-
* @generated from protobuf field: optional google.protobuf.FieldDescriptorProto.Label label = 4
|
|
303
|
+
* @generated from protobuf field: optional google.protobuf.FieldDescriptorProto.Label label = 4
|
|
197
304
|
*/
|
|
198
305
|
label?: FieldDescriptorProto_Label;
|
|
199
306
|
/**
|
|
200
307
|
* If type_name is set, this need not be set. If both this and type_name
|
|
201
308
|
* are set, this must be one of TYPE_ENUM, TYPE_MESSAGE or TYPE_GROUP.
|
|
202
309
|
*
|
|
203
|
-
* @generated from protobuf field: optional google.protobuf.FieldDescriptorProto.Type type = 5
|
|
310
|
+
* @generated from protobuf field: optional google.protobuf.FieldDescriptorProto.Type type = 5
|
|
204
311
|
*/
|
|
205
312
|
type?: FieldDescriptorProto_Type;
|
|
206
313
|
/**
|
|
@@ -210,14 +317,14 @@ export interface FieldDescriptorProto {
|
|
|
210
317
|
* message are searched, then within the parent, on up to the root
|
|
211
318
|
* namespace).
|
|
212
319
|
*
|
|
213
|
-
* @generated from protobuf field: optional string type_name = 6
|
|
320
|
+
* @generated from protobuf field: optional string type_name = 6
|
|
214
321
|
*/
|
|
215
322
|
typeName?: string;
|
|
216
323
|
/**
|
|
217
324
|
* For extensions, this is the name of the type being extended. It is
|
|
218
325
|
* resolved in the same manner as type_name.
|
|
219
326
|
*
|
|
220
|
-
* @generated from protobuf field: optional string extendee = 2
|
|
327
|
+
* @generated from protobuf field: optional string extendee = 2
|
|
221
328
|
*/
|
|
222
329
|
extendee?: string;
|
|
223
330
|
/**
|
|
@@ -226,14 +333,14 @@ export interface FieldDescriptorProto {
|
|
|
226
333
|
* For strings, contains the default text contents (not escaped in any way).
|
|
227
334
|
* For bytes, contains the C escaped value. All bytes >= 128 are escaped.
|
|
228
335
|
*
|
|
229
|
-
* @generated from protobuf field: optional string default_value = 7
|
|
336
|
+
* @generated from protobuf field: optional string default_value = 7
|
|
230
337
|
*/
|
|
231
338
|
defaultValue?: string;
|
|
232
339
|
/**
|
|
233
340
|
* If set, gives the index of a oneof in the containing type's oneof_decl
|
|
234
341
|
* list. This field is a member of that oneof.
|
|
235
342
|
*
|
|
236
|
-
* @generated from protobuf field: optional int32 oneof_index = 9
|
|
343
|
+
* @generated from protobuf field: optional int32 oneof_index = 9
|
|
237
344
|
*/
|
|
238
345
|
oneofIndex?: number;
|
|
239
346
|
/**
|
|
@@ -242,23 +349,23 @@ export interface FieldDescriptorProto {
|
|
|
242
349
|
* will be used. Otherwise, it's deduced from the field's name by converting
|
|
243
350
|
* it to camelCase.
|
|
244
351
|
*
|
|
245
|
-
* @generated from protobuf field: optional string json_name = 10
|
|
352
|
+
* @generated from protobuf field: optional string json_name = 10
|
|
246
353
|
*/
|
|
247
354
|
jsonName?: string;
|
|
248
355
|
/**
|
|
249
|
-
* @generated from protobuf field: optional google.protobuf.FieldOptions options = 8
|
|
356
|
+
* @generated from protobuf field: optional google.protobuf.FieldOptions options = 8
|
|
250
357
|
*/
|
|
251
358
|
options?: FieldOptions;
|
|
252
359
|
/**
|
|
253
360
|
* If true, this is a proto3 "optional". When a proto3 field is optional, it
|
|
254
361
|
* tracks presence regardless of field type.
|
|
255
362
|
*
|
|
256
|
-
* When proto3_optional is true, this field must
|
|
257
|
-
*
|
|
258
|
-
*
|
|
259
|
-
*
|
|
260
|
-
*
|
|
261
|
-
*
|
|
363
|
+
* When proto3_optional is true, this field must belong to a oneof to signal
|
|
364
|
+
* to old proto3 clients that presence is tracked for this field. This oneof
|
|
365
|
+
* is known as a "synthetic" oneof, and this field must be its sole member
|
|
366
|
+
* (each proto3 optional field gets its own synthetic oneof). Synthetic oneofs
|
|
367
|
+
* exist in the descriptor only, and do not generate any API. Synthetic oneofs
|
|
368
|
+
* must be ordered after all "real" oneofs.
|
|
262
369
|
*
|
|
263
370
|
* For message fields, proto3_optional doesn't create any semantic change,
|
|
264
371
|
* since non-repeated message fields always track presence. However it still
|
|
@@ -272,7 +379,7 @@ export interface FieldDescriptorProto {
|
|
|
272
379
|
* Proto2 optional fields do not set this flag, because they already indicate
|
|
273
380
|
* optional with `LABEL_OPTIONAL`.
|
|
274
381
|
*
|
|
275
|
-
* @generated from protobuf field: optional bool proto3_optional = 17
|
|
382
|
+
* @generated from protobuf field: optional bool proto3_optional = 17
|
|
276
383
|
*/
|
|
277
384
|
proto3Optional?: boolean;
|
|
278
385
|
}
|
|
@@ -331,9 +438,10 @@ export declare enum FieldDescriptorProto_Type {
|
|
|
331
438
|
STRING = 9,
|
|
332
439
|
/**
|
|
333
440
|
* Tag-delimited aggregate.
|
|
334
|
-
* Group type is deprecated and not supported
|
|
441
|
+
* Group type is deprecated and not supported after google.protobuf. However, Proto3
|
|
335
442
|
* implementations should still be able to parse the group wire format and
|
|
336
|
-
* treat group fields as unknown fields.
|
|
443
|
+
* treat group fields as unknown fields. In Editions, the group wire format
|
|
444
|
+
* can be enabled via the `message_encoding` feature.
|
|
337
445
|
*
|
|
338
446
|
* @generated from protobuf enum value: TYPE_GROUP = 10;
|
|
339
447
|
*/
|
|
@@ -394,13 +502,17 @@ export declare enum FieldDescriptorProto_Label {
|
|
|
394
502
|
*/
|
|
395
503
|
OPTIONAL = 1,
|
|
396
504
|
/**
|
|
397
|
-
* @generated from protobuf enum value:
|
|
505
|
+
* @generated from protobuf enum value: LABEL_REPEATED = 3;
|
|
398
506
|
*/
|
|
399
|
-
|
|
507
|
+
REPEATED = 3,
|
|
400
508
|
/**
|
|
401
|
-
*
|
|
509
|
+
* The required label is only allowed in google.protobuf. In proto3 and Editions
|
|
510
|
+
* it's explicitly prohibited. In Editions, the `field_presence` feature
|
|
511
|
+
* can be used to get this behavior.
|
|
512
|
+
*
|
|
513
|
+
* @generated from protobuf enum value: LABEL_REQUIRED = 2;
|
|
402
514
|
*/
|
|
403
|
-
|
|
515
|
+
REQUIRED = 2
|
|
404
516
|
}
|
|
405
517
|
/**
|
|
406
518
|
* Describes a oneof.
|
|
@@ -409,11 +521,11 @@ export declare enum FieldDescriptorProto_Label {
|
|
|
409
521
|
*/
|
|
410
522
|
export interface OneofDescriptorProto {
|
|
411
523
|
/**
|
|
412
|
-
* @generated from protobuf field: optional string name = 1
|
|
524
|
+
* @generated from protobuf field: optional string name = 1
|
|
413
525
|
*/
|
|
414
526
|
name?: string;
|
|
415
527
|
/**
|
|
416
|
-
* @generated from protobuf field: optional google.protobuf.OneofOptions options = 2
|
|
528
|
+
* @generated from protobuf field: optional google.protobuf.OneofOptions options = 2
|
|
417
529
|
*/
|
|
418
530
|
options?: OneofOptions;
|
|
419
531
|
}
|
|
@@ -424,15 +536,15 @@ export interface OneofDescriptorProto {
|
|
|
424
536
|
*/
|
|
425
537
|
export interface EnumDescriptorProto {
|
|
426
538
|
/**
|
|
427
|
-
* @generated from protobuf field: optional string name = 1
|
|
539
|
+
* @generated from protobuf field: optional string name = 1
|
|
428
540
|
*/
|
|
429
541
|
name?: string;
|
|
430
542
|
/**
|
|
431
|
-
* @generated from protobuf field: repeated google.protobuf.EnumValueDescriptorProto value = 2
|
|
543
|
+
* @generated from protobuf field: repeated google.protobuf.EnumValueDescriptorProto value = 2
|
|
432
544
|
*/
|
|
433
545
|
value: EnumValueDescriptorProto[];
|
|
434
546
|
/**
|
|
435
|
-
* @generated from protobuf field: optional google.protobuf.EnumOptions options = 3
|
|
547
|
+
* @generated from protobuf field: optional google.protobuf.EnumOptions options = 3
|
|
436
548
|
*/
|
|
437
549
|
options?: EnumOptions;
|
|
438
550
|
/**
|
|
@@ -440,16 +552,22 @@ export interface EnumDescriptorProto {
|
|
|
440
552
|
* by enum values in the same enum declaration. Reserved ranges may not
|
|
441
553
|
* overlap.
|
|
442
554
|
*
|
|
443
|
-
* @generated from protobuf field: repeated google.protobuf.EnumDescriptorProto.EnumReservedRange reserved_range = 4
|
|
555
|
+
* @generated from protobuf field: repeated google.protobuf.EnumDescriptorProto.EnumReservedRange reserved_range = 4
|
|
444
556
|
*/
|
|
445
557
|
reservedRange: EnumDescriptorProto_EnumReservedRange[];
|
|
446
558
|
/**
|
|
447
559
|
* Reserved enum value names, which may not be reused. A given name may only
|
|
448
560
|
* be reserved once.
|
|
449
561
|
*
|
|
450
|
-
* @generated from protobuf field: repeated string reserved_name = 5
|
|
562
|
+
* @generated from protobuf field: repeated string reserved_name = 5
|
|
451
563
|
*/
|
|
452
564
|
reservedName: string[];
|
|
565
|
+
/**
|
|
566
|
+
* Support for `export` and `local` keywords on enums.
|
|
567
|
+
*
|
|
568
|
+
* @generated from protobuf field: optional google.protobuf.SymbolVisibility visibility = 6
|
|
569
|
+
*/
|
|
570
|
+
visibility?: SymbolVisibility;
|
|
453
571
|
}
|
|
454
572
|
/**
|
|
455
573
|
* Range of reserved numeric values. Reserved values may not be used by
|
|
@@ -463,11 +581,11 @@ export interface EnumDescriptorProto {
|
|
|
463
581
|
*/
|
|
464
582
|
export interface EnumDescriptorProto_EnumReservedRange {
|
|
465
583
|
/**
|
|
466
|
-
* @generated from protobuf field: optional int32 start = 1
|
|
584
|
+
* @generated from protobuf field: optional int32 start = 1
|
|
467
585
|
*/
|
|
468
586
|
start?: number;
|
|
469
587
|
/**
|
|
470
|
-
* @generated from protobuf field: optional int32 end = 2
|
|
588
|
+
* @generated from protobuf field: optional int32 end = 2
|
|
471
589
|
*/
|
|
472
590
|
end?: number;
|
|
473
591
|
}
|
|
@@ -478,15 +596,15 @@ export interface EnumDescriptorProto_EnumReservedRange {
|
|
|
478
596
|
*/
|
|
479
597
|
export interface EnumValueDescriptorProto {
|
|
480
598
|
/**
|
|
481
|
-
* @generated from protobuf field: optional string name = 1
|
|
599
|
+
* @generated from protobuf field: optional string name = 1
|
|
482
600
|
*/
|
|
483
601
|
name?: string;
|
|
484
602
|
/**
|
|
485
|
-
* @generated from protobuf field: optional int32 number = 2
|
|
603
|
+
* @generated from protobuf field: optional int32 number = 2
|
|
486
604
|
*/
|
|
487
605
|
number?: number;
|
|
488
606
|
/**
|
|
489
|
-
* @generated from protobuf field: optional google.protobuf.EnumValueOptions options = 3
|
|
607
|
+
* @generated from protobuf field: optional google.protobuf.EnumValueOptions options = 3
|
|
490
608
|
*/
|
|
491
609
|
options?: EnumValueOptions;
|
|
492
610
|
}
|
|
@@ -497,15 +615,15 @@ export interface EnumValueDescriptorProto {
|
|
|
497
615
|
*/
|
|
498
616
|
export interface ServiceDescriptorProto {
|
|
499
617
|
/**
|
|
500
|
-
* @generated from protobuf field: optional string name = 1
|
|
618
|
+
* @generated from protobuf field: optional string name = 1
|
|
501
619
|
*/
|
|
502
620
|
name?: string;
|
|
503
621
|
/**
|
|
504
|
-
* @generated from protobuf field: repeated google.protobuf.MethodDescriptorProto method = 2
|
|
622
|
+
* @generated from protobuf field: repeated google.protobuf.MethodDescriptorProto method = 2
|
|
505
623
|
*/
|
|
506
624
|
method: MethodDescriptorProto[];
|
|
507
625
|
/**
|
|
508
|
-
* @generated from protobuf field: optional google.protobuf.ServiceOptions options = 3
|
|
626
|
+
* @generated from protobuf field: optional google.protobuf.ServiceOptions options = 3
|
|
509
627
|
*/
|
|
510
628
|
options?: ServiceOptions;
|
|
511
629
|
}
|
|
@@ -516,34 +634,34 @@ export interface ServiceDescriptorProto {
|
|
|
516
634
|
*/
|
|
517
635
|
export interface MethodDescriptorProto {
|
|
518
636
|
/**
|
|
519
|
-
* @generated from protobuf field: optional string name = 1
|
|
637
|
+
* @generated from protobuf field: optional string name = 1
|
|
520
638
|
*/
|
|
521
639
|
name?: string;
|
|
522
640
|
/**
|
|
523
641
|
* Input and output type names. These are resolved in the same way as
|
|
524
642
|
* FieldDescriptorProto.type_name, but must refer to a message type.
|
|
525
643
|
*
|
|
526
|
-
* @generated from protobuf field: optional string input_type = 2
|
|
644
|
+
* @generated from protobuf field: optional string input_type = 2
|
|
527
645
|
*/
|
|
528
646
|
inputType?: string;
|
|
529
647
|
/**
|
|
530
|
-
* @generated from protobuf field: optional string output_type = 3
|
|
648
|
+
* @generated from protobuf field: optional string output_type = 3
|
|
531
649
|
*/
|
|
532
650
|
outputType?: string;
|
|
533
651
|
/**
|
|
534
|
-
* @generated from protobuf field: optional google.protobuf.MethodOptions options = 4
|
|
652
|
+
* @generated from protobuf field: optional google.protobuf.MethodOptions options = 4
|
|
535
653
|
*/
|
|
536
654
|
options?: MethodOptions;
|
|
537
655
|
/**
|
|
538
656
|
* Identifies if client streams multiple client messages
|
|
539
657
|
*
|
|
540
|
-
* @generated from protobuf field: optional bool client_streaming = 5
|
|
658
|
+
* @generated from protobuf field: optional bool client_streaming = 5 [default = false]
|
|
541
659
|
*/
|
|
542
660
|
clientStreaming?: boolean;
|
|
543
661
|
/**
|
|
544
662
|
* Identifies if server streams multiple server messages
|
|
545
663
|
*
|
|
546
|
-
* @generated from protobuf field: optional bool server_streaming = 6
|
|
664
|
+
* @generated from protobuf field: optional bool server_streaming = 6 [default = false]
|
|
547
665
|
*/
|
|
548
666
|
serverStreaming?: boolean;
|
|
549
667
|
}
|
|
@@ -557,7 +675,7 @@ export interface FileOptions {
|
|
|
557
675
|
* inappropriate because proto packages do not normally start with backwards
|
|
558
676
|
* domain names.
|
|
559
677
|
*
|
|
560
|
-
* @generated from protobuf field: optional string java_package = 1
|
|
678
|
+
* @generated from protobuf field: optional string java_package = 1
|
|
561
679
|
*/
|
|
562
680
|
javaPackage?: string;
|
|
563
681
|
/**
|
|
@@ -567,7 +685,7 @@ export interface FileOptions {
|
|
|
567
685
|
* If java_multiple_files is disabled, then all the other classes from the
|
|
568
686
|
* .proto file will be nested inside the single wrapper outer class.
|
|
569
687
|
*
|
|
570
|
-
* @generated from protobuf field: optional string java_outer_classname = 8
|
|
688
|
+
* @generated from protobuf field: optional string java_outer_classname = 8
|
|
571
689
|
*/
|
|
572
690
|
javaOuterClassname?: string;
|
|
573
691
|
/**
|
|
@@ -578,29 +696,33 @@ export interface FileOptions {
|
|
|
578
696
|
* generated to contain the file's getDescriptor() method as well as any
|
|
579
697
|
* top-level extensions defined in the file.
|
|
580
698
|
*
|
|
581
|
-
* @generated from protobuf field: optional bool java_multiple_files = 10
|
|
699
|
+
* @generated from protobuf field: optional bool java_multiple_files = 10 [default = false]
|
|
582
700
|
*/
|
|
583
701
|
javaMultipleFiles?: boolean;
|
|
584
702
|
/**
|
|
585
703
|
* This option does nothing.
|
|
586
704
|
*
|
|
587
705
|
* @deprecated
|
|
588
|
-
* @generated from protobuf field: optional bool java_generate_equals_and_hash = 20 [deprecated = true]
|
|
706
|
+
* @generated from protobuf field: optional bool java_generate_equals_and_hash = 20 [deprecated = true]
|
|
589
707
|
*/
|
|
590
708
|
javaGenerateEqualsAndHash?: boolean;
|
|
591
709
|
/**
|
|
592
|
-
*
|
|
593
|
-
*
|
|
594
|
-
*
|
|
595
|
-
* Message reflection will do the same.
|
|
596
|
-
* However, an extension field still accepts non-UTF-8 byte sequences.
|
|
597
|
-
* This option has no effect on when used with the lite runtime.
|
|
710
|
+
* A proto2 file can set this to true to opt in to UTF-8 checking for Java,
|
|
711
|
+
* which will throw an exception if invalid UTF-8 is parsed from the wire or
|
|
712
|
+
* assigned to a string field.
|
|
598
713
|
*
|
|
599
|
-
*
|
|
714
|
+
* TODO: clarify exactly what kinds of field types this option
|
|
715
|
+
* applies to, and update these docs accordingly.
|
|
716
|
+
*
|
|
717
|
+
* Proto3 files already perform these checks. Setting the option explicitly to
|
|
718
|
+
* false has no effect: it cannot be used to opt proto3 files out of UTF-8
|
|
719
|
+
* checks.
|
|
720
|
+
*
|
|
721
|
+
* @generated from protobuf field: optional bool java_string_check_utf8 = 27 [default = false]
|
|
600
722
|
*/
|
|
601
723
|
javaStringCheckUtf8?: boolean;
|
|
602
724
|
/**
|
|
603
|
-
* @generated from protobuf field: optional google.protobuf.FileOptions.OptimizeMode optimize_for = 9
|
|
725
|
+
* @generated from protobuf field: optional google.protobuf.FileOptions.OptimizeMode optimize_for = 9 [default = SPEED]
|
|
604
726
|
*/
|
|
605
727
|
optimizeFor?: FileOptions_OptimizeMode;
|
|
606
728
|
/**
|
|
@@ -610,7 +732,7 @@ export interface FileOptions {
|
|
|
610
732
|
* - Otherwise, the package statement in the .proto file, if present.
|
|
611
733
|
* - Otherwise, the basename of the .proto file, without extension.
|
|
612
734
|
*
|
|
613
|
-
* @generated from protobuf field: optional string go_package = 11
|
|
735
|
+
* @generated from protobuf field: optional string go_package = 11
|
|
614
736
|
*/
|
|
615
737
|
goPackage?: string;
|
|
616
738
|
/**
|
|
@@ -625,48 +747,44 @@ export interface FileOptions {
|
|
|
625
747
|
* these default to false. Old code which depends on generic services should
|
|
626
748
|
* explicitly set them to true.
|
|
627
749
|
*
|
|
628
|
-
* @generated from protobuf field: optional bool cc_generic_services = 16
|
|
750
|
+
* @generated from protobuf field: optional bool cc_generic_services = 16 [default = false]
|
|
629
751
|
*/
|
|
630
752
|
ccGenericServices?: boolean;
|
|
631
753
|
/**
|
|
632
|
-
* @generated from protobuf field: optional bool java_generic_services = 17
|
|
754
|
+
* @generated from protobuf field: optional bool java_generic_services = 17 [default = false]
|
|
633
755
|
*/
|
|
634
756
|
javaGenericServices?: boolean;
|
|
635
757
|
/**
|
|
636
|
-
* @generated from protobuf field: optional bool py_generic_services = 18
|
|
758
|
+
* @generated from protobuf field: optional bool py_generic_services = 18 [default = false]
|
|
637
759
|
*/
|
|
638
760
|
pyGenericServices?: boolean;
|
|
639
|
-
/**
|
|
640
|
-
* @generated from protobuf field: optional bool php_generic_services = 42;
|
|
641
|
-
*/
|
|
642
|
-
phpGenericServices?: boolean;
|
|
643
761
|
/**
|
|
644
762
|
* Is this file deprecated?
|
|
645
763
|
* Depending on the target platform, this can emit Deprecated annotations
|
|
646
764
|
* for everything in the file, or it will be completely ignored; in the very
|
|
647
765
|
* least, this is a formalization for deprecating files.
|
|
648
766
|
*
|
|
649
|
-
* @generated from protobuf field: optional bool deprecated = 23
|
|
767
|
+
* @generated from protobuf field: optional bool deprecated = 23 [default = false]
|
|
650
768
|
*/
|
|
651
769
|
deprecated?: boolean;
|
|
652
770
|
/**
|
|
653
771
|
* Enables the use of arenas for the proto messages in this file. This applies
|
|
654
772
|
* only to generated classes for C++.
|
|
655
773
|
*
|
|
656
|
-
* @generated from protobuf field: optional bool cc_enable_arenas = 31
|
|
774
|
+
* @generated from protobuf field: optional bool cc_enable_arenas = 31 [default = true]
|
|
657
775
|
*/
|
|
658
776
|
ccEnableArenas?: boolean;
|
|
659
777
|
/**
|
|
660
778
|
* Sets the objective c class prefix which is prepended to all objective c
|
|
661
779
|
* generated classes from this .proto. There is no default.
|
|
662
780
|
*
|
|
663
|
-
* @generated from protobuf field: optional string objc_class_prefix = 36
|
|
781
|
+
* @generated from protobuf field: optional string objc_class_prefix = 36
|
|
664
782
|
*/
|
|
665
783
|
objcClassPrefix?: string;
|
|
666
784
|
/**
|
|
667
785
|
* Namespace for generated classes; defaults to the package.
|
|
668
786
|
*
|
|
669
|
-
* @generated from protobuf field: optional string csharp_namespace = 37
|
|
787
|
+
* @generated from protobuf field: optional string csharp_namespace = 37
|
|
670
788
|
*/
|
|
671
789
|
csharpNamespace?: string;
|
|
672
790
|
/**
|
|
@@ -675,14 +793,14 @@ export interface FileOptions {
|
|
|
675
793
|
* defined. When this options is provided, they will use this value instead
|
|
676
794
|
* to prefix the types/symbols defined.
|
|
677
795
|
*
|
|
678
|
-
* @generated from protobuf field: optional string swift_prefix = 39
|
|
796
|
+
* @generated from protobuf field: optional string swift_prefix = 39
|
|
679
797
|
*/
|
|
680
798
|
swiftPrefix?: string;
|
|
681
799
|
/**
|
|
682
800
|
* Sets the php class prefix which is prepended to all php generated classes
|
|
683
801
|
* from this .proto. Default is empty.
|
|
684
802
|
*
|
|
685
|
-
* @generated from protobuf field: optional string php_class_prefix = 40
|
|
803
|
+
* @generated from protobuf field: optional string php_class_prefix = 40
|
|
686
804
|
*/
|
|
687
805
|
phpClassPrefix?: string;
|
|
688
806
|
/**
|
|
@@ -690,7 +808,7 @@ export interface FileOptions {
|
|
|
690
808
|
* is empty. When this option is empty, the package name will be used for
|
|
691
809
|
* determining the namespace.
|
|
692
810
|
*
|
|
693
|
-
* @generated from protobuf field: optional string php_namespace = 41
|
|
811
|
+
* @generated from protobuf field: optional string php_namespace = 41
|
|
694
812
|
*/
|
|
695
813
|
phpNamespace?: string;
|
|
696
814
|
/**
|
|
@@ -698,7 +816,7 @@ export interface FileOptions {
|
|
|
698
816
|
* Default is empty. When this option is empty, the proto file name will be
|
|
699
817
|
* used for determining the namespace.
|
|
700
818
|
*
|
|
701
|
-
* @generated from protobuf field: optional string php_metadata_namespace = 44
|
|
819
|
+
* @generated from protobuf field: optional string php_metadata_namespace = 44
|
|
702
820
|
*/
|
|
703
821
|
phpMetadataNamespace?: string;
|
|
704
822
|
/**
|
|
@@ -706,14 +824,23 @@ export interface FileOptions {
|
|
|
706
824
|
* is empty. When this option is not set, the package name will be used for
|
|
707
825
|
* determining the ruby package.
|
|
708
826
|
*
|
|
709
|
-
* @generated from protobuf field: optional string ruby_package = 45
|
|
827
|
+
* @generated from protobuf field: optional string ruby_package = 45
|
|
710
828
|
*/
|
|
711
829
|
rubyPackage?: string;
|
|
830
|
+
/**
|
|
831
|
+
* Any features defined in the specific edition.
|
|
832
|
+
* WARNING: This field should only be used by protobuf plugins or special
|
|
833
|
+
* cases like the proto compiler. Other uses are discouraged and
|
|
834
|
+
* developers should rely on the protoreflect APIs for their client language.
|
|
835
|
+
*
|
|
836
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 50
|
|
837
|
+
*/
|
|
838
|
+
features?: FeatureSet;
|
|
712
839
|
/**
|
|
713
840
|
* The parser stores options it doesn't recognize here.
|
|
714
841
|
* See the documentation for the "Options" section above.
|
|
715
842
|
*
|
|
716
|
-
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
843
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
717
844
|
*/
|
|
718
845
|
uninterpretedOption: UninterpretedOption[];
|
|
719
846
|
}
|
|
@@ -772,7 +899,7 @@ export interface MessageOptions {
|
|
|
772
899
|
* Because this is an option, the above two restrictions are not enforced by
|
|
773
900
|
* the protocol compiler.
|
|
774
901
|
*
|
|
775
|
-
* @generated from protobuf field: optional bool message_set_wire_format = 1
|
|
902
|
+
* @generated from protobuf field: optional bool message_set_wire_format = 1 [default = false]
|
|
776
903
|
*/
|
|
777
904
|
messageSetWireFormat?: boolean;
|
|
778
905
|
/**
|
|
@@ -780,7 +907,7 @@ export interface MessageOptions {
|
|
|
780
907
|
* conflict with a field of the same name. This is meant to make migration
|
|
781
908
|
* from proto1 easier; new code should avoid fields named "descriptor".
|
|
782
909
|
*
|
|
783
|
-
* @generated from protobuf field: optional bool no_standard_descriptor_accessor = 2
|
|
910
|
+
* @generated from protobuf field: optional bool no_standard_descriptor_accessor = 2 [default = false]
|
|
784
911
|
*/
|
|
785
912
|
noStandardDescriptorAccessor?: boolean;
|
|
786
913
|
/**
|
|
@@ -789,7 +916,7 @@ export interface MessageOptions {
|
|
|
789
916
|
* for the message, or it will be completely ignored; in the very least,
|
|
790
917
|
* this is a formalization for deprecating messages.
|
|
791
918
|
*
|
|
792
|
-
* @generated from protobuf field: optional bool deprecated = 3
|
|
919
|
+
* @generated from protobuf field: optional bool deprecated = 3 [default = false]
|
|
793
920
|
*/
|
|
794
921
|
deprecated?: boolean;
|
|
795
922
|
/**
|
|
@@ -815,13 +942,38 @@ export interface MessageOptions {
|
|
|
815
942
|
* instead. The option should only be implicitly set by the proto compiler
|
|
816
943
|
* parser.
|
|
817
944
|
*
|
|
818
|
-
* @generated from protobuf field: optional bool map_entry = 7
|
|
945
|
+
* @generated from protobuf field: optional bool map_entry = 7
|
|
819
946
|
*/
|
|
820
947
|
mapEntry?: boolean;
|
|
948
|
+
/**
|
|
949
|
+
* Enable the legacy handling of JSON field name conflicts. This lowercases
|
|
950
|
+
* and strips underscored from the fields before comparison in proto3 only.
|
|
951
|
+
* The new behavior takes `json_name` into account and applies to proto2 as
|
|
952
|
+
* well.
|
|
953
|
+
*
|
|
954
|
+
* This should only be used as a temporary measure against broken builds due
|
|
955
|
+
* to the change in behavior for JSON field name conflicts.
|
|
956
|
+
*
|
|
957
|
+
* TODO This is legacy behavior we plan to remove once downstream
|
|
958
|
+
* teams have had time to migrate.
|
|
959
|
+
*
|
|
960
|
+
* @deprecated
|
|
961
|
+
* @generated from protobuf field: optional bool deprecated_legacy_json_field_conflicts = 11 [deprecated = true]
|
|
962
|
+
*/
|
|
963
|
+
deprecatedLegacyJsonFieldConflicts?: boolean;
|
|
964
|
+
/**
|
|
965
|
+
* Any features defined in the specific edition.
|
|
966
|
+
* WARNING: This field should only be used by protobuf plugins or special
|
|
967
|
+
* cases like the proto compiler. Other uses are discouraged and
|
|
968
|
+
* developers should rely on the protoreflect APIs for their client language.
|
|
969
|
+
*
|
|
970
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 12
|
|
971
|
+
*/
|
|
972
|
+
features?: FeatureSet;
|
|
821
973
|
/**
|
|
822
974
|
* The parser stores options it doesn't recognize here. See above.
|
|
823
975
|
*
|
|
824
|
-
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
976
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
825
977
|
*/
|
|
826
978
|
uninterpretedOption: UninterpretedOption[];
|
|
827
979
|
}
|
|
@@ -830,12 +982,15 @@ export interface MessageOptions {
|
|
|
830
982
|
*/
|
|
831
983
|
export interface FieldOptions {
|
|
832
984
|
/**
|
|
985
|
+
* NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
|
|
833
986
|
* The ctype option instructs the C++ code generator to use a different
|
|
834
987
|
* representation of the field than it normally would. See the specific
|
|
835
|
-
* options below. This option is
|
|
836
|
-
*
|
|
988
|
+
* options below. This option is only implemented to support use of
|
|
989
|
+
* [ctype=CORD] and [ctype=STRING] (the default) on non-repeated fields of
|
|
990
|
+
* type "bytes" in the open source release.
|
|
991
|
+
* TODO: make ctype actually deprecated.
|
|
837
992
|
*
|
|
838
|
-
* @generated from protobuf field: optional google.protobuf.FieldOptions.CType ctype = 1
|
|
993
|
+
* @generated from protobuf field: optional google.protobuf.FieldOptions.CType ctype = 1 [default = STRING]
|
|
839
994
|
*/
|
|
840
995
|
ctype?: FieldOptions_CType;
|
|
841
996
|
/**
|
|
@@ -843,9 +998,11 @@ export interface FieldOptions {
|
|
|
843
998
|
* a more efficient representation on the wire. Rather than repeatedly
|
|
844
999
|
* writing the tag and type for each element, the entire array is encoded as
|
|
845
1000
|
* a single length-delimited blob. In proto3, only explicit setting it to
|
|
846
|
-
* false will avoid using packed encoding.
|
|
1001
|
+
* false will avoid using packed encoding. This option is prohibited in
|
|
1002
|
+
* Editions, but the `repeated_field_encoding` feature can be used to control
|
|
1003
|
+
* the behavior.
|
|
847
1004
|
*
|
|
848
|
-
* @generated from protobuf field: optional bool packed = 2
|
|
1005
|
+
* @generated from protobuf field: optional bool packed = 2
|
|
849
1006
|
*/
|
|
850
1007
|
packed?: boolean;
|
|
851
1008
|
/**
|
|
@@ -861,7 +1018,7 @@ export interface FieldOptions {
|
|
|
861
1018
|
* This option is an enum to permit additional types to be added, e.g.
|
|
862
1019
|
* goog.math.Integer.
|
|
863
1020
|
*
|
|
864
|
-
* @generated from protobuf field: optional google.protobuf.FieldOptions.JSType jstype = 6
|
|
1021
|
+
* @generated from protobuf field: optional google.protobuf.FieldOptions.JSType jstype = 6 [default = JS_NORMAL]
|
|
865
1022
|
*/
|
|
866
1023
|
jstype?: FieldOptions_JSType;
|
|
867
1024
|
/**
|
|
@@ -882,25 +1039,13 @@ export interface FieldOptions {
|
|
|
882
1039
|
* call from multiple threads concurrently, while non-const methods continue
|
|
883
1040
|
* to require exclusive access.
|
|
884
1041
|
*
|
|
1042
|
+
* Note that lazy message fields are still eagerly verified to check
|
|
1043
|
+
* ill-formed wireformat or missing required fields. Calling IsInitialized()
|
|
1044
|
+
* on the outer message would fail if the inner message has missing required
|
|
1045
|
+
* fields. Failed verification would result in parsing failure (except when
|
|
1046
|
+
* uninitialized messages are acceptable).
|
|
885
1047
|
*
|
|
886
|
-
*
|
|
887
|
-
* a lazy sub-message. That is, calling IsInitialized() on the outer message
|
|
888
|
-
* may return true even if the inner message has missing required fields.
|
|
889
|
-
* This is necessary because otherwise the inner message would have to be
|
|
890
|
-
* parsed in order to perform the check, defeating the purpose of lazy
|
|
891
|
-
* parsing. An implementation which chooses not to check required fields
|
|
892
|
-
* must be consistent about it. That is, for any particular sub-message, the
|
|
893
|
-
* implementation must either *always* check its required fields, or *never*
|
|
894
|
-
* check its required fields, regardless of whether or not the message has
|
|
895
|
-
* been parsed.
|
|
896
|
-
*
|
|
897
|
-
* As of 2021, lazy does no correctness checks on the byte stream during
|
|
898
|
-
* parsing. This may lead to crashes if and when an invalid byte stream is
|
|
899
|
-
* finally parsed upon access.
|
|
900
|
-
*
|
|
901
|
-
* TODO(b/211906113): Enable validation on lazy fields.
|
|
902
|
-
*
|
|
903
|
-
* @generated from protobuf field: optional bool lazy = 5;
|
|
1048
|
+
* @generated from protobuf field: optional bool lazy = 5 [default = false]
|
|
904
1049
|
*/
|
|
905
1050
|
lazy?: boolean;
|
|
906
1051
|
/**
|
|
@@ -908,7 +1053,7 @@ export interface FieldOptions {
|
|
|
908
1053
|
* only be used where lazy with verification is prohibitive for performance
|
|
909
1054
|
* reasons.
|
|
910
1055
|
*
|
|
911
|
-
* @generated from protobuf field: optional bool unverified_lazy = 15
|
|
1056
|
+
* @generated from protobuf field: optional bool unverified_lazy = 15 [default = false]
|
|
912
1057
|
*/
|
|
913
1058
|
unverifiedLazy?: boolean;
|
|
914
1059
|
/**
|
|
@@ -917,22 +1062,104 @@ export interface FieldOptions {
|
|
|
917
1062
|
* for accessors, or it will be completely ignored; in the very least, this
|
|
918
1063
|
* is a formalization for deprecating fields.
|
|
919
1064
|
*
|
|
920
|
-
* @generated from protobuf field: optional bool deprecated = 3
|
|
1065
|
+
* @generated from protobuf field: optional bool deprecated = 3 [default = false]
|
|
921
1066
|
*/
|
|
922
1067
|
deprecated?: boolean;
|
|
923
1068
|
/**
|
|
924
1069
|
* For Google-internal migration only. Do not use.
|
|
925
1070
|
*
|
|
926
|
-
* @generated from protobuf field: optional bool weak = 10
|
|
1071
|
+
* @generated from protobuf field: optional bool weak = 10 [default = false]
|
|
927
1072
|
*/
|
|
928
1073
|
weak?: boolean;
|
|
1074
|
+
/**
|
|
1075
|
+
* Indicate that the field value should not be printed out when using debug
|
|
1076
|
+
* formats, e.g. when the field contains sensitive credentials.
|
|
1077
|
+
*
|
|
1078
|
+
* @generated from protobuf field: optional bool debug_redact = 16 [default = false]
|
|
1079
|
+
*/
|
|
1080
|
+
debugRedact?: boolean;
|
|
1081
|
+
/**
|
|
1082
|
+
* @generated from protobuf field: optional google.protobuf.FieldOptions.OptionRetention retention = 17
|
|
1083
|
+
*/
|
|
1084
|
+
retention?: FieldOptions_OptionRetention;
|
|
1085
|
+
/**
|
|
1086
|
+
* @generated from protobuf field: repeated google.protobuf.FieldOptions.OptionTargetType targets = 19
|
|
1087
|
+
*/
|
|
1088
|
+
targets: FieldOptions_OptionTargetType[];
|
|
1089
|
+
/**
|
|
1090
|
+
* @generated from protobuf field: repeated google.protobuf.FieldOptions.EditionDefault edition_defaults = 20
|
|
1091
|
+
*/
|
|
1092
|
+
editionDefaults: FieldOptions_EditionDefault[];
|
|
1093
|
+
/**
|
|
1094
|
+
* Any features defined in the specific edition.
|
|
1095
|
+
* WARNING: This field should only be used by protobuf plugins or special
|
|
1096
|
+
* cases like the proto compiler. Other uses are discouraged and
|
|
1097
|
+
* developers should rely on the protoreflect APIs for their client language.
|
|
1098
|
+
*
|
|
1099
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 21
|
|
1100
|
+
*/
|
|
1101
|
+
features?: FeatureSet;
|
|
1102
|
+
/**
|
|
1103
|
+
* @generated from protobuf field: optional google.protobuf.FieldOptions.FeatureSupport feature_support = 22
|
|
1104
|
+
*/
|
|
1105
|
+
featureSupport?: FieldOptions_FeatureSupport;
|
|
929
1106
|
/**
|
|
930
1107
|
* The parser stores options it doesn't recognize here. See above.
|
|
931
1108
|
*
|
|
932
|
-
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
1109
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
933
1110
|
*/
|
|
934
1111
|
uninterpretedOption: UninterpretedOption[];
|
|
935
1112
|
}
|
|
1113
|
+
/**
|
|
1114
|
+
* @generated from protobuf message google.protobuf.FieldOptions.EditionDefault
|
|
1115
|
+
*/
|
|
1116
|
+
export interface FieldOptions_EditionDefault {
|
|
1117
|
+
/**
|
|
1118
|
+
* @generated from protobuf field: optional google.protobuf.Edition edition = 3
|
|
1119
|
+
*/
|
|
1120
|
+
edition?: Edition;
|
|
1121
|
+
/**
|
|
1122
|
+
* @generated from protobuf field: optional string value = 2
|
|
1123
|
+
*/
|
|
1124
|
+
value?: string;
|
|
1125
|
+
}
|
|
1126
|
+
/**
|
|
1127
|
+
* Information about the support window of a feature.
|
|
1128
|
+
*
|
|
1129
|
+
* @generated from protobuf message google.protobuf.FieldOptions.FeatureSupport
|
|
1130
|
+
*/
|
|
1131
|
+
export interface FieldOptions_FeatureSupport {
|
|
1132
|
+
/**
|
|
1133
|
+
* The edition that this feature was first available in. In editions
|
|
1134
|
+
* earlier than this one, the default assigned to EDITION_LEGACY will be
|
|
1135
|
+
* used, and proto files will not be able to override it.
|
|
1136
|
+
*
|
|
1137
|
+
* @generated from protobuf field: optional google.protobuf.Edition edition_introduced = 1
|
|
1138
|
+
*/
|
|
1139
|
+
editionIntroduced?: Edition;
|
|
1140
|
+
/**
|
|
1141
|
+
* The edition this feature becomes deprecated in. Using this after this
|
|
1142
|
+
* edition may trigger warnings.
|
|
1143
|
+
*
|
|
1144
|
+
* @generated from protobuf field: optional google.protobuf.Edition edition_deprecated = 2
|
|
1145
|
+
*/
|
|
1146
|
+
editionDeprecated?: Edition;
|
|
1147
|
+
/**
|
|
1148
|
+
* The deprecation warning text if this feature is used after the edition it
|
|
1149
|
+
* was marked deprecated in.
|
|
1150
|
+
*
|
|
1151
|
+
* @generated from protobuf field: optional string deprecation_warning = 3
|
|
1152
|
+
*/
|
|
1153
|
+
deprecationWarning?: string;
|
|
1154
|
+
/**
|
|
1155
|
+
* The edition this feature is no longer available in. In editions after
|
|
1156
|
+
* this one, the last default assigned will be used, and proto files will
|
|
1157
|
+
* not be able to override it.
|
|
1158
|
+
*
|
|
1159
|
+
* @generated from protobuf field: optional google.protobuf.Edition edition_removed = 4
|
|
1160
|
+
*/
|
|
1161
|
+
editionRemoved?: Edition;
|
|
1162
|
+
}
|
|
936
1163
|
/**
|
|
937
1164
|
* @generated from protobuf enum google.protobuf.FieldOptions.CType
|
|
938
1165
|
*/
|
|
@@ -944,6 +1171,13 @@ export declare enum FieldOptions_CType {
|
|
|
944
1171
|
*/
|
|
945
1172
|
STRING = 0,
|
|
946
1173
|
/**
|
|
1174
|
+
* The option [ctype=CORD] may be applied to a non-repeated field of type
|
|
1175
|
+
* "bytes". It indicates that in C++, the data should be stored in a Cord
|
|
1176
|
+
* instead of a string. For very large strings, this may reduce memory
|
|
1177
|
+
* fragmentation. It may also allow better performance when parsing from a
|
|
1178
|
+
* Cord, or when parsing with aliasing enabled, as the parsed Cord may then
|
|
1179
|
+
* alias the original buffer.
|
|
1180
|
+
*
|
|
947
1181
|
* @generated from protobuf enum value: CORD = 1;
|
|
948
1182
|
*/
|
|
949
1183
|
CORD = 1,
|
|
@@ -975,14 +1209,91 @@ export declare enum FieldOptions_JSType {
|
|
|
975
1209
|
*/
|
|
976
1210
|
JS_NUMBER = 2
|
|
977
1211
|
}
|
|
1212
|
+
/**
|
|
1213
|
+
* If set to RETENTION_SOURCE, the option will be omitted from the binary.
|
|
1214
|
+
*
|
|
1215
|
+
* @generated from protobuf enum google.protobuf.FieldOptions.OptionRetention
|
|
1216
|
+
*/
|
|
1217
|
+
export declare enum FieldOptions_OptionRetention {
|
|
1218
|
+
/**
|
|
1219
|
+
* @generated from protobuf enum value: RETENTION_UNKNOWN = 0;
|
|
1220
|
+
*/
|
|
1221
|
+
RETENTION_UNKNOWN = 0,
|
|
1222
|
+
/**
|
|
1223
|
+
* @generated from protobuf enum value: RETENTION_RUNTIME = 1;
|
|
1224
|
+
*/
|
|
1225
|
+
RETENTION_RUNTIME = 1,
|
|
1226
|
+
/**
|
|
1227
|
+
* @generated from protobuf enum value: RETENTION_SOURCE = 2;
|
|
1228
|
+
*/
|
|
1229
|
+
RETENTION_SOURCE = 2
|
|
1230
|
+
}
|
|
1231
|
+
/**
|
|
1232
|
+
* This indicates the types of entities that the field may apply to when used
|
|
1233
|
+
* as an option. If it is unset, then the field may be freely used as an
|
|
1234
|
+
* option on any kind of entity.
|
|
1235
|
+
*
|
|
1236
|
+
* @generated from protobuf enum google.protobuf.FieldOptions.OptionTargetType
|
|
1237
|
+
*/
|
|
1238
|
+
export declare enum FieldOptions_OptionTargetType {
|
|
1239
|
+
/**
|
|
1240
|
+
* @generated from protobuf enum value: TARGET_TYPE_UNKNOWN = 0;
|
|
1241
|
+
*/
|
|
1242
|
+
TARGET_TYPE_UNKNOWN = 0,
|
|
1243
|
+
/**
|
|
1244
|
+
* @generated from protobuf enum value: TARGET_TYPE_FILE = 1;
|
|
1245
|
+
*/
|
|
1246
|
+
TARGET_TYPE_FILE = 1,
|
|
1247
|
+
/**
|
|
1248
|
+
* @generated from protobuf enum value: TARGET_TYPE_EXTENSION_RANGE = 2;
|
|
1249
|
+
*/
|
|
1250
|
+
TARGET_TYPE_EXTENSION_RANGE = 2,
|
|
1251
|
+
/**
|
|
1252
|
+
* @generated from protobuf enum value: TARGET_TYPE_MESSAGE = 3;
|
|
1253
|
+
*/
|
|
1254
|
+
TARGET_TYPE_MESSAGE = 3,
|
|
1255
|
+
/**
|
|
1256
|
+
* @generated from protobuf enum value: TARGET_TYPE_FIELD = 4;
|
|
1257
|
+
*/
|
|
1258
|
+
TARGET_TYPE_FIELD = 4,
|
|
1259
|
+
/**
|
|
1260
|
+
* @generated from protobuf enum value: TARGET_TYPE_ONEOF = 5;
|
|
1261
|
+
*/
|
|
1262
|
+
TARGET_TYPE_ONEOF = 5,
|
|
1263
|
+
/**
|
|
1264
|
+
* @generated from protobuf enum value: TARGET_TYPE_ENUM = 6;
|
|
1265
|
+
*/
|
|
1266
|
+
TARGET_TYPE_ENUM = 6,
|
|
1267
|
+
/**
|
|
1268
|
+
* @generated from protobuf enum value: TARGET_TYPE_ENUM_ENTRY = 7;
|
|
1269
|
+
*/
|
|
1270
|
+
TARGET_TYPE_ENUM_ENTRY = 7,
|
|
1271
|
+
/**
|
|
1272
|
+
* @generated from protobuf enum value: TARGET_TYPE_SERVICE = 8;
|
|
1273
|
+
*/
|
|
1274
|
+
TARGET_TYPE_SERVICE = 8,
|
|
1275
|
+
/**
|
|
1276
|
+
* @generated from protobuf enum value: TARGET_TYPE_METHOD = 9;
|
|
1277
|
+
*/
|
|
1278
|
+
TARGET_TYPE_METHOD = 9
|
|
1279
|
+
}
|
|
978
1280
|
/**
|
|
979
1281
|
* @generated from protobuf message google.protobuf.OneofOptions
|
|
980
1282
|
*/
|
|
981
1283
|
export interface OneofOptions {
|
|
1284
|
+
/**
|
|
1285
|
+
* Any features defined in the specific edition.
|
|
1286
|
+
* WARNING: This field should only be used by protobuf plugins or special
|
|
1287
|
+
* cases like the proto compiler. Other uses are discouraged and
|
|
1288
|
+
* developers should rely on the protoreflect APIs for their client language.
|
|
1289
|
+
*
|
|
1290
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 1
|
|
1291
|
+
*/
|
|
1292
|
+
features?: FeatureSet;
|
|
982
1293
|
/**
|
|
983
1294
|
* The parser stores options it doesn't recognize here. See above.
|
|
984
1295
|
*
|
|
985
|
-
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
1296
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
986
1297
|
*/
|
|
987
1298
|
uninterpretedOption: UninterpretedOption[];
|
|
988
1299
|
}
|
|
@@ -994,7 +1305,7 @@ export interface EnumOptions {
|
|
|
994
1305
|
* Set this option to true to allow mapping different tag names to the same
|
|
995
1306
|
* value.
|
|
996
1307
|
*
|
|
997
|
-
* @generated from protobuf field: optional bool allow_alias = 2
|
|
1308
|
+
* @generated from protobuf field: optional bool allow_alias = 2
|
|
998
1309
|
*/
|
|
999
1310
|
allowAlias?: boolean;
|
|
1000
1311
|
/**
|
|
@@ -1003,13 +1314,34 @@ export interface EnumOptions {
|
|
|
1003
1314
|
* for the enum, or it will be completely ignored; in the very least, this
|
|
1004
1315
|
* is a formalization for deprecating enums.
|
|
1005
1316
|
*
|
|
1006
|
-
* @generated from protobuf field: optional bool deprecated = 3
|
|
1317
|
+
* @generated from protobuf field: optional bool deprecated = 3 [default = false]
|
|
1007
1318
|
*/
|
|
1008
1319
|
deprecated?: boolean;
|
|
1320
|
+
/**
|
|
1321
|
+
* Enable the legacy handling of JSON field name conflicts. This lowercases
|
|
1322
|
+
* and strips underscored from the fields before comparison in proto3 only.
|
|
1323
|
+
* The new behavior takes `json_name` into account and applies to proto2 as
|
|
1324
|
+
* well.
|
|
1325
|
+
* TODO Remove this legacy behavior once downstream teams have
|
|
1326
|
+
* had time to migrate.
|
|
1327
|
+
*
|
|
1328
|
+
* @deprecated
|
|
1329
|
+
* @generated from protobuf field: optional bool deprecated_legacy_json_field_conflicts = 6 [deprecated = true]
|
|
1330
|
+
*/
|
|
1331
|
+
deprecatedLegacyJsonFieldConflicts?: boolean;
|
|
1332
|
+
/**
|
|
1333
|
+
* Any features defined in the specific edition.
|
|
1334
|
+
* WARNING: This field should only be used by protobuf plugins or special
|
|
1335
|
+
* cases like the proto compiler. Other uses are discouraged and
|
|
1336
|
+
* developers should rely on the protoreflect APIs for their client language.
|
|
1337
|
+
*
|
|
1338
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 7
|
|
1339
|
+
*/
|
|
1340
|
+
features?: FeatureSet;
|
|
1009
1341
|
/**
|
|
1010
1342
|
* The parser stores options it doesn't recognize here. See above.
|
|
1011
1343
|
*
|
|
1012
|
-
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
1344
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
1013
1345
|
*/
|
|
1014
1346
|
uninterpretedOption: UninterpretedOption[];
|
|
1015
1347
|
}
|
|
@@ -1023,13 +1355,36 @@ export interface EnumValueOptions {
|
|
|
1023
1355
|
* for the enum value, or it will be completely ignored; in the very least,
|
|
1024
1356
|
* this is a formalization for deprecating enum values.
|
|
1025
1357
|
*
|
|
1026
|
-
* @generated from protobuf field: optional bool deprecated = 1
|
|
1358
|
+
* @generated from protobuf field: optional bool deprecated = 1 [default = false]
|
|
1027
1359
|
*/
|
|
1028
1360
|
deprecated?: boolean;
|
|
1361
|
+
/**
|
|
1362
|
+
* Any features defined in the specific edition.
|
|
1363
|
+
* WARNING: This field should only be used by protobuf plugins or special
|
|
1364
|
+
* cases like the proto compiler. Other uses are discouraged and
|
|
1365
|
+
* developers should rely on the protoreflect APIs for their client language.
|
|
1366
|
+
*
|
|
1367
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 2
|
|
1368
|
+
*/
|
|
1369
|
+
features?: FeatureSet;
|
|
1370
|
+
/**
|
|
1371
|
+
* Indicate that fields annotated with this enum value should not be printed
|
|
1372
|
+
* out when using debug formats, e.g. when the field contains sensitive
|
|
1373
|
+
* credentials.
|
|
1374
|
+
*
|
|
1375
|
+
* @generated from protobuf field: optional bool debug_redact = 3 [default = false]
|
|
1376
|
+
*/
|
|
1377
|
+
debugRedact?: boolean;
|
|
1378
|
+
/**
|
|
1379
|
+
* Information about the support window of a feature value.
|
|
1380
|
+
*
|
|
1381
|
+
* @generated from protobuf field: optional google.protobuf.FieldOptions.FeatureSupport feature_support = 4
|
|
1382
|
+
*/
|
|
1383
|
+
featureSupport?: FieldOptions_FeatureSupport;
|
|
1029
1384
|
/**
|
|
1030
1385
|
* The parser stores options it doesn't recognize here. See above.
|
|
1031
1386
|
*
|
|
1032
|
-
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
1387
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
1033
1388
|
*/
|
|
1034
1389
|
uninterpretedOption: UninterpretedOption[];
|
|
1035
1390
|
}
|
|
@@ -1037,19 +1392,28 @@ export interface EnumValueOptions {
|
|
|
1037
1392
|
* @generated from protobuf message google.protobuf.ServiceOptions
|
|
1038
1393
|
*/
|
|
1039
1394
|
export interface ServiceOptions {
|
|
1395
|
+
/**
|
|
1396
|
+
* Any features defined in the specific edition.
|
|
1397
|
+
* WARNING: This field should only be used by protobuf plugins or special
|
|
1398
|
+
* cases like the proto compiler. Other uses are discouraged and
|
|
1399
|
+
* developers should rely on the protoreflect APIs for their client language.
|
|
1400
|
+
*
|
|
1401
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 34
|
|
1402
|
+
*/
|
|
1403
|
+
features?: FeatureSet;
|
|
1040
1404
|
/**
|
|
1041
1405
|
* Is this service deprecated?
|
|
1042
1406
|
* Depending on the target platform, this can emit Deprecated annotations
|
|
1043
1407
|
* for the service, or it will be completely ignored; in the very least,
|
|
1044
1408
|
* this is a formalization for deprecating services.
|
|
1045
1409
|
*
|
|
1046
|
-
* @generated from protobuf field: optional bool deprecated = 33
|
|
1410
|
+
* @generated from protobuf field: optional bool deprecated = 33 [default = false]
|
|
1047
1411
|
*/
|
|
1048
1412
|
deprecated?: boolean;
|
|
1049
1413
|
/**
|
|
1050
1414
|
* The parser stores options it doesn't recognize here. See above.
|
|
1051
1415
|
*
|
|
1052
|
-
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
1416
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
1053
1417
|
*/
|
|
1054
1418
|
uninterpretedOption: UninterpretedOption[];
|
|
1055
1419
|
}
|
|
@@ -1063,17 +1427,26 @@ export interface MethodOptions {
|
|
|
1063
1427
|
* for the method, or it will be completely ignored; in the very least,
|
|
1064
1428
|
* this is a formalization for deprecating methods.
|
|
1065
1429
|
*
|
|
1066
|
-
* @generated from protobuf field: optional bool deprecated = 33
|
|
1430
|
+
* @generated from protobuf field: optional bool deprecated = 33 [default = false]
|
|
1067
1431
|
*/
|
|
1068
1432
|
deprecated?: boolean;
|
|
1069
1433
|
/**
|
|
1070
|
-
* @generated from protobuf field: optional google.protobuf.MethodOptions.IdempotencyLevel idempotency_level = 34
|
|
1434
|
+
* @generated from protobuf field: optional google.protobuf.MethodOptions.IdempotencyLevel idempotency_level = 34 [default = IDEMPOTENCY_UNKNOWN]
|
|
1071
1435
|
*/
|
|
1072
1436
|
idempotencyLevel?: MethodOptions_IdempotencyLevel;
|
|
1437
|
+
/**
|
|
1438
|
+
* Any features defined in the specific edition.
|
|
1439
|
+
* WARNING: This field should only be used by protobuf plugins or special
|
|
1440
|
+
* cases like the proto compiler. Other uses are discouraged and
|
|
1441
|
+
* developers should rely on the protoreflect APIs for their client language.
|
|
1442
|
+
*
|
|
1443
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 35
|
|
1444
|
+
*/
|
|
1445
|
+
features?: FeatureSet;
|
|
1073
1446
|
/**
|
|
1074
1447
|
* The parser stores options it doesn't recognize here. See above.
|
|
1075
1448
|
*
|
|
1076
|
-
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
1449
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
1077
1450
|
*/
|
|
1078
1451
|
uninterpretedOption: UninterpretedOption[];
|
|
1079
1452
|
}
|
|
@@ -1114,34 +1487,34 @@ export declare enum MethodOptions_IdempotencyLevel {
|
|
|
1114
1487
|
*/
|
|
1115
1488
|
export interface UninterpretedOption {
|
|
1116
1489
|
/**
|
|
1117
|
-
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption.NamePart name = 2
|
|
1490
|
+
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption.NamePart name = 2
|
|
1118
1491
|
*/
|
|
1119
1492
|
name: UninterpretedOption_NamePart[];
|
|
1120
1493
|
/**
|
|
1121
1494
|
* The value of the uninterpreted option, in whatever type the tokenizer
|
|
1122
1495
|
* identified it as during parsing. Exactly one of these should be set.
|
|
1123
1496
|
*
|
|
1124
|
-
* @generated from protobuf field: optional string identifier_value = 3
|
|
1497
|
+
* @generated from protobuf field: optional string identifier_value = 3
|
|
1125
1498
|
*/
|
|
1126
1499
|
identifierValue?: string;
|
|
1127
1500
|
/**
|
|
1128
|
-
* @generated from protobuf field: optional uint64 positive_int_value = 4
|
|
1501
|
+
* @generated from protobuf field: optional uint64 positive_int_value = 4
|
|
1129
1502
|
*/
|
|
1130
1503
|
positiveIntValue?: bigint;
|
|
1131
1504
|
/**
|
|
1132
|
-
* @generated from protobuf field: optional int64 negative_int_value = 5
|
|
1505
|
+
* @generated from protobuf field: optional int64 negative_int_value = 5
|
|
1133
1506
|
*/
|
|
1134
1507
|
negativeIntValue?: bigint;
|
|
1135
1508
|
/**
|
|
1136
|
-
* @generated from protobuf field: optional double double_value = 6
|
|
1509
|
+
* @generated from protobuf field: optional double double_value = 6
|
|
1137
1510
|
*/
|
|
1138
1511
|
doubleValue?: number;
|
|
1139
1512
|
/**
|
|
1140
|
-
* @generated from protobuf field: optional bytes string_value = 7
|
|
1513
|
+
* @generated from protobuf field: optional bytes string_value = 7
|
|
1141
1514
|
*/
|
|
1142
1515
|
stringValue?: Uint8Array;
|
|
1143
1516
|
/**
|
|
1144
|
-
* @generated from protobuf field: optional string aggregate_value = 8
|
|
1517
|
+
* @generated from protobuf field: optional string aggregate_value = 8
|
|
1145
1518
|
*/
|
|
1146
1519
|
aggregateValue?: string;
|
|
1147
1520
|
}
|
|
@@ -1156,14 +1529,275 @@ export interface UninterpretedOption {
|
|
|
1156
1529
|
*/
|
|
1157
1530
|
export interface UninterpretedOption_NamePart {
|
|
1158
1531
|
/**
|
|
1159
|
-
* @generated from protobuf field: string name_part = 1
|
|
1532
|
+
* @generated from protobuf field: required string name_part = 1
|
|
1160
1533
|
*/
|
|
1161
1534
|
namePart: string;
|
|
1162
1535
|
/**
|
|
1163
|
-
* @generated from protobuf field: bool is_extension = 2
|
|
1536
|
+
* @generated from protobuf field: required bool is_extension = 2
|
|
1164
1537
|
*/
|
|
1165
1538
|
isExtension: boolean;
|
|
1166
1539
|
}
|
|
1540
|
+
/**
|
|
1541
|
+
* TODO Enums in C++ gencode (and potentially other languages) are
|
|
1542
|
+
* not well scoped. This means that each of the feature enums below can clash
|
|
1543
|
+
* with each other. The short names we've chosen maximize call-site
|
|
1544
|
+
* readability, but leave us very open to this scenario. A future feature will
|
|
1545
|
+
* be designed and implemented to handle this, hopefully before we ever hit a
|
|
1546
|
+
* conflict here.
|
|
1547
|
+
*
|
|
1548
|
+
* @generated from protobuf message google.protobuf.FeatureSet
|
|
1549
|
+
*/
|
|
1550
|
+
export interface FeatureSet {
|
|
1551
|
+
/**
|
|
1552
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet.FieldPresence field_presence = 1
|
|
1553
|
+
*/
|
|
1554
|
+
fieldPresence?: FeatureSet_FieldPresence;
|
|
1555
|
+
/**
|
|
1556
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet.EnumType enum_type = 2
|
|
1557
|
+
*/
|
|
1558
|
+
enumType?: FeatureSet_EnumType;
|
|
1559
|
+
/**
|
|
1560
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet.RepeatedFieldEncoding repeated_field_encoding = 3
|
|
1561
|
+
*/
|
|
1562
|
+
repeatedFieldEncoding?: FeatureSet_RepeatedFieldEncoding;
|
|
1563
|
+
/**
|
|
1564
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet.Utf8Validation utf8_validation = 4
|
|
1565
|
+
*/
|
|
1566
|
+
utf8Validation?: FeatureSet_Utf8Validation;
|
|
1567
|
+
/**
|
|
1568
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet.MessageEncoding message_encoding = 5
|
|
1569
|
+
*/
|
|
1570
|
+
messageEncoding?: FeatureSet_MessageEncoding;
|
|
1571
|
+
/**
|
|
1572
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet.JsonFormat json_format = 6
|
|
1573
|
+
*/
|
|
1574
|
+
jsonFormat?: FeatureSet_JsonFormat;
|
|
1575
|
+
/**
|
|
1576
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet.EnforceNamingStyle enforce_naming_style = 7
|
|
1577
|
+
*/
|
|
1578
|
+
enforceNamingStyle?: FeatureSet_EnforceNamingStyle;
|
|
1579
|
+
/**
|
|
1580
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility default_symbol_visibility = 8
|
|
1581
|
+
*/
|
|
1582
|
+
defaultSymbolVisibility?: FeatureSet_VisibilityFeature_DefaultSymbolVisibility;
|
|
1583
|
+
}
|
|
1584
|
+
/**
|
|
1585
|
+
* @generated from protobuf message google.protobuf.FeatureSet.VisibilityFeature
|
|
1586
|
+
*/
|
|
1587
|
+
export interface FeatureSet_VisibilityFeature {
|
|
1588
|
+
}
|
|
1589
|
+
/**
|
|
1590
|
+
* @generated from protobuf enum google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility
|
|
1591
|
+
*/
|
|
1592
|
+
export declare enum FeatureSet_VisibilityFeature_DefaultSymbolVisibility {
|
|
1593
|
+
/**
|
|
1594
|
+
* @generated from protobuf enum value: DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0;
|
|
1595
|
+
*/
|
|
1596
|
+
DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
|
|
1597
|
+
/**
|
|
1598
|
+
* Default pre-EDITION_2024, all UNSET visibility are export.
|
|
1599
|
+
*
|
|
1600
|
+
* @generated from protobuf enum value: EXPORT_ALL = 1;
|
|
1601
|
+
*/
|
|
1602
|
+
EXPORT_ALL = 1,
|
|
1603
|
+
/**
|
|
1604
|
+
* All top-level symbols default to export, nested default to local.
|
|
1605
|
+
*
|
|
1606
|
+
* @generated from protobuf enum value: EXPORT_TOP_LEVEL = 2;
|
|
1607
|
+
*/
|
|
1608
|
+
EXPORT_TOP_LEVEL = 2,
|
|
1609
|
+
/**
|
|
1610
|
+
* All symbols default to local.
|
|
1611
|
+
*
|
|
1612
|
+
* @generated from protobuf enum value: LOCAL_ALL = 3;
|
|
1613
|
+
*/
|
|
1614
|
+
LOCAL_ALL = 3,
|
|
1615
|
+
/**
|
|
1616
|
+
* All symbols local by default. Nested types cannot be exported.
|
|
1617
|
+
* With special case caveat for message { enum {} reserved 1 to max; }
|
|
1618
|
+
* This is the recommended setting for new protos.
|
|
1619
|
+
*
|
|
1620
|
+
* @generated from protobuf enum value: STRICT = 4;
|
|
1621
|
+
*/
|
|
1622
|
+
STRICT = 4
|
|
1623
|
+
}
|
|
1624
|
+
/**
|
|
1625
|
+
* @generated from protobuf enum google.protobuf.FeatureSet.FieldPresence
|
|
1626
|
+
*/
|
|
1627
|
+
export declare enum FeatureSet_FieldPresence {
|
|
1628
|
+
/**
|
|
1629
|
+
* @generated from protobuf enum value: FIELD_PRESENCE_UNKNOWN = 0;
|
|
1630
|
+
*/
|
|
1631
|
+
FIELD_PRESENCE_UNKNOWN = 0,
|
|
1632
|
+
/**
|
|
1633
|
+
* @generated from protobuf enum value: EXPLICIT = 1;
|
|
1634
|
+
*/
|
|
1635
|
+
EXPLICIT = 1,
|
|
1636
|
+
/**
|
|
1637
|
+
* @generated from protobuf enum value: IMPLICIT = 2;
|
|
1638
|
+
*/
|
|
1639
|
+
IMPLICIT = 2,
|
|
1640
|
+
/**
|
|
1641
|
+
* @generated from protobuf enum value: LEGACY_REQUIRED = 3;
|
|
1642
|
+
*/
|
|
1643
|
+
LEGACY_REQUIRED = 3
|
|
1644
|
+
}
|
|
1645
|
+
/**
|
|
1646
|
+
* @generated from protobuf enum google.protobuf.FeatureSet.EnumType
|
|
1647
|
+
*/
|
|
1648
|
+
export declare enum FeatureSet_EnumType {
|
|
1649
|
+
/**
|
|
1650
|
+
* @generated from protobuf enum value: ENUM_TYPE_UNKNOWN = 0;
|
|
1651
|
+
*/
|
|
1652
|
+
ENUM_TYPE_UNKNOWN = 0,
|
|
1653
|
+
/**
|
|
1654
|
+
* @generated from protobuf enum value: OPEN = 1;
|
|
1655
|
+
*/
|
|
1656
|
+
OPEN = 1,
|
|
1657
|
+
/**
|
|
1658
|
+
* @generated from protobuf enum value: CLOSED = 2;
|
|
1659
|
+
*/
|
|
1660
|
+
CLOSED = 2
|
|
1661
|
+
}
|
|
1662
|
+
/**
|
|
1663
|
+
* @generated from protobuf enum google.protobuf.FeatureSet.RepeatedFieldEncoding
|
|
1664
|
+
*/
|
|
1665
|
+
export declare enum FeatureSet_RepeatedFieldEncoding {
|
|
1666
|
+
/**
|
|
1667
|
+
* @generated from protobuf enum value: REPEATED_FIELD_ENCODING_UNKNOWN = 0;
|
|
1668
|
+
*/
|
|
1669
|
+
REPEATED_FIELD_ENCODING_UNKNOWN = 0,
|
|
1670
|
+
/**
|
|
1671
|
+
* @generated from protobuf enum value: PACKED = 1;
|
|
1672
|
+
*/
|
|
1673
|
+
PACKED = 1,
|
|
1674
|
+
/**
|
|
1675
|
+
* @generated from protobuf enum value: EXPANDED = 2;
|
|
1676
|
+
*/
|
|
1677
|
+
EXPANDED = 2
|
|
1678
|
+
}
|
|
1679
|
+
/**
|
|
1680
|
+
* @generated from protobuf enum google.protobuf.FeatureSet.Utf8Validation
|
|
1681
|
+
*/
|
|
1682
|
+
export declare enum FeatureSet_Utf8Validation {
|
|
1683
|
+
/**
|
|
1684
|
+
* @generated from protobuf enum value: UTF8_VALIDATION_UNKNOWN = 0;
|
|
1685
|
+
*/
|
|
1686
|
+
UTF8_VALIDATION_UNKNOWN = 0,
|
|
1687
|
+
/**
|
|
1688
|
+
* @generated from protobuf enum value: VERIFY = 2;
|
|
1689
|
+
*/
|
|
1690
|
+
VERIFY = 2,
|
|
1691
|
+
/**
|
|
1692
|
+
* @generated from protobuf enum value: NONE = 3;
|
|
1693
|
+
*/
|
|
1694
|
+
NONE = 3
|
|
1695
|
+
}
|
|
1696
|
+
/**
|
|
1697
|
+
* @generated from protobuf enum google.protobuf.FeatureSet.MessageEncoding
|
|
1698
|
+
*/
|
|
1699
|
+
export declare enum FeatureSet_MessageEncoding {
|
|
1700
|
+
/**
|
|
1701
|
+
* @generated from protobuf enum value: MESSAGE_ENCODING_UNKNOWN = 0;
|
|
1702
|
+
*/
|
|
1703
|
+
MESSAGE_ENCODING_UNKNOWN = 0,
|
|
1704
|
+
/**
|
|
1705
|
+
* @generated from protobuf enum value: LENGTH_PREFIXED = 1;
|
|
1706
|
+
*/
|
|
1707
|
+
LENGTH_PREFIXED = 1,
|
|
1708
|
+
/**
|
|
1709
|
+
* @generated from protobuf enum value: DELIMITED = 2;
|
|
1710
|
+
*/
|
|
1711
|
+
DELIMITED = 2
|
|
1712
|
+
}
|
|
1713
|
+
/**
|
|
1714
|
+
* @generated from protobuf enum google.protobuf.FeatureSet.JsonFormat
|
|
1715
|
+
*/
|
|
1716
|
+
export declare enum FeatureSet_JsonFormat {
|
|
1717
|
+
/**
|
|
1718
|
+
* @generated from protobuf enum value: JSON_FORMAT_UNKNOWN = 0;
|
|
1719
|
+
*/
|
|
1720
|
+
JSON_FORMAT_UNKNOWN = 0,
|
|
1721
|
+
/**
|
|
1722
|
+
* @generated from protobuf enum value: ALLOW = 1;
|
|
1723
|
+
*/
|
|
1724
|
+
ALLOW = 1,
|
|
1725
|
+
/**
|
|
1726
|
+
* @generated from protobuf enum value: LEGACY_BEST_EFFORT = 2;
|
|
1727
|
+
*/
|
|
1728
|
+
LEGACY_BEST_EFFORT = 2
|
|
1729
|
+
}
|
|
1730
|
+
/**
|
|
1731
|
+
* @generated from protobuf enum google.protobuf.FeatureSet.EnforceNamingStyle
|
|
1732
|
+
*/
|
|
1733
|
+
export declare enum FeatureSet_EnforceNamingStyle {
|
|
1734
|
+
/**
|
|
1735
|
+
* @generated from protobuf enum value: ENFORCE_NAMING_STYLE_UNKNOWN = 0;
|
|
1736
|
+
*/
|
|
1737
|
+
ENFORCE_NAMING_STYLE_UNKNOWN = 0,
|
|
1738
|
+
/**
|
|
1739
|
+
* @generated from protobuf enum value: STYLE2024 = 1;
|
|
1740
|
+
*/
|
|
1741
|
+
STYLE2024 = 1,
|
|
1742
|
+
/**
|
|
1743
|
+
* @generated from protobuf enum value: STYLE_LEGACY = 2;
|
|
1744
|
+
*/
|
|
1745
|
+
STYLE_LEGACY = 2
|
|
1746
|
+
}
|
|
1747
|
+
/**
|
|
1748
|
+
* A compiled specification for the defaults of a set of features. These
|
|
1749
|
+
* messages are generated from FeatureSet extensions and can be used to seed
|
|
1750
|
+
* feature resolution. The resolution with this object becomes a simple search
|
|
1751
|
+
* for the closest matching edition, followed by proto merges.
|
|
1752
|
+
*
|
|
1753
|
+
* @generated from protobuf message google.protobuf.FeatureSetDefaults
|
|
1754
|
+
*/
|
|
1755
|
+
export interface FeatureSetDefaults {
|
|
1756
|
+
/**
|
|
1757
|
+
* @generated from protobuf field: repeated google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault defaults = 1
|
|
1758
|
+
*/
|
|
1759
|
+
defaults: FeatureSetDefaults_FeatureSetEditionDefault[];
|
|
1760
|
+
/**
|
|
1761
|
+
* The minimum supported edition (inclusive) when this was constructed.
|
|
1762
|
+
* Editions before this will not have defaults.
|
|
1763
|
+
*
|
|
1764
|
+
* @generated from protobuf field: optional google.protobuf.Edition minimum_edition = 4
|
|
1765
|
+
*/
|
|
1766
|
+
minimumEdition?: Edition;
|
|
1767
|
+
/**
|
|
1768
|
+
* The maximum known edition (inclusive) when this was constructed. Editions
|
|
1769
|
+
* after this will not have reliable defaults.
|
|
1770
|
+
*
|
|
1771
|
+
* @generated from protobuf field: optional google.protobuf.Edition maximum_edition = 5
|
|
1772
|
+
*/
|
|
1773
|
+
maximumEdition?: Edition;
|
|
1774
|
+
}
|
|
1775
|
+
/**
|
|
1776
|
+
* A map from every known edition with a unique set of defaults to its
|
|
1777
|
+
* defaults. Not all editions may be contained here. For a given edition,
|
|
1778
|
+
* the defaults at the closest matching edition ordered at or before it should
|
|
1779
|
+
* be used. This field must be in strict ascending order by edition.
|
|
1780
|
+
*
|
|
1781
|
+
* @generated from protobuf message google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault
|
|
1782
|
+
*/
|
|
1783
|
+
export interface FeatureSetDefaults_FeatureSetEditionDefault {
|
|
1784
|
+
/**
|
|
1785
|
+
* @generated from protobuf field: optional google.protobuf.Edition edition = 3
|
|
1786
|
+
*/
|
|
1787
|
+
edition?: Edition;
|
|
1788
|
+
/**
|
|
1789
|
+
* Defaults of features that can be overridden in this edition.
|
|
1790
|
+
*
|
|
1791
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet overridable_features = 4
|
|
1792
|
+
*/
|
|
1793
|
+
overridableFeatures?: FeatureSet;
|
|
1794
|
+
/**
|
|
1795
|
+
* Defaults of features that can't be overridden in this edition.
|
|
1796
|
+
*
|
|
1797
|
+
* @generated from protobuf field: optional google.protobuf.FeatureSet fixed_features = 5
|
|
1798
|
+
*/
|
|
1799
|
+
fixedFeatures?: FeatureSet;
|
|
1800
|
+
}
|
|
1167
1801
|
/**
|
|
1168
1802
|
* Encapsulates information about the original source file from which a
|
|
1169
1803
|
* FileDescriptorProto was generated.
|
|
@@ -1216,7 +1850,7 @@ export interface SourceCodeInfo {
|
|
|
1216
1850
|
* ignore those that it doesn't understand, as more types of locations could
|
|
1217
1851
|
* be recorded in the future.
|
|
1218
1852
|
*
|
|
1219
|
-
* @generated from protobuf field: repeated google.protobuf.SourceCodeInfo.Location location = 1
|
|
1853
|
+
* @generated from protobuf field: repeated google.protobuf.SourceCodeInfo.Location location = 1
|
|
1220
1854
|
*/
|
|
1221
1855
|
location: SourceCodeInfo_Location[];
|
|
1222
1856
|
}
|
|
@@ -1229,7 +1863,7 @@ export interface SourceCodeInfo_Location {
|
|
|
1229
1863
|
* location.
|
|
1230
1864
|
*
|
|
1231
1865
|
* Each element is a field number or an index. They form a path from
|
|
1232
|
-
* the root FileDescriptorProto to the place where the definition
|
|
1866
|
+
* the root FileDescriptorProto to the place where the definition appears.
|
|
1233
1867
|
* For example, this path:
|
|
1234
1868
|
* [ 4, 3, 2, 7, 1 ]
|
|
1235
1869
|
* refers to:
|
|
@@ -1249,7 +1883,7 @@ export interface SourceCodeInfo_Location {
|
|
|
1249
1883
|
* this path refers to the whole field declaration (from the beginning
|
|
1250
1884
|
* of the label to the terminating semicolon).
|
|
1251
1885
|
*
|
|
1252
|
-
* @generated from protobuf field: repeated int32 path = 1 [packed = true]
|
|
1886
|
+
* @generated from protobuf field: repeated int32 path = 1 [packed = true]
|
|
1253
1887
|
*/
|
|
1254
1888
|
path: number[];
|
|
1255
1889
|
/**
|
|
@@ -1259,7 +1893,7 @@ export interface SourceCodeInfo_Location {
|
|
|
1259
1893
|
* and column numbers are zero-based -- typically you will want to add
|
|
1260
1894
|
* 1 to each before displaying to a user.
|
|
1261
1895
|
*
|
|
1262
|
-
* @generated from protobuf field: repeated int32 span = 2 [packed = true]
|
|
1896
|
+
* @generated from protobuf field: repeated int32 span = 2 [packed = true]
|
|
1263
1897
|
*/
|
|
1264
1898
|
span: number[];
|
|
1265
1899
|
/**
|
|
@@ -1311,15 +1945,15 @@ export interface SourceCodeInfo_Location {
|
|
|
1311
1945
|
*
|
|
1312
1946
|
* // ignored detached comments.
|
|
1313
1947
|
*
|
|
1314
|
-
* @generated from protobuf field: optional string leading_comments = 3
|
|
1948
|
+
* @generated from protobuf field: optional string leading_comments = 3
|
|
1315
1949
|
*/
|
|
1316
1950
|
leadingComments?: string;
|
|
1317
1951
|
/**
|
|
1318
|
-
* @generated from protobuf field: optional string trailing_comments = 4
|
|
1952
|
+
* @generated from protobuf field: optional string trailing_comments = 4
|
|
1319
1953
|
*/
|
|
1320
1954
|
trailingComments?: string;
|
|
1321
1955
|
/**
|
|
1322
|
-
* @generated from protobuf field: repeated string leading_detached_comments = 6
|
|
1956
|
+
* @generated from protobuf field: repeated string leading_detached_comments = 6
|
|
1323
1957
|
*/
|
|
1324
1958
|
leadingDetachedComments: string[];
|
|
1325
1959
|
}
|
|
@@ -1335,7 +1969,7 @@ export interface GeneratedCodeInfo {
|
|
|
1335
1969
|
* An Annotation connects some span of text in generated code to an element
|
|
1336
1970
|
* of its generating .proto file.
|
|
1337
1971
|
*
|
|
1338
|
-
* @generated from protobuf field: repeated google.protobuf.GeneratedCodeInfo.Annotation annotation = 1
|
|
1972
|
+
* @generated from protobuf field: repeated google.protobuf.GeneratedCodeInfo.Annotation annotation = 1
|
|
1339
1973
|
*/
|
|
1340
1974
|
annotation: GeneratedCodeInfo_Annotation[];
|
|
1341
1975
|
}
|
|
@@ -1347,30 +1981,159 @@ export interface GeneratedCodeInfo_Annotation {
|
|
|
1347
1981
|
* Identifies the element in the original source .proto file. This field
|
|
1348
1982
|
* is formatted the same as SourceCodeInfo.Location.path.
|
|
1349
1983
|
*
|
|
1350
|
-
* @generated from protobuf field: repeated int32 path = 1 [packed = true]
|
|
1984
|
+
* @generated from protobuf field: repeated int32 path = 1 [packed = true]
|
|
1351
1985
|
*/
|
|
1352
1986
|
path: number[];
|
|
1353
1987
|
/**
|
|
1354
1988
|
* Identifies the filesystem path to the original source .proto.
|
|
1355
1989
|
*
|
|
1356
|
-
* @generated from protobuf field: optional string source_file = 2
|
|
1990
|
+
* @generated from protobuf field: optional string source_file = 2
|
|
1357
1991
|
*/
|
|
1358
1992
|
sourceFile?: string;
|
|
1359
1993
|
/**
|
|
1360
1994
|
* Identifies the starting offset in bytes in the generated code
|
|
1361
1995
|
* that relates to the identified object.
|
|
1362
1996
|
*
|
|
1363
|
-
* @generated from protobuf field: optional int32 begin = 3
|
|
1997
|
+
* @generated from protobuf field: optional int32 begin = 3
|
|
1364
1998
|
*/
|
|
1365
1999
|
begin?: number;
|
|
1366
2000
|
/**
|
|
1367
2001
|
* Identifies the ending offset in bytes in the generated code that
|
|
1368
|
-
* relates to the identified
|
|
2002
|
+
* relates to the identified object. The end offset should be one past
|
|
1369
2003
|
* the last relevant byte (so the length of the text = end - begin).
|
|
1370
2004
|
*
|
|
1371
|
-
* @generated from protobuf field: optional int32 end = 4
|
|
2005
|
+
* @generated from protobuf field: optional int32 end = 4
|
|
1372
2006
|
*/
|
|
1373
2007
|
end?: number;
|
|
2008
|
+
/**
|
|
2009
|
+
* @generated from protobuf field: optional google.protobuf.GeneratedCodeInfo.Annotation.Semantic semantic = 5
|
|
2010
|
+
*/
|
|
2011
|
+
semantic?: GeneratedCodeInfo_Annotation_Semantic;
|
|
2012
|
+
}
|
|
2013
|
+
/**
|
|
2014
|
+
* Represents the identified object's effect on the element in the original
|
|
2015
|
+
* .proto file.
|
|
2016
|
+
*
|
|
2017
|
+
* @generated from protobuf enum google.protobuf.GeneratedCodeInfo.Annotation.Semantic
|
|
2018
|
+
*/
|
|
2019
|
+
export declare enum GeneratedCodeInfo_Annotation_Semantic {
|
|
2020
|
+
/**
|
|
2021
|
+
* There is no effect or the effect is indescribable.
|
|
2022
|
+
*
|
|
2023
|
+
* @generated from protobuf enum value: NONE = 0;
|
|
2024
|
+
*/
|
|
2025
|
+
NONE = 0,
|
|
2026
|
+
/**
|
|
2027
|
+
* The element is set or otherwise mutated.
|
|
2028
|
+
*
|
|
2029
|
+
* @generated from protobuf enum value: SET = 1;
|
|
2030
|
+
*/
|
|
2031
|
+
SET = 1,
|
|
2032
|
+
/**
|
|
2033
|
+
* An alias to the element is returned.
|
|
2034
|
+
*
|
|
2035
|
+
* @generated from protobuf enum value: ALIAS = 2;
|
|
2036
|
+
*/
|
|
2037
|
+
ALIAS = 2
|
|
2038
|
+
}
|
|
2039
|
+
/**
|
|
2040
|
+
* The full set of known editions.
|
|
2041
|
+
*
|
|
2042
|
+
* @generated from protobuf enum google.protobuf.Edition
|
|
2043
|
+
*/
|
|
2044
|
+
export declare enum Edition {
|
|
2045
|
+
/**
|
|
2046
|
+
* A placeholder for an unknown edition value.
|
|
2047
|
+
*
|
|
2048
|
+
* @generated from protobuf enum value: EDITION_UNKNOWN = 0;
|
|
2049
|
+
*/
|
|
2050
|
+
EDITION_UNKNOWN = 0,
|
|
2051
|
+
/**
|
|
2052
|
+
* A placeholder edition for specifying default behaviors *before* a feature
|
|
2053
|
+
* was first introduced. This is effectively an "infinite past".
|
|
2054
|
+
*
|
|
2055
|
+
* @generated from protobuf enum value: EDITION_LEGACY = 900;
|
|
2056
|
+
*/
|
|
2057
|
+
EDITION_LEGACY = 900,
|
|
2058
|
+
/**
|
|
2059
|
+
* Legacy syntax "editions". These pre-date editions, but behave much like
|
|
2060
|
+
* distinct editions. These can't be used to specify the edition of proto
|
|
2061
|
+
* files, but feature definitions must supply proto2/proto3 defaults for
|
|
2062
|
+
* backwards compatibility.
|
|
2063
|
+
*
|
|
2064
|
+
* @generated from protobuf enum value: EDITION_PROTO2 = 998;
|
|
2065
|
+
*/
|
|
2066
|
+
EDITION_PROTO2 = 998,
|
|
2067
|
+
/**
|
|
2068
|
+
* @generated from protobuf enum value: EDITION_PROTO3 = 999;
|
|
2069
|
+
*/
|
|
2070
|
+
EDITION_PROTO3 = 999,
|
|
2071
|
+
/**
|
|
2072
|
+
* Editions that have been released. The specific values are arbitrary and
|
|
2073
|
+
* should not be depended on, but they will always be time-ordered for easy
|
|
2074
|
+
* comparison.
|
|
2075
|
+
*
|
|
2076
|
+
* @generated from protobuf enum value: EDITION_2023 = 1000;
|
|
2077
|
+
*/
|
|
2078
|
+
EDITION_2023 = 1000,
|
|
2079
|
+
/**
|
|
2080
|
+
* @generated from protobuf enum value: EDITION_2024 = 1001;
|
|
2081
|
+
*/
|
|
2082
|
+
EDITION_2024 = 1001,
|
|
2083
|
+
/**
|
|
2084
|
+
* Placeholder editions for testing feature resolution. These should not be
|
|
2085
|
+
* used or relied on outside of tests.
|
|
2086
|
+
*
|
|
2087
|
+
* @generated from protobuf enum value: EDITION_1_TEST_ONLY = 1;
|
|
2088
|
+
*/
|
|
2089
|
+
EDITION_1_TEST_ONLY = 1,
|
|
2090
|
+
/**
|
|
2091
|
+
* @generated from protobuf enum value: EDITION_2_TEST_ONLY = 2;
|
|
2092
|
+
*/
|
|
2093
|
+
EDITION_2_TEST_ONLY = 2,
|
|
2094
|
+
/**
|
|
2095
|
+
* @generated from protobuf enum value: EDITION_99997_TEST_ONLY = 99997;
|
|
2096
|
+
*/
|
|
2097
|
+
EDITION_99997_TEST_ONLY = 99997,
|
|
2098
|
+
/**
|
|
2099
|
+
* @generated from protobuf enum value: EDITION_99998_TEST_ONLY = 99998;
|
|
2100
|
+
*/
|
|
2101
|
+
EDITION_99998_TEST_ONLY = 99998,
|
|
2102
|
+
/**
|
|
2103
|
+
* @generated from protobuf enum value: EDITION_99999_TEST_ONLY = 99999;
|
|
2104
|
+
*/
|
|
2105
|
+
EDITION_99999_TEST_ONLY = 99999,
|
|
2106
|
+
/**
|
|
2107
|
+
* Placeholder for specifying unbounded edition support. This should only
|
|
2108
|
+
* ever be used by plugins that can expect to never require any changes to
|
|
2109
|
+
* support a new edition.
|
|
2110
|
+
*
|
|
2111
|
+
* @generated from protobuf enum value: EDITION_MAX = 2147483647;
|
|
2112
|
+
*/
|
|
2113
|
+
EDITION_MAX = 2147483647
|
|
2114
|
+
}
|
|
2115
|
+
/**
|
|
2116
|
+
* Describes the 'visibility' of a symbol with respect to the proto import
|
|
2117
|
+
* system. Symbols can only be imported when the visibility rules do not prevent
|
|
2118
|
+
* it (ex: local symbols cannot be imported). Visibility modifiers can only set
|
|
2119
|
+
* on `message` and `enum` as they are the only types available to be referenced
|
|
2120
|
+
* from other files.
|
|
2121
|
+
*
|
|
2122
|
+
* @generated from protobuf enum google.protobuf.SymbolVisibility
|
|
2123
|
+
*/
|
|
2124
|
+
export declare enum SymbolVisibility {
|
|
2125
|
+
/**
|
|
2126
|
+
* @generated from protobuf enum value: VISIBILITY_UNSET = 0;
|
|
2127
|
+
*/
|
|
2128
|
+
VISIBILITY_UNSET = 0,
|
|
2129
|
+
/**
|
|
2130
|
+
* @generated from protobuf enum value: VISIBILITY_LOCAL = 1;
|
|
2131
|
+
*/
|
|
2132
|
+
VISIBILITY_LOCAL = 1,
|
|
2133
|
+
/**
|
|
2134
|
+
* @generated from protobuf enum value: VISIBILITY_EXPORT = 2;
|
|
2135
|
+
*/
|
|
2136
|
+
VISIBILITY_EXPORT = 2
|
|
1374
2137
|
}
|
|
1375
2138
|
declare class FileDescriptorSet$Type extends MessageType<FileDescriptorSet> {
|
|
1376
2139
|
constructor();
|
|
@@ -1432,6 +2195,16 @@ declare class ExtensionRangeOptions$Type extends MessageType<ExtensionRangeOptio
|
|
|
1432
2195
|
* @generated MessageType for protobuf message google.protobuf.ExtensionRangeOptions
|
|
1433
2196
|
*/
|
|
1434
2197
|
export declare const ExtensionRangeOptions: ExtensionRangeOptions$Type;
|
|
2198
|
+
declare class ExtensionRangeOptions_Declaration$Type extends MessageType<ExtensionRangeOptions_Declaration> {
|
|
2199
|
+
constructor();
|
|
2200
|
+
create(value?: PartialMessage<ExtensionRangeOptions_Declaration>): ExtensionRangeOptions_Declaration;
|
|
2201
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ExtensionRangeOptions_Declaration): ExtensionRangeOptions_Declaration;
|
|
2202
|
+
internalBinaryWrite(message: ExtensionRangeOptions_Declaration, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
2203
|
+
}
|
|
2204
|
+
/**
|
|
2205
|
+
* @generated MessageType for protobuf message google.protobuf.ExtensionRangeOptions.Declaration
|
|
2206
|
+
*/
|
|
2207
|
+
export declare const ExtensionRangeOptions_Declaration: ExtensionRangeOptions_Declaration$Type;
|
|
1435
2208
|
declare class FieldDescriptorProto$Type extends MessageType<FieldDescriptorProto> {
|
|
1436
2209
|
constructor();
|
|
1437
2210
|
create(value?: PartialMessage<FieldDescriptorProto>): FieldDescriptorProto;
|
|
@@ -1532,6 +2305,26 @@ declare class FieldOptions$Type extends MessageType<FieldOptions> {
|
|
|
1532
2305
|
* @generated MessageType for protobuf message google.protobuf.FieldOptions
|
|
1533
2306
|
*/
|
|
1534
2307
|
export declare const FieldOptions: FieldOptions$Type;
|
|
2308
|
+
declare class FieldOptions_EditionDefault$Type extends MessageType<FieldOptions_EditionDefault> {
|
|
2309
|
+
constructor();
|
|
2310
|
+
create(value?: PartialMessage<FieldOptions_EditionDefault>): FieldOptions_EditionDefault;
|
|
2311
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FieldOptions_EditionDefault): FieldOptions_EditionDefault;
|
|
2312
|
+
internalBinaryWrite(message: FieldOptions_EditionDefault, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
2313
|
+
}
|
|
2314
|
+
/**
|
|
2315
|
+
* @generated MessageType for protobuf message google.protobuf.FieldOptions.EditionDefault
|
|
2316
|
+
*/
|
|
2317
|
+
export declare const FieldOptions_EditionDefault: FieldOptions_EditionDefault$Type;
|
|
2318
|
+
declare class FieldOptions_FeatureSupport$Type extends MessageType<FieldOptions_FeatureSupport> {
|
|
2319
|
+
constructor();
|
|
2320
|
+
create(value?: PartialMessage<FieldOptions_FeatureSupport>): FieldOptions_FeatureSupport;
|
|
2321
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FieldOptions_FeatureSupport): FieldOptions_FeatureSupport;
|
|
2322
|
+
internalBinaryWrite(message: FieldOptions_FeatureSupport, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
2323
|
+
}
|
|
2324
|
+
/**
|
|
2325
|
+
* @generated MessageType for protobuf message google.protobuf.FieldOptions.FeatureSupport
|
|
2326
|
+
*/
|
|
2327
|
+
export declare const FieldOptions_FeatureSupport: FieldOptions_FeatureSupport$Type;
|
|
1535
2328
|
declare class OneofOptions$Type extends MessageType<OneofOptions> {
|
|
1536
2329
|
constructor();
|
|
1537
2330
|
create(value?: PartialMessage<OneofOptions>): OneofOptions;
|
|
@@ -1602,6 +2395,46 @@ declare class UninterpretedOption_NamePart$Type extends MessageType<Uninterprete
|
|
|
1602
2395
|
* @generated MessageType for protobuf message google.protobuf.UninterpretedOption.NamePart
|
|
1603
2396
|
*/
|
|
1604
2397
|
export declare const UninterpretedOption_NamePart: UninterpretedOption_NamePart$Type;
|
|
2398
|
+
declare class FeatureSet$Type extends MessageType<FeatureSet> {
|
|
2399
|
+
constructor();
|
|
2400
|
+
create(value?: PartialMessage<FeatureSet>): FeatureSet;
|
|
2401
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FeatureSet): FeatureSet;
|
|
2402
|
+
internalBinaryWrite(message: FeatureSet, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
2403
|
+
}
|
|
2404
|
+
/**
|
|
2405
|
+
* @generated MessageType for protobuf message google.protobuf.FeatureSet
|
|
2406
|
+
*/
|
|
2407
|
+
export declare const FeatureSet: FeatureSet$Type;
|
|
2408
|
+
declare class FeatureSet_VisibilityFeature$Type extends MessageType<FeatureSet_VisibilityFeature> {
|
|
2409
|
+
constructor();
|
|
2410
|
+
create(value?: PartialMessage<FeatureSet_VisibilityFeature>): FeatureSet_VisibilityFeature;
|
|
2411
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FeatureSet_VisibilityFeature): FeatureSet_VisibilityFeature;
|
|
2412
|
+
internalBinaryWrite(message: FeatureSet_VisibilityFeature, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
2413
|
+
}
|
|
2414
|
+
/**
|
|
2415
|
+
* @generated MessageType for protobuf message google.protobuf.FeatureSet.VisibilityFeature
|
|
2416
|
+
*/
|
|
2417
|
+
export declare const FeatureSet_VisibilityFeature: FeatureSet_VisibilityFeature$Type;
|
|
2418
|
+
declare class FeatureSetDefaults$Type extends MessageType<FeatureSetDefaults> {
|
|
2419
|
+
constructor();
|
|
2420
|
+
create(value?: PartialMessage<FeatureSetDefaults>): FeatureSetDefaults;
|
|
2421
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FeatureSetDefaults): FeatureSetDefaults;
|
|
2422
|
+
internalBinaryWrite(message: FeatureSetDefaults, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
2423
|
+
}
|
|
2424
|
+
/**
|
|
2425
|
+
* @generated MessageType for protobuf message google.protobuf.FeatureSetDefaults
|
|
2426
|
+
*/
|
|
2427
|
+
export declare const FeatureSetDefaults: FeatureSetDefaults$Type;
|
|
2428
|
+
declare class FeatureSetDefaults_FeatureSetEditionDefault$Type extends MessageType<FeatureSetDefaults_FeatureSetEditionDefault> {
|
|
2429
|
+
constructor();
|
|
2430
|
+
create(value?: PartialMessage<FeatureSetDefaults_FeatureSetEditionDefault>): FeatureSetDefaults_FeatureSetEditionDefault;
|
|
2431
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FeatureSetDefaults_FeatureSetEditionDefault): FeatureSetDefaults_FeatureSetEditionDefault;
|
|
2432
|
+
internalBinaryWrite(message: FeatureSetDefaults_FeatureSetEditionDefault, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
2433
|
+
}
|
|
2434
|
+
/**
|
|
2435
|
+
* @generated MessageType for protobuf message google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault
|
|
2436
|
+
*/
|
|
2437
|
+
export declare const FeatureSetDefaults_FeatureSetEditionDefault: FeatureSetDefaults_FeatureSetEditionDefault$Type;
|
|
1605
2438
|
declare class SourceCodeInfo$Type extends MessageType<SourceCodeInfo> {
|
|
1606
2439
|
constructor();
|
|
1607
2440
|
create(value?: PartialMessage<SourceCodeInfo>): SourceCodeInfo;
|