sagekit 0.1.2.1 → 0.1.2.2
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 +10 -0
- data/lib/sagekit/resources/AP/invoice_batches.rb +6 -1
- data/lib/sagekit/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fda9e512edd1a664acd1a00b5b43e6c0948521aeff594789302bdb504071f78b
|
4
|
+
data.tar.gz: bb343128655e1da30c90a12d375255462028bb1da6201741af27f95aef12ca49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc011fbb60922835e7f9a84625270ed04a08add389b57423f9a1bc7dfeb78321ec57e91d453147dfe4dc418c138076af294f453aa74de0b47663daeef1af9ab9
|
7
|
+
data.tar.gz: bb44641857ac43262528879c3bfb747c2cb6e695dc8d59cfdf3a451c27b793ce9835bc11cc269b61c76c8489179b3731d645501b2063172a96569f6f4bf243b0
|
data/CHANGELOG.md
CHANGED
@@ -10,3 +10,13 @@
|
|
10
10
|
|
11
11
|
- Add collection rerouces for pagination
|
12
12
|
- Fixed IC Invoices endpoint
|
13
|
+
|
14
|
+
## 0.1.2.1 (2021-12-22)
|
15
|
+
|
16
|
+
- Organize recources by Modules
|
17
|
+
- Add endpoint for AP Invoice Batches
|
18
|
+
|
19
|
+
|
20
|
+
## 0.1.2.2 (2021-12-22)
|
21
|
+
|
22
|
+
- Fixed AP Invoice Batches URL typo
|
@@ -14,7 +14,12 @@ module Sagekit
|
|
14
14
|
end
|
15
15
|
|
16
16
|
def update(company, batch_number, **attributes)
|
17
|
-
patch_request("#{company}/
|
17
|
+
patch_request("#{company}/AP/APInvoiceBatches(#{batch_number})", body: attributes)
|
18
|
+
true
|
19
|
+
end
|
20
|
+
|
21
|
+
def update_json(company, batch_number, options={})
|
22
|
+
patch_request("#{company}/AP/APInvoiceBatches(#{batch_number})", body: options)
|
18
23
|
true
|
19
24
|
end
|
20
25
|
|
data/lib/sagekit/version.rb
CHANGED