protobufjs 8.1.6-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.
Files changed (76) hide show
  1. package/README.md +219 -565
  2. package/dist/light/protobuf.js +1986 -1483
  3. package/dist/light/protobuf.js.map +1 -1
  4. package/dist/light/protobuf.min.js +3 -3
  5. package/dist/light/protobuf.min.js.map +1 -1
  6. package/dist/minimal/protobuf.js +1122 -861
  7. package/dist/minimal/protobuf.js.map +1 -1
  8. package/dist/minimal/protobuf.min.js +3 -3
  9. package/dist/minimal/protobuf.min.js.map +1 -1
  10. package/dist/protobuf.js +2089 -1513
  11. package/dist/protobuf.js.map +1 -1
  12. package/dist/protobuf.min.js +3 -3
  13. package/dist/protobuf.min.js.map +1 -1
  14. package/ext/README.md +81 -0
  15. package/ext/descriptor/README.md +3 -70
  16. package/ext/descriptor/index.d.ts +1 -191
  17. package/ext/descriptor/index.js +1 -1161
  18. package/ext/descriptor.d.ts +309 -0
  19. package/ext/descriptor.js +1236 -0
  20. package/ext/textformat.d.ts +30 -0
  21. package/ext/textformat.js +1249 -0
  22. package/google/protobuf/compiler/plugin.json +126 -0
  23. package/google/protobuf/compiler/plugin.proto +47 -0
  24. package/google/protobuf/descriptor.json +2 -2
  25. package/google/protobuf/descriptor.proto +2 -1
  26. package/index.d.ts +590 -476
  27. package/package.json +23 -38
  28. package/src/converter.js +60 -24
  29. package/src/decoder.js +122 -49
  30. package/src/encoder.js +10 -2
  31. package/src/enum.js +4 -1
  32. package/src/field.js +10 -7
  33. package/src/mapfield.js +1 -0
  34. package/src/message.js +7 -6
  35. package/src/method.js +4 -3
  36. package/src/namespace.js +23 -12
  37. package/src/object.js +24 -19
  38. package/src/oneof.js +2 -0
  39. package/src/parse.js +114 -46
  40. package/src/reader.js +145 -30
  41. package/src/reader_buffer.js +24 -3
  42. package/src/root.js +7 -4
  43. package/src/service.js +12 -6
  44. package/src/tokenize.js +6 -1
  45. package/src/type.js +48 -25
  46. package/src/types.js +1 -1
  47. package/src/util/aspromise.d.ts +13 -0
  48. package/src/util/aspromise.js +52 -0
  49. package/src/util/base64.d.ts +32 -0
  50. package/src/util/base64.js +146 -0
  51. package/src/util/codegen.d.ts +31 -0
  52. package/src/util/codegen.js +113 -0
  53. package/src/util/eventemitter.d.ts +45 -0
  54. package/src/util/eventemitter.js +84 -0
  55. package/src/util/fetch.d.ts +56 -0
  56. package/src/util/fetch.js +112 -0
  57. package/src/util/float.d.ts +83 -0
  58. package/src/util/float.js +335 -0
  59. package/src/util/fs.js +11 -0
  60. package/src/util/inquire.d.ts +10 -0
  61. package/src/util/inquire.js +38 -0
  62. package/src/util/minimal.js +67 -12
  63. package/src/util/path.d.ts +22 -0
  64. package/src/util/path.js +72 -0
  65. package/src/util/patterns.js +8 -0
  66. package/src/util/pool.d.ts +32 -0
  67. package/src/util/pool.js +48 -0
  68. package/src/util/utf8.d.ts +24 -0
  69. package/src/util/utf8.js +104 -0
  70. package/src/util.js +30 -13
  71. package/src/verifier.js +7 -4
  72. package/src/wrappers.js +4 -3
  73. package/src/writer.js +27 -4
  74. package/src/writer_buffer.js +12 -0
  75. package/tsconfig.json +2 -2
  76. 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
+ }
@@ -588,11 +588,11 @@
588
588
  42,
589
589
  42
590
590
  ],
591
- "php_generic_services",
592
591
  [
593
592
  38,
594
593
  38
595
- ]
594
+ ],
595
+ "php_generic_services"
596
596
  ],
597
597
  "nested": {
598
598
  "OptimizeMode": {
@@ -229,7 +229,8 @@ message FileOptions {
229
229
 
230
230
  extensions 1000 to max;
231
231
 
232
- reserved 42, "php_generic_services", 38;
232
+ reserved 42, 38;
233
+ reserved "php_generic_services";
233
234
  }
234
235
 
235
236
  message MessageOptions {