You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(sendgrid): fix active field coercion, add pagination, tighten output typing
- Fix active field for create_template_version being sent as the string
"true"/"false" instead of the SendGrid-required int 0/1
- Add missing authMode: ApiKey on SendGridBlock
- Add pageToken/nextPageToken pagination support to list_templates and
list_all_lists (SendGrid page_token cursor, parsed from _metadata.next)
- Fix nullable output fields to use ?? null / ?? [] with optional: true
across get_contact, search_contacts, remove_contacts_from_list,
create_template_version, add_contact, send_mail
- Remove dead data.templates fallback in list_templates (API only
ever returns result)
- Remove unused UpdateContactParams/UpdateListParams/UpdateTemplateParams
dead types; make CreateTemplateParams.generation optional to match
actual tool behavior
0 commit comments