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 +3 -0
- package/README.md +5 -5
- package/cjs/environment.js +1 -1
- package/esm/environment.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Chargebee Node.js / TypeScript client library
|
|
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
|
|
13
|
+
Install the library with npm:
|
|
14
14
|
|
|
15
15
|
```sh
|
|
16
|
-
npm install chargebee
|
|
16
|
+
npm install chargebee
|
|
17
17
|
```
|
|
18
18
|
With pnpm:
|
|
19
19
|
```sh
|
|
20
|
-
pnpm add chargebee
|
|
20
|
+
pnpm add chargebee
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
With yarn:
|
|
24
24
|
```sh
|
|
25
|
-
yarn add chargebee
|
|
25
|
+
yarn add chargebee
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
## Usage
|
package/cjs/environment.js
CHANGED
|
@@ -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.
|
|
14
|
+
clientVersion: 'v3.0.1',
|
|
15
15
|
port: DEFAULT_PORT,
|
|
16
16
|
timemachineWaitInMillis: DEFAULT_TIME_MACHINE_WAIT,
|
|
17
17
|
exportWaitInMillis: DEFAULT_EXPORT_WAIT,
|
package/esm/environment.js
CHANGED
|
@@ -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.
|
|
11
|
+
clientVersion: 'v3.0.1',
|
|
12
12
|
port: DEFAULT_PORT,
|
|
13
13
|
timemachineWaitInMillis: DEFAULT_TIME_MACHINE_WAIT,
|
|
14
14
|
exportWaitInMillis: DEFAULT_EXPORT_WAIT,
|