mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
* Authorise net source code files * fix for the claude genereted code for the authorizenet * Removed repeted code * Resolved review Commits * Logo Changed * parsing and some review comments * fixed transaction key * Fixed Error Messages for config Page * chore: update version to 3.20.49-lts across all components --------- Co-authored-by: Pratush <pratush@Pratushs-MacBook-Pro.local> Co-authored-by: gsmithun4 <gsmithun4@gmail.com>
64 lines
No EOL
1.5 KiB
JSON
64 lines
No EOL
1.5 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
|
|
"title": "Authorize.Net datasource",
|
|
"description": "A schema defining Authorize.Net datasource",
|
|
"type": "api",
|
|
"source": {
|
|
"name": "Authorize.Net",
|
|
"kind": "authorizenet",
|
|
"exposedVariables": {
|
|
"isLoading": false,
|
|
"data": {},
|
|
"rawData": {}
|
|
},
|
|
"options": {
|
|
"apiLoginId": {
|
|
"type": "string"
|
|
},
|
|
"transactionKey": {
|
|
"type": "string",
|
|
"encrypted": true
|
|
},
|
|
"environment": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"defaults": {
|
|
"environment": {
|
|
"value": "sandbox"
|
|
}
|
|
},
|
|
"properties": {
|
|
"apiLoginId": {
|
|
"label": "API login ID",
|
|
"key": "apiLoginId",
|
|
"type": "text",
|
|
"description": "Your Authorize.Net API login ID"
|
|
},
|
|
"transactionKey": {
|
|
"label": "Transaction key",
|
|
"key": "transactionKey",
|
|
"type": "text",
|
|
"description": "Your Authorize.Net transaction key",
|
|
"encrypted": true
|
|
},
|
|
"environment": {
|
|
"label": "Environment",
|
|
"key": "environment",
|
|
"type": "dropdown",
|
|
"description": "Select the API environment",
|
|
"list": [
|
|
{
|
|
"label": "Sandbox [https://apitest.authorize.net]",
|
|
"value": "sandbox"
|
|
},
|
|
{
|
|
"label": "Production [https://api.authorize.net]",
|
|
"value": "production"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"required": ["apiLoginId", "transactionKey"]
|
|
} |