n8n-nodes-base
Version:
Base nodes of n8n
22 lines • 858 B
TypeScript
import type { IAuthenticateGeneric, ICredentialDataDecryptedObject, ICredentialTestRequest, ICredentialType, IHttpRequestHelper, INodeProperties } from 'n8n-workflow';
export declare class Auth0ManagementApi implements ICredentialType {
name: string;
displayName: string;
documentationUrl: string;
icon: {
readonly light: "file:icons/Auth0.svg";
readonly dark: "file:icons/Auth0.dark.svg";
};
httpRequestNode: {
name: string;
docsUrl: string;
apiBaseUrlPlaceholder: string;
};
properties: INodeProperties[];
preAuthentication(this: IHttpRequestHelper, credentials: ICredentialDataDecryptedObject): Promise<{
sessionToken: string;
}>;
authenticate: IAuthenticateGeneric;
test: ICredentialTestRequest;
}
//# sourceMappingURL=Auth0ManagementApi.credentials.d.ts.map