chargebee 2.17.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 +47 -0
- package/lib/chargebee.js +1 -1
- package/lib/resources/api_endpoints.js +29 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,50 @@
|
|
|
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
|
+
|
|
27
|
+
### v2.18.0 (2023-01-13)
|
|
28
|
+
* * *
|
|
29
|
+
|
|
30
|
+
#### New Attributes:
|
|
31
|
+
* shipping_address and billing_address parameter has been added to the CreditNote.
|
|
32
|
+
* is_advance_charge has been added to the UnbilledCharge.
|
|
33
|
+
|
|
34
|
+
#### Added input parameters:
|
|
35
|
+
* CreateSubForCustomerQuoteRequest#subscription[po_number] and CreateSubItemsForCustomerQuoteRequest#subscription[po_number] parameter has been added to Quote resource.
|
|
36
|
+
* ImportUnbilledChargesRequest#unbilled_charges[is_advance_charge] parameter has been added to Subscription resource.
|
|
37
|
+
* ImportInvoiceRequest#has_advance_charges parameter has been added to Invoice resource.
|
|
38
|
+
|
|
39
|
+
#### New endpoints:
|
|
40
|
+
* Invoice#DeleteLineItemsRequest has been added to the Invoice resource.
|
|
41
|
+
|
|
42
|
+
#### New Enum values:
|
|
43
|
+
* SUBSCRIPTION_TRIAL_EXTENDED has been added to EventTypeEnum.
|
|
44
|
+
* ZERO_VALUE_ITEM has been added to TaxExemptReasonEnum.
|
|
45
|
+
* BANK_OF_AMERICA has been added to GatewayEnum.
|
|
46
|
+
|
|
47
|
+
|
|
1
48
|
### v2.17.0 (2022-11-10)
|
|
2
49
|
* * *
|
|
3
50
|
|
package/lib/chargebee.js
CHANGED
|
@@ -726,6 +726,13 @@ var _endpoints = {
|
|
|
726
726
|
"/sync_usages",
|
|
727
727
|
true
|
|
728
728
|
],
|
|
729
|
+
[
|
|
730
|
+
"delete_line_items",
|
|
731
|
+
"POST",
|
|
732
|
+
"/invoices",
|
|
733
|
+
"/delete_line_items",
|
|
734
|
+
true
|
|
735
|
+
],
|
|
729
736
|
[
|
|
730
737
|
"apply_credits",
|
|
731
738
|
"POST",
|
|
@@ -817,6 +824,20 @@ var _endpoints = {
|
|
|
817
824
|
"/record_payment",
|
|
818
825
|
true
|
|
819
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
|
+
],
|
|
820
841
|
[
|
|
821
842
|
"refund",
|
|
822
843
|
"POST",
|
|
@@ -953,6 +974,13 @@ var _endpoints = {
|
|
|
953
974
|
"/delete",
|
|
954
975
|
true
|
|
955
976
|
],
|
|
977
|
+
[
|
|
978
|
+
"remove_tax_withheld_refund",
|
|
979
|
+
"POST",
|
|
980
|
+
"/credit_notes",
|
|
981
|
+
"/remove_tax_withheld_refund",
|
|
982
|
+
true
|
|
983
|
+
],
|
|
956
984
|
[
|
|
957
985
|
"resend_einvoice",
|
|
958
986
|
"POST",
|
|
@@ -2556,4 +2584,4 @@ var _endpoints = {
|
|
|
2556
2584
|
]
|
|
2557
2585
|
]
|
|
2558
2586
|
};
|
|
2559
|
-
module.exports = _endpoints;
|
|
2587
|
+
module.exports = _endpoints;
|