Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:
jobs:
ci:
name: Run CI Pipeline
uses: SocketDev/socket-registry/.github/workflows/ci.yml@e7f70a7eb857a85b4f30677f9fc2c38bc9c4d56e # 2025-10-28
uses: SocketDev/socket-registry/.github/workflows/ci.yml@5d91b07baf94ad7372cd0b9476750b6b33ae5a61 # 2025-10-28
with:
fail-fast: false
lint-script: 'pnpm run lint --all'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/claude-auto-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ permissions:

jobs:
auto-review:
uses: SocketDev/socket-registry/.github/workflows/claude-auto-review.yml@e7f70a7eb857a85b4f30677f9fc2c38bc9c4d56e # 2025-10-28
uses: SocketDev/socket-registry/.github/workflows/claude-auto-review.yml@5d91b07baf94ad7372cd0b9476750b6b33ae5a61 # 2025-10-28
secrets:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
2 changes: 1 addition & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ permissions:

jobs:
claude:
uses: SocketDev/socket-registry/.github/workflows/claude.yml@e7f70a7eb857a85b4f30677f9fc2c38bc9c4d56e # 2025-10-28
uses: SocketDev/socket-registry/.github/workflows/claude.yml@5d91b07baf94ad7372cd0b9476750b6b33ae5a61 # 2025-10-28
secrets:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
4 changes: 2 additions & 2 deletions .github/workflows/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
autocrlf: false
token: ${{ secrets.GITHUB_TOKEN }}

- uses: SocketDev/socket-registry/.github/actions/setup-and-install@d8ff3b0581d799466cfbf150f715c1a4bf9f84a5 # main
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@5d91b07baf94ad7372cd0b9476750b6b33ae5a61 # main

- name: Fetch latest OpenAPI definition
id: fetch
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
autocrlf: false
ref: automated/open-api

- uses: SocketDev/socket-registry/.github/actions/setup-and-install@d8ff3b0581d799466cfbf150f715c1a4bf9f84a5 # main
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@5d91b07baf94ad7372cd0b9476750b6b33ae5a61 # main

- name: Build SDK
run: pnpm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/provenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions:

jobs:
publish:
uses: SocketDev/socket-registry/.github/workflows/provenance.yml@e7f70a7eb857a85b4f30677f9fc2c38bc9c4d56e # 2025-10-28
uses: SocketDev/socket-registry/.github/workflows/provenance.yml@5d91b07baf94ad7372cd0b9476750b6b33ae5a61 # 2025-10-28
with:
debug: ${{ inputs.debug }}
package-name: '@socketsecurity/sdk'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/socket-auto-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ permissions:

jobs:
socket-auto-pr:
uses: SocketDev/socket-registry/.github/workflows/socket-auto-pr.yml@e7f70a7eb857a85b4f30677f9fc2c38bc9c4d56e # 2025-10-28
uses: SocketDev/socket-registry/.github/workflows/socket-auto-pr.yml@5d91b07baf94ad7372cd0b9476750b6b33ae5a61 # 2025-10-28
with:
debug: ${{ inputs.debug }}
autopilot: true
Expand Down
13 changes: 12 additions & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1250,6 +1250,16 @@
"description": "",
"nullable": true
},
"deny": {
"type": "array",
"items": {
"type": "string",
"description": "",
"default": ""
},
"description": "",
"nullable": true
},
"options": {
"type": "array",
"items": {
Expand All @@ -1263,6 +1273,7 @@
},
"required": [
"allow",
"deny",
"monitor",
"options",
"warn"
Expand Down Expand Up @@ -30441,7 +30452,7 @@
]
}
],
"description": "Returns an organization's license policy\n\nThis endpoint consumes 1 unit of your quota.\n\nThis endpoint requires the following org token scopes:\n- license-policy:read",
"description": "Returns an organization's license policy including allow, warn, monitor, and deny categories.\nThe deny category contains all licenses that are not explicitly categorized as allow, warn, or monitor.\n\nThis endpoint consumes 1 unit of your quota.\n\nThis endpoint requires the following org token scopes:\n- license-policy:read",
"responses": {
"200": {
"content": {
Expand Down
7 changes: 5 additions & 2 deletions types/api.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,8 @@ export interface paths {
'/orgs/{org_slug}/settings/license-policy/view': {
/**
* Get License Policy (Beta)
* @description Returns an organization's license policy
* @description Returns an organization's license policy including allow, warn, monitor, and deny categories.
* The deny category contains all licenses that are not explicitly categorized as allow, warn, or monitor.
*
* This endpoint consumes 1 unit of your quota.
*
Expand Down Expand Up @@ -1746,6 +1747,7 @@ export interface components {
allow: string[] | null
warn: string[] | null
monitor: string[] | null
deny: string[] | null
options: string[] | null
}
Capabilities: {
Expand Down Expand Up @@ -12006,7 +12008,8 @@ export interface operations {
}
/**
* Get License Policy (Beta)
* @description Returns an organization's license policy
* @description Returns an organization's license policy including allow, warn, monitor, and deny categories.
* The deny category contains all licenses that are not explicitly categorized as allow, warn, or monitor.
*
* This endpoint consumes 1 unit of your quota.
*
Expand Down