Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2023-07-13 09:09:17 +00:00
parent 4fad06f438
commit 40a500c743
4168 changed files with 298222 additions and 374905 deletions

17
node_modules/long/index.d.ts generated vendored
View file

@ -77,7 +77,11 @@ declare class Long {
/**
* Returns a Long representation of the given string, written using the specified radix.
*/
static fromString(str: string, unsigned?: boolean | number, radix?: number): Long;
static fromString(
str: string,
unsigned?: boolean | number,
radix?: number
): Long;
/**
* Creates a Long from its byte representation.
@ -102,7 +106,14 @@ declare class Long {
/**
* Converts the specified value to a Long.
*/
static fromValue(val: Long | number | string | { low: number, high: number, unsigned: boolean }, unsigned?: boolean): Long;
static fromValue(
val:
| Long
| number
| string
| { low: number; high: number; unsigned: boolean },
unsigned?: boolean
): Long;
/**
* Returns the sum of this and the specified Long.
@ -443,4 +454,4 @@ declare class Long {
xor(other: Long | number | string): Long;
}
export = Long; // compatible with `import Long from "long"`
export default Long; // compatible with `import Long from "long"`

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

@ -1,6 +1,6 @@
{
"name": "long",
"version": "5.2.0",
"version": "5.2.3",
"author": "Daniel Wirtz <dcode@dcode.io>",
"description": "A Long class for representing a 64-bit two's-complement integer value.",
"repository": {
@ -18,11 +18,17 @@
"license": "Apache-2.0",
"type": "module",
"main": "umd/index.js",
"types": "index.d.ts",
"types": "umd/index.d.ts",
"exports": {
".": {
"import": "./index.js",
"require": "./umd/index.js"
"import": {
"types": "./index.d.ts",
"default": "./index.js"
},
"require": {
"types": "./umd/index.d.ts",
"default": "./umd/index.js"
}
}
},
"scripts": {
@ -39,6 +45,6 @@
"README.md"
],
"devDependencies": {
"esm2umd": "^0.2.0"
"esm2umd": "^0.2.1"
}
}

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

@ -1429,4 +1429,4 @@ var Long = (function(exports) {
return "default" in exports ? exports.default : exports;
})({});
if (typeof define === 'function' && define.amd) define([], function() { return Long; });
else if (typeof module === 'object' && typeof exports==='object') module.exports = Long;
else if (typeof module === 'object' && typeof exports === 'object') module.exports = Long;