ToolJet/plugins/packages/sendgrid/lib/operations.json
Kiran Ashok 4723bfe8e7
fix : Codehinter bugs (#9350)
* fix : Preview on parameters is not visible.

* fix : data source codehinter breaking

* fix : current value copy button.(copying different values)

* fix : select suggestions using mouse closes the preview box.

* fix : multiline preview

* fix: darkmode

* fixes:
- multi-line suggestions on different line numbers
- extended single line editor for json body

* cleanup

* handle multiple resolver references with hints

* fix : codehinter position

* fix : data source codehinters

* fix : woocommerce

* bugfix : bigquery

* fix : Selecting options from suggestion cleareing the values from  input fielsds.

* fix : parmeter list not opening

* datasource going back to defaults bug

* fix : datasource resetting issue

---------

Co-authored-by: arpitnath <arpitnath42@gmail.com>
2024-04-15 15:02:33 +05:30

82 lines
No EOL
2.3 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/operations.schema.json",
"title": "Airtable datasource",
"description": "A schema defining Sendgrid datasource",
"type": "api",
"defaults": {},
"properties": {
"operation": {
"label": "Operation",
"key": "operation",
"type": "dropdown-component-flip",
"description": "Single select dropdown for operation",
"list": [
{
"value": "mail_service",
"name": "Email service"
}
]
},
"mail_service": {
"multiple_recipients": {
"label": "Multiple recipients",
"key": "multiple_recipients",
"type": "codehinter",
"lineNumbers": false,
"description": "Send multiple individuals emails",
"placeholder": "{{false}}",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
},
"send_mail_to": {
"label": "Send mail to",
"key": "send_mail_to",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter email recipient(s)",
"placeholder": "{{['dev@tooljet.io']}}",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
},
"send_mail_from": {
"label": "Send mail from",
"key": "send_mail_from",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter email Sender",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
},
"subject": {
"label": "Subject",
"key": "subject",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter subject",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
},
"text": {
"label": "Body as text",
"key": "text",
"type": "codehinter",
"description": "Enter text",
"height": "150px",
"editorType": "extendedSingleLine"
},
"html": {
"label": "Body as HTML",
"key": "html",
"type": "codehinter",
"description": "Enter html",
"height": "150px",
"editorType": "extendedSingleLine",
"lineNumbers": true
}
}
}
}