mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
81b5828558
* Boilerplate with new node's version for metabse * Metabases MVP features * Added new credential for metabse, added custom auth for metabase * Fixed bug with one enpoint not working * Clean up code * Uniformised the renovate token * Made two example of responses for review * Fixed lint issues * Feature add datasources * Changed output from databases * Changed questions data output * Fixed issue when testing credentials with new node format * Add the possibility to get raw data * Removed handle for the metabase meta results, changed export's name * Add binary extraction for the result data * Fixed binary download issue * ⚡ Add preAuthentication method to credentials * Revert "Added new credential for metabse, added custom auth for metabase" This reverts commit5f1b7607ad
. * Revert "Added new credential for metabse, added custom auth for metabase" This reverts commit5f1b7607ad
. * Added preAuth and fixed autfixable linting rules * Fixed linting errors * Linting fixes * Remove / at the end of url, and add placeholder for cred url * Make export to Json retun only json and no binary * Fix lint issues * Add action and exception for lint rule * Remove unnecessary credential file * ⚡ Simplify and cleanup Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
74 lines
1.6 KiB
TypeScript
74 lines
1.6 KiB
TypeScript
import { INodeType, INodeTypeDescription } from 'n8n-workflow';
|
|
|
|
import { questionsFields, questionsOperations } from './QuestionsDescription';
|
|
|
|
import { metricsFields, metricsOperations } from './MetricsDescription';
|
|
|
|
import { databasesFields, databasesOperations } from './DatabasesDescription';
|
|
|
|
import { alertsFields, alertsOperations } from './AlertsDescription';
|
|
|
|
export class Metabase implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Metabase',
|
|
name: 'metabase',
|
|
icon: 'file:metabase.svg',
|
|
group: ['transform'],
|
|
version: 1,
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Use the Metabase API',
|
|
defaults: {
|
|
name: 'Metabase',
|
|
color: '#ff0000',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'metabaseApi',
|
|
required: true,
|
|
},
|
|
],
|
|
requestDefaults: {
|
|
returnFullResponse: true,
|
|
baseURL: '={{$credentials.url.replace(new RegExp("/$"), "")}}',
|
|
headers: {},
|
|
},
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Alert',
|
|
value: 'alerts',
|
|
},
|
|
{
|
|
name: 'Database',
|
|
value: 'databases',
|
|
},
|
|
{
|
|
name: 'Metric',
|
|
value: 'metrics',
|
|
},
|
|
{
|
|
name: 'Question',
|
|
value: 'questions',
|
|
},
|
|
],
|
|
default: 'questions',
|
|
},
|
|
...questionsOperations,
|
|
...questionsFields,
|
|
...metricsOperations,
|
|
...metricsFields,
|
|
...databasesOperations,
|
|
...databasesFields,
|
|
...alertsOperations,
|
|
...alertsFields,
|
|
],
|
|
};
|
|
}
|