mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ Add Google analytics node (#1305)
* ✨ 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>
This commit is contained in:
17
packages/nodes-base/nodes/Google/Analytics/Interfaces.ts
Normal file
17
packages/nodes-base/nodes/Google/Analytics/Interfaces.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user