@arcgis/ai-agents 5.1.0-next.83 → 5.1.0-next.85

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.
Files changed (46) hide show
  1. package/dist/agents/arcgisKnowledge/graph/arcgisKnowledgeGraph.d.ts +0 -6
  2. package/dist/agents/arcgisKnowledge/tools/applyLayout/adapter.d.ts +0 -4
  3. package/dist/agents/arcgisKnowledge/tools/changeNonspatialVisibility/adapter.d.ts +0 -4
  4. package/dist/agents/arcgisKnowledge/utils/dataTransformationUtils.d.ts +0 -6
  5. package/dist/agents/dataExploration/graph/dataExplorationGraph.d.ts +0 -6
  6. package/dist/agents/dataExploration/state/dataExplorationState.d.ts +2 -1
  7. package/dist/agents/dataExploration/tools/filterTools/clearFilters/adapter.d.ts +0 -2
  8. package/dist/agents/dataExploration/tools/filterTools/resetMap/adapter.d.ts +0 -2
  9. package/dist/agents/dataExploration/tools/filterTools/setFeatureEffect/adapter.d.ts +0 -13
  10. package/dist/agents/dataExploration/tools/queryTools/getAttribute/adapter.d.ts +0 -8
  11. package/dist/agents/dataExploration/tools/queryTools/getStatistics/adapter.d.ts +0 -12
  12. package/dist/agents/dataExploration/tools/queryTools/getTopFeatures/adapter.d.ts +0 -17
  13. package/dist/agents/dataExploration/tools/queryTools/queryFeatures/adapter.d.ts +0 -12
  14. package/dist/agents/help/graph/helpGraph.d.ts +0 -6
  15. package/dist/agents/layerStyling/graph/layerStylingGraph.d.ts +0 -6
  16. package/dist/agents/layerStyling/tools/applyChartRenderer/adapter.d.ts +0 -7
  17. package/dist/agents/layerStyling/tools/applyColorAgeRenderer/adapter.d.ts +0 -7
  18. package/dist/agents/layerStyling/tools/applyColorRenderer/adapter.d.ts +0 -7
  19. package/dist/agents/layerStyling/tools/applyColorSizeUnivariateRenderer/adapter.d.ts +0 -7
  20. package/dist/agents/layerStyling/tools/applyDotDensityRenderer/adapter.d.ts +0 -6
  21. package/dist/agents/layerStyling/tools/applyHeatmapRenderer/adapter.d.ts +0 -6
  22. package/dist/agents/layerStyling/tools/applyPredominanceRenderer/adapter.d.ts +0 -7
  23. package/dist/agents/layerStyling/tools/applyRelationshipRenderer/adapter.d.ts +0 -6
  24. package/dist/agents/layerStyling/tools/applySizeAgeRenderer/adapter.d.ts +0 -7
  25. package/dist/agents/layerStyling/tools/applySizeRenderer/adapter.d.ts +0 -7
  26. package/dist/agents/layerStyling/tools/applyTypeRenderer/adapter.d.ts +0 -7
  27. package/dist/agents/layerStyling/types/types.d.ts +0 -13
  28. package/dist/agents/navigation/graph/navigationGraph.d.ts +0 -6
  29. package/dist/agents/navigation/tools/goToAddress/adapter.d.ts +0 -4
  30. package/dist/agents/navigation/tools/goToBookmark/adapter.d.ts +0 -4
  31. package/dist/agents/navigation/tools/goToFeatures/adapter.d.ts +0 -5
  32. package/dist/agents/navigation/tools/goToFullExtent/adapter.d.ts +0 -2
  33. package/dist/agents/navigation/tools/goToHomeExtent/adapter.d.ts +0 -2
  34. package/dist/agents/navigation/tools/goToLayer/adapter.d.ts +0 -7
  35. package/dist/agents/navigation/tools/goToScale/adapter.d.ts +0 -4
  36. package/dist/agents/navigation/tools/goToViewpoint/adapter.d.ts +0 -9
  37. package/dist/agents/navigation/tools/goToZoom/adapter.d.ts +0 -4
  38. package/dist/agents/navigation/types/types.d.ts +0 -13
  39. package/dist/index.js +722 -719
  40. package/package.json +2 -2
  41. package/dist/agents/dataExploration/tools/filterTools/setDefinitionExpression/adapter.d.ts +0 -16
  42. package/dist/agents/dataExploration/tools/filterTools/setDefinitionExpression/core.d.ts +0 -2
  43. package/dist/agents/dataExploration/tools/filterTools/setDefinitionExpression/index.d.ts +0 -1
  44. package/dist/agents/dataExploration/tools/filterTools/setFeatureFilter/adapter.d.ts +0 -92
  45. package/dist/agents/dataExploration/tools/filterTools/setFeatureFilter/core.d.ts +0 -7
  46. package/dist/agents/dataExploration/tools/filterTools/setFeatureFilter/index.d.ts +0 -1
@@ -1,8 +1,2 @@
1
- import { StateGraph } from '@langchain/langgraph/web';
2
- import { ArcgisKnowledgeGraphStateType } from '../state/arcgisKnowledgeState';
3
1
  import { AgentRegistration } from '@arcgis/ai-orchestrator';
4
- /**
5
- * Builds the ArcgisKnowledge Agent graph (intent classification + tool execution).
6
- */
7
- export declare const createArcgisKnowledgeAgentGraph: () => StateGraph<ArcgisKnowledgeGraphStateType>;
8
2
  export declare const ArcgisKnowledgeAgent: AgentRegistration;
@@ -1,8 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function applyLayoutWrapper({ layout }: {
4
- layout: string;
5
- }, config?: RunnableConfig): Promise<string>;
6
2
  export declare const applyLayout: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
7
3
  layout: z.ZodEnum<{
8
4
  "basic-grid": "basic-grid";
@@ -1,8 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function changeNonspatialVisibilityWrapper({ setting }: {
4
- setting: string;
5
- }, config?: RunnableConfig): string;
6
2
  export declare const changeNonspatialVisibility: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
7
3
  setting: z.ZodEnum<{
8
4
  visible: "visible";
@@ -1,12 +1,6 @@
1
1
  import { IdTypePair } from '@arcgis/core/layers/knowledgeGraph/types.js';
2
2
  import { GraphAnyValue } from '@arcgis/core/rest/knowledgeGraph/GraphAnyValue.js';
3
- import { default as GraphNamedObject } from '@arcgis/core/rest/knowledgeGraph/GraphNamedObject.js';
4
- import { default as GraphObject } from '@arcgis/core/rest/knowledgeGraph/GraphObject.js';
5
3
  import { default as KnowledgeGraph } from '@arcgis/core/rest/knowledgeGraph/KnowledgeGraph.js';
6
- import { default as Path } from '@arcgis/core/rest/knowledgeGraph/Path.js';
7
4
  import { default as WebLinkChart } from '@arcgis/core/WebLinkChart.js';
8
5
  export declare function extractGraphNamedObjectsFromQueryValueRecursive(resultValue: GraphAnyValue, results: Map<string, IdTypePair>): void;
9
- export declare function isGraphNamedObject(item: GraphAnyValue): item is GraphNamedObject;
10
- export declare function isPathObject(item: GraphAnyValue): item is Path;
11
- export declare function isGraphObject(item: GraphAnyValue): item is GraphObject;
12
6
  export declare function getAllIdTypePairsFromLinkChart(linkChart: WebLinkChart, knowledgeGraph: KnowledgeGraph): IdTypePair[];
@@ -1,8 +1,2 @@
1
- import { StateGraph } from '@langchain/langgraph/web';
2
1
  import { AgentRegistration } from '@arcgis/ai-orchestrator';
3
- import { DataExplorationGraphStateType } from '../state/dataExplorationState';
4
- /**
5
- * Builds the Data Exploration Agent graph (intent classification + tool execution).
6
- */
7
- export declare const createDataExplorationAgentGraph: () => StateGraph<DataExplorationGraphStateType>;
8
2
  export declare const DataExplorationAgent: AgentRegistration;
@@ -1,4 +1,4 @@
1
- import { AgentExecutionContext, AgentStatus, VectorSearchFieldResults } from '@arcgis/ai-orchestrator';
1
+ import { AgentExecutionContext, AgentStatus, ChatHistory, VectorSearchFieldResults } from '@arcgis/ai-orchestrator';
2
2
  import { QueryResponse } from '../types/types';
3
3
  import { LayerFieldInfo } from '../../../types/types';
4
4
  export declare const DataExplorationState: import('@langchain/langgraph/web').AnnotationRoot<{
@@ -10,5 +10,6 @@ export declare const DataExplorationState: import('@langchain/langgraph/web').An
10
10
  vectorSearchFieldResults: import('@langchain/langgraph/web').LastValue<VectorSearchFieldResults>;
11
11
  layerFieldInfo: import('@langchain/langgraph/web').LastValue<LayerFieldInfo>;
12
12
  queryResponse: import('@langchain/langgraph/web').LastValue<QueryResponse[]>;
13
+ dataExplorationMessages: import('@langchain/langgraph/web').BaseChannel<ChatHistory, ChatHistory | import('@langchain/langgraph/web').OverwriteValue<ChatHistory>, unknown>;
13
14
  }>;
14
15
  export type DataExplorationGraphStateType = typeof DataExplorationState.State;
@@ -1,4 +1,2 @@
1
1
  import { default as z } from 'zod';
2
- import { RunnableConfig } from '@langchain/core/runnables';
3
- export declare const clearFiltersWrapper: (_input: Record<string, never>, config?: RunnableConfig) => Promise<string>;
4
2
  export declare const clearFiltersTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{}, z.core.$strip>, Record<string, never>, Record<string, never>, string, unknown, "clearFilters">;
@@ -1,4 +1,2 @@
1
1
  import { default as z } from 'zod';
2
- import { RunnableConfig } from '@langchain/core/runnables';
3
- export declare const resetMapWrapper: (_input: Record<string, never>, config?: RunnableConfig) => Promise<string>;
4
2
  export declare const resetMapTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{}, z.core.$strip>, Record<string, never>, Record<string, never>, string, unknown, "resetMap">;
@@ -1,17 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- import { GeometryConfig } from '../../../types/types';
4
- export declare const setFeatureEffectWrapper: ({ targetLayer, geometryFilter, useCurrentExtent, includedEffect, excludedEffect, }: {
5
- targetLayer: {
6
- layerId: string;
7
- where: string;
8
- objectIds?: number[];
9
- };
10
- geometryFilter?: GeometryConfig;
11
- useCurrentExtent?: boolean;
12
- includedEffect?: string;
13
- excludedEffect?: string;
14
- }, config?: RunnableConfig) => Promise<string>;
15
2
  export declare const setFeatureEffectTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
16
3
  targetLayer: z.ZodObject<{
17
4
  layerId: z.ZodString;
@@ -1,12 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function getAttributeWrapper({ layerId, fieldName, query }: {
4
- layerId: string;
5
- fieldName: string;
6
- query: {
7
- where: string;
8
- };
9
- }, config?: RunnableConfig): Promise<string>;
10
2
  export declare const getAttributeTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
11
3
  layerId: z.ZodString;
12
4
  fieldName: z.ZodString;
@@ -1,16 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- import { OutStatisticType } from '@arcgis/core/statistics/types.js';
4
- import { GeometryConfig } from '../../../types/types';
5
- export declare function getStatisticsWrapper({ targetLayer, fieldName, statisticType, geometryFilter, }: {
6
- targetLayer: {
7
- layerId: string;
8
- where: string;
9
- };
10
- fieldName: string;
11
- statisticType: OutStatisticType;
12
- geometryFilter?: GeometryConfig;
13
- }, config?: RunnableConfig): Promise<string>;
14
2
  export declare const getStatisticsTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
15
3
  targetLayer: z.ZodObject<{
16
4
  layerId: z.ZodString;
@@ -1,21 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- import { GeometryConfig } from '../../../types/types';
4
- export declare const getTopFeaturesWrapper: ({ targetLayer, topFilter, geometryFilter, useCurrentExtent, }: {
5
- targetLayer: {
6
- layerId: string;
7
- where: string;
8
- orderByFields: string[];
9
- outFields: string[];
10
- };
11
- topFilter: {
12
- topCount: number;
13
- orderByFields: string[];
14
- groupByFields: string[];
15
- };
16
- geometryFilter?: GeometryConfig;
17
- useCurrentExtent?: boolean;
18
- }, config?: RunnableConfig) => Promise<string>;
19
2
  export declare const getTopFeaturesTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
20
3
  targetLayer: z.ZodObject<{
21
4
  layerId: z.ZodString;
@@ -1,16 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- import { GeometryConfig } from '../../../types/types';
4
- export declare function queryFeaturesWrapper({ targetLayer, geometryFilter, useCurrentExtent, }: {
5
- targetLayer: {
6
- layerId: string;
7
- where: string;
8
- orderByFields: string[];
9
- outFields: string[];
10
- };
11
- geometryFilter?: GeometryConfig;
12
- useCurrentExtent?: boolean;
13
- }, config?: RunnableConfig): Promise<string>;
14
2
  export declare const queryFeaturesTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
15
3
  targetLayer: z.ZodObject<{
16
4
  layerId: z.ZodString;
@@ -1,8 +1,2 @@
1
- import { StateGraph } from '@langchain/langgraph/web';
2
- import { HelpGraphStateType } from '../state/helpState';
3
1
  import { AgentRegistration } from '@arcgis/ai-orchestrator';
4
- /**
5
- * Builds the Help Agent graph (intent classification + tool execution).
6
- */
7
- export declare const createHelpAgentGraph: () => StateGraph<HelpGraphStateType>;
8
2
  export declare const HelpAgent: AgentRegistration;
@@ -1,8 +1,2 @@
1
- import { StateGraph } from '@langchain/langgraph/web';
2
1
  import { AgentRegistration } from '@arcgis/ai-orchestrator';
3
- import { LayerStylingGraphStateType } from '../state/layerStylingState';
4
- /**
5
- * Builds the Layer Styling Agent graph (intent classification + tool execution).
6
- */
7
- export declare const createLayerStylingAgentGraph: () => StateGraph<LayerStylingGraphStateType>;
8
2
  export declare const LayerStylingAgent: AgentRegistration;
@@ -1,11 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function applyChartRendererWrapper({ layerId, fields, colorSchemes, includeSize, }: {
4
- layerId: string;
5
- fields: string[];
6
- colorSchemes?: string[];
7
- includeSize?: boolean;
8
- }, config?: RunnableConfig): Promise<string>;
9
2
  export declare const applyChartRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
10
3
  layerId: z.ZodString;
11
4
  fields: z.ZodArray<z.ZodString>;
@@ -1,11 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function applyColorAgeRendererWrapper({ layerId, fields, colorSchemes, theme, }: {
4
- layerId: string;
5
- fields: string[];
6
- colorSchemes?: string[];
7
- theme?: "above-and-below" | "above" | "below" | "centered-on" | "extremes" | "high-to-low";
8
- }, config?: RunnableConfig): Promise<string>;
9
2
  export declare const applyColorAgeRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
10
3
  layerId: z.ZodString;
11
4
  fields: z.ZodArray<z.ZodString>;
@@ -1,11 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function applyColorRendererWrapper({ layerId, fields, colorSchemes, theme, }: {
4
- layerId: string;
5
- fields: string[];
6
- colorSchemes?: string[];
7
- theme?: "above-and-below" | "above" | "below" | "centered-on" | "extremes" | "high-to-low";
8
- }, config?: RunnableConfig): Promise<string>;
9
2
  export declare const applyColorRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
10
3
  layerId: z.ZodString;
11
4
  fields: z.ZodArray<z.ZodString>;
@@ -1,11 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function applyColorSizeUnivariateRendererWrapper({ layerId, fields, colorSchemes, theme, }: {
4
- layerId: string;
5
- fields: string[];
6
- colorSchemes?: string[];
7
- theme?: "above-and-below" | "above" | "below" | "centered-on" | "extremes" | "high-to-low";
8
- }, config?: RunnableConfig): Promise<string>;
9
2
  export declare const applyColorSizeUnivariateRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
10
3
  layerId: z.ZodString;
11
4
  fields: z.ZodArray<z.ZodString>;
@@ -1,10 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function applyDotDensityRendererWrapper({ layerId, fields, colorSchemes, }: {
4
- layerId: string;
5
- fields: string[];
6
- colorSchemes?: string[];
7
- }, config?: RunnableConfig): Promise<string>;
8
2
  export declare const applyDotDensityRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
9
3
  layerId: z.ZodString;
10
4
  fields: z.ZodArray<z.ZodString>;
@@ -1,10 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function applyHeatmapRendererWrapper({ layerId, fields, colorSchemes, }: {
4
- layerId: string;
5
- fields: string[];
6
- colorSchemes?: string[];
7
- }, config?: RunnableConfig): Promise<string>;
8
2
  export declare const applyHeatmapRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
9
3
  layerId: z.ZodString;
10
4
  fields: z.ZodArray<z.ZodString>;
@@ -1,11 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function applyPredominanceRendererWrapper({ layerId, fields, colorSchemes, includeSize, }: {
4
- layerId: string;
5
- fields: string[];
6
- colorSchemes?: string[];
7
- includeSize?: boolean;
8
- }, config?: RunnableConfig): Promise<string>;
9
2
  export declare const applyPredominanceRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
10
3
  layerId: z.ZodString;
11
4
  fields: z.ZodArray<z.ZodString>;
@@ -1,10 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function applyRelationshipRendererWrapper({ layerId, fields, colorSchemes, }: {
4
- layerId: string;
5
- fields: string[];
6
- colorSchemes?: string[];
7
- }, config?: RunnableConfig): Promise<string>;
8
2
  export declare const applyRelationshipRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
9
3
  layerId: z.ZodString;
10
4
  fields: z.ZodArray<z.ZodString>;
@@ -1,11 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function applySizeAgeRendererWrapper({ layerId, fields, colorSchemes, theme, }: {
4
- layerId: string;
5
- fields: string[];
6
- colorSchemes?: string[];
7
- theme?: "above-and-below" | "above" | "below" | "centered-on" | "extremes" | "high-to-low";
8
- }, config?: RunnableConfig): Promise<string>;
9
2
  export declare const applySizeAgeRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
10
3
  layerId: z.ZodString;
11
4
  fields: z.ZodArray<z.ZodString>;
@@ -1,11 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function applySizeRendererWrapper({ layerId, fields, colorSchemes, theme, }: {
4
- layerId: string;
5
- fields: string[];
6
- colorSchemes?: string[];
7
- theme?: "above-and-below" | "above" | "below" | "centered-on" | "extremes" | "high-to-low";
8
- }, config?: RunnableConfig): Promise<string>;
9
2
  export declare const applySizeRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
10
3
  layerId: z.ZodString;
11
4
  fields: z.ZodArray<z.ZodString>;
@@ -1,11 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function applyTypeRendererWrapper({ layerId, fields, colorSchemes, theme, }: {
4
- layerId: string;
5
- fields: string[];
6
- colorSchemes?: string[];
7
- theme?: "above-and-below" | "above" | "below" | "centered-on" | "extremes" | "high-to-low";
8
- }, config?: RunnableConfig): Promise<string>;
9
2
  export declare const applyTypeRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
10
3
  layerId: z.ZodString;
11
4
  fields: z.ZodArray<z.ZodString>;
@@ -10,19 +10,6 @@ import { RendererParameters as pieChartCreateRendererParameters } from '@arcgis/
10
10
  import { VisualVariableParameters } from '@arcgis/core/smartMapping/renderers/opacity.js';
11
11
  import { HeatmapRendererParameters } from '@arcgis/core/smartMapping/renderers/heatmap.js';
12
12
  import { RendererParameters as dotDensityCreateRendererParameters } from '@arcgis/core/smartMapping/renderers/dotDensity.js';
13
- export type StyleVector = {
14
- id: string;
15
- label: string;
16
- description: string;
17
- keywords: string[];
18
- example: string;
19
- fields: string;
20
- score: number;
21
- };
22
- export type StyleVectors = StyleVector[];
23
- export type VectorSearchStyleResults = StyleVectors;
24
- /** Smart mapping data extracted from tool results */
25
- export type SupportedLayer = FeatureLayer;
26
13
  export type CreateRendererParams = AgeRendererParameters & colorCreateAgeRendererParameters & colorCreateContinuousRendererParameters & ContinuousRendererParameters & dotDensityCreateRendererParameters & HeatmapRendererParameters & pieChartCreateRendererParameters & predominanceCreateRendererParameters & relationshipCreateRendererParameters & RendererParameters & typeCreateRendererParameters & VisualVariableParameters;
27
14
  export type CreateStyleType = "chart-size" | "chart" | "color-age-size" | "color-age" | "color-classed" | "color-size-age" | "color-size-univariate" | "color-size" | "color" | "compare" | "Counts and Amounts (opacity)" | "Discrete Time Periods (categories)" | "dot-density" | "heatmap" | "predominance-size" | "predominance" | "relationship-size" | "relationship" | "size-age" | "size" | "type-size" | "type";
28
15
  export interface CreateStyleParams {
@@ -1,8 +1,2 @@
1
- import { StateGraph } from '@langchain/langgraph/web';
2
- import { NavigationGraphStateType } from '../state/navigationState';
3
1
  import { AgentRegistration } from '@arcgis/ai-orchestrator';
4
- /**
5
- * Builds the Navigation Agent graph (intent classification + tool execution).
6
- */
7
- export declare const createNavigationAgentGraph: () => StateGraph<NavigationGraphStateType>;
8
2
  export declare const NavigationAgent: AgentRegistration;
@@ -1,8 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function goToAddressWrapper({ address }: {
4
- address: string;
5
- }, config?: RunnableConfig): Promise<string>;
6
2
  export declare const goToAddressTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
7
3
  address: z.ZodString;
8
4
  }, z.core.$strip>, {
@@ -1,8 +1,4 @@
1
1
  import { z } from 'zod';
2
- import { RunnableConfig } from '@langchain/core/runnables';
3
- export declare function goToBookmarkWrapper({ bookmarkName }: {
4
- bookmarkName: string;
5
- }, config?: RunnableConfig): Promise<string>;
6
2
  export declare const goToBookmarkTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
7
3
  bookmarkName: z.ZodString;
8
4
  }, z.core.$strip>, {
@@ -1,9 +1,4 @@
1
1
  import { z } from 'zod';
2
- import { RunnableConfig } from '@langchain/core/runnables';
3
- export declare function goToFeaturesWrapper({ layerId, where }: {
4
- layerId: string;
5
- where: string;
6
- }, config?: RunnableConfig): Promise<string>;
7
2
  export declare const goToFeaturesTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
8
3
  layerId: z.ZodString;
9
4
  where: z.ZodString;
@@ -1,4 +1,2 @@
1
1
  import { z } from 'zod';
2
- import { RunnableConfig } from '@langchain/core/runnables';
3
- export declare function goToFullExtentWrapper(_input: string, config?: RunnableConfig): Promise<string>;
4
2
  export declare const goToFullExtentTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{}, z.core.$strip>, string, Record<string, never>, string, unknown, "goToFullExtent">;
@@ -1,4 +1,2 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function goToHomeExtentWrapper(_input: string, config?: RunnableConfig): Promise<string>;
4
2
  export declare const goToHomeExtentTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{}, z.core.$strip>, string, Record<string, never>, string, unknown, "goToHomeExtent">;
@@ -1,11 +1,4 @@
1
1
  import { z } from 'zod';
2
- import { RunnableConfig } from '@langchain/core/runnables';
3
- export declare function goToLayerWrapper({ layerId }: {
4
- layerId: string;
5
- }, config?: RunnableConfig): Promise<string>;
6
- export declare const goToLayerSchema: z.ZodObject<{
7
- layerId: z.ZodString;
8
- }, z.core.$strip>;
9
2
  export declare const goToLayerTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
10
3
  layerId: z.ZodString;
11
4
  }, z.core.$strip>, {
@@ -1,8 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function goToScaleWrapper({ scale }: {
4
- scale: number;
5
- }, config?: RunnableConfig): Promise<string>;
6
2
  export declare const goToScaleTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
7
3
  scale: z.ZodNumber;
8
4
  }, z.core.$strip>, {
@@ -1,13 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function goToViewpointWrapper({ center, zoom, scale, }: {
4
- center: {
5
- longitude: number;
6
- latitude: number;
7
- };
8
- zoom?: number;
9
- scale?: number;
10
- }, config?: RunnableConfig): Promise<string>;
11
2
  export declare const goToViewpointTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
12
3
  center: z.ZodObject<{
13
4
  longitude: z.ZodNumber;
@@ -1,8 +1,4 @@
1
- import { RunnableConfig } from '@langchain/core/runnables';
2
1
  import { default as z } from 'zod';
3
- export declare function goToZoomWrapper({ zoom }: {
4
- zoom: number;
5
- }, config?: RunnableConfig): Promise<string>;
6
2
  export declare const goToZoomTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
7
3
  zoom: z.ZodNumber;
8
4
  }, z.core.$strip>, {
@@ -1,17 +1,4 @@
1
- import { default as SpatialReference } from '@arcgis/core/geometry/SpatialReference.js';
2
1
  import { AIMessage } from '@langchain/core/messages';
3
- export interface GeocodeResponse {
4
- candidates?: {
5
- address: string;
6
- extent?: {
7
- xmin: number;
8
- ymin: number;
9
- xmax: number;
10
- ymax: number;
11
- spatialReference: SpatialReference;
12
- };
13
- }[];
14
- }
15
2
  export type NavigationInternalState = {
16
3
  toolCallMessage?: AIMessage;
17
4
  };