mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
57e19edadd
* ✨ Add Google Analytics node 🔨 Add Report Resource 🔨 Complete the basic for Report resource ⚡ Add User Activity resource 🔨Remove comment * ⚡ Improvements * ⚡ Small improvements * ⚡ Improvements * ⚡ Improvements * ⚡ Some improvements to Google Analytics Node * ⚡ Load views automatically Co-authored-by: Harshil <ghagrawal17@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
18 lines
288 B
TypeScript
18 lines
288 B
TypeScript
export interface IData {
|
|
viewId: string;
|
|
dimensions?: IDimension[];
|
|
pageSize?: number;
|
|
metrics?: IMetric[];
|
|
}
|
|
|
|
export interface IDimension {
|
|
name?: string;
|
|
histogramBuckets?: string[];
|
|
}
|
|
|
|
export interface IMetric {
|
|
expression?: string;
|
|
alias?: string;
|
|
formattingType?: string;
|
|
}
|