BrandingApi
API client for fetching application branding and theme settings.
Overview
The BrandingApi retrieves customized branding configuration from the AuthSafe server, including logos, colors, and theme settings. Branding endpoints are public and do not require authentication.
Basic Usage
import { HttpService, BrandingApi } from 'authsafe-ts';
const httpService = new HttpService();
const brandingApi = new BrandingApi(httpService);
const branding = await brandingApi.getBranding('your-client-id');