@clickraft/cli 0.8.0 → 0.8.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/CHANGELOG.md +1 -9
- package/LICENSE +8 -11
- package/README.md +1 -1
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,4 @@
|
|
|
1
|
-
## [0.8.
|
|
2
|
-
|
|
3
|
-
### Features
|
|
4
|
-
|
|
5
|
-
* **nodes:** add nodes list and describe commands ([3a8aaae](https://github.com/clickraft/cli/commit/3a8aaaef8d2ff92ce90b89c15c9b165476ad4f61))
|
|
6
|
-
|
|
7
|
-
### Bug Fixes
|
|
8
|
-
|
|
9
|
-
* **models:** support object-shaped badges and render labels ([f7b5a0f](https://github.com/clickraft/cli/commit/f7b5a0fb32559e49c49803d148527480b1feffea))
|
|
1
|
+
## [0.8.2](https://github.com/clickraft/cli/compare/v0.8.1...v0.8.2) (2026-05-31)
|
|
10
2
|
|
|
11
3
|
# Changelog
|
|
12
4
|
|
package/LICENSE
CHANGED
|
@@ -1,16 +1,13 @@
|
|
|
1
|
-
|
|
1
|
+
Copyright (c) 2026 Clickraft. All rights reserved.
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
This software and its associated documentation files (the "Software") are the
|
|
4
|
+
proprietary and confidential property of Clickraft. No license, express or
|
|
5
|
+
implied, is granted to any person to use, copy, modify, merge, publish,
|
|
6
|
+
distribute, sublicense, or sell copies of the Software, in whole or in part,
|
|
7
|
+
without the prior written permission of Clickraft.
|
|
4
8
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
9
|
+
Unauthorized copying, distribution, or use of the Software, via any medium, is
|
|
10
|
+
strictly prohibited.
|
|
14
11
|
|
|
15
12
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
13
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
package/README.md
CHANGED
package/dist/cli.js
CHANGED
|
@@ -2605,7 +2605,7 @@ var ModelSummarySchema = z8.object({
|
|
|
2605
2605
|
isDefault: z8.boolean(),
|
|
2606
2606
|
docsUrl: z8.string().nullable(),
|
|
2607
2607
|
llmContext: z8.string().nullable(),
|
|
2608
|
-
constraints: z8.record(z8.unknown()).nullable(),
|
|
2608
|
+
constraints: z8.record(z8.string(), z8.unknown()).nullable(),
|
|
2609
2609
|
modelFamily: z8.string().nullable(),
|
|
2610
2610
|
isFamilyPrimary: z8.boolean().nullable()
|
|
2611
2611
|
}).strict();
|