@arcgis/ai-agents 5.0.0-next.133
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.
- package/LICENSE.md +17 -0
- package/README.md +11 -0
- package/dist/agents/dataExploration/context/dataExplorationContext.d.ts +8 -0
- package/dist/agents/dataExploration/context/getDataExplorationContext.d.ts +3 -0
- package/dist/agents/dataExploration/graph/dataExplorationGraph.d.ts +8 -0
- package/dist/agents/dataExploration/index.d.ts +2 -0
- package/dist/agents/dataExploration/nodes/dataExplorationExit.d.ts +3 -0
- package/dist/agents/dataExploration/nodes/fieldStatistics.d.ts +3 -0
- package/dist/agents/dataExploration/nodes/layerFilterLLM.d.ts +3 -0
- package/dist/agents/dataExploration/nodes/layerFilterToolCalling.d.ts +3 -0
- package/dist/agents/dataExploration/nodes/layerQueryLLM.d.ts +3 -0
- package/dist/agents/dataExploration/nodes/layerQueryToolCalling.d.ts +3 -0
- package/dist/agents/dataExploration/nodes/requireDataExplorationServices.d.ts +7 -0
- package/dist/agents/dataExploration/nodes/summarizeQueryResponseLLM.d.ts +3 -0
- package/dist/agents/dataExploration/nodes/vectorSearchFields.d.ts +3 -0
- package/dist/agents/dataExploration/nodes/vectorSearchLayers.d.ts +3 -0
- package/dist/agents/dataExploration/state/dataExplorationState.d.ts +12 -0
- package/dist/agents/dataExploration/tools/filterTools/setDefinitionExpression/adapter.d.ts +22 -0
- package/dist/agents/dataExploration/tools/filterTools/setDefinitionExpression/core.d.ts +1 -0
- package/dist/agents/dataExploration/tools/filterTools/setDefinitionExpression/index.d.ts +1 -0
- package/dist/agents/dataExploration/tools/filterTools/setFeatureEffect/adapter.d.ts +99 -0
- package/dist/agents/dataExploration/tools/filterTools/setFeatureEffect/core.d.ts +5 -0
- package/dist/agents/dataExploration/tools/filterTools/setFeatureEffect/index.d.ts +1 -0
- package/dist/agents/dataExploration/tools/filterTools/setFeatureFilter/adapter.d.ts +87 -0
- package/dist/agents/dataExploration/tools/filterTools/setFeatureFilter/core.d.ts +5 -0
- package/dist/agents/dataExploration/tools/filterTools/setFeatureFilter/index.d.ts +1 -0
- package/dist/agents/dataExploration/tools/index.d.ts +553 -0
- package/dist/agents/dataExploration/tools/queryTools/getAttribute/adapter.d.ts +44 -0
- package/dist/agents/dataExploration/tools/queryTools/getAttribute/core.d.ts +4 -0
- package/dist/agents/dataExploration/tools/queryTools/getAttribute/index.d.ts +1 -0
- package/dist/agents/dataExploration/tools/queryTools/getStatistics/adapter.d.ts +90 -0
- package/dist/agents/dataExploration/tools/queryTools/getStatistics/core.d.ts +14 -0
- package/dist/agents/dataExploration/tools/queryTools/getStatistics/index.d.ts +1 -0
- package/dist/agents/dataExploration/tools/queryTools/getTopFeatures/adapter.d.ts +131 -0
- package/dist/agents/dataExploration/tools/queryTools/getTopFeatures/core.d.ts +15 -0
- package/dist/agents/dataExploration/tools/queryTools/getTopFeatures/index.d.ts +1 -0
- package/dist/agents/dataExploration/tools/queryTools/queryFeatures/adapter.d.ts +175 -0
- package/dist/agents/dataExploration/tools/queryTools/queryFeatures/core.d.ts +7 -0
- package/dist/agents/dataExploration/tools/queryTools/queryFeatures/index.d.ts +1 -0
- package/dist/agents/dataExploration/types/types.d.ts +27 -0
- package/dist/agents/dataExploration/utils/getDomainName.d.ts +2 -0
- package/dist/agents/dataExploration/utils/getGeometry.d.ts +8 -0
- package/dist/agents/dataExploration/utils/zoomToWhereClause.d.ts +4 -0
- package/dist/agents/layerFilter/context/getLayerFilterContext.d.ts +3 -0
- package/dist/agents/layerFilter/context/layerFilterContext.d.ts +8 -0
- package/dist/agents/layerFilter/graph/layerFilterGraph.d.ts +8 -0
- package/dist/agents/layerFilter/index.d.ts +2 -0
- package/dist/agents/layerFilter/nodes/fieldStatistics.d.ts +3 -0
- package/dist/agents/layerFilter/nodes/layerFilterExit.d.ts +3 -0
- package/dist/agents/layerFilter/nodes/layerFilterLLM.d.ts +3 -0
- package/dist/agents/layerFilter/nodes/layerFilterToolCalling.d.ts +3 -0
- package/dist/agents/layerFilter/nodes/requireLayerFilterServices.d.ts +7 -0
- package/dist/agents/layerFilter/nodes/vectorSearchFields.d.ts +3 -0
- package/dist/agents/layerFilter/nodes/vectorSearchLayers.d.ts +3 -0
- package/dist/agents/layerFilter/state/layerFilterState.d.ts +10 -0
- package/dist/agents/layerFilter/tools/index.d.ts +168 -0
- package/dist/agents/layerFilter/tools/setDefinitionExpression/adapter.d.ts +22 -0
- package/dist/agents/layerFilter/tools/setDefinitionExpression/core.d.ts +1 -0
- package/dist/agents/layerFilter/tools/setDefinitionExpression/index.d.ts +1 -0
- package/dist/agents/layerFilter/tools/setFeatureEffect/adapter.d.ts +99 -0
- package/dist/agents/layerFilter/tools/setFeatureEffect/core.d.ts +5 -0
- package/dist/agents/layerFilter/tools/setFeatureEffect/index.d.ts +1 -0
- package/dist/agents/layerFilter/tools/setFeatureFilter/adapter.d.ts +87 -0
- package/dist/agents/layerFilter/tools/setFeatureFilter/core.d.ts +5 -0
- package/dist/agents/layerFilter/tools/setFeatureFilter/index.d.ts +1 -0
- package/dist/agents/layerFilter/types/types.d.ts +9 -0
- package/dist/agents/layerFilter/utils/getGeometryForFilter.d.ts +12 -0
- package/dist/agents/layerFilter/utils/zoomToWhereClause.d.ts +1 -0
- package/dist/agents/layerQuery/context/getLayerQueryContext.d.ts +3 -0
- package/dist/agents/layerQuery/context/layerQueryContext.d.ts +8 -0
- package/dist/agents/layerQuery/graph/layerQueryGraph.d.ts +8 -0
- package/dist/agents/layerQuery/index.d.ts +2 -0
- package/dist/agents/layerQuery/nodes/fieldStatistics.d.ts +3 -0
- package/dist/agents/layerQuery/nodes/layerQueryExit.d.ts +3 -0
- package/dist/agents/layerQuery/nodes/layerQueryLLM.d.ts +3 -0
- package/dist/agents/layerQuery/nodes/layerQueryToolCalling.d.ts +3 -0
- package/dist/agents/layerQuery/nodes/requireLayerQueryServices.d.ts +7 -0
- package/dist/agents/layerQuery/nodes/summarizeQueryResponseLLM.d.ts +3 -0
- package/dist/agents/layerQuery/nodes/vectorSearchFields.d.ts +3 -0
- package/dist/agents/layerQuery/nodes/vectorSearchLayers.d.ts +3 -0
- package/dist/agents/layerQuery/state/layerQueryState.d.ts +12 -0
- package/dist/agents/layerQuery/tools/getAttribute/adapter.d.ts +44 -0
- package/dist/agents/layerQuery/tools/getAttribute/core.d.ts +4 -0
- package/dist/agents/layerQuery/tools/getAttribute/index.d.ts +1 -0
- package/dist/agents/layerQuery/tools/getStatistics/adapter.d.ts +90 -0
- package/dist/agents/layerQuery/tools/getStatistics/core.d.ts +14 -0
- package/dist/agents/layerQuery/tools/getStatistics/index.d.ts +1 -0
- package/dist/agents/layerQuery/tools/getTopFeatures/adapter.d.ts +131 -0
- package/dist/agents/layerQuery/tools/getTopFeatures/core.d.ts +14 -0
- package/dist/agents/layerQuery/tools/getTopFeatures/index.d.ts +1 -0
- package/dist/agents/layerQuery/tools/index.d.ts +304 -0
- package/dist/agents/layerQuery/tools/queryFeatures/adapter.d.ts +93 -0
- package/dist/agents/layerQuery/tools/queryFeatures/core.d.ts +7 -0
- package/dist/agents/layerQuery/tools/queryFeatures/index.d.ts +1 -0
- package/dist/agents/layerQuery/types/types.d.ts +15 -0
- package/dist/agents/layerQuery/utils/getGeometryForQuery.d.ts +6 -0
- package/dist/agents/layerStyling/context/getLayerStylingContext.d.ts +3 -0
- package/dist/agents/layerStyling/context/layerStylingContext.d.ts +8 -0
- package/dist/agents/layerStyling/graph/layerStylingGraph.d.ts +8 -0
- package/dist/agents/layerStyling/index.d.ts +2 -0
- package/dist/agents/layerStyling/nodes/layerFieldInfo.d.ts +3 -0
- package/dist/agents/layerStyling/nodes/layerSelectionHITL.d.ts +9 -0
- package/dist/agents/layerStyling/nodes/layerStylingExit.d.ts +3 -0
- package/dist/agents/layerStyling/nodes/layerStylingLLM.d.ts +3 -0
- package/dist/agents/layerStyling/nodes/layerStylingToolCalling.d.ts +3 -0
- package/dist/agents/layerStyling/nodes/requireLayerStylingServices.d.ts +7 -0
- package/dist/agents/layerStyling/nodes/vectorSearchFields.d.ts +3 -0
- package/dist/agents/layerStyling/nodes/vectorSearchLayers.d.ts +3 -0
- package/dist/agents/layerStyling/state/layerStylingState.d.ts +11 -0
- package/dist/agents/layerStyling/tools/applyChartRenderer/adapter.d.ts +34 -0
- package/dist/agents/layerStyling/tools/applyChartRenderer/core.d.ts +10 -0
- package/dist/agents/layerStyling/tools/applyChartRenderer/index.d.ts +1 -0
- package/dist/agents/layerStyling/tools/applyColorAgeRenderer/adapter.d.ts +34 -0
- package/dist/agents/layerStyling/tools/applyColorAgeRenderer/core.d.ts +10 -0
- package/dist/agents/layerStyling/tools/applyColorAgeRenderer/index.d.ts +1 -0
- package/dist/agents/layerStyling/tools/applyColorRenderer/adapter.d.ts +34 -0
- package/dist/agents/layerStyling/tools/applyColorRenderer/core.d.ts +10 -0
- package/dist/agents/layerStyling/tools/applyColorRenderer/index.d.ts +1 -0
- package/dist/agents/layerStyling/tools/applyColorSizeUnivariateRenderer/adapter.d.ts +34 -0
- package/dist/agents/layerStyling/tools/applyColorSizeUnivariateRenderer/core.d.ts +10 -0
- package/dist/agents/layerStyling/tools/applyColorSizeUnivariateRenderer/index.d.ts +1 -0
- package/dist/agents/layerStyling/tools/applyDotDensityRenderer/adapter.d.ts +28 -0
- package/dist/agents/layerStyling/tools/applyDotDensityRenderer/core.d.ts +9 -0
- package/dist/agents/layerStyling/tools/applyDotDensityRenderer/index.d.ts +1 -0
- package/dist/agents/layerStyling/tools/applyHeatmapRenderer/adapter.d.ts +28 -0
- package/dist/agents/layerStyling/tools/applyHeatmapRenderer/core.d.ts +9 -0
- package/dist/agents/layerStyling/tools/applyHeatmapRenderer/index.d.ts +1 -0
- package/dist/agents/layerStyling/tools/applyPredominanceRenderer/adapter.d.ts +34 -0
- package/dist/agents/layerStyling/tools/applyPredominanceRenderer/core.d.ts +10 -0
- package/dist/agents/layerStyling/tools/applyPredominanceRenderer/index.d.ts +1 -0
- package/dist/agents/layerStyling/tools/applyRelationshipRenderer/adapter.d.ts +28 -0
- package/dist/agents/layerStyling/tools/applyRelationshipRenderer/core.d.ts +9 -0
- package/dist/agents/layerStyling/tools/applyRelationshipRenderer/index.d.ts +1 -0
- package/dist/agents/layerStyling/tools/applySizeAgeRenderer/adapter.d.ts +34 -0
- package/dist/agents/layerStyling/tools/applySizeAgeRenderer/core.d.ts +10 -0
- package/dist/agents/layerStyling/tools/applySizeAgeRenderer/index.d.ts +1 -0
- package/dist/agents/layerStyling/tools/applySizeRenderer/adapter.d.ts +34 -0
- package/dist/agents/layerStyling/tools/applySizeRenderer/core.d.ts +10 -0
- package/dist/agents/layerStyling/tools/applySizeRenderer/index.d.ts +1 -0
- package/dist/agents/layerStyling/tools/applyTypeRenderer/adapter.d.ts +34 -0
- package/dist/agents/layerStyling/tools/applyTypeRenderer/core.d.ts +10 -0
- package/dist/agents/layerStyling/tools/applyTypeRenderer/index.d.ts +1 -0
- package/dist/agents/layerStyling/tools/index.d.ts +71 -0
- package/dist/agents/layerStyling/types/types.d.ts +23 -0
- package/dist/agents/layerStyling/utils/renderers/chart.d.ts +3 -0
- package/dist/agents/layerStyling/utils/renderers/color-age.d.ts +3 -0
- package/dist/agents/layerStyling/utils/renderers/color-size-univariate.d.ts +3 -0
- package/dist/agents/layerStyling/utils/renderers/color.d.ts +3 -0
- package/dist/agents/layerStyling/utils/renderers/dot-density.d.ts +3 -0
- package/dist/agents/layerStyling/utils/renderers/heatmap.d.ts +3 -0
- package/dist/agents/layerStyling/utils/renderers/predominance.d.ts +3 -0
- package/dist/agents/layerStyling/utils/renderers/relationship.d.ts +3 -0
- package/dist/agents/layerStyling/utils/renderers/size-age.d.ts +3 -0
- package/dist/agents/layerStyling/utils/renderers/size.d.ts +3 -0
- package/dist/agents/layerStyling/utils/renderers/type.d.ts +3 -0
- package/dist/agents/linkChart/context/getLinkChartContext.d.ts +3 -0
- package/dist/agents/linkChart/context/linkChartContext.d.ts +8 -0
- package/dist/agents/linkChart/graph/linkChartGraph.d.ts +8 -0
- package/dist/agents/linkChart/index.d.ts +2 -0
- package/dist/agents/linkChart/nodes/linkChartIntentLLM.d.ts +2 -0
- package/dist/agents/linkChart/nodes/linkChartLLM.d.ts +3 -0
- package/dist/agents/linkChart/nodes/linkChartToolCalling.d.ts +3 -0
- package/dist/agents/linkChart/nodes/requireLinkChartServices.d.ts +6 -0
- package/dist/agents/linkChart/state/linkChartState.d.ts +7 -0
- package/dist/agents/linkChart/tools/applyLayout/adapter.d.ts +16 -0
- package/dist/agents/linkChart/tools/applyLayout/core.d.ts +2 -0
- package/dist/agents/linkChart/tools/applyLayout/index.d.ts +1 -0
- package/dist/agents/linkChart/tools/changeNonspatialVisibility/adapter.d.ts +16 -0
- package/dist/agents/linkChart/tools/changeNonspatialVisibility/core.d.ts +1 -0
- package/dist/agents/linkChart/tools/changeNonspatialVisibility/index.d.ts +1 -0
- package/dist/agents/linkChart/tools/index.d.ts +21 -0
- package/dist/agents/navigation/context/getNavigationContext.d.ts +3 -0
- package/dist/agents/navigation/context/navigationContext.d.ts +8 -0
- package/dist/agents/navigation/graph/navigationGraph.d.ts +8 -0
- package/dist/agents/navigation/index.d.ts +2 -0
- package/dist/agents/navigation/nodes/navigationIntentLLM.d.ts +2 -0
- package/dist/agents/navigation/nodes/navigationLLM.d.ts +3 -0
- package/dist/agents/navigation/nodes/navigationToolCalling.d.ts +3 -0
- package/dist/agents/navigation/nodes/requireNavigationServices.d.ts +7 -0
- package/dist/agents/navigation/nodes/vectorSearchFields.d.ts +3 -0
- package/dist/agents/navigation/nodes/vectorSearchLayers.d.ts +3 -0
- package/dist/agents/navigation/state/navigationState.d.ts +19 -0
- package/dist/agents/navigation/tools/goToAddress/adapter.d.ts +16 -0
- package/dist/agents/navigation/tools/goToAddress/core.d.ts +1 -0
- package/dist/agents/navigation/tools/goToAddress/index.d.ts +1 -0
- package/dist/agents/navigation/tools/goToBookmark/adapter.d.ts +16 -0
- package/dist/agents/navigation/tools/goToBookmark/core.d.ts +1 -0
- package/dist/agents/navigation/tools/goToBookmark/index.d.ts +1 -0
- package/dist/agents/navigation/tools/goToFeatures/adapter.d.ts +22 -0
- package/dist/agents/navigation/tools/goToFeatures/core.d.ts +1 -0
- package/dist/agents/navigation/tools/goToFeatures/index.d.ts +1 -0
- package/dist/agents/navigation/tools/goToFullExtent/adapter.d.ts +4 -0
- package/dist/agents/navigation/tools/goToFullExtent/core.d.ts +1 -0
- package/dist/agents/navigation/tools/goToFullExtent/index.d.ts +1 -0
- package/dist/agents/navigation/tools/goToHomeExtent/adapter.d.ts +4 -0
- package/dist/agents/navigation/tools/goToHomeExtent/core.d.ts +1 -0
- package/dist/agents/navigation/tools/goToHomeExtent/index.d.ts +1 -0
- package/dist/agents/navigation/tools/goToLayer/adapter.d.ts +23 -0
- package/dist/agents/navigation/tools/goToLayer/core.d.ts +1 -0
- package/dist/agents/navigation/tools/goToLayer/index.d.ts +1 -0
- package/dist/agents/navigation/tools/goToScale/adapter.d.ts +16 -0
- package/dist/agents/navigation/tools/goToScale/core.d.ts +1 -0
- package/dist/agents/navigation/tools/goToScale/index.d.ts +1 -0
- package/dist/agents/navigation/tools/goToViewpoint/adapter.d.ts +52 -0
- package/dist/agents/navigation/tools/goToViewpoint/core.d.ts +7 -0
- package/dist/agents/navigation/tools/goToViewpoint/index.d.ts +1 -0
- package/dist/agents/navigation/tools/goToZoom/adapter.d.ts +16 -0
- package/dist/agents/navigation/tools/goToZoom/core.d.ts +1 -0
- package/dist/agents/navigation/tools/goToZoom/index.d.ts +1 -0
- package/dist/agents/navigation/tools/index.d.ts +107 -0
- package/dist/agents/navigation/types/types.d.ts +12 -0
- package/dist/data_explore_filter_prompt-CpgEu_mo.js +79 -0
- package/dist/data_explore_query_prompt-CtSDS9l_.js +90 -0
- package/dist/data_query_prompt-N4YzctpM.js +61 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +3345 -0
- package/dist/layer_filter_prompt-0ujK87_y.js +4 -0
- package/dist/layer_styling_prompt-ybkb5Jgq.js +71 -0
- package/dist/link_chart_intent_prompt-C1t8tzl2.js +19 -0
- package/dist/link_chart_tool_prompt-IJcTG4Ya.js +16 -0
- package/dist/navigation_intent_prompt-DEERQeWD.js +19 -0
- package/dist/navigation_tool_prompt-C2jIBkeu.js +27 -0
- package/dist/summarize_query_response_prompt-DBJy1AAu.js +30 -0
- package/dist/types/types.d.ts +6 -0
- package/dist/utils/contextSelectors.d.ts +17 -0
- package/dist/utils/fetchService.d.ts +6 -0
- package/dist/utils/fieldStatistics.d.ts +3 -0
- package/dist/utils/getFieldStatistics.d.ts +3 -0
- package/dist/utils/getPrompt.d.ts +1 -0
- package/dist/utils/requireAgentServices.d.ts +9 -0
- package/dist/utils/timeZone.d.ts +8 -0
- package/dist/utils/toolCallResponse.d.ts +3 -0
- package/dist/utils/useClientSide.d.ts +6 -0
- package/package.json +28 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { RunnableConfig } from '@langchain/core/runnables';
|
|
2
|
+
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
|
+
export declare const applyColorRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
|
|
10
|
+
layerId: z.ZodString;
|
|
11
|
+
fields: z.ZodArray<z.ZodString, "many">;
|
|
12
|
+
colorSchemes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13
|
+
theme: z.ZodOptional<z.ZodEnum<["above-and-below", "above", "below", "centered-on", "extremes", "high-to-low"]>>;
|
|
14
|
+
}, "strip", z.ZodTypeAny, {
|
|
15
|
+
layerId: string;
|
|
16
|
+
fields: string[];
|
|
17
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
18
|
+
colorSchemes?: string[] | undefined;
|
|
19
|
+
}, {
|
|
20
|
+
layerId: string;
|
|
21
|
+
fields: string[];
|
|
22
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
23
|
+
colorSchemes?: string[] | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
layerId: string;
|
|
26
|
+
fields: string[];
|
|
27
|
+
colorSchemes?: string[];
|
|
28
|
+
theme?: "above-and-below" | "above" | "below" | "centered-on" | "extremes" | "high-to-low";
|
|
29
|
+
}, {
|
|
30
|
+
layerId: string;
|
|
31
|
+
fields: string[];
|
|
32
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
33
|
+
colorSchemes?: string[] | undefined;
|
|
34
|
+
}, string>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
interface ApplyColorRendererParams {
|
|
2
|
+
arcgisMap: __esri.Map;
|
|
3
|
+
arcgisMapView: __esri.MapView;
|
|
4
|
+
layerId: string;
|
|
5
|
+
fields: string[];
|
|
6
|
+
colorSchemes?: string[];
|
|
7
|
+
theme?: "above-and-below" | "above" | "below" | "centered-on" | "extremes" | "high-to-low";
|
|
8
|
+
}
|
|
9
|
+
export declare function applyColorRenderer({ arcgisMap, arcgisMapView, layerId, fields, colorSchemes, theme, }: ApplyColorRendererParams): Promise<string>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './adapter';
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { RunnableConfig } from '@langchain/core/runnables';
|
|
2
|
+
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
|
+
export declare const applyColorSizeUnivariateRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
|
|
10
|
+
layerId: z.ZodString;
|
|
11
|
+
fields: z.ZodArray<z.ZodString, "many">;
|
|
12
|
+
colorSchemes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13
|
+
theme: z.ZodOptional<z.ZodEnum<["above-and-below", "above", "below", "centered-on", "extremes", "high-to-low"]>>;
|
|
14
|
+
}, "strip", z.ZodTypeAny, {
|
|
15
|
+
layerId: string;
|
|
16
|
+
fields: string[];
|
|
17
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
18
|
+
colorSchemes?: string[] | undefined;
|
|
19
|
+
}, {
|
|
20
|
+
layerId: string;
|
|
21
|
+
fields: string[];
|
|
22
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
23
|
+
colorSchemes?: string[] | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
layerId: string;
|
|
26
|
+
fields: string[];
|
|
27
|
+
colorSchemes?: string[];
|
|
28
|
+
theme?: "above-and-below" | "above" | "below" | "centered-on" | "extremes" | "high-to-low";
|
|
29
|
+
}, {
|
|
30
|
+
layerId: string;
|
|
31
|
+
fields: string[];
|
|
32
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
33
|
+
colorSchemes?: string[] | undefined;
|
|
34
|
+
}, string>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
interface ApplyColorSizeUnivariateRendererParams {
|
|
2
|
+
arcgisMap: __esri.Map;
|
|
3
|
+
arcgisMapView: __esri.MapView;
|
|
4
|
+
layerId: string;
|
|
5
|
+
fields: string[];
|
|
6
|
+
colorSchemes?: string[];
|
|
7
|
+
theme?: "above-and-below" | "above" | "below" | "centered-on" | "extremes" | "high-to-low";
|
|
8
|
+
}
|
|
9
|
+
export declare function applyColorSizeUnivariateRenderer({ arcgisMap, arcgisMapView, layerId, fields, colorSchemes, theme, }: ApplyColorSizeUnivariateRendererParams): Promise<string>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './adapter';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { RunnableConfig } from '@langchain/core/runnables';
|
|
2
|
+
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
|
+
export declare const applyDotDensityRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
|
|
9
|
+
layerId: z.ZodString;
|
|
10
|
+
fields: z.ZodArray<z.ZodString, "many">;
|
|
11
|
+
colorSchemes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12
|
+
}, "strip", z.ZodTypeAny, {
|
|
13
|
+
layerId: string;
|
|
14
|
+
fields: string[];
|
|
15
|
+
colorSchemes?: string[] | undefined;
|
|
16
|
+
}, {
|
|
17
|
+
layerId: string;
|
|
18
|
+
fields: string[];
|
|
19
|
+
colorSchemes?: string[] | undefined;
|
|
20
|
+
}>, {
|
|
21
|
+
layerId: string;
|
|
22
|
+
fields: string[];
|
|
23
|
+
colorSchemes?: string[];
|
|
24
|
+
}, {
|
|
25
|
+
layerId: string;
|
|
26
|
+
fields: string[];
|
|
27
|
+
colorSchemes?: string[] | undefined;
|
|
28
|
+
}, string>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
interface ApplyDotDensityRendererParams {
|
|
2
|
+
arcgisMap: __esri.Map;
|
|
3
|
+
arcgisMapView: __esri.MapView;
|
|
4
|
+
layerId: string;
|
|
5
|
+
fields: string[];
|
|
6
|
+
colorSchemes?: string[];
|
|
7
|
+
}
|
|
8
|
+
export declare function applyDotDensityRenderer({ arcgisMap, arcgisMapView, layerId, fields, colorSchemes, }: ApplyDotDensityRendererParams): Promise<string>;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './adapter';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { RunnableConfig } from '@langchain/core/runnables';
|
|
2
|
+
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
|
+
export declare const applyHeatmapRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
|
|
9
|
+
layerId: z.ZodString;
|
|
10
|
+
fields: z.ZodArray<z.ZodString, "many">;
|
|
11
|
+
colorSchemes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12
|
+
}, "strip", z.ZodTypeAny, {
|
|
13
|
+
layerId: string;
|
|
14
|
+
fields: string[];
|
|
15
|
+
colorSchemes?: string[] | undefined;
|
|
16
|
+
}, {
|
|
17
|
+
layerId: string;
|
|
18
|
+
fields: string[];
|
|
19
|
+
colorSchemes?: string[] | undefined;
|
|
20
|
+
}>, {
|
|
21
|
+
layerId: string;
|
|
22
|
+
fields: string[];
|
|
23
|
+
colorSchemes?: string[];
|
|
24
|
+
}, {
|
|
25
|
+
layerId: string;
|
|
26
|
+
fields: string[];
|
|
27
|
+
colorSchemes?: string[] | undefined;
|
|
28
|
+
}, string>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
interface ApplyHeatmapRendererParams {
|
|
2
|
+
arcgisMap: __esri.Map;
|
|
3
|
+
arcgisMapView: __esri.MapView;
|
|
4
|
+
layerId: string;
|
|
5
|
+
fields: string[];
|
|
6
|
+
colorSchemes?: string[];
|
|
7
|
+
}
|
|
8
|
+
export declare function applyHeatmapRenderer({ arcgisMap, arcgisMapView, layerId, fields, colorSchemes, }: ApplyHeatmapRendererParams): Promise<string>;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './adapter';
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { RunnableConfig } from '@langchain/core/runnables';
|
|
2
|
+
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
|
+
export declare const applyPredominanceRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
|
|
10
|
+
layerId: z.ZodString;
|
|
11
|
+
fields: z.ZodArray<z.ZodString, "many">;
|
|
12
|
+
colorSchemes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13
|
+
includeSize: z.ZodOptional<z.ZodBoolean>;
|
|
14
|
+
}, "strip", z.ZodTypeAny, {
|
|
15
|
+
layerId: string;
|
|
16
|
+
fields: string[];
|
|
17
|
+
colorSchemes?: string[] | undefined;
|
|
18
|
+
includeSize?: boolean | undefined;
|
|
19
|
+
}, {
|
|
20
|
+
layerId: string;
|
|
21
|
+
fields: string[];
|
|
22
|
+
colorSchemes?: string[] | undefined;
|
|
23
|
+
includeSize?: boolean | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
layerId: string;
|
|
26
|
+
fields: string[];
|
|
27
|
+
colorSchemes?: string[];
|
|
28
|
+
includeSize?: boolean;
|
|
29
|
+
}, {
|
|
30
|
+
layerId: string;
|
|
31
|
+
fields: string[];
|
|
32
|
+
colorSchemes?: string[] | undefined;
|
|
33
|
+
includeSize?: boolean | undefined;
|
|
34
|
+
}, string>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
interface ApplyPredominanceRendererParams {
|
|
2
|
+
arcgisMap: __esri.Map;
|
|
3
|
+
arcgisMapView: __esri.MapView;
|
|
4
|
+
layerId: string;
|
|
5
|
+
fields: string[];
|
|
6
|
+
colorSchemes?: string[];
|
|
7
|
+
includeSize?: boolean;
|
|
8
|
+
}
|
|
9
|
+
export declare function applyPredominanceRenderer({ arcgisMap, arcgisMapView, layerId, fields, colorSchemes, includeSize, }: ApplyPredominanceRendererParams): Promise<string>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './adapter';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { RunnableConfig } from '@langchain/core/runnables';
|
|
2
|
+
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
|
+
export declare const applyRelationshipRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
|
|
9
|
+
layerId: z.ZodString;
|
|
10
|
+
fields: z.ZodArray<z.ZodString, "many">;
|
|
11
|
+
colorSchemes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12
|
+
}, "strip", z.ZodTypeAny, {
|
|
13
|
+
layerId: string;
|
|
14
|
+
fields: string[];
|
|
15
|
+
colorSchemes?: string[] | undefined;
|
|
16
|
+
}, {
|
|
17
|
+
layerId: string;
|
|
18
|
+
fields: string[];
|
|
19
|
+
colorSchemes?: string[] | undefined;
|
|
20
|
+
}>, {
|
|
21
|
+
layerId: string;
|
|
22
|
+
fields: string[];
|
|
23
|
+
colorSchemes?: string[];
|
|
24
|
+
}, {
|
|
25
|
+
layerId: string;
|
|
26
|
+
fields: string[];
|
|
27
|
+
colorSchemes?: string[] | undefined;
|
|
28
|
+
}, string>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
interface ApplyRelationshipRendererParams {
|
|
2
|
+
arcgisMap: __esri.Map;
|
|
3
|
+
arcgisMapView: __esri.MapView;
|
|
4
|
+
layerId: string;
|
|
5
|
+
fields: string[];
|
|
6
|
+
colorSchemes?: string[];
|
|
7
|
+
}
|
|
8
|
+
export declare function applyRelationshipRenderer({ arcgisMap, arcgisMapView, layerId, fields, colorSchemes, }: ApplyRelationshipRendererParams): Promise<string>;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './adapter';
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { RunnableConfig } from '@langchain/core/runnables';
|
|
2
|
+
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
|
+
export declare const applySizeAgeRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
|
|
10
|
+
layerId: z.ZodString;
|
|
11
|
+
fields: z.ZodArray<z.ZodString, "many">;
|
|
12
|
+
colorSchemes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13
|
+
theme: z.ZodOptional<z.ZodEnum<["above-and-below", "above", "below", "centered-on", "extremes", "high-to-low"]>>;
|
|
14
|
+
}, "strip", z.ZodTypeAny, {
|
|
15
|
+
layerId: string;
|
|
16
|
+
fields: string[];
|
|
17
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
18
|
+
colorSchemes?: string[] | undefined;
|
|
19
|
+
}, {
|
|
20
|
+
layerId: string;
|
|
21
|
+
fields: string[];
|
|
22
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
23
|
+
colorSchemes?: string[] | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
layerId: string;
|
|
26
|
+
fields: string[];
|
|
27
|
+
colorSchemes?: string[];
|
|
28
|
+
theme?: "above-and-below" | "above" | "below" | "centered-on" | "extremes" | "high-to-low";
|
|
29
|
+
}, {
|
|
30
|
+
layerId: string;
|
|
31
|
+
fields: string[];
|
|
32
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
33
|
+
colorSchemes?: string[] | undefined;
|
|
34
|
+
}, string>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
interface ApplySizeAgeRendererParams {
|
|
2
|
+
arcgisMap: __esri.Map;
|
|
3
|
+
arcgisMapView: __esri.MapView;
|
|
4
|
+
layerId: string;
|
|
5
|
+
fields: string[];
|
|
6
|
+
colorSchemes?: string[];
|
|
7
|
+
theme?: "above-and-below" | "above" | "below" | "centered-on" | "extremes" | "high-to-low";
|
|
8
|
+
}
|
|
9
|
+
export declare function applySizeAgeRenderer({ arcgisMap, arcgisMapView, layerId, fields, colorSchemes, theme, }: ApplySizeAgeRendererParams): Promise<string>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './adapter';
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { RunnableConfig } from '@langchain/core/runnables';
|
|
2
|
+
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
|
+
export declare const applySizeRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
|
|
10
|
+
layerId: z.ZodString;
|
|
11
|
+
fields: z.ZodArray<z.ZodString, "many">;
|
|
12
|
+
colorSchemes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13
|
+
theme: z.ZodOptional<z.ZodEnum<["above-and-below", "above", "below", "centered-on", "extremes", "high-to-low"]>>;
|
|
14
|
+
}, "strip", z.ZodTypeAny, {
|
|
15
|
+
layerId: string;
|
|
16
|
+
fields: string[];
|
|
17
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
18
|
+
colorSchemes?: string[] | undefined;
|
|
19
|
+
}, {
|
|
20
|
+
layerId: string;
|
|
21
|
+
fields: string[];
|
|
22
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
23
|
+
colorSchemes?: string[] | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
layerId: string;
|
|
26
|
+
fields: string[];
|
|
27
|
+
colorSchemes?: string[];
|
|
28
|
+
theme?: "above-and-below" | "above" | "below" | "centered-on" | "extremes" | "high-to-low";
|
|
29
|
+
}, {
|
|
30
|
+
layerId: string;
|
|
31
|
+
fields: string[];
|
|
32
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
33
|
+
colorSchemes?: string[] | undefined;
|
|
34
|
+
}, string>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
interface ApplySizeRendererParams {
|
|
2
|
+
arcgisMap: __esri.Map;
|
|
3
|
+
arcgisMapView: __esri.MapView;
|
|
4
|
+
layerId: string;
|
|
5
|
+
fields: string[];
|
|
6
|
+
colorSchemes?: string[];
|
|
7
|
+
theme?: "above-and-below" | "above" | "below" | "centered-on" | "extremes" | "high-to-low";
|
|
8
|
+
}
|
|
9
|
+
export declare function applySizeRenderer({ arcgisMap, arcgisMapView, layerId, fields, colorSchemes, theme, }: ApplySizeRendererParams): Promise<string>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './adapter';
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { RunnableConfig } from '@langchain/core/runnables';
|
|
2
|
+
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
|
+
export declare const applyTypeRendererTool: import('@langchain/core/tools').DynamicStructuredTool<z.ZodObject<{
|
|
10
|
+
layerId: z.ZodString;
|
|
11
|
+
fields: z.ZodArray<z.ZodString, "many">;
|
|
12
|
+
colorSchemes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
13
|
+
theme: z.ZodOptional<z.ZodEnum<["above-and-below", "above", "below", "centered-on", "extremes", "high-to-low"]>>;
|
|
14
|
+
}, "strip", z.ZodTypeAny, {
|
|
15
|
+
layerId: string;
|
|
16
|
+
fields: string[];
|
|
17
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
18
|
+
colorSchemes?: string[] | undefined;
|
|
19
|
+
}, {
|
|
20
|
+
layerId: string;
|
|
21
|
+
fields: string[];
|
|
22
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
23
|
+
colorSchemes?: string[] | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
layerId: string;
|
|
26
|
+
fields: string[];
|
|
27
|
+
colorSchemes?: string[];
|
|
28
|
+
theme?: "above-and-below" | "above" | "below" | "centered-on" | "extremes" | "high-to-low";
|
|
29
|
+
}, {
|
|
30
|
+
layerId: string;
|
|
31
|
+
fields: string[];
|
|
32
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
33
|
+
colorSchemes?: string[] | undefined;
|
|
34
|
+
}, string>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
interface ApplyTypeRendererParams {
|
|
2
|
+
arcgisMap: __esri.Map;
|
|
3
|
+
arcgisMapView: __esri.MapView;
|
|
4
|
+
layerId: string;
|
|
5
|
+
fields: string[];
|
|
6
|
+
colorSchemes?: string[];
|
|
7
|
+
theme?: "above-and-below" | "above" | "below" | "centered-on" | "extremes" | "high-to-low";
|
|
8
|
+
}
|
|
9
|
+
export declare function applyTypeRenderer({ arcgisMap, arcgisMapView, layerId, fields, colorSchemes, theme, }: ApplyTypeRendererParams): Promise<string>;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './adapter';
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
export declare const layerStylingTools: (import('@langchain/core/tools').DynamicStructuredTool<import('zod').ZodObject<{
|
|
2
|
+
layerId: import('zod').ZodString;
|
|
3
|
+
fields: import('zod').ZodArray<import('zod').ZodString, "many">;
|
|
4
|
+
colorSchemes: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
5
|
+
includeSize: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
6
|
+
}, "strip", import('zod').ZodTypeAny, {
|
|
7
|
+
layerId: string;
|
|
8
|
+
fields: string[];
|
|
9
|
+
colorSchemes?: string[] | undefined;
|
|
10
|
+
includeSize?: boolean | undefined;
|
|
11
|
+
}, {
|
|
12
|
+
layerId: string;
|
|
13
|
+
fields: string[];
|
|
14
|
+
colorSchemes?: string[] | undefined;
|
|
15
|
+
includeSize?: boolean | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
layerId: string;
|
|
18
|
+
fields: string[];
|
|
19
|
+
colorSchemes?: string[];
|
|
20
|
+
includeSize?: boolean;
|
|
21
|
+
}, {
|
|
22
|
+
layerId: string;
|
|
23
|
+
fields: string[];
|
|
24
|
+
colorSchemes?: string[] | undefined;
|
|
25
|
+
includeSize?: boolean | undefined;
|
|
26
|
+
}, string> | import('@langchain/core/tools').DynamicStructuredTool<import('zod').ZodObject<{
|
|
27
|
+
layerId: import('zod').ZodString;
|
|
28
|
+
fields: import('zod').ZodArray<import('zod').ZodString, "many">;
|
|
29
|
+
colorSchemes: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
30
|
+
theme: import('zod').ZodOptional<import('zod').ZodEnum<["above-and-below", "above", "below", "centered-on", "extremes", "high-to-low"]>>;
|
|
31
|
+
}, "strip", import('zod').ZodTypeAny, {
|
|
32
|
+
layerId: string;
|
|
33
|
+
fields: string[];
|
|
34
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
35
|
+
colorSchemes?: string[] | undefined;
|
|
36
|
+
}, {
|
|
37
|
+
layerId: string;
|
|
38
|
+
fields: string[];
|
|
39
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
40
|
+
colorSchemes?: string[] | undefined;
|
|
41
|
+
}>, {
|
|
42
|
+
layerId: string;
|
|
43
|
+
fields: string[];
|
|
44
|
+
colorSchemes?: string[];
|
|
45
|
+
theme?: "above-and-below" | "above" | "below" | "centered-on" | "extremes" | "high-to-low";
|
|
46
|
+
}, {
|
|
47
|
+
layerId: string;
|
|
48
|
+
fields: string[];
|
|
49
|
+
theme?: "high-to-low" | "above-and-below" | "centered-on" | "extremes" | "above" | "below" | undefined;
|
|
50
|
+
colorSchemes?: string[] | undefined;
|
|
51
|
+
}, string> | import('@langchain/core/tools').DynamicStructuredTool<import('zod').ZodObject<{
|
|
52
|
+
layerId: import('zod').ZodString;
|
|
53
|
+
fields: import('zod').ZodArray<import('zod').ZodString, "many">;
|
|
54
|
+
colorSchemes: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
55
|
+
}, "strip", import('zod').ZodTypeAny, {
|
|
56
|
+
layerId: string;
|
|
57
|
+
fields: string[];
|
|
58
|
+
colorSchemes?: string[] | undefined;
|
|
59
|
+
}, {
|
|
60
|
+
layerId: string;
|
|
61
|
+
fields: string[];
|
|
62
|
+
colorSchemes?: string[] | undefined;
|
|
63
|
+
}>, {
|
|
64
|
+
layerId: string;
|
|
65
|
+
fields: string[];
|
|
66
|
+
colorSchemes?: string[];
|
|
67
|
+
}, {
|
|
68
|
+
layerId: string;
|
|
69
|
+
fields: string[];
|
|
70
|
+
colorSchemes?: string[] | undefined;
|
|
71
|
+
}, string>)[];
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export type StyleVector = {
|
|
2
|
+
id: string;
|
|
3
|
+
label: string;
|
|
4
|
+
description: string;
|
|
5
|
+
keywords: string[];
|
|
6
|
+
example: string;
|
|
7
|
+
fields: string;
|
|
8
|
+
score: number;
|
|
9
|
+
};
|
|
10
|
+
export type StyleVectors = StyleVector[];
|
|
11
|
+
export type VectorSearchStyleResults = StyleVectors;
|
|
12
|
+
/** Smart mapping data extracted from tool results */
|
|
13
|
+
export type SupportedLayer = __esri.FeatureLayer;
|
|
14
|
+
export type CreateRendererParams = __esri.colorCreateAgeRendererParameters & __esri.colorCreateContinuousRendererParameters & __esri.dotDensityCreateRendererParameters & __esri.heatmapCreateRendererParameters & __esri.opacityCreateVisualVariableParameters & __esri.pieChartCreateRendererParameters & __esri.predominanceCreateRendererParameters & __esri.relationshipCreateRendererParameters & __esri.sizeCreateAgeRendererParameters & __esri.sizeCreateContinuousRendererParameters & __esri.typeCreateRendererParameters & __esri.univariateColorSizeCreateContinuousRendererParameters;
|
|
15
|
+
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";
|
|
16
|
+
export interface CreateStyleParams {
|
|
17
|
+
styleName: CreateStyleType;
|
|
18
|
+
fields: string[];
|
|
19
|
+
colorSchemeTags?: string[];
|
|
20
|
+
theme?: __esri.colorCreateContinuousRendererParameters["theme"] | __esri.sizeCreateContinuousRendererParameters["theme"];
|
|
21
|
+
layer: __esri.FeatureLayer;
|
|
22
|
+
view: __esri.MapView;
|
|
23
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CreateStyleParams, CreateRendererParams } from '../../types/types';
|
|
2
|
+
export declare function processChartRendererParams(params: CreateStyleParams): Promise<__esri.pieChartCreateRendererParameters>;
|
|
3
|
+
export declare function createChartRenderer(styleParams: CreateRendererParams): Promise<__esri.pieChartRendererResult>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CreateStyleParams, CreateRendererParams } from '../../types/types';
|
|
2
|
+
export declare function processAgeColorRendererParams(params: CreateStyleParams): __esri.colorCreateAgeRendererParameters;
|
|
3
|
+
export declare function createColorAgeRenderer(styleParams: CreateRendererParams): Promise<__esri.AgeRendererResult>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CreateStyleParams, CreateRendererParams } from '../../types/types';
|
|
2
|
+
export declare function processUnivariateColorSizeRendererParams(params: CreateStyleParams): __esri.univariateColorSizeCreateContinuousRendererParameters;
|
|
3
|
+
export declare function createUnivariateColorSizeRenderer(styleParams: CreateRendererParams): Promise<__esri.univariateColorSizeContinuousRendererResult>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CreateStyleParams, CreateRendererParams } from '../../types/types';
|
|
2
|
+
export declare function processColorRendererParams(params: CreateStyleParams): __esri.colorCreateContinuousRendererParameters;
|
|
3
|
+
export declare function createColorRenderer(styleParams: CreateRendererParams): Promise<__esri.ContinuousRendererResult>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CreateStyleParams, CreateRendererParams } from '../../types/types';
|
|
2
|
+
export declare function processDotDensityRendererParams(params: CreateStyleParams): __esri.dotDensityCreateRendererParameters;
|
|
3
|
+
export declare function createDotDensityRenderer(styleParams: CreateRendererParams): Promise<__esri.RendererResult>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CreateStyleParams, CreateRendererParams } from '../../types/types';
|
|
2
|
+
export declare function processHeatmapRendererParams(params: CreateStyleParams): __esri.heatmapCreateRendererParameters;
|
|
3
|
+
export declare function createHeatmapRenderer(styleParams: CreateRendererParams): Promise<__esri.HeatmapRendererResult>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CreateStyleParams, CreateRendererParams } from '../../types/types';
|
|
2
|
+
export declare function processPredominanceRendererParams(params: CreateStyleParams): __esri.predominanceCreateRendererParameters;
|
|
3
|
+
export declare function createPredominanceRenderer(styleParams: CreateRendererParams): Promise<__esri.predominanceRendererResult>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CreateStyleParams, CreateRendererParams } from '../../types/types';
|
|
2
|
+
export declare function processRelationshipRendererParams(params: CreateStyleParams): __esri.relationshipCreateRendererParameters;
|
|
3
|
+
export declare function createRelationshipRenderer(styleParams: CreateRendererParams): Promise<__esri.relationshipRendererResult>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CreateStyleParams, CreateRendererParams } from '../../types/types';
|
|
2
|
+
export declare function processSizeAgeRendererParams(params: CreateStyleParams): __esri.sizeCreateAgeRendererParameters;
|
|
3
|
+
export declare function createSizeAgeRenderer(styleParams: CreateRendererParams): Promise<__esri.sizeAgeRendererResult>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CreateStyleParams, CreateRendererParams } from '../../types/types';
|
|
2
|
+
export declare function processSizeRendererParams(params: CreateStyleParams): __esri.sizeCreateContinuousRendererParameters;
|
|
3
|
+
export declare function createSizeRenderer(styleParams: CreateRendererParams): Promise<__esri.sizeContinuousRendererResult>;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CreateStyleParams, CreateRendererParams } from '../../types/types';
|
|
2
|
+
export declare function processTypeRendererParams(params: CreateStyleParams): __esri.typeCreateRendererParameters;
|
|
3
|
+
export declare function createTypeRenderer(styleParams: CreateRendererParams): Promise<__esri.typeRendererResult>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Context required by the Knowledge Link Chart agent.
|
|
3
|
+
* Supplied by the application via an agent `getContext()` provider.
|
|
4
|
+
*/
|
|
5
|
+
export type LinkChartContext = {
|
|
6
|
+
linkChartView: __esri.LinkChartView;
|
|
7
|
+
};
|
|
8
|
+
export declare const linkChartContextRequiredKeys: readonly ["linkChartView"];
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { StateGraph } from '@langchain/langgraph/web';
|
|
2
|
+
import { LinkChartGraphStateType } from '../state/linkChartState';
|
|
3
|
+
import { AgentRegistration } from '@arcgis/ai-orchestrator';
|
|
4
|
+
/**
|
|
5
|
+
* Builds the LinkChart Agent graph (intent classification + tool execution).
|
|
6
|
+
*/
|
|
7
|
+
export declare const createLinkChartAgentGraph: () => StateGraph<LinkChartGraphStateType>;
|
|
8
|
+
export declare const LinkChartAgent: AgentRegistration;
|