protobufjs 8.1.3-experimental → 8.1.4-experimental
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/dist/light/protobuf.js +3 -3
- 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 +2 -2
- package/dist/minimal/protobuf.min.js +2 -2
- package/dist/protobuf.js +3 -3
- package/dist/protobuf.js.map +1 -1
- package/dist/protobuf.min.js +3 -3
- package/dist/protobuf.min.js.map +1 -1
- package/package.json +1 -1
- package/src/root.js +1 -1
package/dist/light/protobuf.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* protobuf.js v8.1.
|
|
3
|
-
* compiled
|
|
2
|
+
* protobuf.js v8.1.4-experimental (c) 2016, daniel wirtz
|
|
3
|
+
* compiled tue, 13 may 2025 18:22:04 utc
|
|
4
4
|
* licensed under the bsd-3-clause license
|
|
5
5
|
* see: https://github.com/dcodeio/protobuf.js for details
|
|
6
6
|
*/
|
|
@@ -4868,7 +4868,7 @@ Root.prototype._handleAdd = function _handleAdd(object) {
|
|
|
4868
4868
|
object.parent[object.name] = object; // expose namespace as property of its parent
|
|
4869
4869
|
}
|
|
4870
4870
|
|
|
4871
|
-
if (object instanceof Type || object instanceof Enum) {
|
|
4871
|
+
if (object instanceof Type || object instanceof Enum || object instanceof Field) {
|
|
4872
4872
|
// Only store types and enums for quick lookup during resolve.
|
|
4873
4873
|
this._fullyQualifiedObjects[object.fullName] = object;
|
|
4874
4874
|
}
|