chargebee 2.16.0 → 2.18.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 +43 -0
- package/lib/chargebee.js +1 -1
- package/lib/resources/api_endpoints.js +21 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,46 @@
|
|
|
1
|
+
### v2.18.0 (2023-01-13)
|
|
2
|
+
* * *
|
|
3
|
+
|
|
4
|
+
#### New Attributes:
|
|
5
|
+
* shipping_address and billing_address parameter has been added to the CreditNote.
|
|
6
|
+
* is_advance_charge has been added to the UnbilledCharge.
|
|
7
|
+
|
|
8
|
+
#### Added input parameters:
|
|
9
|
+
* CreateSubForCustomerQuoteRequest#subscription[po_number] and CreateSubItemsForCustomerQuoteRequest#subscription[po_number] parameter has been added to Quote resource.
|
|
10
|
+
* ImportUnbilledChargesRequest#unbilled_charges[is_advance_charge] parameter has been added to Subscription resource.
|
|
11
|
+
* ImportInvoiceRequest#has_advance_charges parameter has been added to Invoice resource.
|
|
12
|
+
|
|
13
|
+
#### New endpoints:
|
|
14
|
+
* Invoice#DeleteLineItemsRequest has been added to the Invoice resource.
|
|
15
|
+
|
|
16
|
+
#### New Enum values:
|
|
17
|
+
* SUBSCRIPTION_TRIAL_EXTENDED has been added to EventTypeEnum.
|
|
18
|
+
* ZERO_VALUE_ITEM has been added to TaxExemptReasonEnum.
|
|
19
|
+
* BANK_OF_AMERICA has been added to GatewayEnum.
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### v2.17.0 (2022-11-10)
|
|
23
|
+
* * *
|
|
24
|
+
|
|
25
|
+
#### New endpoints:
|
|
26
|
+
* credit_notes#import_credit_note has been added to the credit_notes resource.
|
|
27
|
+
* subscriptions#import_unbilled_charges has been added to the subscriptions resource.
|
|
28
|
+
|
|
29
|
+
#### New attributes:
|
|
30
|
+
* shipped_at parameter has been added to the orders#list_orders API.
|
|
31
|
+
|
|
32
|
+
#### Added input parameters:
|
|
33
|
+
* voided_at and void_reason_code have been added to the invoices#import_invoice API.
|
|
34
|
+
|
|
35
|
+
#### New attributes:
|
|
36
|
+
* business_entity_id has been added to the orders resource.
|
|
37
|
+
|
|
38
|
+
#### New Enum values:
|
|
39
|
+
* registered has been added to the status enum in credit_note_einvoice and invoice_einvoice subresources.
|
|
40
|
+
* type enum has been added to the subscription_discount subresource.
|
|
41
|
+
* subscription_entitlements_created has been added to the event_type enum.
|
|
42
|
+
|
|
43
|
+
|
|
1
44
|
### v2.16.0 (2022-09-20)
|
|
2
45
|
|
|
3
46
|
#### New Resource:
|
package/lib/chargebee.js
CHANGED
|
@@ -182,6 +182,13 @@ var _endpoints = {
|
|
|
182
182
|
"/import_contract_term",
|
|
183
183
|
true
|
|
184
184
|
],
|
|
185
|
+
[
|
|
186
|
+
"import_unbilled_charges",
|
|
187
|
+
"POST",
|
|
188
|
+
"/subscriptions",
|
|
189
|
+
"/import_unbilled_charges",
|
|
190
|
+
true
|
|
191
|
+
],
|
|
185
192
|
[
|
|
186
193
|
"import_for_items",
|
|
187
194
|
"POST",
|
|
@@ -719,6 +726,13 @@ var _endpoints = {
|
|
|
719
726
|
"/sync_usages",
|
|
720
727
|
true
|
|
721
728
|
],
|
|
729
|
+
[
|
|
730
|
+
"delete_line_items",
|
|
731
|
+
"POST",
|
|
732
|
+
"/invoices",
|
|
733
|
+
"/delete_line_items",
|
|
734
|
+
true
|
|
735
|
+
],
|
|
722
736
|
[
|
|
723
737
|
"apply_credits",
|
|
724
738
|
"POST",
|
|
@@ -952,6 +966,13 @@ var _endpoints = {
|
|
|
952
966
|
"/credit_notes",
|
|
953
967
|
"/resend_einvoice",
|
|
954
968
|
true
|
|
969
|
+
],
|
|
970
|
+
[
|
|
971
|
+
"import_credit_note",
|
|
972
|
+
"POST",
|
|
973
|
+
"/credit_notes",
|
|
974
|
+
"/import_credit_note",
|
|
975
|
+
false
|
|
955
976
|
]
|
|
956
977
|
],
|
|
957
978
|
"unbilled_charge": [
|