@milaboratories/pl-client 2.11.10 → 2.11.12
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/core/client.cjs +3 -0
- package/dist/core/client.cjs.map +1 -1
- package/dist/core/client.d.ts +2 -1
- package/dist/core/client.d.ts.map +1 -1
- package/dist/core/client.js +3 -0
- package/dist/core/client.js.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.cjs +759 -124
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.cjs.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.cjs +7 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.cjs.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts +10 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.js +7 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.js.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts +270 -0
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.d.ts.map +1 -1
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.js +752 -125
- package/dist/proto/github.com/milaboratory/pl/plapi/plapiproto/api.js.map +1 -1
- package/dist/proto/google/protobuf/any.cjs.map +1 -1
- package/dist/proto/google/protobuf/any.d.ts +5 -9
- package/dist/proto/google/protobuf/any.d.ts.map +1 -1
- package/dist/proto/google/protobuf/any.js.map +1 -1
- package/dist/proto/google/protobuf/descriptor.d.ts +45 -878
- package/dist/proto/google/protobuf/descriptor.d.ts.map +1 -1
- package/dist/proto/google/protobuf/duration.cjs.map +1 -1
- package/dist/proto/google/protobuf/duration.d.ts +1 -0
- package/dist/proto/google/protobuf/duration.d.ts.map +1 -1
- package/dist/proto/google/protobuf/duration.js.map +1 -1
- package/dist/proto/google/protobuf/struct.d.ts +1 -1
- package/dist/proto/google/protobuf/timestamp.cjs.map +1 -1
- package/dist/proto/google/protobuf/timestamp.d.ts +4 -1
- package/dist/proto/google/protobuf/timestamp.d.ts.map +1 -1
- package/dist/proto/google/protobuf/timestamp.js.map +1 -1
- package/dist/proto/google/protobuf/wrappers.d.ts +0 -27
- package/dist/proto/google/protobuf/wrappers.d.ts.map +1 -1
- package/package.json +5 -5
- package/src/core/client.ts +5 -1
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.client.ts +13 -0
- package/src/proto/github.com/milaboratory/pl/plapi/plapiproto/api.ts +859 -82
- package/src/proto/google/protobuf/any.ts +5 -9
- package/src/proto/google/protobuf/descriptor.ts +75 -1465
- package/src/proto/google/protobuf/duration.ts +1 -0
- package/src/proto/google/protobuf/struct.ts +1 -1
- package/src/proto/google/protobuf/timestamp.ts +4 -1
- package/src/proto/google/protobuf/wrappers.ts +4 -37
|
@@ -49,13 +49,6 @@ export interface FileDescriptorProto {
|
|
|
49
49
|
* @generated from protobuf field: repeated int32 weak_dependency = 11
|
|
50
50
|
*/
|
|
51
51
|
weakDependency: number[];
|
|
52
|
-
/**
|
|
53
|
-
* Names of files imported by this file purely for the purpose of providing
|
|
54
|
-
* option extensions. These are excluded from the dependency list above.
|
|
55
|
-
*
|
|
56
|
-
* @generated from protobuf field: repeated string option_dependency = 15
|
|
57
|
-
*/
|
|
58
|
-
optionDependency: string[];
|
|
59
52
|
/**
|
|
60
53
|
* All top-level definitions in this file.
|
|
61
54
|
*
|
|
@@ -89,25 +82,11 @@ export interface FileDescriptorProto {
|
|
|
89
82
|
sourceCodeInfo?: SourceCodeInfo;
|
|
90
83
|
/**
|
|
91
84
|
* The syntax of the proto file.
|
|
92
|
-
* The supported values are "proto2"
|
|
93
|
-
*
|
|
94
|
-
* If `edition` is present, this value must be "editions".
|
|
95
|
-
* WARNING: This field should only be used by protobuf plugins or special
|
|
96
|
-
* cases like the proto compiler. Other uses are discouraged and
|
|
97
|
-
* developers should rely on the protoreflect APIs for their client language.
|
|
85
|
+
* The supported values are "proto2" and "proto3".
|
|
98
86
|
*
|
|
99
87
|
* @generated from protobuf field: optional string syntax = 12
|
|
100
88
|
*/
|
|
101
89
|
syntax?: string;
|
|
102
|
-
/**
|
|
103
|
-
* The edition of the proto file.
|
|
104
|
-
* WARNING: This field should only be used by protobuf plugins or special
|
|
105
|
-
* cases like the proto compiler. Other uses are discouraged and
|
|
106
|
-
* developers should rely on the protoreflect APIs for their client language.
|
|
107
|
-
*
|
|
108
|
-
* @generated from protobuf field: optional google.protobuf.Edition edition = 14
|
|
109
|
-
*/
|
|
110
|
-
edition?: Edition;
|
|
111
90
|
}
|
|
112
91
|
/**
|
|
113
92
|
* Describes a message type.
|
|
@@ -158,12 +137,6 @@ export interface DescriptorProto {
|
|
|
158
137
|
* @generated from protobuf field: repeated string reserved_name = 10
|
|
159
138
|
*/
|
|
160
139
|
reservedName: string[];
|
|
161
|
-
/**
|
|
162
|
-
* Support for `export` and `local` keywords on enums.
|
|
163
|
-
*
|
|
164
|
-
* @generated from protobuf field: optional google.protobuf.SymbolVisibility visibility = 11
|
|
165
|
-
*/
|
|
166
|
-
visibility?: SymbolVisibility;
|
|
167
140
|
}
|
|
168
141
|
/**
|
|
169
142
|
* @generated from protobuf message google.protobuf.DescriptorProto.ExtensionRange
|
|
@@ -209,86 +182,6 @@ export interface ExtensionRangeOptions {
|
|
|
209
182
|
* @generated from protobuf field: repeated google.protobuf.UninterpretedOption uninterpreted_option = 999
|
|
210
183
|
*/
|
|
211
184
|
uninterpretedOption: UninterpretedOption[];
|
|
212
|
-
/**
|
|
213
|
-
* For external users: DO NOT USE. We are in the process of open sourcing
|
|
214
|
-
* extension declaration and executing internal cleanups before it can be
|
|
215
|
-
* used externally.
|
|
216
|
-
*
|
|
217
|
-
* @generated from protobuf field: repeated google.protobuf.ExtensionRangeOptions.Declaration declaration = 2
|
|
218
|
-
*/
|
|
219
|
-
declaration: ExtensionRangeOptions_Declaration[];
|
|
220
|
-
/**
|
|
221
|
-
* Any features defined in the specific edition.
|
|
222
|
-
*
|
|
223
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 50
|
|
224
|
-
*/
|
|
225
|
-
features?: FeatureSet;
|
|
226
|
-
/**
|
|
227
|
-
* The verification state of the range.
|
|
228
|
-
* TODO: flip the default to DECLARATION once all empty ranges
|
|
229
|
-
* are marked as UNVERIFIED.
|
|
230
|
-
*
|
|
231
|
-
* @generated from protobuf field: optional google.protobuf.ExtensionRangeOptions.VerificationState verification = 3 [default = UNVERIFIED]
|
|
232
|
-
*/
|
|
233
|
-
verification?: ExtensionRangeOptions_VerificationState;
|
|
234
|
-
}
|
|
235
|
-
/**
|
|
236
|
-
* @generated from protobuf message google.protobuf.ExtensionRangeOptions.Declaration
|
|
237
|
-
*/
|
|
238
|
-
export interface ExtensionRangeOptions_Declaration {
|
|
239
|
-
/**
|
|
240
|
-
* The extension number declared within the extension range.
|
|
241
|
-
*
|
|
242
|
-
* @generated from protobuf field: optional int32 number = 1
|
|
243
|
-
*/
|
|
244
|
-
number?: number;
|
|
245
|
-
/**
|
|
246
|
-
* The fully-qualified name of the extension field. There must be a leading
|
|
247
|
-
* dot in front of the full name.
|
|
248
|
-
*
|
|
249
|
-
* @generated from protobuf field: optional string full_name = 2
|
|
250
|
-
*/
|
|
251
|
-
fullName?: string;
|
|
252
|
-
/**
|
|
253
|
-
* The fully-qualified type name of the extension field. Unlike
|
|
254
|
-
* Metadata.type, Declaration.type must have a leading dot for messages
|
|
255
|
-
* and enums.
|
|
256
|
-
*
|
|
257
|
-
* @generated from protobuf field: optional string type = 3
|
|
258
|
-
*/
|
|
259
|
-
type?: string;
|
|
260
|
-
/**
|
|
261
|
-
* If true, indicates that the number is reserved in the extension range,
|
|
262
|
-
* and any extension field with the number will fail to compile. Set this
|
|
263
|
-
* when a declared extension field is deleted.
|
|
264
|
-
*
|
|
265
|
-
* @generated from protobuf field: optional bool reserved = 5
|
|
266
|
-
*/
|
|
267
|
-
reserved?: boolean;
|
|
268
|
-
/**
|
|
269
|
-
* If true, indicates that the extension must be defined as repeated.
|
|
270
|
-
* Otherwise the extension must be defined as optional.
|
|
271
|
-
*
|
|
272
|
-
* @generated from protobuf field: optional bool repeated = 6
|
|
273
|
-
*/
|
|
274
|
-
repeated?: boolean;
|
|
275
|
-
}
|
|
276
|
-
/**
|
|
277
|
-
* The verification state of the extension range.
|
|
278
|
-
*
|
|
279
|
-
* @generated from protobuf enum google.protobuf.ExtensionRangeOptions.VerificationState
|
|
280
|
-
*/
|
|
281
|
-
export declare enum ExtensionRangeOptions_VerificationState {
|
|
282
|
-
/**
|
|
283
|
-
* All the extensions of the range must be declared.
|
|
284
|
-
*
|
|
285
|
-
* @generated from protobuf enum value: DECLARATION = 0;
|
|
286
|
-
*/
|
|
287
|
-
DECLARATION = 0,
|
|
288
|
-
/**
|
|
289
|
-
* @generated from protobuf enum value: UNVERIFIED = 1;
|
|
290
|
-
*/
|
|
291
|
-
UNVERIFIED = 1
|
|
292
185
|
}
|
|
293
186
|
/**
|
|
294
187
|
* Describes a field within a message.
|
|
@@ -365,12 +258,12 @@ export interface FieldDescriptorProto {
|
|
|
365
258
|
* If true, this is a proto3 "optional". When a proto3 field is optional, it
|
|
366
259
|
* tracks presence regardless of field type.
|
|
367
260
|
*
|
|
368
|
-
* When proto3_optional is true, this field must belong to a oneof to
|
|
369
|
-
* to old proto3 clients that presence is tracked for this field. This
|
|
370
|
-
* is known as a "synthetic" oneof, and this field must be its sole
|
|
371
|
-
* (each proto3 optional field gets its own synthetic oneof). Synthetic
|
|
372
|
-
* exist in the descriptor only, and do not generate any API. Synthetic
|
|
373
|
-
* must be ordered after all "real" oneofs.
|
|
261
|
+
* When proto3_optional is true, this field must be belong to a oneof to
|
|
262
|
+
* signal to old proto3 clients that presence is tracked for this field. This
|
|
263
|
+
* oneof is known as a "synthetic" oneof, and this field must be its sole
|
|
264
|
+
* member (each proto3 optional field gets its own synthetic oneof). Synthetic
|
|
265
|
+
* oneofs exist in the descriptor only, and do not generate any API. Synthetic
|
|
266
|
+
* oneofs must be ordered after all "real" oneofs.
|
|
374
267
|
*
|
|
375
268
|
* For message fields, proto3_optional doesn't create any semantic change,
|
|
376
269
|
* since non-repeated message fields always track presence. However it still
|
|
@@ -443,10 +336,9 @@ export declare enum FieldDescriptorProto_Type {
|
|
|
443
336
|
STRING = 9,
|
|
444
337
|
/**
|
|
445
338
|
* Tag-delimited aggregate.
|
|
446
|
-
* Group type is deprecated and not supported
|
|
339
|
+
* Group type is deprecated and not supported in proto3. However, Proto3
|
|
447
340
|
* implementations should still be able to parse the group wire format and
|
|
448
|
-
* treat group fields as unknown fields.
|
|
449
|
-
* can be enabled via the `message_encoding` feature.
|
|
341
|
+
* treat group fields as unknown fields.
|
|
450
342
|
*
|
|
451
343
|
* @generated from protobuf enum value: TYPE_GROUP = 10;
|
|
452
344
|
*/
|
|
@@ -507,17 +399,13 @@ export declare enum FieldDescriptorProto_Label {
|
|
|
507
399
|
*/
|
|
508
400
|
OPTIONAL = 1,
|
|
509
401
|
/**
|
|
510
|
-
* @generated from protobuf enum value:
|
|
402
|
+
* @generated from protobuf enum value: LABEL_REQUIRED = 2;
|
|
511
403
|
*/
|
|
512
|
-
|
|
404
|
+
REQUIRED = 2,
|
|
513
405
|
/**
|
|
514
|
-
*
|
|
515
|
-
* it's explicitly prohibited. In Editions, the `field_presence` feature
|
|
516
|
-
* can be used to get this behavior.
|
|
517
|
-
*
|
|
518
|
-
* @generated from protobuf enum value: LABEL_REQUIRED = 2;
|
|
406
|
+
* @generated from protobuf enum value: LABEL_REPEATED = 3;
|
|
519
407
|
*/
|
|
520
|
-
|
|
408
|
+
REPEATED = 3
|
|
521
409
|
}
|
|
522
410
|
/**
|
|
523
411
|
* Describes a oneof.
|
|
@@ -567,12 +455,6 @@ export interface EnumDescriptorProto {
|
|
|
567
455
|
* @generated from protobuf field: repeated string reserved_name = 5
|
|
568
456
|
*/
|
|
569
457
|
reservedName: string[];
|
|
570
|
-
/**
|
|
571
|
-
* Support for `export` and `local` keywords on enums.
|
|
572
|
-
*
|
|
573
|
-
* @generated from protobuf field: optional google.protobuf.SymbolVisibility visibility = 6
|
|
574
|
-
*/
|
|
575
|
-
visibility?: SymbolVisibility;
|
|
576
458
|
}
|
|
577
459
|
/**
|
|
578
460
|
* Range of reserved numeric values. Reserved values may not be used by
|
|
@@ -712,16 +594,12 @@ export interface FileOptions {
|
|
|
712
594
|
*/
|
|
713
595
|
javaGenerateEqualsAndHash?: boolean;
|
|
714
596
|
/**
|
|
715
|
-
*
|
|
716
|
-
*
|
|
717
|
-
*
|
|
718
|
-
*
|
|
719
|
-
*
|
|
720
|
-
*
|
|
721
|
-
*
|
|
722
|
-
* Proto3 files already perform these checks. Setting the option explicitly to
|
|
723
|
-
* false has no effect: it cannot be used to opt proto3 files out of UTF-8
|
|
724
|
-
* checks.
|
|
597
|
+
* If set true, then the Java2 code generator will generate code that
|
|
598
|
+
* throws an exception whenever an attempt is made to assign a non-UTF-8
|
|
599
|
+
* byte sequence to a string field.
|
|
600
|
+
* Message reflection will do the same.
|
|
601
|
+
* However, an extension field still accepts non-UTF-8 byte sequences.
|
|
602
|
+
* This option has no effect on when used with the lite runtime.
|
|
725
603
|
*
|
|
726
604
|
* @generated from protobuf field: optional bool java_string_check_utf8 = 27 [default = false]
|
|
727
605
|
*/
|
|
@@ -763,6 +641,10 @@ export interface FileOptions {
|
|
|
763
641
|
* @generated from protobuf field: optional bool py_generic_services = 18 [default = false]
|
|
764
642
|
*/
|
|
765
643
|
pyGenericServices?: boolean;
|
|
644
|
+
/**
|
|
645
|
+
* @generated from protobuf field: optional bool php_generic_services = 42 [default = false]
|
|
646
|
+
*/
|
|
647
|
+
phpGenericServices?: boolean;
|
|
766
648
|
/**
|
|
767
649
|
* Is this file deprecated?
|
|
768
650
|
* Depending on the target platform, this can emit Deprecated annotations
|
|
@@ -832,15 +714,6 @@ export interface FileOptions {
|
|
|
832
714
|
* @generated from protobuf field: optional string ruby_package = 45
|
|
833
715
|
*/
|
|
834
716
|
rubyPackage?: string;
|
|
835
|
-
/**
|
|
836
|
-
* Any features defined in the specific edition.
|
|
837
|
-
* WARNING: This field should only be used by protobuf plugins or special
|
|
838
|
-
* cases like the proto compiler. Other uses are discouraged and
|
|
839
|
-
* developers should rely on the protoreflect APIs for their client language.
|
|
840
|
-
*
|
|
841
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 50
|
|
842
|
-
*/
|
|
843
|
-
features?: FeatureSet;
|
|
844
717
|
/**
|
|
845
718
|
* The parser stores options it doesn't recognize here.
|
|
846
719
|
* See the documentation for the "Options" section above.
|
|
@@ -950,31 +823,6 @@ export interface MessageOptions {
|
|
|
950
823
|
* @generated from protobuf field: optional bool map_entry = 7
|
|
951
824
|
*/
|
|
952
825
|
mapEntry?: boolean;
|
|
953
|
-
/**
|
|
954
|
-
* Enable the legacy handling of JSON field name conflicts. This lowercases
|
|
955
|
-
* and strips underscored from the fields before comparison in proto3 only.
|
|
956
|
-
* The new behavior takes `json_name` into account and applies to proto2 as
|
|
957
|
-
* well.
|
|
958
|
-
*
|
|
959
|
-
* This should only be used as a temporary measure against broken builds due
|
|
960
|
-
* to the change in behavior for JSON field name conflicts.
|
|
961
|
-
*
|
|
962
|
-
* TODO This is legacy behavior we plan to remove once downstream
|
|
963
|
-
* teams have had time to migrate.
|
|
964
|
-
*
|
|
965
|
-
* @deprecated
|
|
966
|
-
* @generated from protobuf field: optional bool deprecated_legacy_json_field_conflicts = 11 [deprecated = true]
|
|
967
|
-
*/
|
|
968
|
-
deprecatedLegacyJsonFieldConflicts?: boolean;
|
|
969
|
-
/**
|
|
970
|
-
* Any features defined in the specific edition.
|
|
971
|
-
* WARNING: This field should only be used by protobuf plugins or special
|
|
972
|
-
* cases like the proto compiler. Other uses are discouraged and
|
|
973
|
-
* developers should rely on the protoreflect APIs for their client language.
|
|
974
|
-
*
|
|
975
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 12
|
|
976
|
-
*/
|
|
977
|
-
features?: FeatureSet;
|
|
978
826
|
/**
|
|
979
827
|
* The parser stores options it doesn't recognize here. See above.
|
|
980
828
|
*
|
|
@@ -987,13 +835,10 @@ export interface MessageOptions {
|
|
|
987
835
|
*/
|
|
988
836
|
export interface FieldOptions {
|
|
989
837
|
/**
|
|
990
|
-
* NOTE: ctype is deprecated. Use `features.(pb.cpp).string_type` instead.
|
|
991
838
|
* The ctype option instructs the C++ code generator to use a different
|
|
992
839
|
* representation of the field than it normally would. See the specific
|
|
993
|
-
* options below. This option is
|
|
994
|
-
*
|
|
995
|
-
* type "bytes" in the open source release.
|
|
996
|
-
* TODO: make ctype actually deprecated.
|
|
840
|
+
* options below. This option is not yet implemented in the open source
|
|
841
|
+
* release -- sorry, we'll try to include it in a future version!
|
|
997
842
|
*
|
|
998
843
|
* @generated from protobuf field: optional google.protobuf.FieldOptions.CType ctype = 1 [default = STRING]
|
|
999
844
|
*/
|
|
@@ -1003,9 +848,7 @@ export interface FieldOptions {
|
|
|
1003
848
|
* a more efficient representation on the wire. Rather than repeatedly
|
|
1004
849
|
* writing the tag and type for each element, the entire array is encoded as
|
|
1005
850
|
* a single length-delimited blob. In proto3, only explicit setting it to
|
|
1006
|
-
* false will avoid using packed encoding.
|
|
1007
|
-
* Editions, but the `repeated_field_encoding` feature can be used to control
|
|
1008
|
-
* the behavior.
|
|
851
|
+
* false will avoid using packed encoding.
|
|
1009
852
|
*
|
|
1010
853
|
* @generated from protobuf field: optional bool packed = 2
|
|
1011
854
|
*/
|
|
@@ -1044,11 +887,23 @@ export interface FieldOptions {
|
|
|
1044
887
|
* call from multiple threads concurrently, while non-const methods continue
|
|
1045
888
|
* to require exclusive access.
|
|
1046
889
|
*
|
|
1047
|
-
*
|
|
1048
|
-
*
|
|
1049
|
-
*
|
|
1050
|
-
*
|
|
1051
|
-
*
|
|
890
|
+
*
|
|
891
|
+
* Note that implementations may choose not to check required fields within
|
|
892
|
+
* a lazy sub-message. That is, calling IsInitialized() on the outer message
|
|
893
|
+
* may return true even if the inner message has missing required fields.
|
|
894
|
+
* This is necessary because otherwise the inner message would have to be
|
|
895
|
+
* parsed in order to perform the check, defeating the purpose of lazy
|
|
896
|
+
* parsing. An implementation which chooses not to check required fields
|
|
897
|
+
* must be consistent about it. That is, for any particular sub-message, the
|
|
898
|
+
* implementation must either *always* check its required fields, or *never*
|
|
899
|
+
* check its required fields, regardless of whether or not the message has
|
|
900
|
+
* been parsed.
|
|
901
|
+
*
|
|
902
|
+
* As of 2021, lazy does no correctness checks on the byte stream during
|
|
903
|
+
* parsing. This may lead to crashes if and when an invalid byte stream is
|
|
904
|
+
* finally parsed upon access.
|
|
905
|
+
*
|
|
906
|
+
* TODO(b/211906113): Enable validation on lazy fields.
|
|
1052
907
|
*
|
|
1053
908
|
* @generated from protobuf field: optional bool lazy = 5 [default = false]
|
|
1054
909
|
*/
|
|
@@ -1076,38 +931,6 @@ export interface FieldOptions {
|
|
|
1076
931
|
* @generated from protobuf field: optional bool weak = 10 [default = false]
|
|
1077
932
|
*/
|
|
1078
933
|
weak?: boolean;
|
|
1079
|
-
/**
|
|
1080
|
-
* Indicate that the field value should not be printed out when using debug
|
|
1081
|
-
* formats, e.g. when the field contains sensitive credentials.
|
|
1082
|
-
*
|
|
1083
|
-
* @generated from protobuf field: optional bool debug_redact = 16 [default = false]
|
|
1084
|
-
*/
|
|
1085
|
-
debugRedact?: boolean;
|
|
1086
|
-
/**
|
|
1087
|
-
* @generated from protobuf field: optional google.protobuf.FieldOptions.OptionRetention retention = 17
|
|
1088
|
-
*/
|
|
1089
|
-
retention?: FieldOptions_OptionRetention;
|
|
1090
|
-
/**
|
|
1091
|
-
* @generated from protobuf field: repeated google.protobuf.FieldOptions.OptionTargetType targets = 19
|
|
1092
|
-
*/
|
|
1093
|
-
targets: FieldOptions_OptionTargetType[];
|
|
1094
|
-
/**
|
|
1095
|
-
* @generated from protobuf field: repeated google.protobuf.FieldOptions.EditionDefault edition_defaults = 20
|
|
1096
|
-
*/
|
|
1097
|
-
editionDefaults: FieldOptions_EditionDefault[];
|
|
1098
|
-
/**
|
|
1099
|
-
* Any features defined in the specific edition.
|
|
1100
|
-
* WARNING: This field should only be used by protobuf plugins or special
|
|
1101
|
-
* cases like the proto compiler. Other uses are discouraged and
|
|
1102
|
-
* developers should rely on the protoreflect APIs for their client language.
|
|
1103
|
-
*
|
|
1104
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 21
|
|
1105
|
-
*/
|
|
1106
|
-
features?: FeatureSet;
|
|
1107
|
-
/**
|
|
1108
|
-
* @generated from protobuf field: optional google.protobuf.FieldOptions.FeatureSupport feature_support = 22
|
|
1109
|
-
*/
|
|
1110
|
-
featureSupport?: FieldOptions_FeatureSupport;
|
|
1111
934
|
/**
|
|
1112
935
|
* The parser stores options it doesn't recognize here. See above.
|
|
1113
936
|
*
|
|
@@ -1115,56 +938,6 @@ export interface FieldOptions {
|
|
|
1115
938
|
*/
|
|
1116
939
|
uninterpretedOption: UninterpretedOption[];
|
|
1117
940
|
}
|
|
1118
|
-
/**
|
|
1119
|
-
* @generated from protobuf message google.protobuf.FieldOptions.EditionDefault
|
|
1120
|
-
*/
|
|
1121
|
-
export interface FieldOptions_EditionDefault {
|
|
1122
|
-
/**
|
|
1123
|
-
* @generated from protobuf field: optional google.protobuf.Edition edition = 3
|
|
1124
|
-
*/
|
|
1125
|
-
edition?: Edition;
|
|
1126
|
-
/**
|
|
1127
|
-
* @generated from protobuf field: optional string value = 2
|
|
1128
|
-
*/
|
|
1129
|
-
value?: string;
|
|
1130
|
-
}
|
|
1131
|
-
/**
|
|
1132
|
-
* Information about the support window of a feature.
|
|
1133
|
-
*
|
|
1134
|
-
* @generated from protobuf message google.protobuf.FieldOptions.FeatureSupport
|
|
1135
|
-
*/
|
|
1136
|
-
export interface FieldOptions_FeatureSupport {
|
|
1137
|
-
/**
|
|
1138
|
-
* The edition that this feature was first available in. In editions
|
|
1139
|
-
* earlier than this one, the default assigned to EDITION_LEGACY will be
|
|
1140
|
-
* used, and proto files will not be able to override it.
|
|
1141
|
-
*
|
|
1142
|
-
* @generated from protobuf field: optional google.protobuf.Edition edition_introduced = 1
|
|
1143
|
-
*/
|
|
1144
|
-
editionIntroduced?: Edition;
|
|
1145
|
-
/**
|
|
1146
|
-
* The edition this feature becomes deprecated in. Using this after this
|
|
1147
|
-
* edition may trigger warnings.
|
|
1148
|
-
*
|
|
1149
|
-
* @generated from protobuf field: optional google.protobuf.Edition edition_deprecated = 2
|
|
1150
|
-
*/
|
|
1151
|
-
editionDeprecated?: Edition;
|
|
1152
|
-
/**
|
|
1153
|
-
* The deprecation warning text if this feature is used after the edition it
|
|
1154
|
-
* was marked deprecated in.
|
|
1155
|
-
*
|
|
1156
|
-
* @generated from protobuf field: optional string deprecation_warning = 3
|
|
1157
|
-
*/
|
|
1158
|
-
deprecationWarning?: string;
|
|
1159
|
-
/**
|
|
1160
|
-
* The edition this feature is no longer available in. In editions after
|
|
1161
|
-
* this one, the last default assigned will be used, and proto files will
|
|
1162
|
-
* not be able to override it.
|
|
1163
|
-
*
|
|
1164
|
-
* @generated from protobuf field: optional google.protobuf.Edition edition_removed = 4
|
|
1165
|
-
*/
|
|
1166
|
-
editionRemoved?: Edition;
|
|
1167
|
-
}
|
|
1168
941
|
/**
|
|
1169
942
|
* @generated from protobuf enum google.protobuf.FieldOptions.CType
|
|
1170
943
|
*/
|
|
@@ -1176,13 +949,6 @@ export declare enum FieldOptions_CType {
|
|
|
1176
949
|
*/
|
|
1177
950
|
STRING = 0,
|
|
1178
951
|
/**
|
|
1179
|
-
* The option [ctype=CORD] may be applied to a non-repeated field of type
|
|
1180
|
-
* "bytes". It indicates that in C++, the data should be stored in a Cord
|
|
1181
|
-
* instead of a string. For very large strings, this may reduce memory
|
|
1182
|
-
* fragmentation. It may also allow better performance when parsing from a
|
|
1183
|
-
* Cord, or when parsing with aliasing enabled, as the parsed Cord may then
|
|
1184
|
-
* alias the original buffer.
|
|
1185
|
-
*
|
|
1186
952
|
* @generated from protobuf enum value: CORD = 1;
|
|
1187
953
|
*/
|
|
1188
954
|
CORD = 1,
|
|
@@ -1214,87 +980,10 @@ export declare enum FieldOptions_JSType {
|
|
|
1214
980
|
*/
|
|
1215
981
|
JS_NUMBER = 2
|
|
1216
982
|
}
|
|
1217
|
-
/**
|
|
1218
|
-
* If set to RETENTION_SOURCE, the option will be omitted from the binary.
|
|
1219
|
-
*
|
|
1220
|
-
* @generated from protobuf enum google.protobuf.FieldOptions.OptionRetention
|
|
1221
|
-
*/
|
|
1222
|
-
export declare enum FieldOptions_OptionRetention {
|
|
1223
|
-
/**
|
|
1224
|
-
* @generated from protobuf enum value: RETENTION_UNKNOWN = 0;
|
|
1225
|
-
*/
|
|
1226
|
-
RETENTION_UNKNOWN = 0,
|
|
1227
|
-
/**
|
|
1228
|
-
* @generated from protobuf enum value: RETENTION_RUNTIME = 1;
|
|
1229
|
-
*/
|
|
1230
|
-
RETENTION_RUNTIME = 1,
|
|
1231
|
-
/**
|
|
1232
|
-
* @generated from protobuf enum value: RETENTION_SOURCE = 2;
|
|
1233
|
-
*/
|
|
1234
|
-
RETENTION_SOURCE = 2
|
|
1235
|
-
}
|
|
1236
|
-
/**
|
|
1237
|
-
* This indicates the types of entities that the field may apply to when used
|
|
1238
|
-
* as an option. If it is unset, then the field may be freely used as an
|
|
1239
|
-
* option on any kind of entity.
|
|
1240
|
-
*
|
|
1241
|
-
* @generated from protobuf enum google.protobuf.FieldOptions.OptionTargetType
|
|
1242
|
-
*/
|
|
1243
|
-
export declare enum FieldOptions_OptionTargetType {
|
|
1244
|
-
/**
|
|
1245
|
-
* @generated from protobuf enum value: TARGET_TYPE_UNKNOWN = 0;
|
|
1246
|
-
*/
|
|
1247
|
-
TARGET_TYPE_UNKNOWN = 0,
|
|
1248
|
-
/**
|
|
1249
|
-
* @generated from protobuf enum value: TARGET_TYPE_FILE = 1;
|
|
1250
|
-
*/
|
|
1251
|
-
TARGET_TYPE_FILE = 1,
|
|
1252
|
-
/**
|
|
1253
|
-
* @generated from protobuf enum value: TARGET_TYPE_EXTENSION_RANGE = 2;
|
|
1254
|
-
*/
|
|
1255
|
-
TARGET_TYPE_EXTENSION_RANGE = 2,
|
|
1256
|
-
/**
|
|
1257
|
-
* @generated from protobuf enum value: TARGET_TYPE_MESSAGE = 3;
|
|
1258
|
-
*/
|
|
1259
|
-
TARGET_TYPE_MESSAGE = 3,
|
|
1260
|
-
/**
|
|
1261
|
-
* @generated from protobuf enum value: TARGET_TYPE_FIELD = 4;
|
|
1262
|
-
*/
|
|
1263
|
-
TARGET_TYPE_FIELD = 4,
|
|
1264
|
-
/**
|
|
1265
|
-
* @generated from protobuf enum value: TARGET_TYPE_ONEOF = 5;
|
|
1266
|
-
*/
|
|
1267
|
-
TARGET_TYPE_ONEOF = 5,
|
|
1268
|
-
/**
|
|
1269
|
-
* @generated from protobuf enum value: TARGET_TYPE_ENUM = 6;
|
|
1270
|
-
*/
|
|
1271
|
-
TARGET_TYPE_ENUM = 6,
|
|
1272
|
-
/**
|
|
1273
|
-
* @generated from protobuf enum value: TARGET_TYPE_ENUM_ENTRY = 7;
|
|
1274
|
-
*/
|
|
1275
|
-
TARGET_TYPE_ENUM_ENTRY = 7,
|
|
1276
|
-
/**
|
|
1277
|
-
* @generated from protobuf enum value: TARGET_TYPE_SERVICE = 8;
|
|
1278
|
-
*/
|
|
1279
|
-
TARGET_TYPE_SERVICE = 8,
|
|
1280
|
-
/**
|
|
1281
|
-
* @generated from protobuf enum value: TARGET_TYPE_METHOD = 9;
|
|
1282
|
-
*/
|
|
1283
|
-
TARGET_TYPE_METHOD = 9
|
|
1284
|
-
}
|
|
1285
983
|
/**
|
|
1286
984
|
* @generated from protobuf message google.protobuf.OneofOptions
|
|
1287
985
|
*/
|
|
1288
986
|
export interface OneofOptions {
|
|
1289
|
-
/**
|
|
1290
|
-
* Any features defined in the specific edition.
|
|
1291
|
-
* WARNING: This field should only be used by protobuf plugins or special
|
|
1292
|
-
* cases like the proto compiler. Other uses are discouraged and
|
|
1293
|
-
* developers should rely on the protoreflect APIs for their client language.
|
|
1294
|
-
*
|
|
1295
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 1
|
|
1296
|
-
*/
|
|
1297
|
-
features?: FeatureSet;
|
|
1298
987
|
/**
|
|
1299
988
|
* The parser stores options it doesn't recognize here. See above.
|
|
1300
989
|
*
|
|
@@ -1322,27 +1011,6 @@ export interface EnumOptions {
|
|
|
1322
1011
|
* @generated from protobuf field: optional bool deprecated = 3 [default = false]
|
|
1323
1012
|
*/
|
|
1324
1013
|
deprecated?: boolean;
|
|
1325
|
-
/**
|
|
1326
|
-
* Enable the legacy handling of JSON field name conflicts. This lowercases
|
|
1327
|
-
* and strips underscored from the fields before comparison in proto3 only.
|
|
1328
|
-
* The new behavior takes `json_name` into account and applies to proto2 as
|
|
1329
|
-
* well.
|
|
1330
|
-
* TODO Remove this legacy behavior once downstream teams have
|
|
1331
|
-
* had time to migrate.
|
|
1332
|
-
*
|
|
1333
|
-
* @deprecated
|
|
1334
|
-
* @generated from protobuf field: optional bool deprecated_legacy_json_field_conflicts = 6 [deprecated = true]
|
|
1335
|
-
*/
|
|
1336
|
-
deprecatedLegacyJsonFieldConflicts?: boolean;
|
|
1337
|
-
/**
|
|
1338
|
-
* Any features defined in the specific edition.
|
|
1339
|
-
* WARNING: This field should only be used by protobuf plugins or special
|
|
1340
|
-
* cases like the proto compiler. Other uses are discouraged and
|
|
1341
|
-
* developers should rely on the protoreflect APIs for their client language.
|
|
1342
|
-
*
|
|
1343
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 7
|
|
1344
|
-
*/
|
|
1345
|
-
features?: FeatureSet;
|
|
1346
1014
|
/**
|
|
1347
1015
|
* The parser stores options it doesn't recognize here. See above.
|
|
1348
1016
|
*
|
|
@@ -1363,29 +1031,6 @@ export interface EnumValueOptions {
|
|
|
1363
1031
|
* @generated from protobuf field: optional bool deprecated = 1 [default = false]
|
|
1364
1032
|
*/
|
|
1365
1033
|
deprecated?: boolean;
|
|
1366
|
-
/**
|
|
1367
|
-
* Any features defined in the specific edition.
|
|
1368
|
-
* WARNING: This field should only be used by protobuf plugins or special
|
|
1369
|
-
* cases like the proto compiler. Other uses are discouraged and
|
|
1370
|
-
* developers should rely on the protoreflect APIs for their client language.
|
|
1371
|
-
*
|
|
1372
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 2
|
|
1373
|
-
*/
|
|
1374
|
-
features?: FeatureSet;
|
|
1375
|
-
/**
|
|
1376
|
-
* Indicate that fields annotated with this enum value should not be printed
|
|
1377
|
-
* out when using debug formats, e.g. when the field contains sensitive
|
|
1378
|
-
* credentials.
|
|
1379
|
-
*
|
|
1380
|
-
* @generated from protobuf field: optional bool debug_redact = 3 [default = false]
|
|
1381
|
-
*/
|
|
1382
|
-
debugRedact?: boolean;
|
|
1383
|
-
/**
|
|
1384
|
-
* Information about the support window of a feature value.
|
|
1385
|
-
*
|
|
1386
|
-
* @generated from protobuf field: optional google.protobuf.FieldOptions.FeatureSupport feature_support = 4
|
|
1387
|
-
*/
|
|
1388
|
-
featureSupport?: FieldOptions_FeatureSupport;
|
|
1389
1034
|
/**
|
|
1390
1035
|
* The parser stores options it doesn't recognize here. See above.
|
|
1391
1036
|
*
|
|
@@ -1397,15 +1042,6 @@ export interface EnumValueOptions {
|
|
|
1397
1042
|
* @generated from protobuf message google.protobuf.ServiceOptions
|
|
1398
1043
|
*/
|
|
1399
1044
|
export interface ServiceOptions {
|
|
1400
|
-
/**
|
|
1401
|
-
* Any features defined in the specific edition.
|
|
1402
|
-
* WARNING: This field should only be used by protobuf plugins or special
|
|
1403
|
-
* cases like the proto compiler. Other uses are discouraged and
|
|
1404
|
-
* developers should rely on the protoreflect APIs for their client language.
|
|
1405
|
-
*
|
|
1406
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 34
|
|
1407
|
-
*/
|
|
1408
|
-
features?: FeatureSet;
|
|
1409
1045
|
/**
|
|
1410
1046
|
* Is this service deprecated?
|
|
1411
1047
|
* Depending on the target platform, this can emit Deprecated annotations
|
|
@@ -1439,15 +1075,6 @@ export interface MethodOptions {
|
|
|
1439
1075
|
* @generated from protobuf field: optional google.protobuf.MethodOptions.IdempotencyLevel idempotency_level = 34 [default = IDEMPOTENCY_UNKNOWN]
|
|
1440
1076
|
*/
|
|
1441
1077
|
idempotencyLevel?: MethodOptions_IdempotencyLevel;
|
|
1442
|
-
/**
|
|
1443
|
-
* Any features defined in the specific edition.
|
|
1444
|
-
* WARNING: This field should only be used by protobuf plugins or special
|
|
1445
|
-
* cases like the proto compiler. Other uses are discouraged and
|
|
1446
|
-
* developers should rely on the protoreflect APIs for their client language.
|
|
1447
|
-
*
|
|
1448
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet features = 35
|
|
1449
|
-
*/
|
|
1450
|
-
features?: FeatureSet;
|
|
1451
1078
|
/**
|
|
1452
1079
|
* The parser stores options it doesn't recognize here. See above.
|
|
1453
1080
|
*
|
|
@@ -1542,267 +1169,6 @@ export interface UninterpretedOption_NamePart {
|
|
|
1542
1169
|
*/
|
|
1543
1170
|
isExtension: boolean;
|
|
1544
1171
|
}
|
|
1545
|
-
/**
|
|
1546
|
-
* TODO Enums in C++ gencode (and potentially other languages) are
|
|
1547
|
-
* not well scoped. This means that each of the feature enums below can clash
|
|
1548
|
-
* with each other. The short names we've chosen maximize call-site
|
|
1549
|
-
* readability, but leave us very open to this scenario. A future feature will
|
|
1550
|
-
* be designed and implemented to handle this, hopefully before we ever hit a
|
|
1551
|
-
* conflict here.
|
|
1552
|
-
*
|
|
1553
|
-
* @generated from protobuf message google.protobuf.FeatureSet
|
|
1554
|
-
*/
|
|
1555
|
-
export interface FeatureSet {
|
|
1556
|
-
/**
|
|
1557
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet.FieldPresence field_presence = 1
|
|
1558
|
-
*/
|
|
1559
|
-
fieldPresence?: FeatureSet_FieldPresence;
|
|
1560
|
-
/**
|
|
1561
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet.EnumType enum_type = 2
|
|
1562
|
-
*/
|
|
1563
|
-
enumType?: FeatureSet_EnumType;
|
|
1564
|
-
/**
|
|
1565
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet.RepeatedFieldEncoding repeated_field_encoding = 3
|
|
1566
|
-
*/
|
|
1567
|
-
repeatedFieldEncoding?: FeatureSet_RepeatedFieldEncoding;
|
|
1568
|
-
/**
|
|
1569
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet.Utf8Validation utf8_validation = 4
|
|
1570
|
-
*/
|
|
1571
|
-
utf8Validation?: FeatureSet_Utf8Validation;
|
|
1572
|
-
/**
|
|
1573
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet.MessageEncoding message_encoding = 5
|
|
1574
|
-
*/
|
|
1575
|
-
messageEncoding?: FeatureSet_MessageEncoding;
|
|
1576
|
-
/**
|
|
1577
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet.JsonFormat json_format = 6
|
|
1578
|
-
*/
|
|
1579
|
-
jsonFormat?: FeatureSet_JsonFormat;
|
|
1580
|
-
/**
|
|
1581
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet.EnforceNamingStyle enforce_naming_style = 7
|
|
1582
|
-
*/
|
|
1583
|
-
enforceNamingStyle?: FeatureSet_EnforceNamingStyle;
|
|
1584
|
-
/**
|
|
1585
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility default_symbol_visibility = 8
|
|
1586
|
-
*/
|
|
1587
|
-
defaultSymbolVisibility?: FeatureSet_VisibilityFeature_DefaultSymbolVisibility;
|
|
1588
|
-
}
|
|
1589
|
-
/**
|
|
1590
|
-
* @generated from protobuf message google.protobuf.FeatureSet.VisibilityFeature
|
|
1591
|
-
*/
|
|
1592
|
-
export interface FeatureSet_VisibilityFeature {
|
|
1593
|
-
}
|
|
1594
|
-
/**
|
|
1595
|
-
* @generated from protobuf enum google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility
|
|
1596
|
-
*/
|
|
1597
|
-
export declare enum FeatureSet_VisibilityFeature_DefaultSymbolVisibility {
|
|
1598
|
-
/**
|
|
1599
|
-
* @generated from protobuf enum value: DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0;
|
|
1600
|
-
*/
|
|
1601
|
-
DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
|
|
1602
|
-
/**
|
|
1603
|
-
* Default pre-EDITION_2024, all UNSET visibility are export.
|
|
1604
|
-
*
|
|
1605
|
-
* @generated from protobuf enum value: EXPORT_ALL = 1;
|
|
1606
|
-
*/
|
|
1607
|
-
EXPORT_ALL = 1,
|
|
1608
|
-
/**
|
|
1609
|
-
* All top-level symbols default to export, nested default to local.
|
|
1610
|
-
*
|
|
1611
|
-
* @generated from protobuf enum value: EXPORT_TOP_LEVEL = 2;
|
|
1612
|
-
*/
|
|
1613
|
-
EXPORT_TOP_LEVEL = 2,
|
|
1614
|
-
/**
|
|
1615
|
-
* All symbols default to local.
|
|
1616
|
-
*
|
|
1617
|
-
* @generated from protobuf enum value: LOCAL_ALL = 3;
|
|
1618
|
-
*/
|
|
1619
|
-
LOCAL_ALL = 3,
|
|
1620
|
-
/**
|
|
1621
|
-
* All symbols local by default. Nested types cannot be exported.
|
|
1622
|
-
* With special case caveat for message { enum {} reserved 1 to max; }
|
|
1623
|
-
* This is the recommended setting for new protos.
|
|
1624
|
-
*
|
|
1625
|
-
* @generated from protobuf enum value: STRICT = 4;
|
|
1626
|
-
*/
|
|
1627
|
-
STRICT = 4
|
|
1628
|
-
}
|
|
1629
|
-
/**
|
|
1630
|
-
* @generated from protobuf enum google.protobuf.FeatureSet.FieldPresence
|
|
1631
|
-
*/
|
|
1632
|
-
export declare enum FeatureSet_FieldPresence {
|
|
1633
|
-
/**
|
|
1634
|
-
* @generated from protobuf enum value: FIELD_PRESENCE_UNKNOWN = 0;
|
|
1635
|
-
*/
|
|
1636
|
-
FIELD_PRESENCE_UNKNOWN = 0,
|
|
1637
|
-
/**
|
|
1638
|
-
* @generated from protobuf enum value: EXPLICIT = 1;
|
|
1639
|
-
*/
|
|
1640
|
-
EXPLICIT = 1,
|
|
1641
|
-
/**
|
|
1642
|
-
* @generated from protobuf enum value: IMPLICIT = 2;
|
|
1643
|
-
*/
|
|
1644
|
-
IMPLICIT = 2,
|
|
1645
|
-
/**
|
|
1646
|
-
* @generated from protobuf enum value: LEGACY_REQUIRED = 3;
|
|
1647
|
-
*/
|
|
1648
|
-
LEGACY_REQUIRED = 3
|
|
1649
|
-
}
|
|
1650
|
-
/**
|
|
1651
|
-
* @generated from protobuf enum google.protobuf.FeatureSet.EnumType
|
|
1652
|
-
*/
|
|
1653
|
-
export declare enum FeatureSet_EnumType {
|
|
1654
|
-
/**
|
|
1655
|
-
* @generated from protobuf enum value: ENUM_TYPE_UNKNOWN = 0;
|
|
1656
|
-
*/
|
|
1657
|
-
ENUM_TYPE_UNKNOWN = 0,
|
|
1658
|
-
/**
|
|
1659
|
-
* @generated from protobuf enum value: OPEN = 1;
|
|
1660
|
-
*/
|
|
1661
|
-
OPEN = 1,
|
|
1662
|
-
/**
|
|
1663
|
-
* @generated from protobuf enum value: CLOSED = 2;
|
|
1664
|
-
*/
|
|
1665
|
-
CLOSED = 2
|
|
1666
|
-
}
|
|
1667
|
-
/**
|
|
1668
|
-
* @generated from protobuf enum google.protobuf.FeatureSet.RepeatedFieldEncoding
|
|
1669
|
-
*/
|
|
1670
|
-
export declare enum FeatureSet_RepeatedFieldEncoding {
|
|
1671
|
-
/**
|
|
1672
|
-
* @generated from protobuf enum value: REPEATED_FIELD_ENCODING_UNKNOWN = 0;
|
|
1673
|
-
*/
|
|
1674
|
-
REPEATED_FIELD_ENCODING_UNKNOWN = 0,
|
|
1675
|
-
/**
|
|
1676
|
-
* @generated from protobuf enum value: PACKED = 1;
|
|
1677
|
-
*/
|
|
1678
|
-
PACKED = 1,
|
|
1679
|
-
/**
|
|
1680
|
-
* @generated from protobuf enum value: EXPANDED = 2;
|
|
1681
|
-
*/
|
|
1682
|
-
EXPANDED = 2
|
|
1683
|
-
}
|
|
1684
|
-
/**
|
|
1685
|
-
* @generated from protobuf enum google.protobuf.FeatureSet.Utf8Validation
|
|
1686
|
-
*/
|
|
1687
|
-
export declare enum FeatureSet_Utf8Validation {
|
|
1688
|
-
/**
|
|
1689
|
-
* @generated from protobuf enum value: UTF8_VALIDATION_UNKNOWN = 0;
|
|
1690
|
-
*/
|
|
1691
|
-
UTF8_VALIDATION_UNKNOWN = 0,
|
|
1692
|
-
/**
|
|
1693
|
-
* @generated from protobuf enum value: VERIFY = 2;
|
|
1694
|
-
*/
|
|
1695
|
-
VERIFY = 2,
|
|
1696
|
-
/**
|
|
1697
|
-
* @generated from protobuf enum value: NONE = 3;
|
|
1698
|
-
*/
|
|
1699
|
-
NONE = 3
|
|
1700
|
-
}
|
|
1701
|
-
/**
|
|
1702
|
-
* @generated from protobuf enum google.protobuf.FeatureSet.MessageEncoding
|
|
1703
|
-
*/
|
|
1704
|
-
export declare enum FeatureSet_MessageEncoding {
|
|
1705
|
-
/**
|
|
1706
|
-
* @generated from protobuf enum value: MESSAGE_ENCODING_UNKNOWN = 0;
|
|
1707
|
-
*/
|
|
1708
|
-
MESSAGE_ENCODING_UNKNOWN = 0,
|
|
1709
|
-
/**
|
|
1710
|
-
* @generated from protobuf enum value: LENGTH_PREFIXED = 1;
|
|
1711
|
-
*/
|
|
1712
|
-
LENGTH_PREFIXED = 1,
|
|
1713
|
-
/**
|
|
1714
|
-
* @generated from protobuf enum value: DELIMITED = 2;
|
|
1715
|
-
*/
|
|
1716
|
-
DELIMITED = 2
|
|
1717
|
-
}
|
|
1718
|
-
/**
|
|
1719
|
-
* @generated from protobuf enum google.protobuf.FeatureSet.JsonFormat
|
|
1720
|
-
*/
|
|
1721
|
-
export declare enum FeatureSet_JsonFormat {
|
|
1722
|
-
/**
|
|
1723
|
-
* @generated from protobuf enum value: JSON_FORMAT_UNKNOWN = 0;
|
|
1724
|
-
*/
|
|
1725
|
-
JSON_FORMAT_UNKNOWN = 0,
|
|
1726
|
-
/**
|
|
1727
|
-
* @generated from protobuf enum value: ALLOW = 1;
|
|
1728
|
-
*/
|
|
1729
|
-
ALLOW = 1,
|
|
1730
|
-
/**
|
|
1731
|
-
* @generated from protobuf enum value: LEGACY_BEST_EFFORT = 2;
|
|
1732
|
-
*/
|
|
1733
|
-
LEGACY_BEST_EFFORT = 2
|
|
1734
|
-
}
|
|
1735
|
-
/**
|
|
1736
|
-
* @generated from protobuf enum google.protobuf.FeatureSet.EnforceNamingStyle
|
|
1737
|
-
*/
|
|
1738
|
-
export declare enum FeatureSet_EnforceNamingStyle {
|
|
1739
|
-
/**
|
|
1740
|
-
* @generated from protobuf enum value: ENFORCE_NAMING_STYLE_UNKNOWN = 0;
|
|
1741
|
-
*/
|
|
1742
|
-
ENFORCE_NAMING_STYLE_UNKNOWN = 0,
|
|
1743
|
-
/**
|
|
1744
|
-
* @generated from protobuf enum value: STYLE2024 = 1;
|
|
1745
|
-
*/
|
|
1746
|
-
STYLE2024 = 1,
|
|
1747
|
-
/**
|
|
1748
|
-
* @generated from protobuf enum value: STYLE_LEGACY = 2;
|
|
1749
|
-
*/
|
|
1750
|
-
STYLE_LEGACY = 2
|
|
1751
|
-
}
|
|
1752
|
-
/**
|
|
1753
|
-
* A compiled specification for the defaults of a set of features. These
|
|
1754
|
-
* messages are generated from FeatureSet extensions and can be used to seed
|
|
1755
|
-
* feature resolution. The resolution with this object becomes a simple search
|
|
1756
|
-
* for the closest matching edition, followed by proto merges.
|
|
1757
|
-
*
|
|
1758
|
-
* @generated from protobuf message google.protobuf.FeatureSetDefaults
|
|
1759
|
-
*/
|
|
1760
|
-
export interface FeatureSetDefaults {
|
|
1761
|
-
/**
|
|
1762
|
-
* @generated from protobuf field: repeated google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault defaults = 1
|
|
1763
|
-
*/
|
|
1764
|
-
defaults: FeatureSetDefaults_FeatureSetEditionDefault[];
|
|
1765
|
-
/**
|
|
1766
|
-
* The minimum supported edition (inclusive) when this was constructed.
|
|
1767
|
-
* Editions before this will not have defaults.
|
|
1768
|
-
*
|
|
1769
|
-
* @generated from protobuf field: optional google.protobuf.Edition minimum_edition = 4
|
|
1770
|
-
*/
|
|
1771
|
-
minimumEdition?: Edition;
|
|
1772
|
-
/**
|
|
1773
|
-
* The maximum known edition (inclusive) when this was constructed. Editions
|
|
1774
|
-
* after this will not have reliable defaults.
|
|
1775
|
-
*
|
|
1776
|
-
* @generated from protobuf field: optional google.protobuf.Edition maximum_edition = 5
|
|
1777
|
-
*/
|
|
1778
|
-
maximumEdition?: Edition;
|
|
1779
|
-
}
|
|
1780
|
-
/**
|
|
1781
|
-
* A map from every known edition with a unique set of defaults to its
|
|
1782
|
-
* defaults. Not all editions may be contained here. For a given edition,
|
|
1783
|
-
* the defaults at the closest matching edition ordered at or before it should
|
|
1784
|
-
* be used. This field must be in strict ascending order by edition.
|
|
1785
|
-
*
|
|
1786
|
-
* @generated from protobuf message google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault
|
|
1787
|
-
*/
|
|
1788
|
-
export interface FeatureSetDefaults_FeatureSetEditionDefault {
|
|
1789
|
-
/**
|
|
1790
|
-
* @generated from protobuf field: optional google.protobuf.Edition edition = 3
|
|
1791
|
-
*/
|
|
1792
|
-
edition?: Edition;
|
|
1793
|
-
/**
|
|
1794
|
-
* Defaults of features that can be overridden in this edition.
|
|
1795
|
-
*
|
|
1796
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet overridable_features = 4
|
|
1797
|
-
*/
|
|
1798
|
-
overridableFeatures?: FeatureSet;
|
|
1799
|
-
/**
|
|
1800
|
-
* Defaults of features that can't be overridden in this edition.
|
|
1801
|
-
*
|
|
1802
|
-
* @generated from protobuf field: optional google.protobuf.FeatureSet fixed_features = 5
|
|
1803
|
-
*/
|
|
1804
|
-
fixedFeatures?: FeatureSet;
|
|
1805
|
-
}
|
|
1806
1172
|
/**
|
|
1807
1173
|
* Encapsulates information about the original source file from which a
|
|
1808
1174
|
* FileDescriptorProto was generated.
|
|
@@ -1868,7 +1234,7 @@ export interface SourceCodeInfo_Location {
|
|
|
1868
1234
|
* location.
|
|
1869
1235
|
*
|
|
1870
1236
|
* Each element is a field number or an index. They form a path from
|
|
1871
|
-
* the root FileDescriptorProto to the place where the definition
|
|
1237
|
+
* the root FileDescriptorProto to the place where the definition occurs.
|
|
1872
1238
|
* For example, this path:
|
|
1873
1239
|
* [ 4, 3, 2, 7, 1 ]
|
|
1874
1240
|
* refers to:
|
|
@@ -2004,141 +1370,12 @@ export interface GeneratedCodeInfo_Annotation {
|
|
|
2004
1370
|
begin?: number;
|
|
2005
1371
|
/**
|
|
2006
1372
|
* Identifies the ending offset in bytes in the generated code that
|
|
2007
|
-
* relates to the identified
|
|
1373
|
+
* relates to the identified offset. The end offset should be one past
|
|
2008
1374
|
* the last relevant byte (so the length of the text = end - begin).
|
|
2009
1375
|
*
|
|
2010
1376
|
* @generated from protobuf field: optional int32 end = 4
|
|
2011
1377
|
*/
|
|
2012
1378
|
end?: number;
|
|
2013
|
-
/**
|
|
2014
|
-
* @generated from protobuf field: optional google.protobuf.GeneratedCodeInfo.Annotation.Semantic semantic = 5
|
|
2015
|
-
*/
|
|
2016
|
-
semantic?: GeneratedCodeInfo_Annotation_Semantic;
|
|
2017
|
-
}
|
|
2018
|
-
/**
|
|
2019
|
-
* Represents the identified object's effect on the element in the original
|
|
2020
|
-
* .proto file.
|
|
2021
|
-
*
|
|
2022
|
-
* @generated from protobuf enum google.protobuf.GeneratedCodeInfo.Annotation.Semantic
|
|
2023
|
-
*/
|
|
2024
|
-
export declare enum GeneratedCodeInfo_Annotation_Semantic {
|
|
2025
|
-
/**
|
|
2026
|
-
* There is no effect or the effect is indescribable.
|
|
2027
|
-
*
|
|
2028
|
-
* @generated from protobuf enum value: NONE = 0;
|
|
2029
|
-
*/
|
|
2030
|
-
NONE = 0,
|
|
2031
|
-
/**
|
|
2032
|
-
* The element is set or otherwise mutated.
|
|
2033
|
-
*
|
|
2034
|
-
* @generated from protobuf enum value: SET = 1;
|
|
2035
|
-
*/
|
|
2036
|
-
SET = 1,
|
|
2037
|
-
/**
|
|
2038
|
-
* An alias to the element is returned.
|
|
2039
|
-
*
|
|
2040
|
-
* @generated from protobuf enum value: ALIAS = 2;
|
|
2041
|
-
*/
|
|
2042
|
-
ALIAS = 2
|
|
2043
|
-
}
|
|
2044
|
-
/**
|
|
2045
|
-
* The full set of known editions.
|
|
2046
|
-
*
|
|
2047
|
-
* @generated from protobuf enum google.protobuf.Edition
|
|
2048
|
-
*/
|
|
2049
|
-
export declare enum Edition {
|
|
2050
|
-
/**
|
|
2051
|
-
* A placeholder for an unknown edition value.
|
|
2052
|
-
*
|
|
2053
|
-
* @generated from protobuf enum value: EDITION_UNKNOWN = 0;
|
|
2054
|
-
*/
|
|
2055
|
-
EDITION_UNKNOWN = 0,
|
|
2056
|
-
/**
|
|
2057
|
-
* A placeholder edition for specifying default behaviors *before* a feature
|
|
2058
|
-
* was first introduced. This is effectively an "infinite past".
|
|
2059
|
-
*
|
|
2060
|
-
* @generated from protobuf enum value: EDITION_LEGACY = 900;
|
|
2061
|
-
*/
|
|
2062
|
-
EDITION_LEGACY = 900,
|
|
2063
|
-
/**
|
|
2064
|
-
* Legacy syntax "editions". These pre-date editions, but behave much like
|
|
2065
|
-
* distinct editions. These can't be used to specify the edition of proto
|
|
2066
|
-
* files, but feature definitions must supply proto2/proto3 defaults for
|
|
2067
|
-
* backwards compatibility.
|
|
2068
|
-
*
|
|
2069
|
-
* @generated from protobuf enum value: EDITION_PROTO2 = 998;
|
|
2070
|
-
*/
|
|
2071
|
-
EDITION_PROTO2 = 998,
|
|
2072
|
-
/**
|
|
2073
|
-
* @generated from protobuf enum value: EDITION_PROTO3 = 999;
|
|
2074
|
-
*/
|
|
2075
|
-
EDITION_PROTO3 = 999,
|
|
2076
|
-
/**
|
|
2077
|
-
* Editions that have been released. The specific values are arbitrary and
|
|
2078
|
-
* should not be depended on, but they will always be time-ordered for easy
|
|
2079
|
-
* comparison.
|
|
2080
|
-
*
|
|
2081
|
-
* @generated from protobuf enum value: EDITION_2023 = 1000;
|
|
2082
|
-
*/
|
|
2083
|
-
EDITION_2023 = 1000,
|
|
2084
|
-
/**
|
|
2085
|
-
* @generated from protobuf enum value: EDITION_2024 = 1001;
|
|
2086
|
-
*/
|
|
2087
|
-
EDITION_2024 = 1001,
|
|
2088
|
-
/**
|
|
2089
|
-
* Placeholder editions for testing feature resolution. These should not be
|
|
2090
|
-
* used or relied on outside of tests.
|
|
2091
|
-
*
|
|
2092
|
-
* @generated from protobuf enum value: EDITION_1_TEST_ONLY = 1;
|
|
2093
|
-
*/
|
|
2094
|
-
EDITION_1_TEST_ONLY = 1,
|
|
2095
|
-
/**
|
|
2096
|
-
* @generated from protobuf enum value: EDITION_2_TEST_ONLY = 2;
|
|
2097
|
-
*/
|
|
2098
|
-
EDITION_2_TEST_ONLY = 2,
|
|
2099
|
-
/**
|
|
2100
|
-
* @generated from protobuf enum value: EDITION_99997_TEST_ONLY = 99997;
|
|
2101
|
-
*/
|
|
2102
|
-
EDITION_99997_TEST_ONLY = 99997,
|
|
2103
|
-
/**
|
|
2104
|
-
* @generated from protobuf enum value: EDITION_99998_TEST_ONLY = 99998;
|
|
2105
|
-
*/
|
|
2106
|
-
EDITION_99998_TEST_ONLY = 99998,
|
|
2107
|
-
/**
|
|
2108
|
-
* @generated from protobuf enum value: EDITION_99999_TEST_ONLY = 99999;
|
|
2109
|
-
*/
|
|
2110
|
-
EDITION_99999_TEST_ONLY = 99999,
|
|
2111
|
-
/**
|
|
2112
|
-
* Placeholder for specifying unbounded edition support. This should only
|
|
2113
|
-
* ever be used by plugins that can expect to never require any changes to
|
|
2114
|
-
* support a new edition.
|
|
2115
|
-
*
|
|
2116
|
-
* @generated from protobuf enum value: EDITION_MAX = 2147483647;
|
|
2117
|
-
*/
|
|
2118
|
-
EDITION_MAX = 2147483647
|
|
2119
|
-
}
|
|
2120
|
-
/**
|
|
2121
|
-
* Describes the 'visibility' of a symbol with respect to the proto import
|
|
2122
|
-
* system. Symbols can only be imported when the visibility rules do not prevent
|
|
2123
|
-
* it (ex: local symbols cannot be imported). Visibility modifiers can only set
|
|
2124
|
-
* on `message` and `enum` as they are the only types available to be referenced
|
|
2125
|
-
* from other files.
|
|
2126
|
-
*
|
|
2127
|
-
* @generated from protobuf enum google.protobuf.SymbolVisibility
|
|
2128
|
-
*/
|
|
2129
|
-
export declare enum SymbolVisibility {
|
|
2130
|
-
/**
|
|
2131
|
-
* @generated from protobuf enum value: VISIBILITY_UNSET = 0;
|
|
2132
|
-
*/
|
|
2133
|
-
VISIBILITY_UNSET = 0,
|
|
2134
|
-
/**
|
|
2135
|
-
* @generated from protobuf enum value: VISIBILITY_LOCAL = 1;
|
|
2136
|
-
*/
|
|
2137
|
-
VISIBILITY_LOCAL = 1,
|
|
2138
|
-
/**
|
|
2139
|
-
* @generated from protobuf enum value: VISIBILITY_EXPORT = 2;
|
|
2140
|
-
*/
|
|
2141
|
-
VISIBILITY_EXPORT = 2
|
|
2142
1379
|
}
|
|
2143
1380
|
declare class FileDescriptorSet$Type extends MessageType<FileDescriptorSet> {
|
|
2144
1381
|
constructor();
|
|
@@ -2200,16 +1437,6 @@ declare class ExtensionRangeOptions$Type extends MessageType<ExtensionRangeOptio
|
|
|
2200
1437
|
* @generated MessageType for protobuf message google.protobuf.ExtensionRangeOptions
|
|
2201
1438
|
*/
|
|
2202
1439
|
export declare const ExtensionRangeOptions: ExtensionRangeOptions$Type;
|
|
2203
|
-
declare class ExtensionRangeOptions_Declaration$Type extends MessageType<ExtensionRangeOptions_Declaration> {
|
|
2204
|
-
constructor();
|
|
2205
|
-
create(value?: PartialMessage<ExtensionRangeOptions_Declaration>): ExtensionRangeOptions_Declaration;
|
|
2206
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ExtensionRangeOptions_Declaration): ExtensionRangeOptions_Declaration;
|
|
2207
|
-
internalBinaryWrite(message: ExtensionRangeOptions_Declaration, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
2208
|
-
}
|
|
2209
|
-
/**
|
|
2210
|
-
* @generated MessageType for protobuf message google.protobuf.ExtensionRangeOptions.Declaration
|
|
2211
|
-
*/
|
|
2212
|
-
export declare const ExtensionRangeOptions_Declaration: ExtensionRangeOptions_Declaration$Type;
|
|
2213
1440
|
declare class FieldDescriptorProto$Type extends MessageType<FieldDescriptorProto> {
|
|
2214
1441
|
constructor();
|
|
2215
1442
|
create(value?: PartialMessage<FieldDescriptorProto>): FieldDescriptorProto;
|
|
@@ -2310,26 +1537,6 @@ declare class FieldOptions$Type extends MessageType<FieldOptions> {
|
|
|
2310
1537
|
* @generated MessageType for protobuf message google.protobuf.FieldOptions
|
|
2311
1538
|
*/
|
|
2312
1539
|
export declare const FieldOptions: FieldOptions$Type;
|
|
2313
|
-
declare class FieldOptions_EditionDefault$Type extends MessageType<FieldOptions_EditionDefault> {
|
|
2314
|
-
constructor();
|
|
2315
|
-
create(value?: PartialMessage<FieldOptions_EditionDefault>): FieldOptions_EditionDefault;
|
|
2316
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FieldOptions_EditionDefault): FieldOptions_EditionDefault;
|
|
2317
|
-
internalBinaryWrite(message: FieldOptions_EditionDefault, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
2318
|
-
}
|
|
2319
|
-
/**
|
|
2320
|
-
* @generated MessageType for protobuf message google.protobuf.FieldOptions.EditionDefault
|
|
2321
|
-
*/
|
|
2322
|
-
export declare const FieldOptions_EditionDefault: FieldOptions_EditionDefault$Type;
|
|
2323
|
-
declare class FieldOptions_FeatureSupport$Type extends MessageType<FieldOptions_FeatureSupport> {
|
|
2324
|
-
constructor();
|
|
2325
|
-
create(value?: PartialMessage<FieldOptions_FeatureSupport>): FieldOptions_FeatureSupport;
|
|
2326
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FieldOptions_FeatureSupport): FieldOptions_FeatureSupport;
|
|
2327
|
-
internalBinaryWrite(message: FieldOptions_FeatureSupport, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
2328
|
-
}
|
|
2329
|
-
/**
|
|
2330
|
-
* @generated MessageType for protobuf message google.protobuf.FieldOptions.FeatureSupport
|
|
2331
|
-
*/
|
|
2332
|
-
export declare const FieldOptions_FeatureSupport: FieldOptions_FeatureSupport$Type;
|
|
2333
1540
|
declare class OneofOptions$Type extends MessageType<OneofOptions> {
|
|
2334
1541
|
constructor();
|
|
2335
1542
|
create(value?: PartialMessage<OneofOptions>): OneofOptions;
|
|
@@ -2400,46 +1607,6 @@ declare class UninterpretedOption_NamePart$Type extends MessageType<Uninterprete
|
|
|
2400
1607
|
* @generated MessageType for protobuf message google.protobuf.UninterpretedOption.NamePart
|
|
2401
1608
|
*/
|
|
2402
1609
|
export declare const UninterpretedOption_NamePart: UninterpretedOption_NamePart$Type;
|
|
2403
|
-
declare class FeatureSet$Type extends MessageType<FeatureSet> {
|
|
2404
|
-
constructor();
|
|
2405
|
-
create(value?: PartialMessage<FeatureSet>): FeatureSet;
|
|
2406
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FeatureSet): FeatureSet;
|
|
2407
|
-
internalBinaryWrite(message: FeatureSet, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
2408
|
-
}
|
|
2409
|
-
/**
|
|
2410
|
-
* @generated MessageType for protobuf message google.protobuf.FeatureSet
|
|
2411
|
-
*/
|
|
2412
|
-
export declare const FeatureSet: FeatureSet$Type;
|
|
2413
|
-
declare class FeatureSet_VisibilityFeature$Type extends MessageType<FeatureSet_VisibilityFeature> {
|
|
2414
|
-
constructor();
|
|
2415
|
-
create(value?: PartialMessage<FeatureSet_VisibilityFeature>): FeatureSet_VisibilityFeature;
|
|
2416
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FeatureSet_VisibilityFeature): FeatureSet_VisibilityFeature;
|
|
2417
|
-
internalBinaryWrite(message: FeatureSet_VisibilityFeature, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
2418
|
-
}
|
|
2419
|
-
/**
|
|
2420
|
-
* @generated MessageType for protobuf message google.protobuf.FeatureSet.VisibilityFeature
|
|
2421
|
-
*/
|
|
2422
|
-
export declare const FeatureSet_VisibilityFeature: FeatureSet_VisibilityFeature$Type;
|
|
2423
|
-
declare class FeatureSetDefaults$Type extends MessageType<FeatureSetDefaults> {
|
|
2424
|
-
constructor();
|
|
2425
|
-
create(value?: PartialMessage<FeatureSetDefaults>): FeatureSetDefaults;
|
|
2426
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FeatureSetDefaults): FeatureSetDefaults;
|
|
2427
|
-
internalBinaryWrite(message: FeatureSetDefaults, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
2428
|
-
}
|
|
2429
|
-
/**
|
|
2430
|
-
* @generated MessageType for protobuf message google.protobuf.FeatureSetDefaults
|
|
2431
|
-
*/
|
|
2432
|
-
export declare const FeatureSetDefaults: FeatureSetDefaults$Type;
|
|
2433
|
-
declare class FeatureSetDefaults_FeatureSetEditionDefault$Type extends MessageType<FeatureSetDefaults_FeatureSetEditionDefault> {
|
|
2434
|
-
constructor();
|
|
2435
|
-
create(value?: PartialMessage<FeatureSetDefaults_FeatureSetEditionDefault>): FeatureSetDefaults_FeatureSetEditionDefault;
|
|
2436
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: FeatureSetDefaults_FeatureSetEditionDefault): FeatureSetDefaults_FeatureSetEditionDefault;
|
|
2437
|
-
internalBinaryWrite(message: FeatureSetDefaults_FeatureSetEditionDefault, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
2438
|
-
}
|
|
2439
|
-
/**
|
|
2440
|
-
* @generated MessageType for protobuf message google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault
|
|
2441
|
-
*/
|
|
2442
|
-
export declare const FeatureSetDefaults_FeatureSetEditionDefault: FeatureSetDefaults_FeatureSetEditionDefault$Type;
|
|
2443
1610
|
declare class SourceCodeInfo$Type extends MessageType<SourceCodeInfo> {
|
|
2444
1611
|
constructor();
|
|
2445
1612
|
create(value?: PartialMessage<SourceCodeInfo>): SourceCodeInfo;
|