bling-erp-api-with-rate-limit
Version:
Pacote de integração com a API do Bling ERP
18 lines (17 loc) • 465 B
TypeScript
import { ILancamentoEstoque } from '../types/lancamento-estoque.type';
import { ITipoEstoque } from '../types/tipo-estoque.type';
export interface IFindParams {
idProdutoEstrutura: number;
}
export interface IFindResponse {
data: {
tipoEstoque: ITipoEstoque;
lancamentoEstoque: ILancamentoEstoque;
componentes: {
produto: {
id: number;
};
quantidade: number;
}[];
};
}