chargebee 2.18.0 → 2.19.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.
- package/CHANGELOG.md +26 -0
- package/lib/chargebee.js +1 -1
- package/lib/resources/api_endpoints.js +22 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
### v2.19.0 (2023-02-17)
|
|
2
|
+
* * *
|
|
3
|
+
|
|
4
|
+
#### New Attributes:
|
|
5
|
+
* resource_version and updated_at parameter has been added to the tax_withheld resource.
|
|
6
|
+
|
|
7
|
+
#### Added input parameters:
|
|
8
|
+
* ListRequestParams#updated_at parameter has been added to attached_item resource.
|
|
9
|
+
* AttachedItemsAttachedItemParams#updated_at parameter has been added to export resource.
|
|
10
|
+
* CheckoutGiftRequestParams#coupon_ids parameter has been added to hosted_page resource.
|
|
11
|
+
* ProcessReceiptCustomerParams#email, ProcessReceiptCustomerParams#first_name and ProcessReceiptCustomerParams#last_name parameters has been added to in_app_subscription resource.
|
|
12
|
+
|
|
13
|
+
#### New endpoints:
|
|
14
|
+
* invoice#RecordTaxWithheld and invoice#RemoveTaxWithheld has been added to the invoice resource.
|
|
15
|
+
* credit_note#RemoveTaxWithheldRefund has been added to the credit_note resource.
|
|
16
|
+
|
|
17
|
+
#### New Enum values:
|
|
18
|
+
* custom has been added to payment_method Enum.
|
|
19
|
+
* ecentric has been added to gateway Enum.
|
|
20
|
+
|
|
21
|
+
#### Removed input parameters:
|
|
22
|
+
* EstimateRequestParams#EstimateInvoiceInfoParams parameter has been removed from purchase resource.
|
|
23
|
+
|
|
24
|
+
#### Deprecated input parameters:
|
|
25
|
+
* CheckoutGiftRequest#coupon parameter have been deprecated in hosted_page resource.
|
|
26
|
+
|
|
1
27
|
### v2.18.0 (2023-01-13)
|
|
2
28
|
* * *
|
|
3
29
|
|
package/lib/chargebee.js
CHANGED
|
@@ -824,6 +824,20 @@ var _endpoints = {
|
|
|
824
824
|
"/record_payment",
|
|
825
825
|
true
|
|
826
826
|
],
|
|
827
|
+
[
|
|
828
|
+
"record_tax_withheld",
|
|
829
|
+
"POST",
|
|
830
|
+
"/invoices",
|
|
831
|
+
"/record_tax_withheld",
|
|
832
|
+
true
|
|
833
|
+
],
|
|
834
|
+
[
|
|
835
|
+
"remove_tax_withheld",
|
|
836
|
+
"POST",
|
|
837
|
+
"/invoices",
|
|
838
|
+
"/remove_tax_withheld",
|
|
839
|
+
true
|
|
840
|
+
],
|
|
827
841
|
[
|
|
828
842
|
"refund",
|
|
829
843
|
"POST",
|
|
@@ -960,6 +974,13 @@ var _endpoints = {
|
|
|
960
974
|
"/delete",
|
|
961
975
|
true
|
|
962
976
|
],
|
|
977
|
+
[
|
|
978
|
+
"remove_tax_withheld_refund",
|
|
979
|
+
"POST",
|
|
980
|
+
"/credit_notes",
|
|
981
|
+
"/remove_tax_withheld_refund",
|
|
982
|
+
true
|
|
983
|
+
],
|
|
963
984
|
[
|
|
964
985
|
"resend_einvoice",
|
|
965
986
|
"POST",
|
|
@@ -2563,4 +2584,4 @@ var _endpoints = {
|
|
|
2563
2584
|
]
|
|
2564
2585
|
]
|
|
2565
2586
|
};
|
|
2566
|
-
module.exports = _endpoints;
|
|
2587
|
+
module.exports = _endpoints;
|