Function fetchBrandData

  • Fetch brand JSON file, parse it and then fetch logo and Bootstrap theme and add it to that object.

    Returns

    The brand object with the logo and Bootstrap theme URLs.

    Parameters

    • brandJsonUrl: string = 'brand.json'

      The URL of the brand JSON file.

    • themeVersion: number = 1

      The version of the Bootstrap theme.

    • cache: boolean = true

      Flag to indicate if the object should be cached to the box.

    Returns Promise<{
        bootstrap: string;
        id: string;
        logo: string;
        name: string;
    } | undefined>

Generated using TypeDoc