@socketsecurity/sdk 3.0.29 → 3.0.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +31 -0
- package/dist/index.mjs +20784 -67
- package/package.json +4 -3
- package/types/api.d.ts +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@socketsecurity/sdk",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.31",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "SDK for the Socket API client",
|
|
6
6
|
"author": {
|
|
@@ -61,8 +61,9 @@
|
|
|
61
61
|
"@dotenvx/dotenvx": "1.49.0",
|
|
62
62
|
"@eslint/compat": "1.3.2",
|
|
63
63
|
"@eslint/js": "9.35.0",
|
|
64
|
-
"@socketregistry/packageurl-js": "1.3.
|
|
65
|
-
"@socketsecurity/lib": "3.
|
|
64
|
+
"@socketregistry/packageurl-js": "1.3.5",
|
|
65
|
+
"@socketsecurity/lib": "3.1.3",
|
|
66
|
+
"@types/babel__traverse": "7.28.0",
|
|
66
67
|
"@types/node": "24.9.2",
|
|
67
68
|
"@typescript/native-preview": "7.0.0-dev.20250926.1",
|
|
68
69
|
"@vitest/coverage-v8": "4.0.3",
|
package/types/api.d.ts
CHANGED
|
@@ -675,7 +675,8 @@ export interface paths {
|
|
|
675
675
|
'/orgs/{org_slug}/settings/license-policy/view': {
|
|
676
676
|
/**
|
|
677
677
|
* Get License Policy (Beta)
|
|
678
|
-
* @description Returns an organization's license policy
|
|
678
|
+
* @description Returns an organization's license policy including allow, warn, monitor, and deny categories.
|
|
679
|
+
* The deny category contains all licenses that are not explicitly categorized as allow, warn, or monitor.
|
|
679
680
|
*
|
|
680
681
|
* This endpoint consumes 1 unit of your quota.
|
|
681
682
|
*
|
|
@@ -1746,6 +1747,7 @@ export interface components {
|
|
|
1746
1747
|
allow: string[] | null
|
|
1747
1748
|
warn: string[] | null
|
|
1748
1749
|
monitor: string[] | null
|
|
1750
|
+
deny: string[] | null
|
|
1749
1751
|
options: string[] | null
|
|
1750
1752
|
}
|
|
1751
1753
|
Capabilities: {
|
|
@@ -12006,7 +12008,8 @@ export interface operations {
|
|
|
12006
12008
|
}
|
|
12007
12009
|
/**
|
|
12008
12010
|
* Get License Policy (Beta)
|
|
12009
|
-
* @description Returns an organization's license policy
|
|
12011
|
+
* @description Returns an organization's license policy including allow, warn, monitor, and deny categories.
|
|
12012
|
+
* The deny category contains all licenses that are not explicitly categorized as allow, warn, or monitor.
|
|
12010
12013
|
*
|
|
12011
12014
|
* This endpoint consumes 1 unit of your quota.
|
|
12012
12015
|
*
|