Variable OAUTH_CONFIG_SCHEMAConst

OAUTH_CONFIG_SCHEMA: {
    type: string;
    properties: {
        clientId: {
            type: string;
        };
        clientSecret: {
            type: string;
        };
        authorizeUri: {
            type: string;
            description: string;
        };
        tokenUri: {
            type: string;
            description: string;
        };
        scopes: {
            type: string;
            items: {
                type: string;
            };
        };
        clientAuthLocation: {
            type: string;
            enum: string[];
            default: string;
            description: string;
        };
        noRefreshToken: {
            type: string;
            description: string;
        };
        skipPkce: {
            type: string;
            description: string;
        };
        extra: {
            type: string;
            additionalProperties: boolean;
            description: string;
        };
        skipClientAuthInBody: {
            type: string;
            description: string;
        };
        skipClientAuthInHeader: {
            type: string;
            description: string;
        };
    };
} = ...