notbank
Version:
The Notbank for Node.js
35 lines (34 loc) • 1.38 kB
TypeScript
import { AccountService } from "./accountService.js";
import { AuthService } from "./authService.js";
import { FeeService } from "./feeService.js";
import { InstrumentService } from "./instrumentService.js";
import { ProductService } from "./productService.js";
import { ReportService } from "./reportService.js";
import { SystemService } from "./systemService.js";
import { TradingService } from "./tradingService.js";
import { UserService } from "./userService.js";
import { WalletService } from "./walletService.js";
import { QuoteService } from "./quoteService.js";
import { ServiceConnection } from "../core/serviceClient.js";
export declare class HttpServiceFactory {
#private;
constructor(domain?: string);
authenticateUser(params: {
ApiPublicKey: string;
ApiSecretKey: string;
UserId: string;
}): Promise<void>;
updateSessionToken(sessionToken: string): void;
getConnection(): ServiceConnection;
newAccountService(): AccountService;
newAuthService(): AuthService;
newFeeService(): FeeService;
newInstrumentService(): InstrumentService;
newProductService(): ProductService;
newReportService(): ReportService;
newSystemService(): SystemService;
newTradingService(): TradingService;
newUserService(): UserService;
newWalletService(): WalletService;
newQuoteService(): QuoteService;
}