Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow configuring multiple instances with the client #56

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
node_modules
package-lock.json
lib
.DS_Store
58 changes: 58 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 12 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "chargebee-typescript",
"name": "@coosto/chargebee-typescript",
"version": "2.36.0",
"description": "A library in typescript for integrating with Chargebee.",
"keywords": [
Expand All @@ -11,6 +11,13 @@
],
"homepage": "http://github.com/chargebee/chargebee-typescript",
"author": "Navaneedhan <[email protected]> (https://www.chargebee.com)",
"contributors": [
{
"name": "Francisco Soler",
"email": "[email protected]",
"url": "https://www.coosto.com"
}
],
"main": "lib/chargebee.js",
"types": "lib/chargebee.d.ts",
"files": [
Expand All @@ -34,8 +41,11 @@
"type": "git",
"url": "http://github.com/chargebee/chargebee-typescript.git"
},
"publishConfig": {
"registry": "https://nr0.coosto.com"
},
"engines": {
"node": ">=8.0.0"
"node": ">=8.3.0"
},
"bugs": {
"url": "http://support.chargebee.com",
Expand Down
Loading