﻿syntax = "proto3";

package user_behavior_insights.v1;

import "user_behavior_insights.proto";

// Tracks user queries and events to provide user behavior insights
service UserBehaviorInsightsService {
  // Tracks one or more events
  rpc TrackEvents(TrackEventsRequest) returns (TrackEventsResponse);

  // Tracks a query
  rpc TrackQuery(TrackQueryRequest) returns (TrackQueryResponse);
}