UNPKG

@ritas-inc/sapb1commandapi-client

Version:

A stateless TypeScript client for SAP B1 Service Layer Command API with comprehensive error handling, type safety, and batch operations

8 lines (7 loc) 302 B
import type { HTTPClient } from '../utils/http.client.js'; import { type AuthRequest, type AuthResponse } from '../schemas/auth.schema.js'; export declare class AuthService { private httpClient; constructor(httpClient: HTTPClient); login(credentials: AuthRequest): Promise<AuthResponse>; }