UNPKG

@visionfi/server-sdk

Version:

Server-side SDK for VisionFI API access using Google Service Account authentication

21 lines (20 loc) 483 B
/** * Auth Client - handles authentication operations in Server SDK * Copyright (c) 2024-2025 VisionFI. All Rights Reserved. */ import { AxiosInstance } from 'axios'; export declare class AuthClient { private apiClient; constructor(apiClient: AxiosInstance); /** * Verify authentication status */ verify(): Promise<{ authenticated: boolean; user?: any; }>; /** * Handle errors consistently */ private handleError; }