export type OAuth2Data = {
    authorizationUrl: string;
    clientId: string;
    responseType: 'code';
    scope?: string;
};
