n8n
Version:
n8n Workflow Automation Tool
9 lines (8 loc) • 361 B
TypeScript
import type { SsoSamlRequest } from '../../../types';
import type { PublicAPIEndpoint } from '../../shared/handler.types';
type SsoSamlHandlers = {
getSamlConfiguration: PublicAPIEndpoint<SsoSamlRequest.Get>;
updateSamlConfiguration: PublicAPIEndpoint<SsoSamlRequest.Update>;
};
declare const ssoSamlHandlers: SsoSamlHandlers;
export = ssoSamlHandlers;