New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

aveonline

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aveonline

Libreria para conectarce con Aveonline

  • 1.0.9
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
10
decreased by-33.33%
Maintainers
1
Weekly downloads
 
Created
Source

Aveonline

Libreria para conectarce con Aveonline através de js.

Instalación

Para instalar Aveonline use el siguiente comando:

npm i aveonline

Uso

Para usar Aveonline Importelo de la siguiente manera:

import { Aveonline, AveonlineConfig } from 'aveonline';

Configuración

Una vez importado Ave, puedes configurarlo de la siguiente manera:

const  config : AveonlineConfig = {
    active: boolean;
    user: string;
    password: string;
    nit: string;s
    direction: string;
    phone: string;
    tel: string;
    email: string;
    account: {
        id: number;
        name: string;
    } | null;
    agent: {
        id: number;
        name: string;
    } | null;
    val_min: boolean;
    free_shipping: boolean;
    min_free_shipping: number;
    fixed_freight: number;
}
const ave = Aveonline({config})

Funciones

getAccounts

Obtener las Cuentas en base a las configuaciones

const accounts = await ave.getAccounts() : AccountResultProps

getAgents

Obtener los Agentes en base a las configuaciones

const agents = await ave.getAgents() : AgentsResultProps

getTransport

Obtener las Transportadoras en base a las configuaciones

const transports = await ave.getTransport() : TransportResultProps

getQuote

Generar Cotizacione en base a las configuaciones y los dato de envio

const cotizaciones = await ave.getQuote(data: GetQuoteParams) : QuoteResultProps

generateGuide

Generar Guia en base a las configuaciones y los dato de envio

const guia = await ave.generateGuide(data: PostGuideParams) : GuideResultProps

generatePickup

Generar Recogidas en base a las configuaciones y los dato de envio

const recogidas = await ave.generatePickup(data: PostPickupParams) : GuideResultProps

updateGuide

Actualizar guia en base a las configuaciones y los dato de envio

const result = await ave.updateGuide(data: PutGuideParams) : any

generateShippingRelationship

Generar relacion de Envio en base a las configuaciones y los dato de envio

const result = await ave.generateShippingRelationship(data: PostShippingRelationshipParams) : any

Keywords

FAQs

Package last updated on 17 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc