Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris committed Jul 19, 2024
2 parents 6b0847d + 7d7c3bf commit 9b8d483
Showing 1 changed file with 24 additions and 30 deletions.
54 changes: 24 additions & 30 deletions social/email/v0.1.0/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
"name"
],
"from": [
"from.email"
"fromEmail"
],
"message": [
"message.text"
"messageText"
],
"sentAt": [
"sentAt"
Expand All @@ -34,13 +34,13 @@
"layouts": {
"create": [
"name",
"from.name",
"from.email"
"fromName",
"fromEmail"
],
"view": [
"name",
"from.name",
"from.email",
"fromName",
"fromEmail",
"sourceApplication",
"sourceId",
"insertedAt"
Expand All @@ -57,31 +57,25 @@
"description": "Email subject",
"type": "string"
},
"from": {
"title": "Content",
"description": "Content of the post",
"type": "object",
"properties": {
"name": {
"title": "From Name",
"description": "Name of email sender",
"type": "string"
},
"email": {
"title": "From Email",
"description": "Email address of sender",
"type": "string"
}
}
"fromName": {
"title": "From Name",
"description": "Name of email sender",
"type": "string"
},
"message": {
"title": "Message",
"description": "Message content of the meail",
"type": "object",
"properties": {
"text": {},
"html": {}
}
"fromEmail": {
"title": "From Email",
"description": "Email address of sender",
"type": "string"
},
"messageText": {
"title": "Message (Text)",
"description": "Message content of the email as text",
"type": "string"
},
"messageHTML": {
"title": "Message (HTML)",
"description": "Message content of the email as HTML",
"type": "string"
},
"attachments": {
"title": "Attachments",
Expand Down

0 comments on commit 9b8d483

Please sign in to comment.