@genex-ai/cli-demo 1.24.0-dev.615 → 1.25.0-dev.616
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 +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7141,8 +7141,10 @@ async function* readSSE(body) {
|
|
|
7141
7141
|
|
|
7142
7142
|
// src/commands/generate.ts
|
|
7143
7143
|
var MOCKED_LINE = "placeholder \u2014 this lane is mocked for this run";
|
|
7144
|
+
var FIXTURE_LINE = "fixture \u2014 real bytes replayed from an earlier generation on this account; nothing was generated or billed";
|
|
7144
7145
|
function reportMocked(view, log) {
|
|
7145
|
-
if (view.mocked
|
|
7146
|
+
if (view.mocked !== true) return;
|
|
7147
|
+
log.dim(` ${view.provider === "fixture" ? FIXTURE_LINE : MOCKED_LINE}`);
|
|
7146
7148
|
}
|
|
7147
7149
|
var sleep3 = (ms) => new Promise((r) => setTimeout(r, ms));
|
|
7148
7150
|
var INLINE_IMAGE_LIMIT_BYTES = 4 * 1024 * 1024;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genex-ai/cli-demo",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.0-dev.616",
|
|
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": {
|