protobufjs 6.8.8 → 6.9.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/CHANGELOG.md +941 -921
- package/LICENSE +39 -39
- package/README.md +901 -879
- package/cli/LICENSE +33 -33
- package/cli/README.md +11 -11
- package/cli/index.d.ts +3 -3
- package/cli/index.js +3 -3
- package/cli/lib/tsd-jsdoc/LICENSE +20 -20
- package/cli/lib/tsd-jsdoc/README.md +23 -23
- package/cli/lib/tsd-jsdoc/plugin.js +21 -21
- package/cli/lib/tsd-jsdoc/publish.js +705 -693
- package/cli/lib/tsd-jsdoc.json +18 -18
- package/cli/package.json +1 -1
- package/cli/package.standalone.json +32 -32
- package/cli/pbjs.d.ts +9 -9
- package/cli/pbjs.js +329 -329
- package/cli/pbts.d.ts +9 -9
- package/cli/pbts.js +197 -197
- package/cli/targets/json-module.js +38 -38
- package/cli/targets/json.js +8 -8
- package/cli/targets/proto.js +326 -326
- package/cli/targets/proto2.js +10 -10
- package/cli/targets/proto3.js +10 -10
- package/cli/targets/static-module.js +29 -29
- package/cli/targets/static.js +702 -702
- package/cli/util.js +183 -183
- package/cli/wrappers/amd.js +7 -7
- package/cli/wrappers/closure.js +7 -7
- package/cli/wrappers/commonjs.js +7 -7
- package/cli/wrappers/default.js +15 -15
- package/cli/wrappers/es6.js +5 -5
- package/dist/README.md +31 -31
- package/dist/light/README.md +31 -31
- package/dist/light/protobuf.js +6058 -6032
- 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/README.md +31 -31
- package/dist/minimal/protobuf.js +1900 -1877
- 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 +7625 -7596
- package/dist/protobuf.js.map +1 -1
- package/dist/protobuf.min.js +3 -3
- package/dist/protobuf.min.js.map +1 -1
- package/ext/debug/README.md +4 -4
- package/ext/debug/index.js +71 -71
- package/ext/descriptor/README.md +72 -72
- package/ext/descriptor/index.js +1052 -1052
- package/ext/descriptor/test.js +54 -54
- package/google/LICENSE +27 -27
- package/google/README.md +1 -1
- package/google/api/annotations.proto +10 -10
- package/google/protobuf/descriptor.proto +286 -286
- package/google/protobuf/source_context.proto +7 -7
- package/index.d.ts +6 -6
- 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-lock.json +4223 -3171
- package/package.json +122 -122
- package/scripts/changelog.js +150 -150
- package/scripts/postinstall.js +35 -35
- package/src/common.js +399 -399
- package/src/converter.js +293 -293
- package/src/decoder.js +106 -106
- package/src/encoder.js +100 -100
- package/src/enum.js +181 -181
- package/src/field.js +371 -371
- package/src/index-light.js +104 -104
- package/src/index-minimal.js +36 -36
- package/src/index.js +12 -12
- package/src/mapfield.js +126 -126
- package/src/message.js +138 -138
- package/src/method.js +151 -151
- package/src/namespace.js +433 -433
- package/src/object.js +200 -200
- package/src/oneof.js +203 -203
- package/src/parse.js +761 -758
- package/src/reader.js +411 -405
- package/src/reader_buffer.js +51 -44
- package/src/root.js +353 -351
- package/src/roots.js +18 -18
- package/src/rpc/service.js +142 -142
- package/src/rpc.js +36 -36
- package/src/service.js +167 -167
- package/src/tokenize.js +397 -397
- package/src/type.js +589 -589
- package/src/types.js +196 -196
- package/src/typescript.jsdoc +15 -15
- package/src/util/longbits.js +200 -200
- package/src/util/minimal.js +414 -414
- package/src/util.js +178 -178
- package/src/verifier.js +176 -176
- package/src/wrappers.js +83 -83
- package/src/writer.js +465 -459
- package/src/writer_buffer.js +85 -81
- package/tsconfig.json +6 -6
- package/cli/node_modules/os-tmpdir/index.js +0 -25
- package/cli/node_modules/os-tmpdir/license +0 -21
- package/cli/node_modules/os-tmpdir/readme.md +0 -32
- package/cli/node_modules/tmp/LICENSE +0 -21
- package/cli/node_modules/tmp/README.md +0 -314
- package/cli/node_modules/tmp/lib/tmp.js +0 -611
- package/cli/package-lock.json +0 -20
package/cli/lib/tsd-jsdoc.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
{
|
|
2
|
-
"tags": {
|
|
3
|
-
"allowUnknownTags": false
|
|
4
|
-
},
|
|
5
|
-
"plugins": [
|
|
6
|
-
"./tsd-jsdoc/plugin"
|
|
7
|
-
],
|
|
8
|
-
"opts": {
|
|
9
|
-
"encoding" : "utf8",
|
|
10
|
-
"recurse" : true,
|
|
11
|
-
"lenient" : true,
|
|
12
|
-
"template" : "./tsd-jsdoc",
|
|
13
|
-
|
|
14
|
-
"private" : false,
|
|
15
|
-
"comments" : true,
|
|
16
|
-
"destination" : false
|
|
17
|
-
}
|
|
18
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"tags": {
|
|
3
|
+
"allowUnknownTags": false
|
|
4
|
+
},
|
|
5
|
+
"plugins": [
|
|
6
|
+
"./tsd-jsdoc/plugin"
|
|
7
|
+
],
|
|
8
|
+
"opts": {
|
|
9
|
+
"encoding" : "utf8",
|
|
10
|
+
"recurse" : true,
|
|
11
|
+
"lenient" : true,
|
|
12
|
+
"template" : "./tsd-jsdoc",
|
|
13
|
+
|
|
14
|
+
"private" : false,
|
|
15
|
+
"comments" : true,
|
|
16
|
+
"destination" : false
|
|
17
|
+
}
|
|
18
|
+
}
|
package/cli/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version": "6.
|
|
1
|
+
{"version": "6.9.0"}
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "protobufjs-cli",
|
|
3
|
-
"description": "Translates between file formats and generates static code as well as TypeScript definitions.",
|
|
4
|
-
"version": "6.
|
|
5
|
-
"author": "Daniel Wirtz <dcode+protobufjs@dcode.io>",
|
|
6
|
-
"repository": {
|
|
7
|
-
"type": "git",
|
|
8
|
-
"url": "https://github.com/dcodeIO/protobuf.js.git"
|
|
9
|
-
},
|
|
10
|
-
"license": "BSD-3-Clause",
|
|
11
|
-
"main": "index.js",
|
|
12
|
-
"types": "index.d.ts",
|
|
13
|
-
"bin": {
|
|
14
|
-
"pbjs": "bin/pbjs",
|
|
15
|
-
"pbts": "bin/pbts"
|
|
16
|
-
},
|
|
17
|
-
"peerDependencies": {
|
|
18
|
-
"protobufjs": "~6.
|
|
19
|
-
},
|
|
20
|
-
"dependencies": {
|
|
21
|
-
"chalk": "^
|
|
22
|
-
"escodegen": "^1.
|
|
23
|
-
"espree": "^
|
|
24
|
-
"estraverse": "^4.
|
|
25
|
-
"glob": "^7.1.
|
|
26
|
-
"jsdoc": "^3.
|
|
27
|
-
"minimist": "^1.2.0",
|
|
28
|
-
"semver": "^
|
|
29
|
-
"tmp": "0.0
|
|
30
|
-
"uglify-js": "^
|
|
31
|
-
}
|
|
32
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "protobufjs-cli",
|
|
3
|
+
"description": "Translates between file formats and generates static code as well as TypeScript definitions.",
|
|
4
|
+
"version": "6.9.0",
|
|
5
|
+
"author": "Daniel Wirtz <dcode+protobufjs@dcode.io>",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/dcodeIO/protobuf.js.git"
|
|
9
|
+
},
|
|
10
|
+
"license": "BSD-3-Clause",
|
|
11
|
+
"main": "index.js",
|
|
12
|
+
"types": "index.d.ts",
|
|
13
|
+
"bin": {
|
|
14
|
+
"pbjs": "bin/pbjs",
|
|
15
|
+
"pbts": "bin/pbts"
|
|
16
|
+
},
|
|
17
|
+
"peerDependencies": {
|
|
18
|
+
"protobufjs": "~6.9.0"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"chalk": "^3.0.0",
|
|
22
|
+
"escodegen": "^1.13.0",
|
|
23
|
+
"espree": "^6.1.2",
|
|
24
|
+
"estraverse": "^4.3.0",
|
|
25
|
+
"glob": "^7.1.6",
|
|
26
|
+
"jsdoc": "^3.6.3",
|
|
27
|
+
"minimist": "^1.2.0",
|
|
28
|
+
"semver": "^7.1.2",
|
|
29
|
+
"tmp": "^0.1.0",
|
|
30
|
+
"uglify-js": "^3.7.7"
|
|
31
|
+
}
|
|
32
|
+
}
|
package/cli/pbjs.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
type pbjsCallback = (err: Error|null, output?: string) => void;
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Runs pbjs programmatically.
|
|
5
|
-
* @param {string[]} args Command line arguments
|
|
6
|
-
* @param {function(?Error, string=)} [callback] Optional completion callback
|
|
7
|
-
* @returns {number|undefined} Exit code, if known
|
|
8
|
-
*/
|
|
9
|
-
export function main(args: string[], callback?: pbjsCallback): number|undefined;
|
|
1
|
+
type pbjsCallback = (err: Error|null, output?: string) => void;
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Runs pbjs programmatically.
|
|
5
|
+
* @param {string[]} args Command line arguments
|
|
6
|
+
* @param {function(?Error, string=)} [callback] Optional completion callback
|
|
7
|
+
* @returns {number|undefined} Exit code, if known
|
|
8
|
+
*/
|
|
9
|
+
export function main(args: string[], callback?: pbjsCallback): number|undefined;
|