Add group resource to Segment-Node (#934)

This commit is contained in:
Ricardo Espinoza
2020-09-07 03:04:27 -04:00
committed by GitHub
parent 313c8c14dc
commit 1479ce47e6
5 changed files with 782 additions and 6 deletions

View File

@@ -1,4 +1,6 @@
import { IDataObject } from "n8n-workflow";
import {
IDataObject,
} from 'n8n-workflow';
export interface ITrack {
event?: string;
@@ -11,3 +13,7 @@ export interface ITrack {
properties?: IDataObject;
integrations?: IDataObject;
}
export interface IGroup extends ITrack{
groupId: string;
}