You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
650 B

import { errors } from '@strapi/utils';
/**
* /providers/isSSOLocked
*/
export declare namespace IsSSOLocked {
export interface Request {
body: {};
query: {};
}
export interface Response {
data: {
isSSOLocked: boolean;
};
error?: errors.ApplicationError;
}
}
export interface Provider {
displayName: string;
icon?: string | null;
uid: string;
}
/**
* /providers
*/
export declare namespace GetProviders {
export interface Request {
body: {};
query: {};
}
/**
* TODO: this should follow the expected pattern of returning `data` as an object.
*/
export type Response = Provider[];
}