chargebee 2.8.1 → 2.9.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 +35 -0
- package/LICENSE +1 -1
- package/lib/chargebee.js +1 -1
- package/lib/resources/api_endpoints.js +14 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
### v2.9.0 (2022-01-21)
|
|
2
|
+
* * *
|
|
3
|
+
|
|
4
|
+
#### New endpoints:
|
|
5
|
+
* credit_notes#download_einvoice has been added to the credit_notes resource.
|
|
6
|
+
* invoice#download_einvoice has been added to the invoice resource.
|
|
7
|
+
|
|
8
|
+
#### New attributes:
|
|
9
|
+
* is_einvoice_enabled, entity_identifier_scheme, entity_identifier_standard and entity_identifiers[] have been added to the customer resource.
|
|
10
|
+
* einvoice has been added to the invoice resource.
|
|
11
|
+
* einvoice has been added to the credit_notes resource.
|
|
12
|
+
* mime_type has been added to the download resource.
|
|
13
|
+
|
|
14
|
+
#### New Input parameters:
|
|
15
|
+
* entity_identifier_scheme, entity_identifier_standard, is_einvoice_enabled, entity_identifiers[id][0..N], entity_identifiers[scheme][0..N], entity_identifiers[value][0..N], entity_identifiers[standard][0..N] have been added to customers#create_a_customer, customers#update_billing_info_for_a_customer apis.
|
|
16
|
+
* customer[entity_identifier_scheme], customer[entity_identifier_standard], customer[is_einvoice_enabled], entity_identifiers[id][0..N], entity_identifiers[scheme][0..N], entity_identifiers[value][0..N], entity_identifiers[standard][0..N] have been added to the subscriptions#create_a_subscription api.
|
|
17
|
+
* customer[entity_identifier_scheme], customer[entity_identifier_standard], customer[is_einvoice_enabled] have been added to subscriptions#update_a_subscription and subscriptions#update_subscription_for_items apis.
|
|
18
|
+
|
|
19
|
+
#### New Enum values:
|
|
20
|
+
* operation enum has been added.
|
|
21
|
+
* status enum has been added in credit_notes_einvoice subresource of credit_notes resource.
|
|
22
|
+
|
|
23
|
+
#### Deprecated attributes:
|
|
24
|
+
* user, type, payment_method and exchange_rate have been deprecated from TaxWithHeld resource.
|
|
25
|
+
|
|
26
|
+
#### Deprecated enums:
|
|
27
|
+
* type and payment_method have been deprecated in TaxWithHeld resource.
|
|
28
|
+
|
|
29
|
+
#### Updated parameters:
|
|
30
|
+
* hierarchy_operation_type has been made mandatory in customers#get_hierarchy api.
|
|
31
|
+
|
|
32
|
+
#### Removed Filter parameters:
|
|
33
|
+
* create_pending_invoices has been removed from subscriptions#list_subscriptions api.
|
|
34
|
+
|
|
35
|
+
|
|
1
36
|
### v2.8.1 (2022-01-05)
|
|
2
37
|
* * *
|
|
3
38
|
|
package/LICENSE
CHANGED
package/lib/chargebee.js
CHANGED
|
@@ -746,6 +746,13 @@ var _endpoints = {
|
|
|
746
746
|
"/pdf",
|
|
747
747
|
true
|
|
748
748
|
],
|
|
749
|
+
[
|
|
750
|
+
"download_einvoice",
|
|
751
|
+
"GET",
|
|
752
|
+
"/invoices",
|
|
753
|
+
"/download_einvoice",
|
|
754
|
+
true
|
|
755
|
+
],
|
|
749
756
|
[
|
|
750
757
|
"add_charge",
|
|
751
758
|
"POST",
|
|
@@ -868,6 +875,13 @@ var _endpoints = {
|
|
|
868
875
|
"/pdf",
|
|
869
876
|
true
|
|
870
877
|
],
|
|
878
|
+
[
|
|
879
|
+
"download_einvoice",
|
|
880
|
+
"GET",
|
|
881
|
+
"/credit_notes",
|
|
882
|
+
"/download_einvoice",
|
|
883
|
+
true
|
|
884
|
+
],
|
|
871
885
|
[
|
|
872
886
|
"refund",
|
|
873
887
|
"POST",
|