mimi-seed 0.11.0 → 0.12.0
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 +5 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -998,6 +998,7 @@ ${kleur5.bold("\uD55C \uBC88\uC5D0 \uB2E4 \uC5F0\uACB0:")}
|
|
|
998
998
|
${kleur5.cyan("mimi-seed setup")} \uC548\uB0B4\uB97C \uB530\uB77C\uAC00\uBA70 \uC21C\uC11C\uB300\uB85C \uC5F0\uACB0 (\uAD8C\uC7A5)
|
|
999
999
|
|
|
1000
1000
|
${kleur5.bold("login \uC635\uC158:")}
|
|
1001
|
+
--domains <ids> \uC694\uCCAD\uD560 \uAD8C\uD55C \uB3C4\uBA54\uC778\uB9CC \uC120\uD0DD (\uC27C\uD45C \uAD6C\uBD84, \uC608: ga4,googleads \u2014 \uAE30\uC874 \uAD8C\uD55C \uC720\uC9C0)
|
|
1001
1002
|
--no-browser URL \uC790\uB3D9 \uC624\uD508 \uC548 \uD568 (\uC9C1\uC811 \uBCF5\uBD99)
|
|
1002
1003
|
--timeout <\uCD08> \uCF5C\uBC31 \uB300\uAE30 \uC2DC\uAC04 (\uAE30\uBCF8 600)
|
|
1003
1004
|
--force \uAE30\uC874 \uD1A0\uD070 \uBB34\uC2DC\uD558\uACE0 \uAC15\uC81C \uC7AC\uB85C\uADF8\uC778
|
|
@@ -1035,6 +1036,7 @@ ${kleur5.bold("Connect them all in one pass:")}
|
|
|
1035
1036
|
${kleur5.cyan("mimi-seed setup")} guided, one credential at a time (recommended)
|
|
1036
1037
|
|
|
1037
1038
|
${kleur5.bold("login options:")}
|
|
1039
|
+
--domains <ids> request only these permission domains (comma-separated, e.g. ga4,googleads \u2014 prior grants are kept)
|
|
1038
1040
|
--no-browser don't open the URL automatically (paste it yourself)
|
|
1039
1041
|
--timeout <sec> how long to wait for the callback (default 600)
|
|
1040
1042
|
--force ignore the existing token and sign in again
|
|
@@ -1082,6 +1084,9 @@ async function cmdAuth(args) {
|
|
|
1082
1084
|
await cmdSetup2(["--only", "github,gitlab", "--reconnect", "github,gitlab"]);
|
|
1083
1085
|
return;
|
|
1084
1086
|
}
|
|
1087
|
+
if (sub?.startsWith("--")) {
|
|
1088
|
+
return void exitWith(await runMcpBin("mimi-seed-auth", args));
|
|
1089
|
+
}
|
|
1085
1090
|
let mcpArgs;
|
|
1086
1091
|
switch (sub) {
|
|
1087
1092
|
case void 0:
|