Files
dify-plugin-sdks/python/dify_plugin/errors/__init__.py
T
Harry e9df3cbd4a feat(trigger): enhance trigger execution and response handling
- Introduced new response entities for trigger operations: TriggerInvokeResponse, TriggerDispatchResponse, TriggerSubscriptionResponse, TriggerUnsubscribeResponse, and TriggerRefreshResponse.
- Updated PluginExecutor methods to utilize the new response structures, improving clarity and consistency in trigger handling.
- Enhanced HTTP request parsing and response conversion utilities for better integration with various content types.
- Refactored GitHub provider to align with the updated trigger dispatch and subscription handling mechanisms.
2025-08-30 19:36:24 +08:00

4 lines
198 B
Python

from .trigger import SubscriptionError, TriggerDispatchError, TriggerError, WebhookValidationError
__all__ = ["SubscriptionError", "TriggerDispatchError", "TriggerError", "WebhookValidationError"]