@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
14 lines (13 loc) • 524 B
TypeScript
import { AuthService } from './services/auth.service.js';
import { PlansService } from './services/plans.service.js';
import { WorkOrdersService } from './services/workorders.service.js';
import type { ClientConfig } from './schemas/common.schema.js';
export declare class SAPB1CommandClient {
private httpClient;
readonly auth: AuthService;
readonly plans: PlansService;
readonly workOrders: WorkOrdersService;
constructor(config: ClientConfig);
get baseUrl(): string;
health(): Promise<any>;
}