• Gets the currently set credentials

    Returns { clientId: string; clientSecret: string }

    Object containing client ID and secret

    export function getCredentials(): { clientId: string; clientSecret: string } {
    return { clientId: sharedClientId, clientSecret: sharedClientSecret };
    }