ToolJet/plugins/packages/bigquery/lib/manifest.json
Rudhra Deep Biswas b13e9f88bd v nice
2026-04-21 16:12:53 +05:30

152 lines
No EOL
3.6 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "Bigquery datasource",
"description": "A schema defining BigQuery datasource",
"type": "api",
"source": {
"name": "BigQuery",
"kind": "bigquery",
"exposedVariables": {
"isLoading": false,
"data": {},
"rawData": {}
},
"options": {
"private_key": {
"type": "string",
"encrypted": true
},
"client_secret": {
"type": "string",
"encrypted": true
}
},
"customTesting": false,
"hideSave": false
},
"defaults": {
"access_type": {
"value": "read"
},
"authentication_type": {
"value": "oauth2"
},
"redirect_url": {
"value": "http://localhost:8082/oauth2/authorize",
"encrypted": false
},
"auth_url": {
"value": "https://accounts.google.com/o/oauth2/v2/auth",
"encrypted": false
},
"allowed_auth_types": {
"value": "oauth2",
"encrypted": false
},
"auth_type": {
"value": "oauth2"
},
"grant_type": {
"value": "authorization_code"
},
"oauth_type": {
"value": "custom_app"
},
"access_token_url": {
"value": "https://oauth2.googleapis.com/token"
}
},
"properties": {
"credentials": {
"label": "Authentication type",
"key": "authentication_type",
"type": "dropdown-component-flip",
"description": "Single select dropdown for choosing authentication type",
"list": [
{
"value": "oauth2",
"name": "OAuth 2.0"
},
{
"value": "service_account",
"name": "Service Account"
}
]
},
"oauth2": {
"access_type": {
"label": "Access type",
"key": "access_type",
"type": "dropdown",
"description": "Select read or read/write access",
"list": [
{
"value": "read",
"name": "Read only"
},
{
"value": "write",
"name": "Read and Write"
}
]
},
"project_id": {
"label": "Project ID",
"key": "project_id",
"type": "text",
"description": "Enter your Google Cloud Project ID"
},
"oauth": {
"key": "oauth",
"type": "react-component-oauth",
"description": "A component for BigQuery OAuth",
"oauth_configs": {
"allowed_auth_types": [
"oauth2"
],
"allowed_grant_types": [
"authorization_code"
],
"allowed_field_groups": {
"authorization_code": [
"client_id",
"client_secret"
]
},
"oauthTypes": {
"required": true,
"default_value": "custom_app",
"editions": {
"ce": [
"custom_app"
],
"ee": [
"custom_app"
],
"cloud": [
"custom_app",
"tooljet_app"
]
}
},
"allowed_scope_field": false
}
}
},
"service_account": {
"private_key": {
"label": "Private key",
"key": "private_key",
"type": "textarea",
"description": "Enter JSON private key for service account",
"encrypted": true
},
"scope": {
"label": "Scope",
"key": "scope",
"type": "text",
"description": "Enter required scopes"
}
}
}
}