e-invoice-api 0.2.7 → 0.4.0

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: ff3b72df8fa6e8194ffdeec240a6b59429643e13c62bcb8c73ae67250e7ad8d8
4
- data.tar.gz: c7f8fe3e30461d96e453ec65370f2004408b73e4d31039f2cc9f80ed11640bcd
3
+ metadata.gz: c941e7dfc13571104cdb94d431d83ef109ab8ded9b974ee47c200dda4a7a45a8
4
+ data.tar.gz: d72386e973236ade308a80cdffa96895f4b6ebe14f7a00991ed1a056b482a896
5
5
  SHA512:
6
- metadata.gz: 3751c1f4de78e96bade5d7afbaf6227d6a9cbd1184cc3e46a1145855b856dd1e81b2fbd1d83c9760162121029dbd395404e446ba2a4de0ac5d048e508dc78e37
7
- data.tar.gz: f4e80aaf99779911eae81446238523c2356e37c3254dbaf18bf758478e64a04686159e32f221839f5d352f4806657acbeafbaf4a05266c9cff88804ea9e25206
6
+ metadata.gz: 41f10efbd7bf90d8dd3374a9b2a2ad888c494cba639d9a8bf9624a0a44bafcf9c7820540fd9eae8166605d3501428af730dd0e247e0ad2e9a3cd0a294621c5d1
7
+ data.tar.gz: 20ad9882275064b83ca81bd0e07f419dcc625fcdfcbbe18c16720b5fcf3c42a48181574c7282f8e8137c69b19a23f50149f473b8914adcd60e90d9d647be3520
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.0 (2025-09-16)
4
+
5
+ Full Changelog: [v0.3.0...v0.4.0](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.3.0...v0.4.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([c79c3df](https://github.com/e-invoice-be/e-invoice-rb/commit/c79c3df2cc36e34fcda97c1d4a52bbe994c2e563))
10
+
11
+ ## 0.3.0 (2025-09-02)
12
+
13
+ Full Changelog: [v0.2.7...v0.3.0](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.2.7...v0.3.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([851373b](https://github.com/e-invoice-be/e-invoice-rb/commit/851373bbd4e2e7d2ccf3610f553a4f482fdb8650))
18
+
3
19
  ## 0.2.7 (2025-08-25)
4
20
 
5
21
  Full Changelog: [v0.2.6...v0.2.7](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.2.6...v0.2.7)
data/README.md CHANGED
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
17
17
  <!-- x-release-please-start-version -->
18
18
 
19
19
  ```ruby
20
- gem "e-invoice-api", "~> 0.2.7"
20
+ gem "e-invoice-api", "~> 0.4.0"
21
21
  ```
22
22
 
23
23
  <!-- x-release-please-end -->
@@ -9,6 +9,7 @@ module EInvoiceAPI
9
9
  required :file_name, String
10
10
 
11
11
  # @!attribute file_data
12
+ # Base64 encoded file data
12
13
  #
13
14
  # @return [String, nil]
14
15
  optional :file_data, String, nil?: true
@@ -25,8 +26,11 @@ module EInvoiceAPI
25
26
 
26
27
  # @!method initialize(file_name:, file_data: nil, file_size: nil, file_type: nil)
27
28
  # @param file_name [String]
28
- # @param file_data [String, nil]
29
+ #
30
+ # @param file_data [String, nil] Base64 encoded file data
31
+ #
29
32
  # @param file_size [Integer]
33
+ #
30
34
  # @param file_type [String]
31
35
  end
32
36
  end