@arcgis/ai-components 5.2.0-next.91 → 5.2.0-next.94

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 (50) hide show
  1. package/dist/cdn/{W5JPJWMM.js → 2FYVIMRW.js} +1 -1
  2. package/dist/cdn/{C5ZL5Z52.js → 2OB6I4ZG.js} +1 -1
  3. package/dist/cdn/{LPR72QZF.js → 6KN5LUAV.js} +1 -1
  4. package/dist/cdn/{OWTGH34K.js → 7VUSIGEM.js} +1 -1
  5. package/dist/cdn/{VNJMTA6O.js → ANRQWYU2.js} +1 -1
  6. package/dist/cdn/{HKSFWTWK.js → ASR3I43T.js} +1 -1
  7. package/dist/cdn/{ZVGUAOXE.js → B2JDVLA6.js} +1 -1
  8. package/dist/cdn/{DP6O6PMH.js → B2O2LAEL.js} +1 -1
  9. package/dist/cdn/{JJJZ7FOM.js → CPYR4ZQP.js} +1 -1
  10. package/dist/cdn/{AT4XVTJR.js → D5UFYQHN.js} +1 -1
  11. package/dist/cdn/{HMUWQCXU.js → FG647IP6.js} +1 -1
  12. package/dist/cdn/{6KFMRBAA.js → FUF3NAU7.js} +1 -1
  13. package/dist/cdn/G2EGT3CF.js +6 -0
  14. package/dist/cdn/{PEYYWXFE.js → G7OMHU2B.js} +1 -1
  15. package/dist/cdn/{OL5656NI.js → HAEFC2SJ.js} +1 -1
  16. package/dist/cdn/{ZQMBJ6MI.js → HDACNIZF.js} +1 -1
  17. package/dist/cdn/JCOA24UH.js +3 -0
  18. package/dist/cdn/{SUYWKYWI.js → LNCT4S4I.js} +1 -1
  19. package/dist/cdn/{OYSPNIJI.js → MX7OEO5Z.js} +1 -1
  20. package/dist/cdn/{PSYRZMX2.js → NZSOJ726.js} +1 -1
  21. package/dist/cdn/{4HDDRBIY.js → OE3GW5LE.js} +1 -1
  22. package/dist/cdn/{ZLWWWTH4.js → R2PQVY4O.js} +1 -1
  23. package/dist/cdn/{COL6QYGQ.js → RJMPDAE6.js} +1 -1
  24. package/dist/cdn/{4EBLRHYE.js → RWQOM6TX.js} +1 -1
  25. package/dist/cdn/{FQH3HOFH.js → TFIJZWY3.js} +1 -1
  26. package/dist/cdn/{FUZ77UGP.js → UAANWCMU.js} +1 -1
  27. package/dist/cdn/UK3MKESF.js +3 -0
  28. package/dist/cdn/{KCU4FWF7.js → VOV5D2HS.js} +1 -1
  29. package/dist/cdn/{WP7ORLSB.js → WGO5SER7.js} +1 -1
  30. package/dist/cdn/{4NJ2FF7H.js → ZDV4K4WG.js} +1 -1
  31. package/dist/cdn/agent-utils/index.js +1 -1
  32. package/dist/cdn/index.js +1 -1
  33. package/dist/chunks/baseAgentState.js +32 -30
  34. package/dist/chunks/orchestrator.js +301 -249
  35. package/dist/components/arcgis-assistant/customElement.d.ts +24 -0
  36. package/dist/components/arcgis-assistant/customElement.js +275 -270
  37. package/dist/docs/api.json +1 -1
  38. package/dist/docs/docs.json +1 -1
  39. package/dist/docs/vscode.html-custom-data.json +1 -1
  40. package/dist/docs/web-types.json +1 -1
  41. package/dist/loader.js +1 -1
  42. package/dist/types/lumina.d.ts +1 -1
  43. package/dist/types/preact.d.ts +1 -1
  44. package/dist/types/react.d.ts +1 -1
  45. package/dist/types/stencil.d.ts +1 -1
  46. package/dist/utils/index.d.ts +45 -11
  47. package/package.json +5 -5
  48. package/dist/cdn/6VJXUIXY.js +0 -3
  49. package/dist/cdn/7M6VKBTK.js +0 -6
  50. package/dist/cdn/PKUDO2RC.js +0 -3
@@ -117,6 +117,30 @@ export abstract class ArcgisAssistant extends LitElement {
117
117
  learnAboutWebMapEmbeddingsLabel: string;
118
118
  waitingForUserInputMessage: string;
119
119
  }>;
120
+ /**
121
+ * The IDs of the agents available to automatic intent routing.
122
+ * A single ID still uses automatic routing and does not enable direct routing.
123
+ * This property cannot be used together with [alwaysUseAgentId](https://developers.arcgis.com/javascript/latest/references/ai-components/components/arcgis-assistant/#alwaysUseAgentId).
124
+ *
125
+ * @since 5.2
126
+ * @example
127
+ * ```js
128
+ * const assistant = document.querySelector("arcgis-assistant");
129
+ * assistant.allowedAgentIds = ["navigation", "help"];
130
+ * ```
131
+ */
132
+ accessor allowedAgentIds: readonly string[] | undefined;
133
+ /**
134
+ * The ID of the agent that should process every user message without intent routing.
135
+ * When this property is set, it cannot be used together with [allowedAgentIds](https://developers.arcgis.com/javascript/latest/references/ai-components/components/arcgis-assistant/#allowedAgentIds).
136
+ *
137
+ * @since 5.2
138
+ * @example
139
+ * ```html
140
+ * <arcgis-assistant always-use-agent-id="navigation"></arcgis-assistant>
141
+ * ```
142
+ */
143
+ accessor alwaysUseAgentId: string | undefined;
120
144
  /**
121
145
  * When `true`, displays the assistant avatar in the chat interface.
122
146
  *