interface GlobalCLIPluginConfigScope { baseURL: string username: string password: string organizationUUID?: string teamUUID?: string } interface GlobalCLIPluginConfig { scopes: { [key: string]: GlobalCLIPluginConfigScope } } export type { GlobalCLIPluginConfigScope, GlobalCLIPluginConfig }