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

2
node_modules/long/index.js generated vendored
View file

@ -1562,7 +1562,7 @@ if (typeof BigInt === "function") {
// 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);
};

4
node_modules/long/package.json generated vendored
View file

@ -1,6 +1,6 @@
{
"name": "long",
"version": "5.3.1",
"version": "5.3.2",
"author": "Daniel Wirtz <dcode@dcode.io>",
"description": "A Long class for representing a 64-bit two's-complement integer value.",
"repository": {
@ -51,7 +51,7 @@
"README.md"
],
"devDependencies": {
"esm2umd": "^0.3.0",
"esm2umd": "^0.3.1",
"prettier": "^3.5.0",
"typescript": "^5.7.3"
}

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);
};