enotas_nfe 0.0.39 → 0.0.41

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: da42baad493781269727c2864c6ac39d08711b3614806aeeb5ff9208cd7752bb
4
- data.tar.gz: 83bfa17f46f37fe24ef78d182fccbb7d090e94a6bc22d6993f2209be7923f160
3
+ metadata.gz: af800170cf06ee2e082e467b7d11d38986f561eb67c865ad3f9c4ef4a3a92b51
4
+ data.tar.gz: d4e79c85aa3583bcb8a1e7cb21d84c77fe5d3fa624811d9d3b982d440b6ef0ae
5
5
  SHA512:
6
- metadata.gz: 60a28a201bef891b8ee9021c1b56f0587f6f09354f325152aa5e2eadfe39f56a77ea3362e4e4e4ab0a7270f5857edbbfa7642d77ee7bd8de428e52122f503cf6
7
- data.tar.gz: ff46e69c50fbd12550cf120be7e7d1b72173bc5a02a8de36575ebd518b65bb627f51ab111a83279f59f685dda92e20e0a468da61453994223ad20956a1df0e34
6
+ metadata.gz: 2f2c9b3275e2d0feede3ceabd3ef65b825019042d09ebe7e3767004fdb7974a6929bba6f13fbb4c401badf3e4badfec4da6c955fb276f1d954c38a076b98611f
7
+ data.tar.gz: b5fa4f8715d88f7c638fd8bca61553a607c6e9713570280cbbd4bbd5b11ffbde53d22756ef1e0b7519bb4749690cc843a10785e226fcefd1dc54ee6d0aa7cd72
@@ -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
@@ -0,0 +1,18 @@
1
+ module EnotasNfe
2
+ module Model
3
+ class InfoComercioExterior
4
+
5
+ include Virtus.model
6
+
7
+ attribute :modoPrestacao, Integer
8
+ attribute :vinculoPrestacao, Integer
9
+ attribute :tipoMoeda, Integer
10
+ attribute :valorServicoMoedaEstrangeira, Integer
11
+ attribute :mecanismoApoioPrestador, Integer
12
+ attribute :mecanismoApoioTomador, Integer
13
+ attribute :movimentacaoTemporariaBens, Integer
14
+ attribute :compartilharComMDIC, Integer
15
+ attribute :codigoNBSCorrespondenteaoServicoPrestado, String
16
+ end
17
+ end
18
+ end
@@ -5,11 +5,13 @@ module EnotasNfe
5
5
  include Virtus.model
6
6
  require "enotas_nfe/model/cidade_prestacao"
7
7
  require "enotas_nfe/model/percentual_tributos_federal"
8
+ require "enotas_nfe/model/info_comercio_exterior"
8
9
 
9
10
  attribute :cidadeprestacao, CidadePrestacao
10
11
  attribute :valorTotalRecebido, Float
11
12
  attribute :regimeApuracaoTributosSN, String
12
13
  attribute :valorPercentualTributosFederal, PercentualTributosFederal
14
+ attribute :InfoComercioExterior, InfoComercioExterior
13
15
  end
14
16
  end
15
17
  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
@@ -1,3 +1,3 @@
1
1
  module EnotasNfe
2
- VERSION = "0.0.39"
2
+ VERSION = "0.0.41"
3
3
  end
data/lib/enotas_nfe.rb CHANGED
@@ -45,8 +45,10 @@ 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"
49
50
  require "enotas_nfe/model/percentual_tributos_federal"
51
+ require "enotas_nfe/model/info_comercio_exterior"
50
52
  require "enotas_nfe/facades"
51
53
  require "enotas_nfe/client"
52
54
 
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.39
4
+ version: 0.0.41
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luis Fernando Pimenta
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-12-04 00:00:00.000000000 Z
11
+ date: 2024-02-28 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
@@ -153,6 +154,7 @@ files:
153
154
  - lib/enotas_nfe/model/help_tipo_autenticacao.rb
154
155
  - lib/enotas_nfe/model/icms.rb
155
156
  - lib/enotas_nfe/model/impostos.rb
157
+ - lib/enotas_nfe/model/info_comercio_exterior.rb
156
158
  - lib/enotas_nfe/model/issqn.rb
157
159
  - lib/enotas_nfe/model/metadados.rb
158
160
  - lib/enotas_nfe/model/nfe.rb