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 { CreateQuickBooksCustomersDto, FullUpdateQuickBooksCustomersDto, QuickBooksCustomers, QuickBooksCustomersQuery, QuickBooksCustomersQueryResponseModel, QuickBooksCustomersResponseModel, SparseUpdateQuickBooksCustomersDto } from ".."; export declare class QuickBooksCustomersService { private readonly authService; private readonly http; private readonly store; constructor(authService: QuickBooksAuthService, http: HttpService, store: QuickBooksStore); withDefaultCompany(): Promise; forCompany(realm: string): QuickBooksCompanyCustomersService; } export declare class QuickBooksCompanyCustomersService extends BaseService { constructor(realm: string, authService: QuickBooksAuthService, http: HttpService); create(dto: CreateQuickBooksCustomersDto): Observable; readById(id: string): Observable; fullUpdate(id: string, token: string, dto: FullUpdateQuickBooksCustomersDto): Observable; fullUpdate(customer: QuickBooksCustomers, dto: FullUpdateQuickBooksCustomersDto): Observable; sparseUpdate(id: string, token: string, dto: SparseUpdateQuickBooksCustomersDto): Observable; sparseUpdate(customer: QuickBooksCustomers, dto: SparseUpdateQuickBooksCustomersDto): Observable; private static getUpdateArguments; }