New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@roit/integration-models

Package Overview
Dependencies
Maintainers
11
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@roit/integration-models

Lib para armazenar os models e o conector do Integration Log

latest
npmnpm
Version
0.0.20
Version published
Maintainers
11
Created
Source

Integration Log Models

Lib para armazenar os models e o conector do Integration Log

Como usar:

import { IntegrationLog, IntegrationLogService } from "@roit/integration-models"


constructor (
    private readonly integrationLogService: IntegrationLogService
) {}

const myFileName = 'notafiscal.xml'
const integrationLog: IntegrationLog = await this.integrationLogService.findByFileName(myFileName)

O IntegrationLogService utiliza o módulo HTTP do próprio Nestjs, portanto, no AppModule devem ser injetadas as seguintes classes:


@Module({
    imports: [HttpModule],
    providers: [
        IntegrationLogService
    ]
})
export class AppModule { }

Arquitetura da utilização da LIB Architecture

FAQs

Package last updated on 26 Mar 2021

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