@talesofai/neta-skills 0.14.2 → 0.14.3
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 +6 -0
- package/bin/commands/load.js +8 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/bin/commands/load.js
CHANGED
|
@@ -96,7 +96,14 @@ export const buildCommands = async (cli) => {
|
|
|
96
96
|
app_language: getLocale(),
|
|
97
97
|
});
|
|
98
98
|
const apis = createApis({
|
|
99
|
-
logger
|
|
99
|
+
logger: IS_DEV
|
|
100
|
+
? logger
|
|
101
|
+
: {
|
|
102
|
+
error: () => { },
|
|
103
|
+
warn: () => { },
|
|
104
|
+
info: () => { },
|
|
105
|
+
debug: () => { },
|
|
106
|
+
},
|
|
100
107
|
baseUrl,
|
|
101
108
|
headers: {
|
|
102
109
|
"x-token": process.env["NETA_TOKEN"] ?? "",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@talesofai/neta-skills",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.3",
|
|
4
4
|
"description": "Neta API pi coding agent skills for interacting with Neta API to generate images, videos, songs, and manage characters/elements.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|