Version 2.1.10
Changes to Existing Features
- Application Integrations:
- Updated the
create_notification,delete_notifications, andrecord_action_feedbackmethods to correctly handle request parameters. Thebodyis now explicitly popped fromkwargsand passed asdata, while other parameters are passed asparams.
- Updated the
Internal
- Version Bump:
- Updated the version from
2.1.9to2.1.10.
- Updated the version from
Diagram of Method Changes
graph TD;
A[Previous Method Implementation] --> B[create_notification];
A --> C[delete_notifications];
A --> D[record_action_feedback];
B --> E[Corrected Parameter Handling];
C --> F[Corrected Parameter Handling];
D --> G[Corrected Parameter Handling];
This update ensures that the methods in the ApplicationIntegrations class handle request bodies and parameters correctly, improving the reliability of API interactions.