chargebee-init 1.0.0-beta.2 → 1.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/LICENSE.md +24 -0
- package/README.md +4 -0
- package/dist/frameworks.js +1 -1
- package/dist/help.d.ts +1 -1
- package/dist/help.js +1 -1
- package/package.json +2 -1
package/LICENSE.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
The MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Chargebee, Inc.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person
|
|
6
|
+
obtaining a copy of this software and associated documentation
|
|
7
|
+
files (the "Software"), to deal in the Software without
|
|
8
|
+
restriction, including without limitation the rights to use,
|
|
9
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the
|
|
11
|
+
Software is furnished to do so, subject to the following
|
|
12
|
+
conditions:
|
|
13
|
+
|
|
14
|
+
The above copyright notice and this permission notice shall be
|
|
15
|
+
included in all copies or substantial portions of the Software.
|
|
16
|
+
|
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
18
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
19
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
20
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
21
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
22
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
23
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
24
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
package/dist/frameworks.js
CHANGED
package/dist/help.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const cliHelpMsg: (version: string, description: string) => string;
|
|
2
2
|
export declare const messages: {
|
|
3
3
|
readonly nextjs: {
|
|
4
|
-
readonly preinit: "\n* --------------------------\n* Chargebee Next.js Adapter\n* --------------------------\n* Integrates with Next.js version 15
|
|
4
|
+
readonly preinit: "\n* --------------------------\n* Chargebee Next.js Adapter\n* --------------------------\n* Integrates with Next.js version 15\n* Only App Router is supported at the moment\n* Routes will be created under the chargebee directory by default\n";
|
|
5
5
|
readonly postinit: "\nPlease complete the following steps before you test out the Chargebee integration:\n\n* Define the required process.env.* variables either by adding them to your .env file or replacing them at build time:\n\n\tCHARGEBEE_SITE=\"site-name\"\n\tCHARGEBEE_API_KEY=\"\"\n\tCHARGEBEE_WEBHOOK_AUTH=\"username:password\"\n\n* Run npm|pnpm|bun install to grab the required packages\n\n* Configure the webhook URL in the Chargebee dashboard with basic auth set to the username and password defined in CHARGEBEE_WEBHOOK_AUTH\n\n* Review the routes created under the chargebee/ directory and make necessary changes\n";
|
|
6
6
|
};
|
|
7
7
|
readonly express: {
|
package/dist/help.js
CHANGED
|
@@ -29,7 +29,7 @@ export const messages = {
|
|
|
29
29
|
* --------------------------
|
|
30
30
|
* Chargebee Next.js Adapter
|
|
31
31
|
* --------------------------
|
|
32
|
-
* Integrates with Next.js version 15
|
|
32
|
+
* Integrates with Next.js version 15
|
|
33
33
|
* Only App Router is supported at the moment
|
|
34
34
|
* Routes will be created under the chargebee directory by default
|
|
35
35
|
`,
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chargebee-init",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Chargebee",
|
|
6
6
|
"email": "dx@chargebee.com"
|
|
7
7
|
},
|
|
8
8
|
"description": "A CLI to help integrate Chargebee services with your existing app",
|
|
9
|
+
"repository": "https://github.com/chargebee/js-framework-adapters",
|
|
9
10
|
"type": "module",
|
|
10
11
|
"exports": "./dist/cli.js",
|
|
11
12
|
"bin": {
|