NFeWizard-io é uma biblioteca Node.js projetada para simplificar a interação com os webservices da SEFAZ, proporcionando uma solução robusta para automação de processos relacionados à Nota Fiscal Eletrônica (NF-e).
Tipos TypeScript para NFeWizard ecosystem (NFe, NFCe, CTe)
ActiveRecord-style API for IndexedDB with TypeScript support
Infraestrutura compartilhada para documentos fiscais eletronicos brasileiros (NFe, CTe, MDFe). Certificado digital, assinatura XML, transporte mTLS, helpers.
Check password strength against several rules. Includes ActiveRecord/ActiveModel support.
Angular utility methods
Azure Communication Services Calling Web SDK
Un paquete de componentes minimizado
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports PostgreSQL and SQLite databases.
This is an API for generating the "Documento Auxiliar da Nota Fiscal Eletrônica" (DANFE) or the "Documento Auxiliar do Conhecimento de Transporte Eletrônico" (DACTE) from the XML file of the Nota Fiscal Eletrônica (NFe) or Conhecimento de Transporte Eletr
Core libraries for supporting Vida development
Classe de alto nível para carregar a ACBrLibCTe (Multi-Thread) em Node.js
An ORM for Node.js and the Sails framework
`@dr666m1/prettier-plugin-bq` is a [prettier](https://prettier.io/) plugin for **standardSQL**, which is a dialect of BigQuery.
RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data.
Typescript ORM-style base models
Biblioteca em Node.js para emissão de CTe em comunicação com a API da NS Tecnologia
RedwoodRecord is an ORM ([Object-Relational Mapping](https://en.wikipedia.org/wiki/Object%E2%80%93relational_mapping)) built on top of Prisma. It may be extended in the future to wrap other database access packages.
Biblioteca alterada para auxiliar a integração do parceiro cuja foi alterado o padrão que usava o configParceiro mudando para a passagem do token e do cnpj como parametros no envio, consulta de status e download.
A simple wrapper component make any text editable.
No description provided.
Atlex command-line interface (atlex new, atlex serve, generators, migrate, queue, …)
An ORM that supports multiple database systems (SQL/NoSQL) and ID generation middleware.
Parse git commit data, like the one we get when running `git rev-list ...`.
Brings Common Table Expressions support to ActiveRecord and makes it super easy to build and chain complex CTE queries
Allows you to use postgresql CTE in ActiveRecord
Adds support for CTEs for PostgreSQL and ActiveRecord
Improving introspection and testability of raw SQL queries in Rails This gem improves introspection and testability of raw SQL queries in Rails by: - ...providing a separate query-folder and easy instantiation A query like `AppQuery[:some_query]` is read from app/queries/some_query.sql. - ...providing options for rewriting a query: Query a CTE by replacing the select: query.select_all(select: "select * from some_cte").entries ...similarly, query the end result (i.e. CTE `_`): query.select_all(select: "select count(*) from _").entries - ...providing (custom) casting: AppQuery("select array[1,2]").select_value(cast: true) custom deserializers: AppQuery("select '1' id").select_all(cast: {"id" => ActiveRecord::Type::Integer.new}).entries - ...providing spec-helpers and generators