protobufjs 8.1.5-experimental → 8.2.0
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/README.md +219 -565
- package/dist/light/protobuf.js +1986 -1483
- package/dist/light/protobuf.js.map +1 -1
- package/dist/light/protobuf.min.js +3 -3
- package/dist/light/protobuf.min.js.map +1 -1
- package/dist/minimal/protobuf.js +1122 -861
- package/dist/minimal/protobuf.js.map +1 -1
- package/dist/minimal/protobuf.min.js +3 -3
- package/dist/minimal/protobuf.min.js.map +1 -1
- package/dist/protobuf.js +2089 -1513
- package/dist/protobuf.js.map +1 -1
- package/dist/protobuf.min.js +3 -3
- package/dist/protobuf.min.js.map +1 -1
- package/ext/README.md +81 -0
- package/ext/descriptor/README.md +3 -70
- package/ext/descriptor/index.d.ts +1 -191
- package/ext/descriptor/index.js +1 -1156
- package/ext/descriptor.d.ts +309 -0
- package/ext/descriptor.js +1236 -0
- package/ext/textformat.d.ts +30 -0
- package/ext/textformat.js +1249 -0
- package/google/protobuf/compiler/plugin.json +126 -0
- package/google/protobuf/compiler/plugin.proto +47 -0
- package/google/protobuf/descriptor.json +114 -10
- package/google/protobuf/descriptor.proto +35 -9
- package/index.d.ts +590 -476
- package/package.json +23 -38
- package/src/converter.js +60 -24
- package/src/decoder.js +122 -49
- package/src/encoder.js +10 -2
- package/src/enum.js +4 -1
- package/src/field.js +10 -7
- package/src/mapfield.js +1 -0
- package/src/message.js +7 -6
- package/src/method.js +4 -3
- package/src/namespace.js +23 -12
- package/src/object.js +24 -19
- package/src/oneof.js +2 -0
- package/src/parse.js +114 -46
- package/src/reader.js +145 -30
- package/src/reader_buffer.js +24 -3
- package/src/root.js +7 -4
- package/src/service.js +12 -6
- package/src/tokenize.js +6 -1
- package/src/type.js +48 -25
- package/src/types.js +1 -1
- package/src/util/aspromise.d.ts +13 -0
- package/src/util/aspromise.js +52 -0
- package/src/util/base64.d.ts +32 -0
- package/src/util/base64.js +146 -0
- package/src/util/codegen.d.ts +31 -0
- package/src/util/codegen.js +113 -0
- package/src/util/eventemitter.d.ts +45 -0
- package/src/util/eventemitter.js +84 -0
- package/src/util/fetch.d.ts +56 -0
- package/src/util/fetch.js +112 -0
- package/src/util/float.d.ts +83 -0
- package/src/util/float.js +335 -0
- package/src/util/fs.js +11 -0
- package/src/util/inquire.d.ts +10 -0
- package/src/util/inquire.js +38 -0
- package/src/util/minimal.js +67 -12
- package/src/util/path.d.ts +22 -0
- package/src/util/path.js +72 -0
- package/src/util/patterns.js +8 -0
- package/src/util/pool.d.ts +32 -0
- package/src/util/pool.js +48 -0
- package/src/util/utf8.d.ts +24 -0
- package/src/util/utf8.js +104 -0
- package/src/util.js +30 -13
- package/src/verifier.js +7 -4
- package/src/wrappers.js +4 -3
- package/src/writer.js +27 -4
- package/src/writer_buffer.js +12 -0
- package/tsconfig.json +2 -2
- package/ext/descriptor/test.js +0 -54
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
{
|
|
2
|
+
"nested": {
|
|
3
|
+
"google": {
|
|
4
|
+
"nested": {
|
|
5
|
+
"protobuf": {
|
|
6
|
+
"nested": {
|
|
7
|
+
"compiler": {
|
|
8
|
+
"options": {
|
|
9
|
+
"java_package": "com.google.protobuf.compiler",
|
|
10
|
+
"java_outer_classname": "PluginProtos",
|
|
11
|
+
"csharp_namespace": "Google.Protobuf.Compiler",
|
|
12
|
+
"go_package": "google.golang.org/protobuf/types/pluginpb"
|
|
13
|
+
},
|
|
14
|
+
"nested": {
|
|
15
|
+
"Version": {
|
|
16
|
+
"edition": "proto2",
|
|
17
|
+
"fields": {
|
|
18
|
+
"major": {
|
|
19
|
+
"type": "int32",
|
|
20
|
+
"id": 1
|
|
21
|
+
},
|
|
22
|
+
"minor": {
|
|
23
|
+
"type": "int32",
|
|
24
|
+
"id": 2
|
|
25
|
+
},
|
|
26
|
+
"patch": {
|
|
27
|
+
"type": "int32",
|
|
28
|
+
"id": 3
|
|
29
|
+
},
|
|
30
|
+
"suffix": {
|
|
31
|
+
"type": "string",
|
|
32
|
+
"id": 4
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"CodeGeneratorRequest": {
|
|
37
|
+
"edition": "proto2",
|
|
38
|
+
"fields": {
|
|
39
|
+
"fileToGenerate": {
|
|
40
|
+
"rule": "repeated",
|
|
41
|
+
"type": "string",
|
|
42
|
+
"id": 1
|
|
43
|
+
},
|
|
44
|
+
"parameter": {
|
|
45
|
+
"type": "string",
|
|
46
|
+
"id": 2
|
|
47
|
+
},
|
|
48
|
+
"protoFile": {
|
|
49
|
+
"rule": "repeated",
|
|
50
|
+
"type": "FileDescriptorProto",
|
|
51
|
+
"id": 15
|
|
52
|
+
},
|
|
53
|
+
"sourceFileDescriptors": {
|
|
54
|
+
"rule": "repeated",
|
|
55
|
+
"type": "FileDescriptorProto",
|
|
56
|
+
"id": 17
|
|
57
|
+
},
|
|
58
|
+
"compilerVersion": {
|
|
59
|
+
"type": "Version",
|
|
60
|
+
"id": 3
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"CodeGeneratorResponse": {
|
|
65
|
+
"edition": "proto2",
|
|
66
|
+
"fields": {
|
|
67
|
+
"error": {
|
|
68
|
+
"type": "string",
|
|
69
|
+
"id": 1
|
|
70
|
+
},
|
|
71
|
+
"supportedFeatures": {
|
|
72
|
+
"type": "uint64",
|
|
73
|
+
"id": 2
|
|
74
|
+
},
|
|
75
|
+
"minimumEdition": {
|
|
76
|
+
"type": "int32",
|
|
77
|
+
"id": 3
|
|
78
|
+
},
|
|
79
|
+
"maximumEdition": {
|
|
80
|
+
"type": "int32",
|
|
81
|
+
"id": 4
|
|
82
|
+
},
|
|
83
|
+
"file": {
|
|
84
|
+
"rule": "repeated",
|
|
85
|
+
"type": "File",
|
|
86
|
+
"id": 15
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"nested": {
|
|
90
|
+
"Feature": {
|
|
91
|
+
"values": {
|
|
92
|
+
"FEATURE_NONE": 0,
|
|
93
|
+
"FEATURE_PROTO3_OPTIONAL": 1,
|
|
94
|
+
"FEATURE_SUPPORTS_EDITIONS": 2
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"File": {
|
|
98
|
+
"fields": {
|
|
99
|
+
"name": {
|
|
100
|
+
"type": "string",
|
|
101
|
+
"id": 1
|
|
102
|
+
},
|
|
103
|
+
"insertionPoint": {
|
|
104
|
+
"type": "string",
|
|
105
|
+
"id": 2
|
|
106
|
+
},
|
|
107
|
+
"content": {
|
|
108
|
+
"type": "string",
|
|
109
|
+
"id": 15
|
|
110
|
+
},
|
|
111
|
+
"generatedCodeInfo": {
|
|
112
|
+
"type": "GeneratedCodeInfo",
|
|
113
|
+
"id": 16
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
syntax = "proto2";
|
|
2
|
+
|
|
3
|
+
package google.protobuf.compiler;
|
|
4
|
+
option java_package = "com.google.protobuf.compiler";
|
|
5
|
+
option java_outer_classname = "PluginProtos";
|
|
6
|
+
|
|
7
|
+
import "google/protobuf/descriptor.proto";
|
|
8
|
+
|
|
9
|
+
option csharp_namespace = "Google.Protobuf.Compiler";
|
|
10
|
+
option go_package = "google.golang.org/protobuf/types/pluginpb";
|
|
11
|
+
|
|
12
|
+
message Version {
|
|
13
|
+
optional int32 major = 1;
|
|
14
|
+
optional int32 minor = 2;
|
|
15
|
+
optional int32 patch = 3;
|
|
16
|
+
optional string suffix = 4;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
message CodeGeneratorRequest {
|
|
20
|
+
repeated string file_to_generate = 1;
|
|
21
|
+
optional string parameter = 2;
|
|
22
|
+
repeated FileDescriptorProto proto_file = 15;
|
|
23
|
+
repeated FileDescriptorProto source_file_descriptors = 17;
|
|
24
|
+
optional Version compiler_version = 3;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
message CodeGeneratorResponse {
|
|
28
|
+
optional string error = 1;
|
|
29
|
+
optional uint64 supported_features = 2;
|
|
30
|
+
|
|
31
|
+
enum Feature {
|
|
32
|
+
FEATURE_NONE = 0;
|
|
33
|
+
FEATURE_PROTO3_OPTIONAL = 1;
|
|
34
|
+
FEATURE_SUPPORTS_EDITIONS = 2;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
optional int32 minimum_edition = 3;
|
|
38
|
+
optional int32 maximum_edition = 4;
|
|
39
|
+
|
|
40
|
+
message File {
|
|
41
|
+
optional string name = 1;
|
|
42
|
+
optional string insertion_point = 2;
|
|
43
|
+
optional string content = 15;
|
|
44
|
+
optional GeneratedCodeInfo generated_code_info = 16;
|
|
45
|
+
}
|
|
46
|
+
repeated File file = 15;
|
|
47
|
+
}
|
|
@@ -72,6 +72,11 @@
|
|
|
72
72
|
"type": "int32",
|
|
73
73
|
"id": 11
|
|
74
74
|
},
|
|
75
|
+
"optionDependency": {
|
|
76
|
+
"rule": "repeated",
|
|
77
|
+
"type": "string",
|
|
78
|
+
"id": 15
|
|
79
|
+
},
|
|
75
80
|
"messageType": {
|
|
76
81
|
"rule": "repeated",
|
|
77
82
|
"type": "DescriptorProto",
|
|
@@ -160,6 +165,10 @@
|
|
|
160
165
|
"rule": "repeated",
|
|
161
166
|
"type": "string",
|
|
162
167
|
"id": 10
|
|
168
|
+
},
|
|
169
|
+
"visibility": {
|
|
170
|
+
"type": "SymbolVisibility",
|
|
171
|
+
"id": 11
|
|
163
172
|
}
|
|
164
173
|
},
|
|
165
174
|
"nested": {
|
|
@@ -385,6 +394,10 @@
|
|
|
385
394
|
"rule": "repeated",
|
|
386
395
|
"type": "string",
|
|
387
396
|
"id": 5
|
|
397
|
+
},
|
|
398
|
+
"visibility": {
|
|
399
|
+
"type": "SymbolVisibility",
|
|
400
|
+
"id": 6
|
|
388
401
|
}
|
|
389
402
|
},
|
|
390
403
|
"nested": {
|
|
@@ -575,11 +588,11 @@
|
|
|
575
588
|
42,
|
|
576
589
|
42
|
|
577
590
|
],
|
|
578
|
-
"php_generic_services",
|
|
579
591
|
[
|
|
580
592
|
38,
|
|
581
593
|
38
|
|
582
|
-
]
|
|
594
|
+
],
|
|
595
|
+
"php_generic_services"
|
|
583
596
|
],
|
|
584
597
|
"nested": {
|
|
585
598
|
"OptimizeMode": {
|
|
@@ -691,7 +704,10 @@
|
|
|
691
704
|
},
|
|
692
705
|
"weak": {
|
|
693
706
|
"type": "bool",
|
|
694
|
-
"id": 10
|
|
707
|
+
"id": 10,
|
|
708
|
+
"options": {
|
|
709
|
+
"deprecated": true
|
|
710
|
+
}
|
|
695
711
|
},
|
|
696
712
|
"debugRedact": {
|
|
697
713
|
"type": "bool",
|
|
@@ -1023,31 +1039,91 @@
|
|
|
1023
1039
|
"fields": {
|
|
1024
1040
|
"fieldPresence": {
|
|
1025
1041
|
"type": "FieldPresence",
|
|
1026
|
-
"id": 1
|
|
1042
|
+
"id": 1,
|
|
1043
|
+
"options": {
|
|
1044
|
+
"retention": "RETENTION_RUNTIME",
|
|
1045
|
+
"targets": "TARGET_TYPE_FILE",
|
|
1046
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
1047
|
+
"edition_defaults.edition": "EDITION_2023",
|
|
1048
|
+
"edition_defaults.value": "EXPLICIT"
|
|
1049
|
+
}
|
|
1027
1050
|
},
|
|
1028
1051
|
"enumType": {
|
|
1029
1052
|
"type": "EnumType",
|
|
1030
|
-
"id": 2
|
|
1053
|
+
"id": 2,
|
|
1054
|
+
"options": {
|
|
1055
|
+
"retention": "RETENTION_RUNTIME",
|
|
1056
|
+
"targets": "TARGET_TYPE_FILE",
|
|
1057
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
1058
|
+
"edition_defaults.edition": "EDITION_PROTO3",
|
|
1059
|
+
"edition_defaults.value": "OPEN"
|
|
1060
|
+
}
|
|
1031
1061
|
},
|
|
1032
1062
|
"repeatedFieldEncoding": {
|
|
1033
1063
|
"type": "RepeatedFieldEncoding",
|
|
1034
|
-
"id": 3
|
|
1064
|
+
"id": 3,
|
|
1065
|
+
"options": {
|
|
1066
|
+
"retention": "RETENTION_RUNTIME",
|
|
1067
|
+
"targets": "TARGET_TYPE_FILE",
|
|
1068
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
1069
|
+
"edition_defaults.edition": "EDITION_PROTO3",
|
|
1070
|
+
"edition_defaults.value": "PACKED"
|
|
1071
|
+
}
|
|
1035
1072
|
},
|
|
1036
1073
|
"utf8Validation": {
|
|
1037
1074
|
"type": "Utf8Validation",
|
|
1038
|
-
"id": 4
|
|
1075
|
+
"id": 4,
|
|
1076
|
+
"options": {
|
|
1077
|
+
"retention": "RETENTION_RUNTIME",
|
|
1078
|
+
"targets": "TARGET_TYPE_FILE",
|
|
1079
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
1080
|
+
"edition_defaults.edition": "EDITION_PROTO3",
|
|
1081
|
+
"edition_defaults.value": "VERIFY"
|
|
1082
|
+
}
|
|
1039
1083
|
},
|
|
1040
1084
|
"messageEncoding": {
|
|
1041
1085
|
"type": "MessageEncoding",
|
|
1042
|
-
"id": 5
|
|
1086
|
+
"id": 5,
|
|
1087
|
+
"options": {
|
|
1088
|
+
"retention": "RETENTION_RUNTIME",
|
|
1089
|
+
"targets": "TARGET_TYPE_FILE",
|
|
1090
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
1091
|
+
"edition_defaults.edition": "EDITION_LEGACY",
|
|
1092
|
+
"edition_defaults.value": "LENGTH_PREFIXED"
|
|
1093
|
+
}
|
|
1043
1094
|
},
|
|
1044
1095
|
"jsonFormat": {
|
|
1045
1096
|
"type": "JsonFormat",
|
|
1046
|
-
"id": 6
|
|
1097
|
+
"id": 6,
|
|
1098
|
+
"options": {
|
|
1099
|
+
"retention": "RETENTION_RUNTIME",
|
|
1100
|
+
"targets": "TARGET_TYPE_FILE",
|
|
1101
|
+
"feature_support.edition_introduced": "EDITION_2023",
|
|
1102
|
+
"edition_defaults.edition": "EDITION_PROTO3",
|
|
1103
|
+
"edition_defaults.value": "ALLOW"
|
|
1104
|
+
}
|
|
1047
1105
|
},
|
|
1048
1106
|
"enforceNamingStyle": {
|
|
1049
1107
|
"type": "EnforceNamingStyle",
|
|
1050
|
-
"id": 7
|
|
1108
|
+
"id": 7,
|
|
1109
|
+
"options": {
|
|
1110
|
+
"retention": "RETENTION_SOURCE",
|
|
1111
|
+
"targets": "TARGET_TYPE_METHOD",
|
|
1112
|
+
"feature_support.edition_introduced": "EDITION_2024",
|
|
1113
|
+
"edition_defaults.edition": "EDITION_2024",
|
|
1114
|
+
"edition_defaults.value": "STYLE2024"
|
|
1115
|
+
}
|
|
1116
|
+
},
|
|
1117
|
+
"defaultSymbolVisibility": {
|
|
1118
|
+
"type": "VisibilityFeature.DefaultSymbolVisibility",
|
|
1119
|
+
"id": 8,
|
|
1120
|
+
"options": {
|
|
1121
|
+
"retention": "RETENTION_SOURCE",
|
|
1122
|
+
"targets": "TARGET_TYPE_FILE",
|
|
1123
|
+
"feature_support.edition_introduced": "EDITION_2024",
|
|
1124
|
+
"edition_defaults.edition": "EDITION_2024",
|
|
1125
|
+
"edition_defaults.value": "EXPORT_TOP_LEVEL"
|
|
1126
|
+
}
|
|
1051
1127
|
}
|
|
1052
1128
|
},
|
|
1053
1129
|
"extensions": [
|
|
@@ -1120,6 +1196,26 @@
|
|
|
1120
1196
|
"STYLE2024": 1,
|
|
1121
1197
|
"STYLE_LEGACY": 2
|
|
1122
1198
|
}
|
|
1199
|
+
},
|
|
1200
|
+
"VisibilityFeature": {
|
|
1201
|
+
"fields": {},
|
|
1202
|
+
"reserved": [
|
|
1203
|
+
[
|
|
1204
|
+
1,
|
|
1205
|
+
536870911
|
|
1206
|
+
]
|
|
1207
|
+
],
|
|
1208
|
+
"nested": {
|
|
1209
|
+
"DefaultSymbolVisibility": {
|
|
1210
|
+
"values": {
|
|
1211
|
+
"DEFAULT_SYMBOL_VISIBILITY_UNKNOWN": 0,
|
|
1212
|
+
"EXPORT_ALL": 1,
|
|
1213
|
+
"EXPORT_TOP_LEVEL": 2,
|
|
1214
|
+
"LOCAL_ALL": 3,
|
|
1215
|
+
"STRICT": 4
|
|
1216
|
+
}
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1123
1219
|
}
|
|
1124
1220
|
}
|
|
1125
1221
|
},
|
|
@@ -1269,6 +1365,14 @@
|
|
|
1269
1365
|
}
|
|
1270
1366
|
}
|
|
1271
1367
|
}
|
|
1368
|
+
},
|
|
1369
|
+
"SymbolVisibility": {
|
|
1370
|
+
"edition": "proto2",
|
|
1371
|
+
"values": {
|
|
1372
|
+
"VISIBILITY_UNSET": 0,
|
|
1373
|
+
"VISIBILITY_LOCAL": 1,
|
|
1374
|
+
"VISIBILITY_EXPORT": 2
|
|
1375
|
+
}
|
|
1272
1376
|
}
|
|
1273
1377
|
}
|
|
1274
1378
|
}
|
|
@@ -40,6 +40,7 @@ message FileDescriptorProto {
|
|
|
40
40
|
repeated string dependency = 3;
|
|
41
41
|
repeated int32 public_dependency = 10;
|
|
42
42
|
repeated int32 weak_dependency = 11;
|
|
43
|
+
repeated string option_dependency = 15;
|
|
43
44
|
repeated DescriptorProto message_type = 4;
|
|
44
45
|
repeated EnumDescriptorProto enum_type = 5;
|
|
45
46
|
repeated ServiceDescriptorProto service = 6;
|
|
@@ -62,6 +63,7 @@ message DescriptorProto {
|
|
|
62
63
|
optional MessageOptions options = 7;
|
|
63
64
|
repeated ReservedRange reserved_range = 9;
|
|
64
65
|
repeated string reserved_name = 10;
|
|
66
|
+
optional SymbolVisibility visibility = 11;
|
|
65
67
|
|
|
66
68
|
message ExtensionRange {
|
|
67
69
|
|
|
@@ -161,6 +163,7 @@ message EnumDescriptorProto {
|
|
|
161
163
|
optional EnumOptions options = 3;
|
|
162
164
|
repeated EnumReservedRange reserved_range = 4;
|
|
163
165
|
repeated string reserved_name = 5;
|
|
166
|
+
optional SymbolVisibility visibility = 6;
|
|
164
167
|
|
|
165
168
|
message EnumReservedRange {
|
|
166
169
|
|
|
@@ -226,7 +229,8 @@ message FileOptions {
|
|
|
226
229
|
|
|
227
230
|
extensions 1000 to max;
|
|
228
231
|
|
|
229
|
-
reserved 42,
|
|
232
|
+
reserved 42, 38;
|
|
233
|
+
reserved "php_generic_services";
|
|
230
234
|
}
|
|
231
235
|
|
|
232
236
|
message MessageOptions {
|
|
@@ -252,7 +256,7 @@ message FieldOptions {
|
|
|
252
256
|
optional bool lazy = 5;
|
|
253
257
|
optional bool unverified_lazy = 15;
|
|
254
258
|
optional bool deprecated = 3;
|
|
255
|
-
optional bool weak = 10;
|
|
259
|
+
optional bool weak = 10 [deprecated=true];
|
|
256
260
|
optional bool debug_redact = 16;
|
|
257
261
|
optional OptionRetention retention = 17;
|
|
258
262
|
repeated OptionTargetType targets = 19;
|
|
@@ -392,13 +396,14 @@ message UninterpretedOption {
|
|
|
392
396
|
|
|
393
397
|
message FeatureSet {
|
|
394
398
|
|
|
395
|
-
optional FieldPresence field_presence = 1;
|
|
396
|
-
optional EnumType enum_type = 2;
|
|
397
|
-
optional RepeatedFieldEncoding repeated_field_encoding = 3;
|
|
398
|
-
optional Utf8Validation utf8_validation = 4;
|
|
399
|
-
optional MessageEncoding message_encoding = 5;
|
|
400
|
-
optional JsonFormat json_format = 6;
|
|
401
|
-
optional EnforceNamingStyle enforce_naming_style = 7;
|
|
399
|
+
optional FieldPresence field_presence = 1 [retention="RETENTION_RUNTIME", targets="TARGET_TYPE_FILE", feature_support.edition_introduced="EDITION_2023", edition_defaults.edition="EDITION_2023", edition_defaults.value="EXPLICIT"];
|
|
400
|
+
optional EnumType enum_type = 2 [retention="RETENTION_RUNTIME", targets="TARGET_TYPE_FILE", feature_support.edition_introduced="EDITION_2023", edition_defaults.edition="EDITION_PROTO3", edition_defaults.value="OPEN"];
|
|
401
|
+
optional RepeatedFieldEncoding repeated_field_encoding = 3 [retention="RETENTION_RUNTIME", targets="TARGET_TYPE_FILE", feature_support.edition_introduced="EDITION_2023", edition_defaults.edition="EDITION_PROTO3", edition_defaults.value="PACKED"];
|
|
402
|
+
optional Utf8Validation utf8_validation = 4 [retention="RETENTION_RUNTIME", targets="TARGET_TYPE_FILE", feature_support.edition_introduced="EDITION_2023", edition_defaults.edition="EDITION_PROTO3", edition_defaults.value="VERIFY"];
|
|
403
|
+
optional MessageEncoding message_encoding = 5 [retention="RETENTION_RUNTIME", targets="TARGET_TYPE_FILE", feature_support.edition_introduced="EDITION_2023", edition_defaults.edition="EDITION_LEGACY", edition_defaults.value="LENGTH_PREFIXED"];
|
|
404
|
+
optional JsonFormat json_format = 6 [retention="RETENTION_RUNTIME", targets="TARGET_TYPE_FILE", feature_support.edition_introduced="EDITION_2023", edition_defaults.edition="EDITION_PROTO3", edition_defaults.value="ALLOW"];
|
|
405
|
+
optional EnforceNamingStyle enforce_naming_style = 7 [retention="RETENTION_SOURCE", targets="TARGET_TYPE_METHOD", feature_support.edition_introduced="EDITION_2024", edition_defaults.edition="EDITION_2024", edition_defaults.value="STYLE2024"];
|
|
406
|
+
optional VisibilityFeature.DefaultSymbolVisibility default_symbol_visibility = 8 [retention="RETENTION_SOURCE", targets="TARGET_TYPE_FILE", feature_support.edition_introduced="EDITION_2024", edition_defaults.edition="EDITION_2024", edition_defaults.value="EXPORT_TOP_LEVEL"];
|
|
402
407
|
|
|
403
408
|
enum FieldPresence {
|
|
404
409
|
|
|
@@ -450,6 +455,20 @@ message FeatureSet {
|
|
|
450
455
|
STYLE_LEGACY = 2;
|
|
451
456
|
}
|
|
452
457
|
|
|
458
|
+
message VisibilityFeature {
|
|
459
|
+
|
|
460
|
+
enum DefaultSymbolVisibility {
|
|
461
|
+
|
|
462
|
+
DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0;
|
|
463
|
+
EXPORT_ALL = 1;
|
|
464
|
+
EXPORT_TOP_LEVEL = 2;
|
|
465
|
+
LOCAL_ALL = 3;
|
|
466
|
+
STRICT = 4;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
reserved 1 to max;
|
|
470
|
+
}
|
|
471
|
+
|
|
453
472
|
extensions 1000 to 9994, 9995 to 9999, 10000;
|
|
454
473
|
|
|
455
474
|
reserved 999;
|
|
@@ -506,4 +525,11 @@ message GeneratedCodeInfo {
|
|
|
506
525
|
ALIAS = 2;
|
|
507
526
|
}
|
|
508
527
|
}
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
enum SymbolVisibility {
|
|
531
|
+
|
|
532
|
+
VISIBILITY_UNSET = 0;
|
|
533
|
+
VISIBILITY_LOCAL = 1;
|
|
534
|
+
VISIBILITY_EXPORT = 2;
|
|
509
535
|
}
|