Version 2.1.13
Changes to Existing Features
- Application Integrations:
- Improved parameter handling in the
create_notification,delete_notifications, andrecord_action_feedbackmethods. Thebodyis now explicitly extracted fromkwargsand passed asdata, while other parameters are passed asparams. This enhancement increases the reliability of API interactions.
- Improved parameter handling in the
Internal
- Dependencies:
- Updated
boto3from1.43.36to1.43.55in bothrequirements.txtanddocs/requirements.txt. - Updated
sphinx-jinja2-compatfrom0.1.1to0.4.1indocs/requirements.txt. - Updated
sphinx-toolboxfrom2.16.0to4.2.0indocs/requirements.txt.
- Updated
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.