chargebee 2.41.0 → 2.41.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.41.1 (2024-09-02)
2
+ * * *
3
+
4
+ #### Bug Fixes:
5
+ * Specified return type of configure method.
6
+
1
7
  ### v2.41.0 (2024-08-29)
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.41.0',
14
+ clientVersion: 'v2.41.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.41.0",
3
+ "version":"2.41.1",
4
4
  "description":"A library for integrating with ChargeBee.",
5
5
  "keywords":[
6
6
  "payments",
package/types/index.d.ts CHANGED
@@ -75,7 +75,7 @@
75
75
 
76
76
  declare module 'chargebee' {
77
77
  export default class {
78
- static configure({ site, api_key }: { site: string; api_key: string });
78
+ static configure({ site, api_key }: { site: string; api_key: string }): void;
79
79
  static address: Address.AddressResource;
80
80
  static attached_item: AttachedItem.AttachedItemResource;
81
81
  static business_entity: BusinessEntity.BusinessEntityResource;