bling-erp-api-with-rate-limit
Version:
Pacote de integração com a API do Bling ERP
14 lines (13 loc) • 833 B
TypeScript
import { Entity } from '../@shared/entity';
import { ICreateBody, ICreateResponse } from './interfaces/create.interface';
import { IDeleteParams } from './interfaces/delete.interface';
import { IFindParams, IFindResponse } from './interfaces/find.interface';
import { IGetByLogisticParams, IGetByLogisticResponse } from './interfaces/get-by-logistic.interface';
import { IUpdateBody, IUpdateParams, IUpdateResponse } from './interfaces/update.interface';
export declare class LogisticasRemessas extends Entity {
delete(params: IDeleteParams): Promise<null>;
find(params: IFindParams): Promise<IFindResponse>;
getByLogistic(params: IGetByLogisticParams): Promise<IGetByLogisticResponse>;
create(body: ICreateBody): Promise<ICreateResponse>;
update(params: IUpdateParams & IUpdateBody): Promise<IUpdateResponse>;
}