//#region src/atlassian/credentials.d.ts /** * Atlassian Cloud API credentials for REST callers (Confluence, Jira REST). * * `acli`-based callers don't need these — they inherit the operator's * authenticated session. These are for code paths that hit the Atlassian * REST APIs directly (Basic auth with email + API token). */ interface AtlassianCredentials { email: string; apiToken: string; } //#endregion export { AtlassianCredentials as t };