careerly-data-mcp 3.1.1 → 3.1.2
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/cli/setup.js +3 -3
- package/dist/cli/ui.js +1 -1
- package/package.json +1 -1
package/dist/cli/setup.js
CHANGED
|
@@ -499,7 +499,7 @@ export async function runSetup() {
|
|
|
499
499
|
ga4: ga4Config.connected,
|
|
500
500
|
bigquery: bqConfig.connected,
|
|
501
501
|
gsc: gscConfig.connected,
|
|
502
|
-
tools:
|
|
502
|
+
tools: 17,
|
|
503
503
|
});
|
|
504
504
|
printStatusInfo({
|
|
505
505
|
ga4PropertyId: ga4Config.propertyId,
|
|
@@ -509,7 +509,7 @@ export async function runSetup() {
|
|
|
509
509
|
ga4Connected: ga4Config.connected,
|
|
510
510
|
bqConnected: bqConfig.connected,
|
|
511
511
|
gscConnected: gscConfig.connected,
|
|
512
|
-
tools:
|
|
512
|
+
tools: 17,
|
|
513
513
|
});
|
|
514
514
|
printExamples();
|
|
515
515
|
}
|
|
@@ -717,7 +717,7 @@ export async function runInteractiveMenu() {
|
|
|
717
717
|
}
|
|
718
718
|
printStatusInfo({
|
|
719
719
|
...currentConfig,
|
|
720
|
-
tools:
|
|
720
|
+
tools: 17,
|
|
721
721
|
});
|
|
722
722
|
const isConfigured = currentConfig.ga4Connected || currentConfig.bqConnected || currentConfig.gscConnected;
|
|
723
723
|
// 메뉴 선택
|
package/dist/cli/ui.js
CHANGED