@arcgis/ai-orchestrator 5.1.0-next.69 → 5.1.0-next.70
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/dist/index.d.ts
CHANGED
|
@@ -5,5 +5,6 @@ export { createWebmapEmbeddings } from './embeddings/webmapEmbeddings';
|
|
|
5
5
|
export { getEmbeddings } from './embeddings/embeddingsUtil';
|
|
6
6
|
export { cosineSimilarity } from './embeddings/cosineSimilarity';
|
|
7
7
|
export type { CustomConfigurableType, VectorSearchFieldResults, LayersAndFieldsRegistry, Services, FieldInfo, FieldStatistics, ChatHistory, AgentExecutionContext, AgentStatus, PriorStep, } from './types/types';
|
|
8
|
+
export type { UXSuggestion } from './orchestrator/orchestratorEvents';
|
|
8
9
|
export type { UiInterrupt } from './hitl/types';
|
|
9
10
|
export type { AgentRegistration, AgentWithContext } from './registry/agentRegistry';
|
|
@@ -45,9 +45,8 @@ export interface TraceEventData {
|
|
|
45
45
|
}
|
|
46
46
|
/** Optional suggestion event the UX can choose to display or ignore */
|
|
47
47
|
export type UXSuggestion = {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
payload?: Record<string, unknown>;
|
|
48
|
+
type: string;
|
|
49
|
+
data?: Record<string, unknown>;
|
|
51
50
|
};
|
|
52
51
|
/** Cancel reasons for orchestrator events:
|
|
53
52
|
* - "user": the user explicitly cancelled the run.
|