protobufjs 7.3.2 → 7.3.3

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 (77) hide show
  1. package/LICENSE +39 -39
  2. package/README.md +727 -727
  3. package/ext/debug/README.md +4 -4
  4. package/ext/debug/index.js +71 -71
  5. package/ext/descriptor/README.md +72 -72
  6. package/ext/descriptor/index.d.ts +191 -191
  7. package/ext/descriptor/index.js +1052 -1052
  8. package/ext/descriptor/test.js +54 -54
  9. package/google/LICENSE +27 -27
  10. package/google/README.md +1 -1
  11. package/google/api/annotations.json +82 -82
  12. package/google/api/annotations.proto +10 -10
  13. package/google/api/http.json +85 -85
  14. package/google/api/http.proto +30 -30
  15. package/google/protobuf/api.json +117 -117
  16. package/google/protobuf/api.proto +33 -33
  17. package/google/protobuf/descriptor.json +738 -738
  18. package/google/protobuf/descriptor.proto +286 -286
  19. package/google/protobuf/source_context.json +19 -19
  20. package/google/protobuf/source_context.proto +7 -7
  21. package/google/protobuf/type.json +201 -201
  22. package/google/protobuf/type.proto +89 -89
  23. package/index.d.ts +2741 -2741
  24. package/index.js +4 -4
  25. package/light.d.ts +2 -2
  26. package/light.js +3 -3
  27. package/minimal.d.ts +2 -2
  28. package/minimal.js +4 -4
  29. package/package.json +111 -111
  30. package/scripts/postinstall.js +32 -32
  31. package/src/common.js +399 -399
  32. package/src/converter.js +301 -301
  33. package/src/decoder.js +129 -129
  34. package/src/encoder.js +100 -100
  35. package/src/enum.js +198 -198
  36. package/src/field.js +377 -377
  37. package/src/index-light.js +104 -104
  38. package/src/index-minimal.js +36 -36
  39. package/src/index.js +12 -12
  40. package/src/mapfield.js +126 -126
  41. package/src/message.js +138 -138
  42. package/src/method.js +160 -160
  43. package/src/namespace.js +433 -433
  44. package/src/object.js +243 -243
  45. package/src/oneof.js +203 -203
  46. package/src/parse.js +893 -889
  47. package/src/reader.js +416 -416
  48. package/src/reader_buffer.js +51 -51
  49. package/src/root.js +368 -368
  50. package/src/roots.js +18 -18
  51. package/src/rpc/service.js +142 -142
  52. package/src/rpc.js +36 -36
  53. package/src/service.js +167 -167
  54. package/src/tokenize.js +416 -416
  55. package/src/type.js +589 -589
  56. package/src/types.js +196 -196
  57. package/src/typescript.jsdoc +15 -15
  58. package/src/util/longbits.js +200 -200
  59. package/src/util/minimal.js +438 -438
  60. package/src/util.js +212 -212
  61. package/src/verifier.js +176 -176
  62. package/src/wrappers.js +102 -102
  63. package/src/writer.js +465 -465
  64. package/src/writer_buffer.js +85 -85
  65. package/tsconfig.json +7 -7
  66. package/dist/light/protobuf.js +0 -7381
  67. package/dist/light/protobuf.js.map +0 -1
  68. package/dist/light/protobuf.min.js +0 -8
  69. package/dist/light/protobuf.min.js.map +0 -1
  70. package/dist/minimal/protobuf.js +0 -2736
  71. package/dist/minimal/protobuf.js.map +0 -1
  72. package/dist/minimal/protobuf.min.js +0 -8
  73. package/dist/minimal/protobuf.min.js.map +0 -1
  74. package/dist/protobuf.js +0 -9105
  75. package/dist/protobuf.js.map +0 -1
  76. package/dist/protobuf.min.js +0 -8
  77. package/dist/protobuf.min.js.map +0 -1
@@ -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
  }