@genex-ai/cli-demo 1.6.3-dev.419 → 1.6.4-dev.421
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/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1476,7 +1476,7 @@ async function createDraftProject(opts) {
|
|
|
1476
1476
|
log.dim(` ${String(err)}`);
|
|
1477
1477
|
return { meta: null };
|
|
1478
1478
|
}
|
|
1479
|
-
if (res.status === 409 && i === 0) continue;
|
|
1479
|
+
if ((res.status === 409 || res.status === 400) && i === 0) continue;
|
|
1480
1480
|
if (res.status === 401) {
|
|
1481
1481
|
log.warn("Not authorized to create the project (token rejected).");
|
|
1482
1482
|
return { meta: null, unauthorized: true };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genex-ai/cli-demo",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.4-dev.421",
|
|
4
4
|
"description": "Set up your project's agent workspace (.claude/.codex/.cursor in the game folder), authorize, create a game project, generate AI assets, and publish (genex CLI).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|