chargebee 3.0.0 → 3.0.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,6 @@
1
+ ## v3.0.1 (2024-11-06)
2
+ * Updated README.
3
+
1
4
  ## v3.0.0 (2024-11-06)
2
5
  * Releasing major version `v3.0.0` :tada:
3
6
 
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Chargebee Node.js / TypeScript client library (Beta)
1
+ # Chargebee Node.js / TypeScript client library
2
2
 
3
3
  This is the [Node.js](http://nodejs.org/) library for integrating with Chargebee. Sign up for a Chargebee account [here](https://www.chargebee.com).
4
4
 
@@ -10,19 +10,19 @@ Node.js 18 or higher.
10
10
 
11
11
  ## Installation
12
12
 
13
- Install the beta version of the library with npm:
13
+ Install the library with npm:
14
14
 
15
15
  ```sh
16
- npm install chargebee@beta
16
+ npm install chargebee
17
17
  ```
18
18
  With pnpm:
19
19
  ```sh
20
- pnpm add chargebee@beta
20
+ pnpm add chargebee
21
21
  ```
22
22
 
23
23
  With yarn:
24
24
  ```sh
25
- yarn add chargebee@beta
25
+ yarn add chargebee
26
26
  ```
27
27
 
28
28
  ## Usage
@@ -11,7 +11,7 @@ exports.Environment = {
11
11
  hostSuffix: '.chargebee.com',
12
12
  apiPath: '/api/v2',
13
13
  timeout: DEFAULT_TIME_OUT,
14
- clientVersion: 'v3.0.0',
14
+ clientVersion: 'v3.0.1',
15
15
  port: DEFAULT_PORT,
16
16
  timemachineWaitInMillis: DEFAULT_TIME_MACHINE_WAIT,
17
17
  exportWaitInMillis: DEFAULT_EXPORT_WAIT,
@@ -8,7 +8,7 @@ export const Environment = {
8
8
  hostSuffix: '.chargebee.com',
9
9
  apiPath: '/api/v2',
10
10
  timeout: DEFAULT_TIME_OUT,
11
- clientVersion: 'v3.0.0',
11
+ clientVersion: 'v3.0.1',
12
12
  port: DEFAULT_PORT,
13
13
  timemachineWaitInMillis: DEFAULT_TIME_MACHINE_WAIT,
14
14
  exportWaitInMillis: DEFAULT_EXPORT_WAIT,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chargebee",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "A library for integrating with Chargebee.",
5
5
  "scripts": {
6
6
  "prepack": "npm install && npm run build",