import { HttpService } from "@nestjs/axios"; import { Observable } from "rxjs"; import { QuickBooksAuthService } from "../../auth/services/auth.service"; import { BaseService } from "../../common/base.service"; import { QuickBooksStore } from "../../store"; import { CreateQuickBooksVendorsDto, FullUpdateQuickBooksVendorsDto, QuickBooksVendors, QuickBooksVendorsQueryModel, QuickBooksVendorsQueryResponseModel, QuickBooksVendorsResponseModel } from ".."; export declare class QuickBooksVendorsService { private readonly authService; private readonly http; private readonly store; constructor(authService: QuickBooksAuthService, http: HttpService, store: QuickBooksStore); withDefaultCompany(): Promise; forCompany(realm: string): QuickBooksCompanyVendorsService; } export declare class QuickBooksCompanyVendorsService extends BaseService { constructor(realm: string, authService: QuickBooksAuthService, http: HttpService); create(dto: CreateQuickBooksVendorsDto): Observable; readById(id: string): Observable; fullUpdate(id: string, token: string, dto: FullUpdateQuickBooksVendorsDto): Observable; fullUpdate(vendor: QuickBooksVendors, dto: FullUpdateQuickBooksVendorsDto): Observable; private static getUpdateArguments; }