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 { QuickBooksBillsDeleteResponseModel, QuickBooksBillsQueryResponseModel, QuickBooksBillsResponseModel } from "../models/bills-response.model"; import { QuickBooksBillsQueryModel } from "../models/bills-query.model"; import { QuickBooksBills } from "../models/bills.model"; import { CreateQuickBooksBillsDto, FullUpdateQuickBooksBillsDto } from "../dto/bills.dto"; export declare class QuickBooksBillsService { private readonly authService; private readonly http; private readonly store; constructor(authService: QuickBooksAuthService, http: HttpService, store: QuickBooksStore); withDefaultCompany(): Promise; forCompany(realm: string): QuickBooksCompanyBillsService; } export declare class QuickBooksCompanyBillsService extends BaseService { constructor(realm: string, authService: QuickBooksAuthService, http: HttpService); create(dto: CreateQuickBooksBillsDto): Observable; readById(id: string): Observable; fullUpdate(id: string, token: string, dto: FullUpdateQuickBooksBillsDto): Observable; fullUpdate(bill: QuickBooksBills, dto: FullUpdateQuickBooksBillsDto): Observable; delete(id: string, token: string): Observable; delete(bill: QuickBooksBills): Observable; private static getUpdateArguments; private static getOperationArguments; }