chargebee 2.46.0 → 2.47.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.
@@ -30,6 +30,8 @@ declare module 'chargebee' {
30
30
 
31
31
  line_item_tiers?:InvoiceEstimate.LineItemTier[];
32
32
 
33
+ line_item_credits?:InvoiceEstimate.LineItemCredit[];
34
+
33
35
  line_item_discounts?:InvoiceEstimate.LineItemDiscount[];
34
36
 
35
37
  round_off_amount?:number;
@@ -159,6 +161,13 @@ declare module 'chargebee' {
159
161
 
160
162
  unit_amount_in_decimal?:string;
161
163
  }
164
+ export interface LineItemCredit {
165
+ cn_id:string;
166
+
167
+ applied_amount:number;
168
+
169
+ line_item_id?:string;
170
+ }
162
171
  export interface LineItemDiscount {
163
172
  line_item_id:string;
164
173
 
@@ -56,6 +56,8 @@ declare module 'chargebee' {
56
56
 
57
57
  metadata?:object;
58
58
 
59
+ deleted:boolean;
60
+
59
61
  business_entity_id?:string;
60
62
 
61
63
  }
@@ -20,6 +20,8 @@ declare module 'chargebee' {
20
20
 
21
21
  business_entity_id?:string;
22
22
 
23
+ deleted:boolean;
24
+
23
25
  }
24
26
  export namespace ItemFamily {
25
27
  export class ItemFamilyResource {
@@ -86,6 +86,8 @@ declare module 'chargebee' {
86
86
 
87
87
  show_description_in_quotes?:boolean;
88
88
 
89
+ deleted:boolean;
90
+
89
91
  business_entity_id?:string;
90
92
 
91
93
  }