diff --git a/changelog.d/20250930_174242_henri.hubert_GG_HH_patch_1.md b/changelog.d/20250930_174242_henri.hubert_GG_HH_patch_1.md new file mode 100644 index 00000000..5bbed312 --- /dev/null +++ b/changelog.d/20250930_174242_henri.hubert_GG_HH_patch_1.md @@ -0,0 +1,41 @@ + + + + + + + +### Fixed + +- Missing scope leading to validation errors + + diff --git a/pygitguardian/models.py b/pygitguardian/models.py index 400d9df3..c33f9ac1 100644 --- a/pygitguardian/models.py +++ b/pygitguardian/models.py @@ -772,6 +772,7 @@ class TokenScope(str, Enum): CUSTOM_TAGS_WRITE = "custom_tags:write" SECRET_READ = "secrets:read" SCAN_CREATE_INCIDENTS = "scan:create-incidents" + PUBLIC_PERIMETER_VIEW = "public-perimeter:read" class APITokensResponseSchema(BaseSchema):