search-console-mcp 1.13.4 → 1.13.5
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/ga4/client.js +1 -1
- package/package.json +1 -1
package/dist/ga4/client.js
CHANGED
|
@@ -85,7 +85,7 @@ export async function getGA4Client(propertyId, accountId) {
|
|
|
85
85
|
// Determine Property ID to use
|
|
86
86
|
// If account has a specific property ID, use it.
|
|
87
87
|
// If not, and propertyId argument was passed, use that (assuming account has access).
|
|
88
|
-
const targetPropertyId = account.ga4PropertyId
|
|
88
|
+
const targetPropertyId = propertyId || account.ga4PropertyId;
|
|
89
89
|
if (!targetPropertyId) {
|
|
90
90
|
throw new Error(`No Property ID found for account ${account.alias}.`);
|
|
91
91
|
}
|
package/package.json
CHANGED