import { AppConfig, AppManagerData, AppParameters, AppScope, LaunchSource } from "@amazon-connect/workspace-types"; import { InstanceData } from "../host"; import { AppScopeKey } from "./app-scope-key"; export type AppInstanceData = InstanceData & { /** * @deprecated This property is deprecated. Use `instanceId` instead. */ appInstanceId: string; /** * @deprecated This property is deprecated. Use `config` instead. */ appConfig: TConfig; scope?: AppScope; scopeKey?: AppScopeKey; appCreateOrder: number; launchedBy: LaunchSource; parameters?: Readonly; launchKey?: string; appManagerData?: Readonly; preventUserClose?: boolean; /** * The current user-facing display name of the app instance. * By default it will be the same as the configuration name * of the app instance. */ displayName?: string; /** * @deprecated This property is deprecated. Use `launchedBy`. This * value will be removed after Agent Workspace is updated. */ launchSource?: string; }; //# sourceMappingURL=app-instance-data.d.ts.map