n8n-nodes-base
Version:
Base nodes of n8n
26 lines (22 loc) • 514 B
text/typescript
/**
* Grafana Node - Version 1
* Discriminator: resource=team, operation=get
*/
interface Credentials {
grafanaApi: CredentialReference;
}
/** Get a dashboard */
export type GrafanaV1TeamGetParams = {
resource: 'team';
operation: 'get';
/**
* ID of the team to retrieve
*/
teamId?: string | Expression<string> | PlaceholderValue;
};
export type GrafanaV1TeamGetNode = {
type: 'n8n-nodes-base.grafana';
version: 1;
credentials?: Credentials;
config: NodeConfig<GrafanaV1TeamGetParams>;
};