feat(management): add Attack Protection and Superfed Connections client support (Don't merge) #639
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces new support for the Attack Protection Bot Detection and CAPTCHA endpoints in the Auth0 Management API SDK, including client implementations and associated tests. It also removes the outdated
AGENTS.mddocumentation file. The most important changes are grouped below:New Attack Protection Bot Detection API support:
ClientandRawClientimplementations for the/attack-protection/bot-detectionendpoint, including methods for getting and updating bot detection settings (management/attackprotection/botdetection/client.go,management/attackprotection/botdetection/raw_client.go).management/attackprotection/botdetection/attack_protection_bot_detection_test/attack_protection_bot_detection_test.go).New Attack Protection CAPTCHA API support:
ClientandRawClientimplementations for the/attack-protection/captchaendpoint, supporting get and update operations (management/attackprotection/captcha/client.go).management/attackprotection/captcha/attack_protection_captcha_test/attack_protection_captcha_test.go).These changes collectively expand the SDK's coverage of Auth0's Attack Protection features and improve automated test coverage for these endpoints.