e-invoice-api 0.15.0 → 0.16.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 +4 -4
- data/CHANGELOG.md +13 -0
- data/README.md +1 -1
- data/lib/e_invoice_api/resources/documents/attachments.rb +4 -1
- data/lib/e_invoice_api/version.rb +1 -1
- data/lib/e_invoice_api.rb +1 -0
- data/manifest.yaml +1 -0
- data/rbi/e_invoice_api/resources/documents/attachments.rbi +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5af56e53a9b358f32da6e9b575e4fb4a8216f03e7b2fdd864235ce89c4f4cda0
|
|
4
|
+
data.tar.gz: 40126def6f910f37fe3fc030ccd09f017872af2eb6a5829aab35e6cfed26a596
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87d9cdad0155e4c5c83a25f4288f09f3edc9c1e93794c079a510da56f632cb91a2e72035055030a12ae03b12229cbb388aa285984b21ac804c9da841cece19c5
|
|
7
|
+
data.tar.gz: a470900caa8fd75e54a3afe520db69fdd3bfdeeb28727f3fc7ada2292c1fe3fc87d311c8877705b36c3c79f4004d42dac0d4fa067cc6c61c4e2da49fc6cf65f7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.16.0 (2025-12-11)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.15.0...v0.16.0](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.15.0...v0.16.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([00c8500](https://github.com/e-invoice-be/e-invoice-rb/commit/00c8500d19f3a937e71e4d50fa387257f1a94fe0))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
* explicitly require "base64" gem ([3f44730](https://github.com/e-invoice-be/e-invoice-rb/commit/3f4473046beeea219a87f4d03f003c66410ba86c))
|
|
15
|
+
|
|
3
16
|
## 0.15.0 (2025-11-18)
|
|
4
17
|
|
|
5
18
|
Full Changelog: [v0.14.0...v0.15.0](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.14.0...v0.15.0)
|
data/README.md
CHANGED
|
@@ -74,7 +74,10 @@ module EInvoiceAPI
|
|
|
74
74
|
)
|
|
75
75
|
end
|
|
76
76
|
|
|
77
|
-
#
|
|
77
|
+
# @deprecated
|
|
78
|
+
#
|
|
79
|
+
# Add one or more attachments when creating a new invoice or credit note via POST
|
|
80
|
+
# /api/documents/
|
|
78
81
|
#
|
|
79
82
|
# @overload add(document_id, file:, request_options: {})
|
|
80
83
|
#
|
data/lib/e_invoice_api.rb
CHANGED
data/manifest.yaml
CHANGED
|
@@ -37,7 +37,8 @@ module EInvoiceAPI
|
|
|
37
37
|
def delete(attachment_id, document_id:, request_options: {})
|
|
38
38
|
end
|
|
39
39
|
|
|
40
|
-
# Add
|
|
40
|
+
# Add one or more attachments when creating a new invoice or credit note via POST
|
|
41
|
+
# /api/documents/
|
|
41
42
|
sig do
|
|
42
43
|
params(
|
|
43
44
|
document_id: String,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: e-invoice-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.16.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- e-invoice
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-11
|
|
11
|
+
date: 2025-12-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|