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

15 lines
283 B
TypeScript
Raw Normal View History

2025-10-22 09:55:52 +00:00
export interface ILoginRequest {
tenantId: string;
tenantSecret: string;
}
export interface ILoginResponse {
accessToken: string;
refreshToken: string;
2025-10-29 05:05:14 +00:00
headers?: { [key: string]: string };
2025-10-22 09:55:52 +00:00
}
export interface IRefreshTokenRequest {
refreshToken: string;
}