@evercam/api 1.0.0-95d4e9e69 → 1.0.0-95f567c5f

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -69,6 +69,7 @@ export declare const IngestApi: {
69
69
  fetchDrawingOverlay(id: number, params: {
70
70
  view: boolean;
71
71
  }, onDownloadProgress: (progress: ProgressEvent) => void, version?: IngestVersions): Promise<Blob>;
72
+ getFloorArchive(id: number, version?: IngestVersions): Promise<string>;
72
73
  generate360map(projectId: string, params: Generate360MapRequestPayload, version?: IngestVersions): Promise<JsonObject>;
73
74
  get360QueueSize(params: _360QueueQueryParams, version?: IngestVersions): Promise<_360QueueResponse>;
74
75
  };
@@ -570,5 +570,12 @@ export declare enum AnalyticsEvent {
570
570
  SmartSearchSaveQuery = "SmartSearch-SaveQuery",
571
571
  SmartSearchThumbnailPlay = "SmartSearch-ThumbnailPlay",
572
572
  SmartSearchExportFile = "SmartSearch-ExportFile",
573
- SmartSearchDownloadHeatmapImage = "SmartSearch-DownloadHeatmapImage"
573
+ SmartSearchDownloadHeatmapImage = "SmartSearch-DownloadHeatmapImage",
574
+ AskAIClickAskAI = "AskAI-ClickAskAI",
575
+ AskAIClickExpand = "AskAI-ClickExpand",
576
+ AskAIClickCollapse = "AskAI-ClickCollapse",
577
+ AskAIClickVoice = "AskAI-ClickVoice",
578
+ AskAIClickFullscreen = "AskAI-ClickFullscreen",
579
+ AskAIExitFullscreen = "AskAI-ExitFullscreen",
580
+ AskAICloseChat = "AskAI-CloseChat"
574
581
  }
@@ -26,7 +26,9 @@ export declare enum CopilotStepId {
26
26
  CompletedFieldsResponse = "completed_fields_response",
27
27
  SendRawToolCallResponse = "send_raw_tool_call_response",
28
28
  SubmitToolOutputsToLLM = "submit_tool_outputs_to_llm",
29
- CancelCall = "cancel_call"
29
+ CancelCall = "cancel_call",
30
+ RequestAgentCall = "request_agent_call",
31
+ ExecAgentCall = "exec_agent_call"
30
32
  }
31
33
  export declare enum CopilotMissingFieldsLabels {
32
34
  ProjectExid = "Project",
@@ -34,10 +36,10 @@ export declare enum CopilotMissingFieldsLabels {
34
36
  FromDate = "Start date",
35
37
  ToDate = "End date"
36
38
  }
37
- export type CopilotMissingField<T = any> = {
39
+ export type CopilotMissingField<T = unknown> = {
38
40
  name: string;
39
41
  label: string;
40
- value: any;
42
+ value: unknown;
41
43
  type: string;
42
44
  toolId: string;
43
45
  error?: T;
@@ -83,7 +85,8 @@ export declare enum CopilotSuggestion {
83
85
  Weather = "weather",
84
86
  Clip = "clip",
85
87
  Timelapse = "timelapse",
86
- Chart = "chart"
88
+ Chart = "chart",
89
+ SmartSearch = "smart_search"
87
90
  }
88
91
  export declare enum CopilotChatProvider {
89
92
  Gemini = "gemini",
@@ -101,12 +104,14 @@ export declare enum CopilotToolId {
101
104
  NavigateToPage = "navigateToPage",
102
105
  CreateTimelapse = "createTimelapse",
103
106
  RequestMissingFields = "requestMissingFields",
104
- RenderCharts = "renderCharts"
107
+ RenderCharts = "renderCharts",
108
+ SmartSearch = "smartSearch"
105
109
  }
106
110
  export type CopilotSystemToolCallResponse<I = unknown, O = unknown> = {
107
111
  toolId?: CopilotToolId;
108
112
  input?: I;
109
113
  output?: O;
114
+ isAgent?: boolean;
110
115
  };
111
116
  export type CopilotCamera = {
112
117
  name: string;
@@ -25,6 +25,7 @@ export type Media = {
25
25
  projectExid?: string;
26
26
  thumbnailUrl?: string;
27
27
  mediaUrl?: string;
28
+ camera?: string;
28
29
  };
29
30
  export declare enum MediaType {
30
31
  EditedImage = "edit",