mirror of
https://github.com/langgenius/dify-plugin-sdks.git
synced 2026-07-22 02:15:22 -04:00
1fa18bfd1c
- Renamed `WebhookValidationError` to `TriggerValidationError` for consistency in error handling across trigger operations. - Updated references to the new `TriggerValidationError` in the GitHub provider and trigger interfaces. - Enhanced the `TriggerProvider` class to raise the new validation error for webhook signature issues. - Adjusted the `IssueCommentTrigger` to return the correct event response type. - Improved type hints and imports in various modules for better clarity and organization.
4 lines
198 B
Python
4 lines
198 B
Python
from .trigger import SubscriptionError, TriggerDispatchError, TriggerError, TriggerValidationError
|
|
|
|
__all__ = ["SubscriptionError", "TriggerDispatchError", "TriggerError", "TriggerValidationError"]
|