Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2025-04-21 18:01:41 +00:00
parent c9f0d30a86
commit 95d52b7807
647 changed files with 498055 additions and 3880 deletions

12
node_modules/long/umd/index.js generated vendored
View file

@ -1,22 +1,22 @@
// GENERATED FILE. DO NOT EDIT.
(function (global, factory) {
function unwrapDefault(exports) {
return "default" in exports ? exports.default : exports;
function preferDefault(exports) {
return exports.default || exports;
}
if (typeof define === "function" && define.amd) {
define([], function () {
var exports = {};
factory(exports);
return unwrapDefault(exports);
return preferDefault(exports);
});
} else if (typeof exports === "object") {
factory(exports);
if (typeof module === "object") module.exports = unwrapDefault(exports);
if (typeof module === "object") module.exports = preferDefault(exports);
} else {
(function () {
var exports = {};
factory(exports);
global.Long = unwrapDefault(exports);
global.Long = preferDefault(exports);
})();
}
})(
@ -1602,7 +1602,7 @@
// Override
Long.fromValue = function fromValueWithBigInt(value, unsigned) {
if (typeof value === "bigint") return fromBigInt(value, unsigned);
if (typeof value === "bigint") return Long.fromBigInt(value, unsigned);
return fromValue(value, unsigned);
};