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 { CreateQuickBooksEstimateDto, FullUpdateQuickBooksEstimateDto, QuickBooksEstimates, QuickBooksEstimatesQuery, QuickBooksEstimatesQueryResponseModel, QuickBooksEstimatesResponseModel, SparseUpdateQuickBooksEstimateDto } from ".."; export declare class QuickBooksEstimatesService { private readonly authService; private readonly http; private readonly store; constructor(authService: QuickBooksAuthService, http: HttpService, store: QuickBooksStore); withDefaultCompany(): Promise; forCompany(realm: string): QuickBooksCompanyEstimateService; } export declare class QuickBooksCompanyEstimateService extends BaseService { constructor(realm: string, authService: QuickBooksAuthService, http: HttpService); create(dto: CreateQuickBooksEstimateDto): Observable; readById(id: string): Observable; fullUpdate(id: string, token: string, dto: FullUpdateQuickBooksEstimateDto): Observable; fullUpdate(estimate: QuickBooksEstimates, dto: FullUpdateQuickBooksEstimateDto): Observable; sparseUpdate(id: string, token: string, dto: SparseUpdateQuickBooksEstimateDto): Observable; sparseUpdate(estimate: QuickBooksEstimates, dto: SparseUpdateQuickBooksEstimateDto): Observable; private static getUpdateArguments; }