@adkit/cli 1.13.2 → 1.13.4
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.js +5 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3513,6 +3513,7 @@ function isStatusResponse(value) {
|
|
|
3513
3513
|
if (!value || typeof value !== "object") return false;
|
|
3514
3514
|
if (!("connected" in value) || typeof value.connected !== "boolean") return false;
|
|
3515
3515
|
if (!("project" in value) || !value.project || typeof value.project !== "object") return false;
|
|
3516
|
+
if (!("instructions" in value) || typeof value.instructions !== "string") return false;
|
|
3516
3517
|
if (!("platforms" in value) || !value.platforms || typeof value.platforms !== "object") return false;
|
|
3517
3518
|
return true;
|
|
3518
3519
|
}
|
|
@@ -3540,6 +3541,8 @@ async function status(client, json) {
|
|
|
3540
3541
|
lines.push("Google: connected");
|
|
3541
3542
|
for (const a of platforms.google.accounts) lines.push(` ${a.id} \u2014 ${a.name} (${a.currency})`);
|
|
3542
3543
|
} else lines.push("Google: not connected");
|
|
3544
|
+
lines.push("");
|
|
3545
|
+
lines.push(data.instructions);
|
|
3543
3546
|
console.log(lines.join("\n"));
|
|
3544
3547
|
}
|
|
3545
3548
|
|
|
@@ -5265,7 +5268,7 @@ Notes:
|
|
|
5265
5268
|
Display targeting is passed with --data on create or update:
|
|
5266
5269
|
targeting.audience.interests, targeting.audience.customAudiences, targeting.content.topics, targeting.content.websites.
|
|
5267
5270
|
Topic and interest search return IDs used in targeting: research topics -> targeting.content.topics; research interests -> targeting.audience.interests.
|
|
5268
|
-
Websites use direct URLs in targeting.content.websites.include/exclude.
|
|
5271
|
+
Websites use direct URLs in targeting.content.websites.include/exclude. Bare numeric customAudiences IDs are treated as Google user lists (remarketing/Customer Match); for custom segments, pass a customAudiences/{id} or customers/{accountId}/customAudiences/{id} resource path.
|
|
5269
5272
|
WARNING: On update, targeting replaces the full Display targeting set. If you send only one new website, old websites/topics/audiences can be removed.
|
|
5270
5273
|
list returns ad group configuration only (name, status, bid).
|
|
5271
5274
|
For spend/clicks/conversions: adkit manage google results
|
|
@@ -5719,7 +5722,7 @@ Notes:
|
|
|
5719
5722
|
Keyword research: pass each seed keyword as a separate argument. Do not comma-separate keywords.
|
|
5720
5723
|
Topic search returns IDs for targeting.content.topics.include/exclude.
|
|
5721
5724
|
Interest search returns IDs for targeting.audience.interests.include/exclude.
|
|
5722
|
-
Websites use direct URLs in targeting.content.websites.include/exclude.
|
|
5725
|
+
Websites use direct URLs in targeting.content.websites.include/exclude. Bare numeric customAudiences IDs are treated as Google user lists (remarketing/Customer Match); for custom segments, pass a customAudiences/{id} or customers/{accountId}/customAudiences/{id} resource path.`;
|
|
5723
5726
|
var GOOGLE_MEDIA_HELP = `adkit manage google media \u2014 Upload creative media to Google Ads
|
|
5724
5727
|
|
|
5725
5728
|
upload Upload an image and return reusable Google asset IDs
|
package/package.json
CHANGED