New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@monkvision/network

Package Overview
Dependencies
Maintainers
0
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@monkvision/network - npm Package Compare versions

Comparing version 4.4.1 to 4.4.2

18

lib/package.json
{
"name": "@monkvision/network",
"version": "4.4.0",
"version": "4.4.1",
"license": "BSD-3-Clause-Clear",

@@ -31,4 +31,4 @@ "packageManager": "yarn@3.2.4",

"dependencies": {
"@monkvision/common": "4.4.0",
"@monkvision/sights": "4.4.0",
"@monkvision/common": "4.4.1",
"@monkvision/sights": "4.4.1",
"jsonwebtoken": "^9.0.2",

@@ -46,8 +46,8 @@ "jwt-decode": "^4.0.0",

"devDependencies": {
"@monkvision/eslint-config-base": "4.4.0",
"@monkvision/eslint-config-typescript": "4.4.0",
"@monkvision/jest-config": "4.4.0",
"@monkvision/prettier-config": "4.4.0",
"@monkvision/types": "4.4.0",
"@monkvision/typescript-config": "4.4.0",
"@monkvision/eslint-config-base": "4.4.1",
"@monkvision/eslint-config-typescript": "4.4.1",
"@monkvision/jest-config": "4.4.1",
"@monkvision/prettier-config": "4.4.1",
"@monkvision/types": "4.4.1",
"@monkvision/typescript-config": "4.4.1",
"@types/jest": "^29.2.2",

@@ -54,0 +54,0 @@ "@types/jsonwebtoken": "^9.0.5",

@@ -58,2 +58,2 @@ import { MonkState } from '@monkvision/common';

}
export declare function mapApiAllInspectionsUrlParamsGet(options: GetAllInspectionsOptions, verbose: boolean): string;
export declare function mapApiAllInspectionsUrlParamsGet(options: GetAllInspectionsOptions, verbose: boolean | null): string;

@@ -497,3 +497,5 @@ "use strict";

var params = new URLSearchParams();
params.append('verbose', verbose ? '1' : '0');
if (verbose !== null) {
params.append('verbose', verbose ? '1' : '0');
}
var ignoredFilters = ['verbose'];

@@ -520,4 +522,5 @@ if (options.filters) {

}
return "?".concat(params.toString());
var paramsStr = params.toString();
return "".concat(paramsStr.length > 0 ? '?' : '').concat(paramsStr);
}
exports.mapApiAllInspectionsUrlParamsGet = mapApiAllInspectionsUrlParamsGet;

@@ -220,3 +220,3 @@ "use strict";

kyOptions = (0, config_1.getDefaultOptions)(config);
return [4 /*yield*/, ky_1.default.get("inspections/count".concat((0, mappers_1.mapApiAllInspectionsUrlParamsGet)(options, false)), kyOptions)];
return [4 /*yield*/, ky_1.default.get("inspections/count".concat((0, mappers_1.mapApiAllInspectionsUrlParamsGet)(options, null)), kyOptions)];
case 1:

@@ -223,0 +223,0 @@ response = _a.sent();

{
"name": "@monkvision/network",
"version": "4.4.1",
"version": "4.4.2",
"license": "BSD-3-Clause-Clear",

@@ -31,4 +31,4 @@ "packageManager": "yarn@3.2.4",

"dependencies": {
"@monkvision/common": "4.4.1",
"@monkvision/sights": "4.4.1",
"@monkvision/common": "4.4.2",
"@monkvision/sights": "4.4.2",
"jsonwebtoken": "^9.0.2",

@@ -46,8 +46,8 @@ "jwt-decode": "^4.0.0",

"devDependencies": {
"@monkvision/eslint-config-base": "4.4.1",
"@monkvision/eslint-config-typescript": "4.4.1",
"@monkvision/jest-config": "4.4.1",
"@monkvision/prettier-config": "4.4.1",
"@monkvision/types": "4.4.1",
"@monkvision/typescript-config": "4.4.1",
"@monkvision/eslint-config-base": "4.4.2",
"@monkvision/eslint-config-typescript": "4.4.2",
"@monkvision/jest-config": "4.4.2",
"@monkvision/prettier-config": "4.4.2",
"@monkvision/types": "4.4.2",
"@monkvision/typescript-config": "4.4.2",
"@types/jest": "^29.2.2",

@@ -89,3 +89,3 @@ "@types/jsonwebtoken": "^9.0.5",

"homepage": "https://github.com/monkvision/monkjs",
"gitHead": "ad47ca19d34da383f28ef9a445d90324cef41fa6"
"gitHead": "5258aa19cfb4c5b6d84ee38feb6af0a0e3fb73b6"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc