chargebee 2.25.0 → 2.25.1

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.
Files changed (63) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/lib/chargebee.js +1 -1
  3. package/package.json +1 -1
  4. package/types/resources/Address.d.ts +1 -0
  5. package/types/resources/AdvanceInvoiceSchedule.d.ts +1 -0
  6. package/types/resources/AttachedItem.d.ts +1 -0
  7. package/types/resources/Card.d.ts +1 -0
  8. package/types/resources/Comment.d.ts +1 -0
  9. package/types/resources/Contact.d.ts +1 -0
  10. package/types/resources/ContractTerm.d.ts +1 -0
  11. package/types/resources/Coupon.d.ts +1 -0
  12. package/types/resources/CouponCode.d.ts +1 -0
  13. package/types/resources/CouponSet.d.ts +1 -0
  14. package/types/resources/CreditNote.d.ts +1 -0
  15. package/types/resources/CreditNoteEstimate.d.ts +1 -0
  16. package/types/resources/Customer.d.ts +1 -0
  17. package/types/resources/DifferentialPrice.d.ts +1 -0
  18. package/types/resources/Discount.d.ts +1 -0
  19. package/types/resources/Download.d.ts +1 -0
  20. package/types/resources/EntitlementOverride.d.ts +1 -0
  21. package/types/resources/Estimate.d.ts +1 -0
  22. package/types/resources/Event.d.ts +1 -0
  23. package/types/resources/Export.d.ts +1 -0
  24. package/types/resources/Feature.d.ts +1 -0
  25. package/types/resources/Gift.d.ts +1 -0
  26. package/types/resources/Hierarchy.d.ts +1 -0
  27. package/types/resources/HostedPage.d.ts +1 -0
  28. package/types/resources/ImpactedItem.d.ts +1 -0
  29. package/types/resources/ImpactedSubscription.d.ts +1 -0
  30. package/types/resources/InAppSubscription.d.ts +1 -0
  31. package/types/resources/Invoice.d.ts +1 -0
  32. package/types/resources/InvoiceEstimate.d.ts +1 -0
  33. package/types/resources/Item.d.ts +1 -0
  34. package/types/resources/ItemEntitlement.d.ts +1 -0
  35. package/types/resources/ItemFamily.d.ts +1 -0
  36. package/types/resources/ItemPrice.d.ts +1 -0
  37. package/types/resources/Media.d.ts +1 -0
  38. package/types/resources/NonSubscription.d.ts +1 -0
  39. package/types/resources/Order.d.ts +1 -0
  40. package/types/resources/PaymentIntent.d.ts +1 -0
  41. package/types/resources/PaymentReferenceNumber.d.ts +1 -0
  42. package/types/resources/PaymentSource.d.ts +1 -0
  43. package/types/resources/PaymentVoucher.d.ts +1 -0
  44. package/types/resources/PortalSession.d.ts +1 -0
  45. package/types/resources/PromotionalCredit.d.ts +1 -0
  46. package/types/resources/Purchase.d.ts +1 -0
  47. package/types/resources/Quote.d.ts +1 -0
  48. package/types/resources/QuoteLineGroup.d.ts +1 -0
  49. package/types/resources/QuotedCharge.d.ts +1 -0
  50. package/types/resources/QuotedSubscription.d.ts +1 -0
  51. package/types/resources/ResourceMigration.d.ts +1 -0
  52. package/types/resources/SiteMigrationDetail.d.ts +1 -0
  53. package/types/resources/Subscription.d.ts +1 -0
  54. package/types/resources/SubscriptionEntitlement.d.ts +1 -0
  55. package/types/resources/SubscriptionEstimate.d.ts +1 -0
  56. package/types/resources/TaxWithheld.d.ts +1 -0
  57. package/types/resources/ThirdPartyPaymentMethod.d.ts +1 -0
  58. package/types/resources/TimeMachine.d.ts +1 -0
  59. package/types/resources/Token.d.ts +1 -0
  60. package/types/resources/Transaction.d.ts +1 -0
  61. package/types/resources/UnbilledCharge.d.ts +1 -0
  62. package/types/resources/Usage.d.ts +1 -0
  63. package/types/resources/VirtualBankAccount.d.ts +1 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### v2.25.1 (2023-07-19)
2
+ * * *
3
+ * Fix typescript typings reference issue
4
+
1
5
  ### v2.25.0 (2023-07-19)
2
6
  * * *
3
7
  * Add typescript typings
package/lib/chargebee.js CHANGED
@@ -11,7 +11,7 @@ ChargeBee._env = {
11
11
  hostSuffix: '.chargebee.com',
12
12
  apiPath: '/api/v2',
13
13
  timeout: 80000,
14
- clientVersion: 'v2.25.0',
14
+ clientVersion: 'v2.25.1',
15
15
  port: 443,
16
16
  timemachineWaitInMillis: 3000,
17
17
  exportWaitInMillis: 3000
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name":"chargebee",
3
- "version":"2.25.0",
3
+ "version":"2.25.1",
4
4
  "description":"A library for integrating with ChargeBee.",
5
5
  "keywords":[
6
6
  "payments",
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Address {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface AdvanceInvoiceSchedule {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface AttachedItem {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Card {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Comment {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Contact {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface ContractTerm {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Coupon {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface CouponCode {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface CouponSet {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface CreditNote {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface CreditNoteEstimate {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Customer {
3
4
  [key : string] : any;
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface DifferentialPrice {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Discount {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Download {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface EntitlementOverride {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Estimate {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Event {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Export {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Feature {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Gift {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Hierarchy {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface HostedPage {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface ImpactedItem {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface ImpactedSubscription {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface InAppSubscription {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Invoice {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface InvoiceEstimate {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Item {
3
4
  [key : string] : any;
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface ItemEntitlement {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface ItemFamily {
3
4
  [key : string] : any;
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface ItemPrice {
3
4
  [key : string] : any;
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Media {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface NonSubscription {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Order {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface PaymentIntent {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface PaymentReferenceNumber {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface PaymentSource {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface PaymentVoucher {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface PortalSession {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface PromotionalCredit {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Purchase {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Quote {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface QuoteLineGroup {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface QuotedCharge {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface QuotedSubscription {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface ResourceMigration {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface SiteMigrationDetail {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Subscription {
3
4
  [key : string] : any;
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface SubscriptionEntitlement {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface SubscriptionEstimate {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface TaxWithheld {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface ThirdPartyPaymentMethod {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface TimeMachine {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Token {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Transaction {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface UnbilledCharge {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface Usage {
3
4
 
@@ -1,3 +1,4 @@
1
+ ///<reference path='./../core.d.ts'/>
1
2
  declare module 'chargebee' {
2
3
  export interface VirtualBankAccount {
3
4