enotas_api 4.3.1 → 4.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: caef201b4f4939c8d0f260941972ca6d1ff23f882c36cf0ff544ebdbfc2e58b4
4
- data.tar.gz: 14bf1bd28f18517d3deea6d46b3e262590b3a330d584fe8522dc0c4f9f8bca46
3
+ metadata.gz: 9d88e8e9d10a80745f194b2e2af167252a731af596f70a57f5f513da55dd57c0
4
+ data.tar.gz: e2d094508369bd5da1e46bb11b343d7280646785762bd984707bb48ff57de3ad
5
5
  SHA512:
6
- metadata.gz: d587d340ebc56001359b43504369aa36b37a9eb8ea4bf0de8eb38a576076780b5c79ca16ccb10ce2dc744402f8647f941d9a7ba4b2bff2d281d500f9ce80d7d5
7
- data.tar.gz: 9dcc1f0dd2c215a78f18dabd2dfc165dc722cd60a7d7502367e4d06a68d1c47fe9340a1c9f21f3858718b5e0afc323b1de43607a2543da32d2e36affd11b50ea
6
+ metadata.gz: f212306359ded10583b7ebc7d1631b1d08f7f882a2a902f06732a85847ba74c8213c167cc53171871355ca34b5c0f6ddca188bf13229f7a735767d889546c878
7
+ data.tar.gz: e11ec54cee1e7b4bd32bbce054062a2d47bb671751f6242fb268d9539faedcada675a822270ba45c50d1b23b9ac59ec820ed68215308324aa37eedfb0cc16a74
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 4.3.3
2
+ - Add IbsCbs (classificacaoTributaria and codigoIndicadorOperacao) structure on v1/nfs-e
3
+ # 4.3.2
4
+ - Add ean and eanTributavel structure on v2/nf-e and v2/nfc-e
1
5
  # 4.3.1
2
6
  - Add emissaoNFeConsumidor structure on v2/empresas
3
7
  # 4.3.0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- enotas_api (4.3.1)
4
+ enotas_api (4.3.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative '../../common/entity'
4
+ require_relative 'nfs_servico_ibs_cbs'
4
5
 
5
6
  module EnotasApi
6
7
  module V1
@@ -19,7 +20,8 @@ module EnotasApi
19
20
  valorCsll: :decimal,
20
21
  valorInss: :decimal,
21
22
  valorIr: :decimal,
22
- codigoInternoServicoMunicipal: :string
23
+ codigoInternoServicoMunicipal: :string,
24
+ ibsCbs: NfsServicoIbsCbs
23
25
  end
24
26
  end
25
27
  end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative '../../common/entity'
4
+
5
+ module EnotasApi
6
+ module V1
7
+ class NfsServicoIbsCbs < EnotasApi::Entity
8
+ attributes classificacaoTributaria: :string,
9
+ codigoIndicadorOperacao: :string
10
+ end
11
+ end
12
+ end
@@ -16,7 +16,9 @@ module EnotasApi
16
16
  unidadeMedida: :string,
17
17
  valorUnitario: :decimal,
18
18
  impostos: NfceItemImpostos,
19
- informacoesAdicionais: :string
19
+ informacoesAdicionais: :string,
20
+ ean: :string,
21
+ eanTributavel: :string
20
22
  end
21
23
  end
22
24
  end
@@ -18,7 +18,9 @@ module EnotasApi
18
18
  valorUnitario: :decimal,
19
19
  frete: :decimal,
20
20
  impostos: NfeItemImpostos,
21
- informacoesAdicionais: :string
21
+ informacoesAdicionais: :string,
22
+ ean: :string,
23
+ eanTributavel: :string
22
24
  end
23
25
  end
24
26
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EnotasApi
4
- VERSION = '4.3.1'
4
+ VERSION = '4.3.3'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enotas_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.3.1
4
+ version: 4.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eduardo Bohrer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-14 00:00:00.000000000 Z
11
+ date: 2026-03-12 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Non oficial, well supported, e-notas ruby api client
14
14
  email:
@@ -69,6 +69,7 @@ files:
69
69
  - lib/enotas_api/v1/entities/nfs_cliente_endereco.rb
70
70
  - lib/enotas_api/v1/entities/nfs_dados_adicionais_email.rb
71
71
  - lib/enotas_api/v1/entities/nfs_servico.rb
72
+ - lib/enotas_api/v1/entities/nfs_servico_ibs_cbs.rb
72
73
  - lib/enotas_api/v1/habilitar_empresa.rb
73
74
  - lib/enotas_api/v1/incluir_atualizar_empresa.rb
74
75
  - lib/enotas_api/v1/listar_empresas.rb
@@ -151,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
151
152
  - !ruby/object:Gem::Version
152
153
  version: '0'
153
154
  requirements: []
154
- rubygems_version: 3.3.26
155
+ rubygems_version: 3.4.10
155
156
  signing_key:
156
157
  specification_version: 4
157
158
  summary: E-notas API client