export interface IApiResponse { success: boolean; data?: T; message: string; timestamp: Date; correlationId?: string; } export interface IErrorResponse { statusCode: number; message: string; error: string; timestamp: Date; correlationId?: string; } //# sourceMappingURL=sso-response.interface.d.ts.map