@kanmon/sdk 3.2.1 → 3.2.2
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.txt +31 -0
- package/package.json +4 -3
package/license.txt
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Kanmon Proprietary License
|
|
2
|
+
|
|
3
|
+
Copyright © 2026 Kanmon Inc. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software and all associated files, documentation, and materials
|
|
6
|
+
(collectively, the "Software") are the proprietary and confidential property
|
|
7
|
+
of Kanmon Inc. ("Kanmon") and are protected by copyright and other
|
|
8
|
+
intellectual property laws.
|
|
9
|
+
|
|
10
|
+
The Software is licensed, not sold. Subject to a valid agreement between you
|
|
11
|
+
and Kanmon, Kanmon grants you a limited, non-exclusive, non-transferable,
|
|
12
|
+
non-sublicensable, revocable license to use the Software solely to integrate
|
|
13
|
+
with and access Kanmon's services in accordance with Kanmon's documentation
|
|
14
|
+
and any applicable agreement between you and Kanmon.
|
|
15
|
+
|
|
16
|
+
Except as expressly permitted by Kanmon in writing, you may not: (a) copy,
|
|
17
|
+
modify, adapt, or create derivative works of the Software; (b) distribute,
|
|
18
|
+
sell, lease, rent, sublicense, or otherwise transfer the Software to any
|
|
19
|
+
third party; (c) reverse engineer, decompile, or disassemble the Software,
|
|
20
|
+
or attempt to derive its source code, except to the extent such restriction
|
|
21
|
+
is prohibited by applicable law; or (d) remove, obscure, or alter any
|
|
22
|
+
proprietary notices contained in the Software.
|
|
23
|
+
|
|
24
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
25
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
26
|
+
FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
27
|
+
KANMON BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN
|
|
28
|
+
ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN
|
|
29
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
30
|
+
|
|
31
|
+
For licensing inquiries, contact Kanmon Inc. at https://kanmon.com.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kanmon/sdk",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.2",
|
|
4
4
|
"description": "Kanmon API client",
|
|
5
5
|
"author": "Kanmon",
|
|
6
6
|
"repository": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"sdk",
|
|
13
13
|
"typescript"
|
|
14
14
|
],
|
|
15
|
-
"license": "
|
|
15
|
+
"license": "SEE LICENSE IN license.txt",
|
|
16
16
|
"main": "./dist/index.js",
|
|
17
17
|
"type": "commonjs",
|
|
18
18
|
"module": "./dist/index.js",
|
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
},
|
|
26
26
|
"typings": "./dist/index.d.ts",
|
|
27
27
|
"files": [
|
|
28
|
-
"dist/**/*"
|
|
28
|
+
"dist/**/*",
|
|
29
|
+
"license.txt"
|
|
29
30
|
],
|
|
30
31
|
"engines": {
|
|
31
32
|
"node": ">=24"
|