enotas_nfe 0.0.37 → 0.0.40

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6efd6aef2c77782f6bf938f7001a8acaa8888f7264dd007d7b8cf560c291bc79
4
- data.tar.gz: 7232b4f070708a5880355e14ac9a145be2c58f64d5aa30a5407116bd647ddacf
3
+ metadata.gz: b31cf2c7e02375db563925e8ddcc47f6c358a4cc7a8a2d68e669bf24a9b3180c
4
+ data.tar.gz: 03cc20a19566791f6ff80d8e76a2c4e2674ffa12e9d3ca8c2ffab11cc811e898
5
5
  SHA512:
6
- metadata.gz: c9f7799eb5b59d3c32e79597703b8545177842eb0ade931bd97f1592ae1188e396a63b52035c63a9d8a6bc3445208ee31aa3ca14af387ba0cf522d0fd1442b47
7
- data.tar.gz: e17d180bb811789fbaa578d0b49e145a493a5cbefe17fba523d464bccb88081c5a9a3007227fffa2f4910e05537f32c36e3e4af6c74bd24f91d383c10a9efaa1
6
+ metadata.gz: f91a18747fbe70dfb65a7dcdd32bd7ae369cc940def451d1356e48c7a924feaf6db30578d4b9ba3aa1c20ab3065c15bb96248118243f3a4106bc70bd187bc5da
7
+ data.tar.gz: f1b048836753cf9843ccd5860bfa13616a302e2fcabf37653d9992e771cc9feb974d79ce473196b724f282429a5d26be5bdc8c9aa5a4cb6f7925ec90bd58ec60
@@ -0,0 +1,10 @@
1
+ module EnotasNfe
2
+ module Model
3
+ class DadosAdicionaisEmail
4
+
5
+ include Virtus.model
6
+
7
+ attribute :outrosDestinatarios, String
8
+ end
9
+ end
10
+ end
@@ -7,6 +7,7 @@ module EnotasNfe
7
7
  require "enotas_nfe/model/configuracoes_nfse_homologacao"
8
8
  require "enotas_nfe/model/configuracoes_nfse_producao"
9
9
  require "enotas_nfe/model/emissao_nfe_consumidor"
10
+ require "enotas_nfe/model/metadados"
10
11
  require 'open-uri'
11
12
 
12
13
  include Virtus.model
@@ -38,6 +39,8 @@ module EnotasNfe
38
39
  attribute :emissaoNFeConsumidor, EmissaoNFeConsumidor
39
40
  attribute :configuracoesNFSeHomologacao, ConfiguracoesNFSeHomologacao
40
41
  attribute :configuracoesNFSeProducao, ConfiguracoesNFSeProducao
42
+ attribute :mei, Boolean
43
+ attribute :metadados, Metadados
41
44
  end
42
45
  end
43
46
  end
@@ -4,9 +4,12 @@ module EnotasNfe
4
4
 
5
5
  include Virtus.model
6
6
  require "enotas_nfe/model/cidade_prestacao"
7
+ require "enotas_nfe/model/percentual_tributos_federal"
7
8
 
8
9
  attribute :cidadeprestacao, CidadePrestacao
9
10
  attribute :valorTotalRecebido, Float
11
+ attribute :regimeApuracaoTributosSN, String
12
+ attribute :valorPercentualTributosFederal, PercentualTributosFederal
10
13
  end
11
14
  end
12
15
  end
@@ -4,6 +4,7 @@ module EnotasNfe
4
4
 
5
5
  include Virtus.model
6
6
  require "enotas_nfe/model/metadados"
7
+ require "enotas_nfe/model/dados_adicionais_email"
7
8
 
8
9
  attribute :id, String
9
10
  attribute :numero, Integer
@@ -36,7 +37,7 @@ module EnotasNfe
36
37
  attribute :transporte, Transporte
37
38
  attribute :observacoes, String
38
39
  attribute :metadados, Metadados
39
-
40
+ attribute :dadosAdicionaisEmail, DadosAdicionaisEmail
40
41
  end
41
42
  end
42
43
  end
@@ -0,0 +1,13 @@
1
+ module EnotasNfe
2
+ module Model
3
+ class PercentualTributosFederal
4
+
5
+ include Virtus.model
6
+
7
+ attribute :PercentualTotalFederal, Integer
8
+ attribute :PercentualTotalEstadual, Integer
9
+ attribute :PercentualTotalMunicipal, Integer
10
+ end
11
+ end
12
+ end
13
+
@@ -1,3 +1,3 @@
1
1
  module EnotasNfe
2
- VERSION = "0.0.37"
2
+ VERSION = "0.0.40"
3
3
  end
data/lib/enotas_nfe.rb CHANGED
@@ -45,7 +45,9 @@ require "enotas_nfe/model/impostos"
45
45
  require "enotas_nfe/model/issqn"
46
46
  require "enotas_nfe/model/pis"
47
47
  require "enotas_nfe/model/metadados"
48
+ require "enotas_nfe/model/dados_adicionais_email"
48
49
  require "enotas_nfe/model/cidade_prestacao"
50
+ require "enotas_nfe/model/percentual_tributos_federal"
49
51
  require "enotas_nfe/facades"
50
52
  require "enotas_nfe/client"
51
53
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enotas_nfe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.37
4
+ version: 0.0.40
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luis Fernando Pimenta
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-10-19 00:00:00.000000000 Z
11
+ date: 2023-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -144,6 +144,7 @@ files:
144
144
  - lib/enotas_nfe/model/configuracoes_nfse_producao.rb
145
145
  - lib/enotas_nfe/model/credenciadora_cartao.rb
146
146
  - lib/enotas_nfe/model/csc.rb
147
+ - lib/enotas_nfe/model/dados_adicionais_email.rb
147
148
  - lib/enotas_nfe/model/emissao_nfe_consumidor.rb
148
149
  - lib/enotas_nfe/model/empresa.rb
149
150
  - lib/enotas_nfe/model/endereco.rb
@@ -159,6 +160,7 @@ files:
159
160
  - lib/enotas_nfe/model/nfe_referenciada.rb
160
161
  - lib/enotas_nfe/model/pagamento.rb
161
162
  - lib/enotas_nfe/model/pedido.rb
163
+ - lib/enotas_nfe/model/percentual_tributos_federal.rb
162
164
  - lib/enotas_nfe/model/pis.rb
163
165
  - lib/enotas_nfe/model/produto.rb
164
166
  - lib/enotas_nfe/model/regimes_especial_tributacao.rb
@@ -175,7 +177,7 @@ homepage: https://github.com/luispimenta/EnotasNfe
175
177
  licenses:
176
178
  - MIT
177
179
  metadata: {}
178
- post_install_message:
180
+ post_install_message:
179
181
  rdoc_options: []
180
182
  require_paths:
181
183
  - lib
@@ -190,8 +192,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
190
192
  - !ruby/object:Gem::Version
191
193
  version: '0'
192
194
  requirements: []
193
- rubygems_version: 3.1.2
194
- signing_key:
195
+ rubygems_version: 3.4.10
196
+ signing_key:
195
197
  specification_version: 4
196
198
  summary: E-Notas nfe
197
199
  test_files: []