chargebee 2.35.0 → 2.35.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### v2.35.1 (2024-05-02)
2
+ * * *
3
+
4
+ #### Removed resources:
5
+ * Session has been removed.
6
+
1
7
  ### v2.35.0 (2024-04-30)
2
8
  * * *
3
9
 
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.35.0',
14
+ clientVersion: 'v2.35.1',
15
15
  port: 443,
16
16
  timemachineWaitInMillis: 3000,
17
17
  exportWaitInMillis: 3000
@@ -2829,22 +2829,6 @@ var _endpoints = {
2829
2829
  false
2830
2830
  ]
2831
2831
  ],
2832
- "installment_detail": [],
2833
- "session": [
2834
- [
2835
- "create",
2836
- "POST",
2837
- "/sessions",
2838
- null,
2839
- false
2840
- ],
2841
- [
2842
- "retrieve",
2843
- "GET",
2844
- "/sessions",
2845
- null,
2846
- true
2847
- ]
2848
- ]
2832
+ "installment_detail": []
2849
2833
  };
2850
2834
  module.exports = _endpoints;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name":"chargebee",
3
- "version":"2.35.0",
3
+ "version":"2.35.1",
4
4
  "description":"A library for integrating with ChargeBee.",
5
5
  "keywords":[
6
6
  "payments",
package/types/index.d.ts CHANGED
@@ -55,7 +55,6 @@
55
55
  ///<reference path='./resources/QuotedSubscription.d.ts' />
56
56
  ///<reference path='./resources/Ramp.d.ts' />
57
57
  ///<reference path='./resources/ResourceMigration.d.ts' />
58
- ///<reference path='./resources/Session.d.ts' />
59
58
  ///<reference path='./resources/SiteMigrationDetail.d.ts' />
60
59
  ///<reference path='./resources/Subscription.d.ts' />
61
60
  ///<reference path='./resources/SubscriptionEntitlement.d.ts' />
@@ -110,7 +109,6 @@ declare module 'chargebee' {
110
109
  static quote: Quote.QuoteResource;
111
110
  static ramp: Ramp.RampResource;
112
111
  static resource_migration: ResourceMigration.ResourceMigrationResource;
113
- static session: Session.SessionResource;
114
112
  static site_migration_detail: SiteMigrationDetail.SiteMigrationDetailResource;
115
113
  static subscription: Subscription.SubscriptionResource;
116
114
  static subscription_entitlement: SubscriptionEntitlement.SubscriptionEntitlementResource;