ToolJet/marketplace/plugins/microsoft_graph/lib/manifest.json
Devanshu Gupta cb0a87e1a1
Feat/ms graph pre release (#13581)
* ee commit

* merge commit

* feat: updated openapi operation component

* updated query operation sepctype

* fix: updated query dropdown style

* init plugin

* init plugin

* feat: config dropdown update

* feat: added ms plugin

* fix: plugin connection name

* submodule reference updated

* plugin label updated

* added back margin top class

---------

Co-authored-by: Ganesh Kumar <ganesh8056234@gmail.com>
2025-08-11 18:59:49 +05:30

142 lines
No EOL
3.1 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "Microsoft Graph",
"description": "Plugin to use Microsoft 365 services (Outlook, Calendars, OneDrive etc)",
"type": "api",
"source": {
"name": "Microsoft Graph",
"kind": "microsoft_graph",
"exposedVariables": {
"isLoading": false,
"data": {},
"rawData": {}
},
"options": {
"tenant_id": {
"type": "string"
},
"access_token_url": {
"type": "string"
},
"client_secret": {
"type": "string",
"encrypted": true
}
},
"customTesting": true
},
"defaults": {
"username": {
"value": ""
},
"account": {
"value": ""
},
"password": {
"value": ""
},
"database": {
"value": ""
},
"schema": {
"value": ""
},
"warehouse": {
"value": ""
},
"role": {
"value": ""
},
"client_id": {
"value": ""
},
"client_secret": {
"value": ""
},
"tenant_id": {
"value": ""
},
"access_token_url": {
"value": "https://login.microsoftonline.com/{{tenant_id}}/oauth2/v2.0/token"
},
"redirect_url": {
"value": ""
},
"auth_url": {
"value": ""
},
"allowed_auth_types": {
"value": "oauth2"
},
"auth_type": {
"value": "oauth2"
},
"grant_type": {
"value": "authorization_code"
},
"scopes": {
"value": "https://graph.microsoft.com/.default"
},
"access_token_custom_headers": {
"value": [
["Content-Type", "application/x-www-form-urlencoded"]
]
},
"oauth_type": {
"value": "custom_app"
}
},
"properties": {
"tenant_id": {
"label": "Tenant",
"key": "tenant_id",
"type": "text",
"description": "Enter tenant"
},
"access_token_url": {
"label": "Access token URL",
"key": "access_token_url",
"type": "text",
"description": "Enter access token url",
"helpText": "Replace < {{tenant_id}} > with the actual tenent value"
},
"oauth": {
"key": "oauth",
"type": "react-component-oauth",
"description": "A component for Microsoft Graph",
"oauth_configs": {
"allowed_field_groups": {
"authorization_code": [
"client_id",
"client_secret"
]
},
"allowed_auth_types": [
"oauth2"
],
"oauthTypes": {
"required": true,
"default_value": "custom_app",
"editions": {
"ce": [
"custom_app"
],
"ee": [
"custom_app"
],
"cloud": [
"custom_app",
"tooljet_app"
]
}
},
"allowed_grant_types": [
"authorization_code"
],
"allowed_scope_field": false
}
}
},
"required": []
}