()
| 54 | } |
| 55 | |
| 56 | export function getOrganizationUuidHeader(): Record<string, string> { |
| 57 | const organizationUuid = ( |
| 58 | process.env.CLAUDE_CODE_ORGANIZATION_UUID ?? |
| 59 | getGlobalConfig().oauthAccount?.organizationUuid |
| 60 | )?.trim() |
| 61 | if (!organizationUuid) { |
| 62 | return {} |
| 63 | } |
| 64 | return { |
| 65 | 'x-organization-uuid': organizationUuid, |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Get authentication headers for API requests |
no test coverage detected