protobufjs 8.6.1 → 8.6.2
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/LICENSE +39 -39
- package/README.md +441 -441
- package/dist/light/protobuf.js +8455 -8455
- 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 +2999 -2999
- 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 +10359 -10359
- 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 +70 -70
- package/ext/debug/README.md +4 -4
- package/ext/debug/index.js +71 -71
- package/ext/descriptor/README.md +5 -5
- package/ext/descriptor/index.d.ts +2 -2
- package/ext/descriptor/index.js +2 -2
- package/ext/descriptor.d.ts +87 -87
- package/ext/descriptor.js +1354 -1354
- package/ext/protojson.LICENSE +201 -201
- package/ext/protojson.d.ts +20 -20
- package/ext/protojson.js +925 -925
- package/ext/textformat.d.ts +19 -19
- package/ext/textformat.js +1256 -1256
- package/google/LICENSE +27 -27
- package/google/README.md +1 -1
- package/google/api/annotations.json +82 -82
- package/google/api/annotations.proto +10 -10
- package/google/api/http.json +85 -85
- package/google/api/http.proto +30 -30
- package/google/protobuf/api.json +117 -117
- package/google/protobuf/api.proto +33 -33
- package/google/protobuf/compiler/plugin.json +126 -126
- package/google/protobuf/compiler/plugin.proto +47 -47
- package/google/protobuf/descriptor.json +1381 -1381
- package/google/protobuf/descriptor.proto +534 -534
- package/google/protobuf/source_context.json +19 -19
- package/google/protobuf/source_context.proto +7 -7
- package/google/protobuf/type.json +201 -201
- package/google/protobuf/type.proto +89 -89
- package/index.d.ts +1 -1
- package/index.js +4 -4
- package/light.d.ts +2 -2
- package/light.js +3 -3
- package/minimal.d.ts +2 -2
- package/minimal.js +4 -4
- package/package.json +93 -93
- package/src/common.js +399 -399
- package/src/converter.js +344 -344
- package/src/decoder.js +208 -208
- package/src/encoder.js +111 -111
- package/src/enum.js +231 -231
- package/src/field.js +497 -497
- package/src/index-light.js +104 -104
- package/src/index-minimal.js +36 -36
- package/src/index.js +12 -12
- package/src/mapfield.js +136 -136
- package/src/message.js +137 -137
- package/src/method.js +175 -175
- package/src/namespace.js +565 -565
- package/src/object.js +382 -382
- package/src/oneof.js +225 -225
- package/src/parse.js +1068 -1068
- package/src/reader.js +543 -543
- package/src/reader_buffer.js +72 -72
- package/src/root.js +416 -416
- package/src/roots.js +18 -18
- package/src/rpc/service.js +148 -148
- package/src/rpc.js +36 -36
- package/src/service.js +198 -198
- package/src/tokenize.js +421 -421
- package/src/type.js +655 -655
- package/src/types.js +196 -196
- package/src/typescript.js +25 -25
- package/src/util/aspromise.d.ts +13 -13
- package/src/util/aspromise.js +52 -52
- package/src/util/base64.d.ts +32 -32
- package/src/util/base64.js +146 -146
- package/src/util/codegen.d.ts +31 -31
- package/src/util/codegen.js +113 -113
- package/src/util/eventemitter.d.ts +45 -45
- package/src/util/eventemitter.js +86 -86
- package/src/util/fetch.d.ts +56 -56
- package/src/util/fetch.js +112 -112
- package/src/util/float.d.ts +83 -83
- package/src/util/float.js +335 -335
- package/src/util/fs.js +11 -11
- package/src/util/longbits.js +200 -200
- package/src/util/minimal.js +515 -515
- package/src/util/path.d.ts +22 -22
- package/src/util/path.js +72 -72
- package/src/util/patterns.js +7 -7
- package/src/util/pool.d.ts +32 -32
- package/src/util/pool.js +48 -48
- package/src/util/utf8.d.ts +24 -24
- package/src/util/utf8.js +130 -130
- package/src/util.js +242 -242
- package/src/verifier.js +180 -180
- package/src/wrappers.js +106 -106
- package/src/writer.js +495 -495
- package/src/writer_buffer.js +102 -102
- package/tsconfig.json +6 -6
package/google/protobuf/api.json
CHANGED
|
@@ -1,118 +1,118 @@
|
|
|
1
|
-
{
|
|
2
|
-
"nested": {
|
|
3
|
-
"google": {
|
|
4
|
-
"nested": {
|
|
5
|
-
"protobuf": {
|
|
6
|
-
"nested": {
|
|
7
|
-
"Api": {
|
|
8
|
-
"fields": {
|
|
9
|
-
"name": {
|
|
10
|
-
"type": "string",
|
|
11
|
-
"id": 1
|
|
12
|
-
},
|
|
13
|
-
"methods": {
|
|
14
|
-
"rule": "repeated",
|
|
15
|
-
"type": "Method",
|
|
16
|
-
"id": 2
|
|
17
|
-
},
|
|
18
|
-
"options": {
|
|
19
|
-
"rule": "repeated",
|
|
20
|
-
"type": "Option",
|
|
21
|
-
"id": 3
|
|
22
|
-
},
|
|
23
|
-
"version": {
|
|
24
|
-
"type": "string",
|
|
25
|
-
"id": 4
|
|
26
|
-
},
|
|
27
|
-
"sourceContext": {
|
|
28
|
-
"type": "SourceContext",
|
|
29
|
-
"id": 5
|
|
30
|
-
},
|
|
31
|
-
"mixins": {
|
|
32
|
-
"rule": "repeated",
|
|
33
|
-
"type": "Mixin",
|
|
34
|
-
"id": 6
|
|
35
|
-
},
|
|
36
|
-
"syntax": {
|
|
37
|
-
"type": "Syntax",
|
|
38
|
-
"id": 7
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
"Method": {
|
|
43
|
-
"fields": {
|
|
44
|
-
"name": {
|
|
45
|
-
"type": "string",
|
|
46
|
-
"id": 1
|
|
47
|
-
},
|
|
48
|
-
"requestTypeUrl": {
|
|
49
|
-
"type": "string",
|
|
50
|
-
"id": 2
|
|
51
|
-
},
|
|
52
|
-
"requestStreaming": {
|
|
53
|
-
"type": "bool",
|
|
54
|
-
"id": 3
|
|
55
|
-
},
|
|
56
|
-
"responseTypeUrl": {
|
|
57
|
-
"type": "string",
|
|
58
|
-
"id": 4
|
|
59
|
-
},
|
|
60
|
-
"responseStreaming": {
|
|
61
|
-
"type": "bool",
|
|
62
|
-
"id": 5
|
|
63
|
-
},
|
|
64
|
-
"options": {
|
|
65
|
-
"rule": "repeated",
|
|
66
|
-
"type": "Option",
|
|
67
|
-
"id": 6
|
|
68
|
-
},
|
|
69
|
-
"syntax": {
|
|
70
|
-
"type": "Syntax",
|
|
71
|
-
"id": 7
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
},
|
|
75
|
-
"Mixin": {
|
|
76
|
-
"fields": {
|
|
77
|
-
"name": {
|
|
78
|
-
"type": "string",
|
|
79
|
-
"id": 1
|
|
80
|
-
},
|
|
81
|
-
"root": {
|
|
82
|
-
"type": "string",
|
|
83
|
-
"id": 2
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
},
|
|
87
|
-
"SourceContext": {
|
|
88
|
-
"fields": {
|
|
89
|
-
"fileName": {
|
|
90
|
-
"type": "string",
|
|
91
|
-
"id": 1
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
},
|
|
95
|
-
"Option": {
|
|
96
|
-
"fields": {
|
|
97
|
-
"name": {
|
|
98
|
-
"type": "string",
|
|
99
|
-
"id": 1
|
|
100
|
-
},
|
|
101
|
-
"value": {
|
|
102
|
-
"type": "Any",
|
|
103
|
-
"id": 2
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
},
|
|
107
|
-
"Syntax": {
|
|
108
|
-
"values": {
|
|
109
|
-
"SYNTAX_PROTO2": 0,
|
|
110
|
-
"SYNTAX_PROTO3": 1
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"nested": {
|
|
3
|
+
"google": {
|
|
4
|
+
"nested": {
|
|
5
|
+
"protobuf": {
|
|
6
|
+
"nested": {
|
|
7
|
+
"Api": {
|
|
8
|
+
"fields": {
|
|
9
|
+
"name": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"id": 1
|
|
12
|
+
},
|
|
13
|
+
"methods": {
|
|
14
|
+
"rule": "repeated",
|
|
15
|
+
"type": "Method",
|
|
16
|
+
"id": 2
|
|
17
|
+
},
|
|
18
|
+
"options": {
|
|
19
|
+
"rule": "repeated",
|
|
20
|
+
"type": "Option",
|
|
21
|
+
"id": 3
|
|
22
|
+
},
|
|
23
|
+
"version": {
|
|
24
|
+
"type": "string",
|
|
25
|
+
"id": 4
|
|
26
|
+
},
|
|
27
|
+
"sourceContext": {
|
|
28
|
+
"type": "SourceContext",
|
|
29
|
+
"id": 5
|
|
30
|
+
},
|
|
31
|
+
"mixins": {
|
|
32
|
+
"rule": "repeated",
|
|
33
|
+
"type": "Mixin",
|
|
34
|
+
"id": 6
|
|
35
|
+
},
|
|
36
|
+
"syntax": {
|
|
37
|
+
"type": "Syntax",
|
|
38
|
+
"id": 7
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"Method": {
|
|
43
|
+
"fields": {
|
|
44
|
+
"name": {
|
|
45
|
+
"type": "string",
|
|
46
|
+
"id": 1
|
|
47
|
+
},
|
|
48
|
+
"requestTypeUrl": {
|
|
49
|
+
"type": "string",
|
|
50
|
+
"id": 2
|
|
51
|
+
},
|
|
52
|
+
"requestStreaming": {
|
|
53
|
+
"type": "bool",
|
|
54
|
+
"id": 3
|
|
55
|
+
},
|
|
56
|
+
"responseTypeUrl": {
|
|
57
|
+
"type": "string",
|
|
58
|
+
"id": 4
|
|
59
|
+
},
|
|
60
|
+
"responseStreaming": {
|
|
61
|
+
"type": "bool",
|
|
62
|
+
"id": 5
|
|
63
|
+
},
|
|
64
|
+
"options": {
|
|
65
|
+
"rule": "repeated",
|
|
66
|
+
"type": "Option",
|
|
67
|
+
"id": 6
|
|
68
|
+
},
|
|
69
|
+
"syntax": {
|
|
70
|
+
"type": "Syntax",
|
|
71
|
+
"id": 7
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"Mixin": {
|
|
76
|
+
"fields": {
|
|
77
|
+
"name": {
|
|
78
|
+
"type": "string",
|
|
79
|
+
"id": 1
|
|
80
|
+
},
|
|
81
|
+
"root": {
|
|
82
|
+
"type": "string",
|
|
83
|
+
"id": 2
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"SourceContext": {
|
|
88
|
+
"fields": {
|
|
89
|
+
"fileName": {
|
|
90
|
+
"type": "string",
|
|
91
|
+
"id": 1
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"Option": {
|
|
96
|
+
"fields": {
|
|
97
|
+
"name": {
|
|
98
|
+
"type": "string",
|
|
99
|
+
"id": 1
|
|
100
|
+
},
|
|
101
|
+
"value": {
|
|
102
|
+
"type": "Any",
|
|
103
|
+
"id": 2
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"Syntax": {
|
|
108
|
+
"values": {
|
|
109
|
+
"SYNTAX_PROTO2": 0,
|
|
110
|
+
"SYNTAX_PROTO3": 1
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
118
|
}
|
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
syntax = "proto3";
|
|
2
|
-
|
|
3
|
-
package google.protobuf;
|
|
4
|
-
|
|
5
|
-
import "google/protobuf/source_context.proto";
|
|
6
|
-
import "google/protobuf/type.proto";
|
|
7
|
-
|
|
8
|
-
message Api {
|
|
9
|
-
|
|
10
|
-
string name = 1;
|
|
11
|
-
repeated Method methods = 2;
|
|
12
|
-
repeated Option options = 3;
|
|
13
|
-
string version = 4;
|
|
14
|
-
SourceContext source_context = 5;
|
|
15
|
-
repeated Mixin mixins = 6;
|
|
16
|
-
Syntax syntax = 7;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
message Method {
|
|
20
|
-
|
|
21
|
-
string name = 1;
|
|
22
|
-
string request_type_url = 2;
|
|
23
|
-
bool request_streaming = 3;
|
|
24
|
-
string response_type_url = 4;
|
|
25
|
-
bool response_streaming = 5;
|
|
26
|
-
repeated Option options = 6;
|
|
27
|
-
Syntax syntax = 7;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
message Mixin {
|
|
31
|
-
|
|
32
|
-
string name = 1;
|
|
33
|
-
string root = 2;
|
|
1
|
+
syntax = "proto3";
|
|
2
|
+
|
|
3
|
+
package google.protobuf;
|
|
4
|
+
|
|
5
|
+
import "google/protobuf/source_context.proto";
|
|
6
|
+
import "google/protobuf/type.proto";
|
|
7
|
+
|
|
8
|
+
message Api {
|
|
9
|
+
|
|
10
|
+
string name = 1;
|
|
11
|
+
repeated Method methods = 2;
|
|
12
|
+
repeated Option options = 3;
|
|
13
|
+
string version = 4;
|
|
14
|
+
SourceContext source_context = 5;
|
|
15
|
+
repeated Mixin mixins = 6;
|
|
16
|
+
Syntax syntax = 7;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
message Method {
|
|
20
|
+
|
|
21
|
+
string name = 1;
|
|
22
|
+
string request_type_url = 2;
|
|
23
|
+
bool request_streaming = 3;
|
|
24
|
+
string response_type_url = 4;
|
|
25
|
+
bool response_streaming = 5;
|
|
26
|
+
repeated Option options = 6;
|
|
27
|
+
Syntax syntax = 7;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
message Mixin {
|
|
31
|
+
|
|
32
|
+
string name = 1;
|
|
33
|
+
string root = 2;
|
|
34
34
|
}
|
|
@@ -1,126 +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
|
-
}
|
|
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
|
+
}
|
|
@@ -1,47 +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
|
-
}
|
|
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
|
+
}
|