n8n-nodes-seclore/dist/nodes/SecloreProtect/Services/Interfaces/LoginInterfaces.d.ts

15 lines
292 B
TypeScript
Raw Normal View History

export interface ILoginRequest {
tenantId: string;
tenantSecret: string;
}
export interface ILoginResponse {
accessToken: string;
refreshToken: string;
headers?: {
[key: string]: string;
};
}
export interface IRefreshTokenRequest {
refreshToken: string;
}