import { IDataObject } from 'n8n-workflow';

export interface ICompany extends IDataObject {
  id?: string;
  name: string;
  website?: string;
  industry?: string;
  description?: string;
  customFields?: Record<string, any>;
  tags?: string[];
}

export type CompanyOperation = 
  | 'create'
  | 'update'
  | 'delete'
  | 'get'
  | 'getAll'
  | 'addTag'
  | 'removeTag';
