import * as factory from '../factory'; import { IProjectionSearchConditions, ISearchResult, IUnset, Service } from '../service'; /** * 販売者サービス */ export declare class SellerService extends Service { /** * 販売者作成 */ create(params: factory.seller.ISeller): Promise; /** * 販売者取得 */ findById(params: { id: string; } & IProjectionSearchConditions): Promise; /** * 販売者検索 */ search(params: factory.seller.ISearchConditions & IProjectionSearchConditions): Promise[]>>; /** * 販売者編集 */ update(params: { id: string; attributes: factory.seller.ISeller & IUnset; }): Promise; /** * 販売者削除 */ deleteById(params: { id: string; }): Promise; }