-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Metabase Node): Add Metabase Node (#3033)
* 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 commit 5f1b760. * Revert "Added new credential for metabse, added custom auth for metabase" This reverts commit 5f1b760. * 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>
- Loading branch information
1 parent
b4525d0
commit 81b5828
Showing
12 changed files
with
773 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import { INodeProperties } from 'n8n-workflow'; | ||
|
||
export const alertsOperations: INodeProperties[] = [ | ||
{ | ||
displayName: 'Operation', | ||
name: 'operation', | ||
type: 'options', | ||
noDataExpression: true, | ||
displayOptions: { | ||
show: { | ||
resource: ['alerts'], | ||
}, | ||
}, | ||
options: [ | ||
{ | ||
name: 'Get', | ||
value: 'get', | ||
description: 'Get specific alert', | ||
routing: { | ||
request: { | ||
method: 'GET', | ||
url: '={{"/api/alert/" + $parameter.alertId}}', | ||
}, | ||
}, | ||
action: 'Get an alert', | ||
}, | ||
{ | ||
name: 'Get All', | ||
value: 'getAll', | ||
description: 'Get all the alerts', | ||
routing: { | ||
request: { | ||
method: 'GET', | ||
url: '/api/alert/', | ||
}, | ||
}, | ||
action: 'Get all alerts', | ||
}, | ||
], | ||
default: 'getAll', | ||
}, | ||
]; | ||
|
||
export const alertsFields: INodeProperties[] = [ | ||
{ | ||
displayName: 'Alert ID', | ||
name: 'alertId', | ||
type: 'string', | ||
required: true, | ||
placeholder: '0', | ||
displayOptions: { | ||
show: { | ||
resource: ['alerts'], | ||
operation: ['get'], | ||
}, | ||
}, | ||
default: '', | ||
}, | ||
]; |
Oops, something went wrong.