nowaikit 4.7.3 → 4.9.0

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.
Files changed (36) hide show
  1. package/LICENSE +112 -21
  2. package/README.md +9 -1
  3. package/desktop/renderer/dist/assets/{index-D46KUWoj.js → index-BQ4P9VJR.js} +3 -3
  4. package/desktop/renderer/dist/index.html +5 -5
  5. package/dist/cli/index.js +33 -2
  6. package/dist/cli/index.js.map +1 -1
  7. package/dist/cli/setup.d.ts.map +1 -1
  8. package/dist/cli/setup.js +1 -0
  9. package/dist/cli/setup.js.map +1 -1
  10. package/dist/direct/llm-client.d.ts +3 -2
  11. package/dist/direct/llm-client.d.ts.map +1 -1
  12. package/dist/direct/llm-client.js +86 -2
  13. package/dist/direct/llm-client.js.map +1 -1
  14. package/dist/reports/brand.d.ts +7 -1
  15. package/dist/reports/brand.d.ts.map +1 -1
  16. package/dist/reports/brand.js +14 -0
  17. package/dist/reports/brand.js.map +1 -1
  18. package/dist/reports/index.d.ts.map +1 -1
  19. package/dist/reports/index.js +17 -0
  20. package/dist/reports/index.js.map +1 -1
  21. package/dist/reports/pdf-generator.d.ts.map +1 -1
  22. package/dist/reports/pdf-generator.js +17 -9
  23. package/dist/reports/pdf-generator.js.map +1 -1
  24. package/dist/reports/pptx-generator.d.ts.map +1 -1
  25. package/dist/reports/pptx-generator.js +16 -13
  26. package/dist/reports/pptx-generator.js.map +1 -1
  27. package/dist/reports/types.d.ts +19 -0
  28. package/dist/reports/types.d.ts.map +1 -1
  29. package/dist/tools/index.d.ts +32 -0
  30. package/dist/tools/index.d.ts.map +1 -1
  31. package/dist/tools/script.d.ts +34 -0
  32. package/dist/tools/script.d.ts.map +1 -1
  33. package/dist/tools/script.js +13 -2
  34. package/dist/tools/script.js.map +1 -1
  35. package/dist/tools-manifest.json +8 -0
  36. package/package.json +3 -3
package/LICENSE CHANGED
@@ -1,21 +1,112 @@
1
- NowAIKit Source Available License
2
-
3
- Copyright (c) 2026 AartiQ (Hardik Benani). All rights reserved.
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining access
6
- to this software and associated documentation files (the "Software"), to USE
7
- the Software for any purpose, including personal and commercial use, and to
8
- VIEW the source code for reference and learning purposes.
9
-
10
- The following actions are expressly prohibited without prior written permission
11
- from the copyright holder: copying, modifying, merging, publishing,
12
- distributing, sublicensing, selling, or creating derivative works based on
13
- the Software, in whole or in part.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ NowAIKit is provided under the Elastic License 2.0 (ELv2).
2
+
3
+ Licensor: NowAIKit
4
+ Copyright (c) 2026 NowAIKit. All rights reserved.
5
+ Software: NowAIKit, the "nowaikit" package and this repository, including any
6
+ portion of it.
7
+
8
+ NowAIKit is free to use and source available. You may read, run, modify, fork
9
+ and distribute it, and use it within your organisation, including to deliver
10
+ ServiceNow work for your clients, at no charge, subject to the terms below.
11
+
12
+ Some uses require a separate commercial agreement with NowAIKit, including
13
+ providing NowAIKit to third parties as a hosted or managed service, reselling or
14
+ redistributing it for a fee, and bundling or embedding it in a paid product.
15
+ See the NOTICE file. For commercial licensing, enterprise hosting, support or
16
+ consulting, contact enterprise@nowaikit.com.
17
+
18
+ -------------------------------------------------------------------------------
19
+
20
+ Elastic License 2.0
21
+
22
+ URL: https://www.elastic.co/licensing/elastic-license
23
+
24
+ ## Acceptance
25
+
26
+ By using the software, you agree to all of the terms and conditions below.
27
+
28
+ ## Copyright License
29
+
30
+ The licensor grants you a non-exclusive, royalty-free, worldwide,
31
+ non-sublicensable, non-transferable license to use, copy, distribute, make
32
+ available, and prepare derivative works of the software, in each case subject to
33
+ the limitations and conditions below.
34
+
35
+ ## Limitations
36
+
37
+ You may not provide the software to third parties as a hosted or managed
38
+ service, where the service provides users with access to any substantial set of
39
+ the features or functionality of the software.
40
+
41
+ You may not move, change, disable, or circumvent the license key functionality
42
+ in the software, and you may not remove or obscure any functionality in the
43
+ software that is protected by the license key.
44
+
45
+ You may not alter, remove, or obscure any licensing, copyright, or other notices
46
+ of the licensor in the software. Any use of the licensor's trademarks is subject
47
+ to applicable law.
48
+
49
+ ## Patents
50
+
51
+ The licensor grants you a license, under any patent claims the licensor can
52
+ license, or becomes able to license, to make, have made, use, sell, offer for
53
+ sale, import and have imported the software, in each case subject to the
54
+ limitations and conditions in this license. This license does not cover any
55
+ patent claims that you cause to be infringed by modifications or additions to
56
+ the software. If you or your company make any written claim that the software
57
+ infringes or contributes to infringement of any patent, your patent license for
58
+ the software granted under these terms ends immediately. If your company makes
59
+ such a claim, your patent license ends immediately for work on behalf of your
60
+ company.
61
+
62
+ ## Notices
63
+
64
+ You must ensure that anyone who gets a copy of any part of the software from you
65
+ also gets a copy of these terms.
66
+
67
+ If you modify the software, you must include in any modified copies of the
68
+ software prominent notices stating that you have modified the software.
69
+
70
+ ## No Other Rights
71
+
72
+ These terms do not imply any licenses other than those expressly granted in
73
+ these terms.
74
+
75
+ ## Termination
76
+
77
+ If you use the software in violation of these terms, such use is not licensed,
78
+ and your licenses will automatically terminate. If the licensor provides you
79
+ with a notice of your violation, and you cease all violation of this license no
80
+ later than 30 days after you receive that notice, your licenses will be
81
+ reinstated retroactively. However, if you violate these terms after such
82
+ reinstatement, any additional violation of these terms will cause your licenses
83
+ to terminate automatically and permanently.
84
+
85
+ ## No Liability
86
+
87
+ *As far as the law allows, the software comes as is, without any warranty or
88
+ condition, and the licensor will not be liable to you for any damages arising
89
+ out of these terms or the use or nature of the software, under any kind of
90
+ legal claim.*
91
+
92
+ ## Definitions
93
+
94
+ The **licensor** is the entity offering these terms, and the **software** is the
95
+ software the licensor makes available under these terms, including any portion
96
+ of it.
97
+
98
+ **you** refers to the individual or entity agreeing to these terms.
99
+
100
+ **your company** is any legal entity, sole proprietorship, or other kind of
101
+ organization that you work for, plus all organizations that have control over,
102
+ are under the control of, or are under common control with that
103
+ organization. **control** means ownership of substantially all the assets of an
104
+ entity, or the power to direct its management and policies by vote, contract, or
105
+ otherwise. Control can be direct or indirect.
106
+
107
+ **your licenses** are all the licenses granted to you for the software under
108
+ these terms.
109
+
110
+ **use** means anything you do with the software requiring one of your licenses.
111
+
112
+ **trademark** means trademarks, service marks, and similar rights.
package/README.md CHANGED
@@ -98,4 +98,12 @@ Full guides & product home → **[nowaikit.com](https://nowaikit.com)**
98
98
 
99
99
  ---
100
100
 
101
- © 2026 AartiQ (Hardik Benani) · [NowAIKit Source Available License](LICENSE)
101
+ ## Licensing
102
+
103
+ NowAIKit is free to use and source available under the [Elastic License 2.0](LICENSE). Read it, run it, fork it, and use it inside your organisation, including to deliver ServiceNow work for clients, at no charge.
104
+
105
+ Providing NowAIKit as a hosted or managed service, reselling it, or embedding it in a paid product needs a commercial agreement. For that, or for enterprise hosting, support and consulting, contact **enterprise@nowaikit.com**. See [NOTICE](NOTICE).
106
+
107
+ ---
108
+
109
+ © 2026 NowAIKit · Source available under the [Elastic License 2.0](LICENSE)