fattureincloud_ruby_sdk 2.1.3 → 2.1.4
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 +6 -8
- data/Gemfile.lock +3 -1
- data/README.md +436 -441
- data/fattureincloud_ruby_sdk.gemspec +1 -0
- data/lib/fattureincloud_ruby_sdk/api_client.rb +1 -1
- data/lib/fattureincloud_ruby_sdk/version.rb +1 -1
- data/sdk-version.yaml +1 -1
- data/vendor/bundle/ruby/3.1.0/cache/ostruct-0.6.3.gem +0 -0
- data/vendor/bundle/ruby/3.1.0/gems/ostruct-0.6.3/.gitignore +10 -0
- data/vendor/bundle/ruby/3.1.0/gems/ostruct-0.6.3/BSDL +22 -0
- data/vendor/bundle/ruby/3.1.0/gems/ostruct-0.6.3/COPYING +56 -0
- data/vendor/bundle/ruby/3.1.0/gems/ostruct-0.6.3/Gemfile +10 -0
- data/vendor/bundle/ruby/3.1.0/gems/ostruct-0.6.3/README.md +69 -0
- data/vendor/bundle/ruby/3.1.0/gems/ostruct-0.6.3/Rakefile +18 -0
- data/vendor/bundle/ruby/3.1.0/gems/ostruct-0.6.3/bin/console +14 -0
- data/vendor/bundle/ruby/3.1.0/gems/ostruct-0.6.3/bin/setup +8 -0
- data/vendor/bundle/ruby/3.1.0/gems/ostruct-0.6.3/lib/ostruct.rb +492 -0
- data/vendor/bundle/ruby/3.1.0/gems/ostruct-0.6.3/ostruct.gemspec +26 -0
- data/vendor/bundle/ruby/3.1.0/specifications/ostruct-0.6.3.gemspec +22 -0
- metadata +27 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 81ec59d23dbcc940067a6094923faa46f2c9cede1e94de80c7e898eb712c4c27
|
|
4
|
+
data.tar.gz: f51cd183ccc7d8a78b8c0ba70d86a27bdc528bb72451620c1b68772fbfa78a55
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 38dfd26039197708888d9e6f65c477e4d81c06384eae2b04bbff99839491468a7dc48310e257f15f9df0ea2281496f349d874414f4d81b616034b5d91a73455d
|
|
7
|
+
data.tar.gz: fee4a75c5a8226c208d4bfc4009081645b19cca4b91079a3d83ad395cded07dfea4ddad5eb5c65c5f6451868048757dcd969596b054e15952f1a6b4035783ec2
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### 2.1.4 (2026-05-13)
|
|
6
|
+
|
|
5
7
|
### 2.1.3 (2026-05-13)
|
|
6
8
|
|
|
7
9
|
### 2.1.2 (2025-08-18)
|
|
@@ -42,31 +44,27 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
42
44
|
|
|
43
45
|
### 2.0.6 (2022-03-16)
|
|
44
46
|
|
|
45
|
-
|
|
46
47
|
### Bug Fixes
|
|
47
48
|
|
|
48
|
-
|
|
49
|
+
- added filter parameter and detailed countries method ([0f78c48](https://github.com/fattureincloud/fattureincloud-ruby-sdk/commit/0f78c487202d8cd8a2d68010a1876e45ee047000))
|
|
49
50
|
|
|
50
51
|
### 2.0.5 (2022-03-01)
|
|
51
52
|
|
|
52
|
-
|
|
53
53
|
### Bug Fixes
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
- models are now nullable ([a6a4b50](https://github.com/fattureincloud/fattureincloud-ruby-sdk/commit/a6a4b50a3d849b9bf3a706ef30e4cf290f36267a))
|
|
56
56
|
|
|
57
57
|
### 2.0.4 (2022-02-08)
|
|
58
58
|
|
|
59
|
-
|
|
60
59
|
### Bug Fixes
|
|
61
60
|
|
|
62
|
-
|
|
61
|
+
- added einvoice rejection reason and refactor cashbook ([615496c](https://github.com/fattureincloud/fattureincloud-ruby-sdk/commit/615496ca267c03509f8d24ba28c41f8f0972de64))
|
|
63
62
|
|
|
64
63
|
### 2.0.3 (2022-01-25)
|
|
65
64
|
|
|
66
|
-
|
|
67
65
|
### Bug Fixes
|
|
68
66
|
|
|
69
|
-
|
|
67
|
+
- added get xml method ([ad2e07a](https://github.com/fattureincloud/fattureincloud-ruby-sdk/commit/ad2e07afdd69397a01eabfb34f1fe3e1ba764eca))
|
|
70
68
|
|
|
71
69
|
### 2.0.2 (2022-01-10)
|
|
72
70
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
fattureincloud_ruby_sdk (2.1.
|
|
4
|
+
fattureincloud_ruby_sdk (2.1.4)
|
|
5
|
+
ostruct
|
|
5
6
|
typhoeus (~> 1.0, >= 1.0.1)
|
|
6
7
|
|
|
7
8
|
GEM
|
|
@@ -17,6 +18,7 @@ GEM
|
|
|
17
18
|
ffi (1.17.4)
|
|
18
19
|
logger (1.7.0)
|
|
19
20
|
method_source (1.1.0)
|
|
21
|
+
ostruct (0.6.3)
|
|
20
22
|
parallel (1.28.0)
|
|
21
23
|
parser (3.3.11.1)
|
|
22
24
|
ast (~> 2.4.1)
|