diff --git a/changelog.d/20260624_000000_gmendy_ai_discover_send_scope.md b/changelog.d/20260624_000000_gmendy_ai_discover_send_scope.md new file mode 100644 index 00000000..58702664 --- /dev/null +++ b/changelog.d/20260624_000000_gmendy_ai_discover_send_scope.md @@ -0,0 +1,3 @@ +### Added + +- New `ai-discover:send` token scope. diff --git a/pygitguardian/models.py b/pygitguardian/models.py index 286518b5..01f40dac 100644 --- a/pygitguardian/models.py +++ b/pygitguardian/models.py @@ -786,6 +786,7 @@ class TokenScope(str, Enum): NHI_WRITE_VAULT = "nhi:write-vault" NHI_SEND_INVENTORY = "nhi:send-inventory" ENDPOINTS_SEND = "endpoints:send" + AI_DISCOVER_SEND = "ai-discover:send" CUSTOM_TAGS_READ = "custom_tags:read" CUSTOM_TAGS_WRITE = "custom_tags:write" SECRET_READ = "secrets:read"