lynkow 1.0.0 → 1.31.10
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 +29 -0
- package/README.md +926 -18
- package/dist/core-CqpK2E3_.d.mts +14 -0
- package/dist/core-CqpK2E3_.d.ts +14 -0
- package/dist/index.d.mts +5934 -772
- package/dist/index.d.ts +5934 -772
- package/dist/index.js +282 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +282 -2
- package/dist/index.mjs.map +1 -1
- package/dist/middleware/next.d.mts +10 -0
- package/dist/middleware/next.d.ts +10 -0
- package/dist/middleware/next.js +3 -0
- package/dist/middleware/next.js.map +1 -0
- package/dist/middleware/next.mjs +3 -0
- package/dist/middleware/next.mjs.map +1 -0
- package/dist/visual-editor/index.d.mts +109 -0
- package/dist/visual-editor/index.d.ts +109 -0
- package/dist/visual-editor/index.js +64 -0
- package/dist/visual-editor/index.js.map +1 -0
- package/dist/visual-editor/index.mjs +64 -0
- package/dist/visual-editor/index.mjs.map +1 -0
- package/dist/visual-editor/react/index.d.mts +21 -0
- package/dist/visual-editor/react/index.d.ts +21 -0
- package/dist/visual-editor/react/index.js +64 -0
- package/dist/visual-editor/react/index.js.map +1 -0
- package/dist/visual-editor/react/index.mjs +64 -0
- package/dist/visual-editor/react/index.mjs.map +1 -0
- package/package.json +60 -6
package/LICENSE
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Lynkow SDK - Proprietary License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Lynkow. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software and associated documentation files (the "Software") are the
|
|
6
|
+
proprietary property of Lynkow and are protected by copyright law.
|
|
7
|
+
|
|
8
|
+
PERMITTED USE:
|
|
9
|
+
- You may use this Software solely in connection with Lynkow services
|
|
10
|
+
- You may install and use the Software in your applications that integrate
|
|
11
|
+
with the Lynkow platform
|
|
12
|
+
|
|
13
|
+
RESTRICTIONS:
|
|
14
|
+
- You may NOT copy, modify, merge, publish, distribute, sublicense, or sell
|
|
15
|
+
copies of the Software
|
|
16
|
+
- You may NOT reverse engineer, decompile, or disassemble the Software
|
|
17
|
+
- You may NOT use the Software for any purpose other than integrating with
|
|
18
|
+
Lynkow services
|
|
19
|
+
- You may NOT remove or alter any proprietary notices or labels on the Software
|
|
20
|
+
|
|
21
|
+
NO WARRANTY:
|
|
22
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
23
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
24
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
25
|
+
LYNKOW BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
26
|
+
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
27
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
28
|
+
|
|
29
|
+
For licensing inquiries, contact: contact@lynkow.com
|