@socketsecurity/sdk
Advanced tools
Comparing version 0.4.0 to 0.5.0
{ | ||
"name": "@socketsecurity/sdk", | ||
"version": "0.4.0", | ||
"version": "0.5.0", | ||
"license": "MIT", | ||
@@ -37,11 +37,11 @@ "description": "SDK for the Socket API client", | ||
"@types/chai-as-promised": "^7.1.5", | ||
"@types/mocha": "^10.0.0", | ||
"@types/node": "^14.18.31", | ||
"@types/mocha": "^10.0.1", | ||
"@types/node": "^14.18.36", | ||
"@types/tap": "^15.0.7", | ||
"@typescript-eslint/eslint-plugin": "^5.43.0", | ||
"@typescript-eslint/parser": "^5.43.0", | ||
"@typescript-eslint/eslint-plugin": "^5.48.1", | ||
"@typescript-eslint/parser": "^5.48.1", | ||
"c8": "^7.12.0", | ||
"chai": "^4.3.7", | ||
"chai-as-promised": "^7.1.1", | ||
"eslint": "^8.28.0", | ||
"eslint": "^8.29.0", | ||
"eslint-config-standard": "^17.0.0", | ||
@@ -51,8 +51,8 @@ "eslint-config-standard-jsx": "^11.0.0", | ||
"eslint-plugin-import": "^2.26.0", | ||
"eslint-plugin-n": "^15.5.1", | ||
"eslint-plugin-n": "^15.6.0", | ||
"eslint-plugin-promise": "^6.0.1", | ||
"eslint-plugin-react": "^7.31.11", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"husky": "^8.0.2", | ||
"installed-check": "^6.0.4", | ||
"husky": "^8.0.3", | ||
"installed-check": "^6.0.5", | ||
"mocha": "^10.1.0", | ||
@@ -59,0 +59,0 @@ "nock": "^13.2.9", |
@@ -792,2 +792,15 @@ /** | ||
/** @enum {string} */ | ||
type?: "unpublished"; | ||
value?: components["schemas"]["SocketIssueBasics"] & { | ||
/** @default */ | ||
description: string; | ||
props: { | ||
/** @default */ | ||
version: string; | ||
}; | ||
usage?: components["schemas"]["SocketUsageRef"]; | ||
}; | ||
}> & | ||
Partial<{ | ||
/** @enum {string} */ | ||
type?: "majorRefactor"; | ||
@@ -1042,2 +1055,15 @@ value?: components["schemas"]["SocketIssueBasics"] & { | ||
}; | ||
}> & | ||
Partial<{ | ||
/** @enum {string} */ | ||
type?: "gptMalware"; | ||
value?: components["schemas"]["SocketIssueBasics"] & { | ||
/** @default */ | ||
description: string; | ||
props: { | ||
/** @default */ | ||
notes: string; | ||
}; | ||
usage?: components["schemas"]["SocketUsageRef"]; | ||
}; | ||
}>; | ||
@@ -1044,0 +1070,0 @@ SocketSupplyChainScore: { |
72308
2279