fix lint and build errors

This commit is contained in:
Vedanta-Gawande
2026-06-30 13:10:25 -07:00
parent 4d0ed69a35
commit b53ec69313
4 changed files with 12 additions and 10 deletions
File diff suppressed because one or more lines are too long
+5 -4
View File
@@ -2974,7 +2974,7 @@
"/emails/send-email": {
"post": {
"summary": "Send email",
"description": "Send an email to a list of users. The content field should contain either {html} for HTML emails, {template_id, variables} for template-based emails, or {draft_id} for a draft email.",
"description": "Send an email to a list of users (user_ids), all users (all_users), or arbitrary email addresses (emails). The content field should contain either {html} for HTML emails, {template_id, variables} for template-based emails, or {draft_id} for a draft email.",
"parameters": [],
"tags": [
"Emails"
@@ -2995,11 +2995,12 @@
"properties": {
"user_id": {
"type": "string"
},
"email": {
"type": "string"
}
},
"required": [
"user_id"
]
"required": []
}
}
},
+5 -4
View File
@@ -2934,7 +2934,7 @@
"/emails/send-email": {
"post": {
"summary": "Send email",
"description": "Send an email to a list of users. The content field should contain either {html} for HTML emails, {template_id, variables} for template-based emails, or {draft_id} for a draft email.",
"description": "Send an email to a list of users (user_ids), all users (all_users), or arbitrary email addresses (emails). The content field should contain either {html} for HTML emails, {template_id, variables} for template-based emails, or {draft_id} for a draft email.",
"parameters": [],
"tags": [
"Emails"
@@ -2955,11 +2955,12 @@
"properties": {
"user_id": {
"type": "string"
},
"email": {
"type": "string"
}
},
"required": [
"user_id"
]
"required": []
}
}
},
File diff suppressed because one or more lines are too long