quickmagic-cli 1.1.0 → 1.1.1
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/package.json +1 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quickmagic-cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Quick Magic CLI — generate AI images/videos, product photoshoots, virtual try-on, hook ad videos, subtitles and more via the Quick Magic REST API, with browser-based OAuth PKCE login (no API keys to manage). Ships with 8 Claude Agent Skills and an MCP server integration.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"quickmagic": "src/index.js",
|
package/src/index.js
CHANGED
|
@@ -14,7 +14,7 @@ const collect = (v, acc) => { acc.push(v); return acc; };
|
|
|
14
14
|
program
|
|
15
15
|
.name('quickmagic')
|
|
16
16
|
.description('Quick Magic CLI — tạo ảnh/video AI qua REST API (OAuth PKCE)')
|
|
17
|
-
.version('
|
|
17
|
+
.version(require('../package.json').version);
|
|
18
18
|
|
|
19
19
|
// ── auth ─────────────────────────────────────────────────────────────────────
|
|
20
20
|
const auth_cmd = program.command('auth').description('Đăng nhập / đăng xuất / trạng thái');
|