protobufjs 8.0.1-experimental → 8.0.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.
Files changed (98) hide show
  1. package/LICENSE +39 -39
  2. package/README.md +727 -727
  3. package/dist/light/protobuf.js +7724 -7352
  4. package/dist/light/protobuf.js.map +1 -1
  5. package/dist/light/protobuf.min.js +3 -3
  6. package/dist/light/protobuf.min.js.map +1 -1
  7. package/dist/minimal/protobuf.js +2606 -2546
  8. package/dist/minimal/protobuf.js.map +1 -1
  9. package/dist/minimal/protobuf.min.js +3 -3
  10. package/dist/minimal/protobuf.min.js.map +1 -1
  11. package/dist/protobuf.js +9593 -9132
  12. package/dist/protobuf.js.map +1 -1
  13. package/dist/protobuf.min.js +3 -3
  14. package/dist/protobuf.min.js.map +1 -1
  15. package/ext/debug/README.md +4 -4
  16. package/ext/debug/index.js +71 -71
  17. package/ext/descriptor/README.md +72 -72
  18. package/ext/descriptor/index.d.ts +195 -191
  19. package/ext/descriptor/index.js +1181 -1052
  20. package/ext/descriptor/test.js +54 -54
  21. package/google/LICENSE +27 -27
  22. package/google/README.md +1 -1
  23. package/google/api/annotations.json +82 -82
  24. package/google/api/annotations.proto +10 -10
  25. package/google/api/http.json +85 -85
  26. package/google/api/http.proto +30 -30
  27. package/google/protobuf/api.json +117 -117
  28. package/google/protobuf/api.proto +33 -33
  29. package/google/protobuf/descriptor.json +1381 -738
  30. package/google/protobuf/descriptor.proto +535 -286
  31. package/google/protobuf/source_context.json +19 -19
  32. package/google/protobuf/source_context.proto +7 -7
  33. package/google/protobuf/type.json +201 -201
  34. package/google/protobuf/type.proto +89 -89
  35. package/index.d.ts +2817 -2792
  36. package/index.js +4 -4
  37. package/light.d.ts +2 -2
  38. package/light.js +3 -3
  39. package/minimal.d.ts +2 -2
  40. package/minimal.js +4 -4
  41. package/package.json +96 -112
  42. package/scripts/postinstall.js +32 -32
  43. package/src/common.js +399 -399
  44. package/src/converter.js +310 -301
  45. package/src/decoder.js +135 -127
  46. package/src/encoder.js +100 -100
  47. package/src/enum.js +226 -241
  48. package/src/field.js +453 -432
  49. package/src/index-light.js +104 -104
  50. package/src/index-minimal.js +36 -36
  51. package/src/index.js +12 -12
  52. package/src/mapfield.js +126 -126
  53. package/src/message.js +139 -139
  54. package/src/method.js +160 -160
  55. package/src/namespace.js +550 -434
  56. package/src/object.js +385 -330
  57. package/src/oneof.js +222 -222
  58. package/src/parse.js +1032 -948
  59. package/src/reader.js +426 -416
  60. package/src/reader_buffer.js +51 -51
  61. package/src/root.js +404 -384
  62. package/src/roots.js +17 -17
  63. package/src/rpc/service.js +142 -142
  64. package/src/rpc.js +36 -36
  65. package/src/service.js +193 -168
  66. package/src/tokenize.js +421 -416
  67. package/src/type.js +625 -590
  68. package/src/types.js +196 -196
  69. package/src/typescript.jsdoc +15 -15
  70. package/src/util/aspromise.d.ts +13 -0
  71. package/src/util/aspromise.js +52 -0
  72. package/src/util/base64.d.ts +32 -0
  73. package/src/util/base64.js +139 -0
  74. package/src/util/codegen.d.ts +31 -0
  75. package/src/util/codegen.js +113 -0
  76. package/src/util/eventemitter.d.ts +45 -0
  77. package/src/util/eventemitter.js +84 -0
  78. package/src/util/fetch.d.ts +56 -0
  79. package/src/util/fetch.js +114 -0
  80. package/src/util/float.d.ts +83 -0
  81. package/src/util/float.js +335 -0
  82. package/src/util/inquire.d.ts +9 -0
  83. package/src/util/inquire.js +37 -0
  84. package/src/util/longbits.js +200 -200
  85. package/src/util/minimal.js +461 -438
  86. package/src/util/path.d.ts +22 -0
  87. package/src/util/path.js +72 -0
  88. package/src/util/patterns.js +8 -0
  89. package/src/util/pool.d.ts +32 -0
  90. package/src/util/pool.js +48 -0
  91. package/src/util/utf8.d.ts +24 -0
  92. package/src/util/utf8.js +104 -0
  93. package/src/util.js +215 -213
  94. package/src/verifier.js +180 -177
  95. package/src/wrappers.js +103 -102
  96. package/src/writer.js +465 -465
  97. package/src/writer_buffer.js +85 -85
  98. package/tsconfig.json +8 -8
@@ -1,20 +1,20 @@
1
- {
2
- "nested": {
3
- "google": {
4
- "nested": {
5
- "protobuf": {
6
- "nested": {
7
- "SourceContext": {
8
- "fields": {
9
- "fileName": {
10
- "type": "string",
11
- "id": 1
12
- }
13
- }
14
- }
15
- }
16
- }
17
- }
18
- }
19
- }
1
+ {
2
+ "nested": {
3
+ "google": {
4
+ "nested": {
5
+ "protobuf": {
6
+ "nested": {
7
+ "SourceContext": {
8
+ "fields": {
9
+ "fileName": {
10
+ "type": "string",
11
+ "id": 1
12
+ }
13
+ }
14
+ }
15
+ }
16
+ }
17
+ }
18
+ }
19
+ }
20
20
  }
@@ -1,7 +1,7 @@
1
- syntax = "proto3";
2
-
3
- package google.protobuf;
4
-
5
- message SourceContext {
6
- string file_name = 1;
7
- }
1
+ syntax = "proto3";
2
+
3
+ package google.protobuf;
4
+
5
+ message SourceContext {
6
+ string file_name = 1;
7
+ }
@@ -1,202 +1,202 @@
1
- {
2
- "nested": {
3
- "google": {
4
- "nested": {
5
- "protobuf": {
6
- "nested": {
7
- "Type": {
8
- "fields": {
9
- "name": {
10
- "type": "string",
11
- "id": 1
12
- },
13
- "fields": {
14
- "rule": "repeated",
15
- "type": "Field",
16
- "id": 2
17
- },
18
- "oneofs": {
19
- "rule": "repeated",
20
- "type": "string",
21
- "id": 3
22
- },
23
- "options": {
24
- "rule": "repeated",
25
- "type": "Option",
26
- "id": 4
27
- },
28
- "sourceContext": {
29
- "type": "SourceContext",
30
- "id": 5
31
- },
32
- "syntax": {
33
- "type": "Syntax",
34
- "id": 6
35
- }
36
- }
37
- },
38
- "Field": {
39
- "fields": {
40
- "kind": {
41
- "type": "Kind",
42
- "id": 1
43
- },
44
- "cardinality": {
45
- "type": "Cardinality",
46
- "id": 2
47
- },
48
- "number": {
49
- "type": "int32",
50
- "id": 3
51
- },
52
- "name": {
53
- "type": "string",
54
- "id": 4
55
- },
56
- "typeUrl": {
57
- "type": "string",
58
- "id": 6
59
- },
60
- "oneofIndex": {
61
- "type": "int32",
62
- "id": 7
63
- },
64
- "packed": {
65
- "type": "bool",
66
- "id": 8
67
- },
68
- "options": {
69
- "rule": "repeated",
70
- "type": "Option",
71
- "id": 9
72
- },
73
- "jsonName": {
74
- "type": "string",
75
- "id": 10
76
- },
77
- "defaultValue": {
78
- "type": "string",
79
- "id": 11
80
- }
81
- },
82
- "nested": {
83
- "Kind": {
84
- "values": {
85
- "TYPE_UNKNOWN": 0,
86
- "TYPE_DOUBLE": 1,
87
- "TYPE_FLOAT": 2,
88
- "TYPE_INT64": 3,
89
- "TYPE_UINT64": 4,
90
- "TYPE_INT32": 5,
91
- "TYPE_FIXED64": 6,
92
- "TYPE_FIXED32": 7,
93
- "TYPE_BOOL": 8,
94
- "TYPE_STRING": 9,
95
- "TYPE_GROUP": 10,
96
- "TYPE_MESSAGE": 11,
97
- "TYPE_BYTES": 12,
98
- "TYPE_UINT32": 13,
99
- "TYPE_ENUM": 14,
100
- "TYPE_SFIXED32": 15,
101
- "TYPE_SFIXED64": 16,
102
- "TYPE_SINT32": 17,
103
- "TYPE_SINT64": 18
104
- }
105
- },
106
- "Cardinality": {
107
- "values": {
108
- "CARDINALITY_UNKNOWN": 0,
109
- "CARDINALITY_OPTIONAL": 1,
110
- "CARDINALITY_REQUIRED": 2,
111
- "CARDINALITY_REPEATED": 3
112
- }
113
- }
114
- }
115
- },
116
- "Enum": {
117
- "fields": {
118
- "name": {
119
- "type": "string",
120
- "id": 1
121
- },
122
- "enumvalue": {
123
- "rule": "repeated",
124
- "type": "EnumValue",
125
- "id": 2
126
- },
127
- "options": {
128
- "rule": "repeated",
129
- "type": "Option",
130
- "id": 3
131
- },
132
- "sourceContext": {
133
- "type": "SourceContext",
134
- "id": 4
135
- },
136
- "syntax": {
137
- "type": "Syntax",
138
- "id": 5
139
- }
140
- }
141
- },
142
- "EnumValue": {
143
- "fields": {
144
- "name": {
145
- "type": "string",
146
- "id": 1
147
- },
148
- "number": {
149
- "type": "int32",
150
- "id": 2
151
- },
152
- "options": {
153
- "rule": "repeated",
154
- "type": "Option",
155
- "id": 3
156
- }
157
- }
158
- },
159
- "Option": {
160
- "fields": {
161
- "name": {
162
- "type": "string",
163
- "id": 1
164
- },
165
- "value": {
166
- "type": "Any",
167
- "id": 2
168
- }
169
- }
170
- },
171
- "Syntax": {
172
- "values": {
173
- "SYNTAX_PROTO2": 0,
174
- "SYNTAX_PROTO3": 1
175
- }
176
- },
177
- "Any": {
178
- "fields": {
179
- "type_url": {
180
- "type": "string",
181
- "id": 1
182
- },
183
- "value": {
184
- "type": "bytes",
185
- "id": 2
186
- }
187
- }
188
- },
189
- "SourceContext": {
190
- "fields": {
191
- "fileName": {
192
- "type": "string",
193
- "id": 1
194
- }
195
- }
196
- }
197
- }
198
- }
199
- }
200
- }
201
- }
1
+ {
2
+ "nested": {
3
+ "google": {
4
+ "nested": {
5
+ "protobuf": {
6
+ "nested": {
7
+ "Type": {
8
+ "fields": {
9
+ "name": {
10
+ "type": "string",
11
+ "id": 1
12
+ },
13
+ "fields": {
14
+ "rule": "repeated",
15
+ "type": "Field",
16
+ "id": 2
17
+ },
18
+ "oneofs": {
19
+ "rule": "repeated",
20
+ "type": "string",
21
+ "id": 3
22
+ },
23
+ "options": {
24
+ "rule": "repeated",
25
+ "type": "Option",
26
+ "id": 4
27
+ },
28
+ "sourceContext": {
29
+ "type": "SourceContext",
30
+ "id": 5
31
+ },
32
+ "syntax": {
33
+ "type": "Syntax",
34
+ "id": 6
35
+ }
36
+ }
37
+ },
38
+ "Field": {
39
+ "fields": {
40
+ "kind": {
41
+ "type": "Kind",
42
+ "id": 1
43
+ },
44
+ "cardinality": {
45
+ "type": "Cardinality",
46
+ "id": 2
47
+ },
48
+ "number": {
49
+ "type": "int32",
50
+ "id": 3
51
+ },
52
+ "name": {
53
+ "type": "string",
54
+ "id": 4
55
+ },
56
+ "typeUrl": {
57
+ "type": "string",
58
+ "id": 6
59
+ },
60
+ "oneofIndex": {
61
+ "type": "int32",
62
+ "id": 7
63
+ },
64
+ "packed": {
65
+ "type": "bool",
66
+ "id": 8
67
+ },
68
+ "options": {
69
+ "rule": "repeated",
70
+ "type": "Option",
71
+ "id": 9
72
+ },
73
+ "jsonName": {
74
+ "type": "string",
75
+ "id": 10
76
+ },
77
+ "defaultValue": {
78
+ "type": "string",
79
+ "id": 11
80
+ }
81
+ },
82
+ "nested": {
83
+ "Kind": {
84
+ "values": {
85
+ "TYPE_UNKNOWN": 0,
86
+ "TYPE_DOUBLE": 1,
87
+ "TYPE_FLOAT": 2,
88
+ "TYPE_INT64": 3,
89
+ "TYPE_UINT64": 4,
90
+ "TYPE_INT32": 5,
91
+ "TYPE_FIXED64": 6,
92
+ "TYPE_FIXED32": 7,
93
+ "TYPE_BOOL": 8,
94
+ "TYPE_STRING": 9,
95
+ "TYPE_GROUP": 10,
96
+ "TYPE_MESSAGE": 11,
97
+ "TYPE_BYTES": 12,
98
+ "TYPE_UINT32": 13,
99
+ "TYPE_ENUM": 14,
100
+ "TYPE_SFIXED32": 15,
101
+ "TYPE_SFIXED64": 16,
102
+ "TYPE_SINT32": 17,
103
+ "TYPE_SINT64": 18
104
+ }
105
+ },
106
+ "Cardinality": {
107
+ "values": {
108
+ "CARDINALITY_UNKNOWN": 0,
109
+ "CARDINALITY_OPTIONAL": 1,
110
+ "CARDINALITY_REQUIRED": 2,
111
+ "CARDINALITY_REPEATED": 3
112
+ }
113
+ }
114
+ }
115
+ },
116
+ "Enum": {
117
+ "fields": {
118
+ "name": {
119
+ "type": "string",
120
+ "id": 1
121
+ },
122
+ "enumvalue": {
123
+ "rule": "repeated",
124
+ "type": "EnumValue",
125
+ "id": 2
126
+ },
127
+ "options": {
128
+ "rule": "repeated",
129
+ "type": "Option",
130
+ "id": 3
131
+ },
132
+ "sourceContext": {
133
+ "type": "SourceContext",
134
+ "id": 4
135
+ },
136
+ "syntax": {
137
+ "type": "Syntax",
138
+ "id": 5
139
+ }
140
+ }
141
+ },
142
+ "EnumValue": {
143
+ "fields": {
144
+ "name": {
145
+ "type": "string",
146
+ "id": 1
147
+ },
148
+ "number": {
149
+ "type": "int32",
150
+ "id": 2
151
+ },
152
+ "options": {
153
+ "rule": "repeated",
154
+ "type": "Option",
155
+ "id": 3
156
+ }
157
+ }
158
+ },
159
+ "Option": {
160
+ "fields": {
161
+ "name": {
162
+ "type": "string",
163
+ "id": 1
164
+ },
165
+ "value": {
166
+ "type": "Any",
167
+ "id": 2
168
+ }
169
+ }
170
+ },
171
+ "Syntax": {
172
+ "values": {
173
+ "SYNTAX_PROTO2": 0,
174
+ "SYNTAX_PROTO3": 1
175
+ }
176
+ },
177
+ "Any": {
178
+ "fields": {
179
+ "type_url": {
180
+ "type": "string",
181
+ "id": 1
182
+ },
183
+ "value": {
184
+ "type": "bytes",
185
+ "id": 2
186
+ }
187
+ }
188
+ },
189
+ "SourceContext": {
190
+ "fields": {
191
+ "fileName": {
192
+ "type": "string",
193
+ "id": 1
194
+ }
195
+ }
196
+ }
197
+ }
198
+ }
199
+ }
200
+ }
201
+ }
202
202
  }
@@ -1,89 +1,89 @@
1
- syntax = "proto3";
2
-
3
- package google.protobuf;
4
-
5
- import "google/protobuf/any.proto";
6
- import "google/protobuf/source_context.proto";
7
-
8
- message Type {
9
-
10
- string name = 1;
11
- repeated Field fields = 2;
12
- repeated string oneofs = 3;
13
- repeated Option options = 4;
14
- SourceContext source_context = 5;
15
- Syntax syntax = 6;
16
- }
17
-
18
- message Field {
19
-
20
- Kind kind = 1;
21
- Cardinality cardinality = 2;
22
- int32 number = 3;
23
- string name = 4;
24
- string type_url = 6;
25
- int32 oneof_index = 7;
26
- bool packed = 8;
27
- repeated Option options = 9;
28
- string json_name = 10;
29
- string default_value = 11;
30
-
31
- enum Kind {
32
-
33
- TYPE_UNKNOWN = 0;
34
- TYPE_DOUBLE = 1;
35
- TYPE_FLOAT = 2;
36
- TYPE_INT64 = 3;
37
- TYPE_UINT64 = 4;
38
- TYPE_INT32 = 5;
39
- TYPE_FIXED64 = 6;
40
- TYPE_FIXED32 = 7;
41
- TYPE_BOOL = 8;
42
- TYPE_STRING = 9;
43
- TYPE_GROUP = 10;
44
- TYPE_MESSAGE = 11;
45
- TYPE_BYTES = 12;
46
- TYPE_UINT32 = 13;
47
- TYPE_ENUM = 14;
48
- TYPE_SFIXED32 = 15;
49
- TYPE_SFIXED64 = 16;
50
- TYPE_SINT32 = 17;
51
- TYPE_SINT64 = 18;
52
- }
53
-
54
- enum Cardinality {
55
-
56
- CARDINALITY_UNKNOWN = 0;
57
- CARDINALITY_OPTIONAL = 1;
58
- CARDINALITY_REQUIRED = 2;
59
- CARDINALITY_REPEATED = 3;
60
- }
61
- }
62
-
63
- message Enum {
64
-
65
- string name = 1;
66
- repeated EnumValue enumvalue = 2;
67
- repeated Option options = 3;
68
- SourceContext source_context = 4;
69
- Syntax syntax = 5;
70
- }
71
-
72
- message EnumValue {
73
-
74
- string name = 1;
75
- int32 number = 2;
76
- repeated Option options = 3;
77
- }
78
-
79
- message Option {
80
-
81
- string name = 1;
82
- Any value = 2;
83
- }
84
-
85
- enum Syntax {
86
-
87
- SYNTAX_PROTO2 = 0;
88
- SYNTAX_PROTO3 = 1;
89
- }
1
+ syntax = "proto3";
2
+
3
+ package google.protobuf;
4
+
5
+ import "google/protobuf/any.proto";
6
+ import "google/protobuf/source_context.proto";
7
+
8
+ message Type {
9
+
10
+ string name = 1;
11
+ repeated Field fields = 2;
12
+ repeated string oneofs = 3;
13
+ repeated Option options = 4;
14
+ SourceContext source_context = 5;
15
+ Syntax syntax = 6;
16
+ }
17
+
18
+ message Field {
19
+
20
+ Kind kind = 1;
21
+ Cardinality cardinality = 2;
22
+ int32 number = 3;
23
+ string name = 4;
24
+ string type_url = 6;
25
+ int32 oneof_index = 7;
26
+ bool packed = 8;
27
+ repeated Option options = 9;
28
+ string json_name = 10;
29
+ string default_value = 11;
30
+
31
+ enum Kind {
32
+
33
+ TYPE_UNKNOWN = 0;
34
+ TYPE_DOUBLE = 1;
35
+ TYPE_FLOAT = 2;
36
+ TYPE_INT64 = 3;
37
+ TYPE_UINT64 = 4;
38
+ TYPE_INT32 = 5;
39
+ TYPE_FIXED64 = 6;
40
+ TYPE_FIXED32 = 7;
41
+ TYPE_BOOL = 8;
42
+ TYPE_STRING = 9;
43
+ TYPE_GROUP = 10;
44
+ TYPE_MESSAGE = 11;
45
+ TYPE_BYTES = 12;
46
+ TYPE_UINT32 = 13;
47
+ TYPE_ENUM = 14;
48
+ TYPE_SFIXED32 = 15;
49
+ TYPE_SFIXED64 = 16;
50
+ TYPE_SINT32 = 17;
51
+ TYPE_SINT64 = 18;
52
+ }
53
+
54
+ enum Cardinality {
55
+
56
+ CARDINALITY_UNKNOWN = 0;
57
+ CARDINALITY_OPTIONAL = 1;
58
+ CARDINALITY_REQUIRED = 2;
59
+ CARDINALITY_REPEATED = 3;
60
+ }
61
+ }
62
+
63
+ message Enum {
64
+
65
+ string name = 1;
66
+ repeated EnumValue enumvalue = 2;
67
+ repeated Option options = 3;
68
+ SourceContext source_context = 4;
69
+ Syntax syntax = 5;
70
+ }
71
+
72
+ message EnumValue {
73
+
74
+ string name = 1;
75
+ int32 number = 2;
76
+ repeated Option options = 3;
77
+ }
78
+
79
+ message Option {
80
+
81
+ string name = 1;
82
+ Any value = 2;
83
+ }
84
+
85
+ enum Syntax {
86
+
87
+ SYNTAX_PROTO2 = 0;
88
+ SYNTAX_PROTO3 = 1;
89
+ }