@arcgis/coding-components
Version:
ArcGIS Coding Components
20 lines • 708 B
TypeScript
/**
* Public configuration options for the arcade assistant
*
* @internal
*/
export type ArcadeAssistantConfig = {
/**
* @deprecated
* Set `esriConfig.portalUrl` instead.
* The URL of the portal the arcade editor is loaded for. Typically accessed via `portal.url`.
*/
portalUrl?: string;
/**
* A unique key for your application, used to identify the app in the feedback system.
* Typically you will not need to provide this, granted that you have set `esriConfig.applicationName` in your app.
*/
appVersion?: string;
/** The assistant will by default log all question/answer interactions. Set this to true to disable logging. */
disableQuestionAnswerLogging?: boolean;
};