@adkit/cli 1.13.14 → 1.13.15
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 +9 -5
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -5188,7 +5188,7 @@ Notes:
|
|
|
5188
5188
|
|
|
5189
5189
|
Examples:
|
|
5190
5190
|
adkit manage meta lead-forms list --page pg_123`;
|
|
5191
|
-
var GOOGLE_ASSET_HELP = `adkit manage google assets \u2014
|
|
5191
|
+
var GOOGLE_ASSET_HELP = `adkit manage google assets \u2014 Google manual and read-only location assets
|
|
5192
5192
|
|
|
5193
5193
|
list List reusable assets
|
|
5194
5194
|
create Create a reusable asset
|
|
@@ -5198,7 +5198,7 @@ var GOOGLE_ASSET_HELP = `adkit manage google assets \u2014 Reusable Google manua
|
|
|
5198
5198
|
<id> View asset details
|
|
5199
5199
|
|
|
5200
5200
|
Flags (list):
|
|
5201
|
-
--type <type> callout, sitelink, structured-snippet
|
|
5201
|
+
--type <type> callout, sitelink, structured-snippet, call, location
|
|
5202
5202
|
--scope <scope> account, campaign, ad-group
|
|
5203
5203
|
--scope-id <id> Google campaign/ad group ID (platformId); required for campaign/ad-group scope
|
|
5204
5204
|
|
|
@@ -5222,12 +5222,13 @@ Examples:
|
|
|
5222
5222
|
adkit manage google assets detach asset:123 --type callout --scope campaign --scope-id 456 --account 1234567890
|
|
5223
5223
|
|
|
5224
5224
|
Notes:
|
|
5225
|
+
Location assets are read-only and available through list --type location.
|
|
5225
5226
|
Raw callout text and "text|url" sitelinks exact-match reuse an existing asset first, otherwise AdKit creates and attaches a new one.
|
|
5226
5227
|
A single reusable asset can be attached to multiple account/campaign/ad-group scopes over time.
|
|
5227
5228
|
Use google assets when you want reusable libraries, account-level links, or richer sitelinks via --data.
|
|
5228
5229
|
|
|
5229
5230
|
Run --help full for all fields and advanced options.`;
|
|
5230
|
-
var GOOGLE_ASSET_HELP_FULL = `adkit manage google assets \u2014
|
|
5231
|
+
var GOOGLE_ASSET_HELP_FULL = `adkit manage google assets \u2014 Google manual and read-only location assets
|
|
5231
5232
|
|
|
5232
5233
|
list List reusable assets
|
|
5233
5234
|
create Create a reusable asset
|
|
@@ -5237,7 +5238,7 @@ var GOOGLE_ASSET_HELP_FULL = `adkit manage google assets \u2014 Reusable Google
|
|
|
5237
5238
|
<id> View asset details
|
|
5238
5239
|
|
|
5239
5240
|
Flags (list):
|
|
5240
|
-
--type <type> callout, sitelink, structured-snippet
|
|
5241
|
+
--type <type> callout, sitelink, structured-snippet, call, location
|
|
5241
5242
|
--scope <scope> account, campaign, ad-group
|
|
5242
5243
|
--scope-id <id> Google campaign/ad group ID (platformId); required for campaign/ad-group scope
|
|
5243
5244
|
${FLAG.account}
|
|
@@ -5274,7 +5275,10 @@ Examples:
|
|
|
5274
5275
|
adkit manage google assets create --data '{"assets":[{"type":"sitelink","linkText":"Pricing","finalUrls":["https://example.com/pricing"],"description1":"See plans","description2":"Starts free"}]}' --account 1234567890
|
|
5275
5276
|
adkit manage google assets update 123 --type callout --text "Free Returns" --account 1234567890
|
|
5276
5277
|
adkit manage google assets attach asset:123 --type callout --scope campaign --scope-id 456 --account 1234567890
|
|
5277
|
-
adkit manage google assets detach asset:123 --type callout --scope campaign --scope-id 456 --account 1234567890
|
|
5278
|
+
adkit manage google assets detach asset:123 --type callout --scope campaign --scope-id 456 --account 1234567890
|
|
5279
|
+
|
|
5280
|
+
Notes:
|
|
5281
|
+
Location assets are read-only and available through list --type location.`.trim();
|
|
5278
5282
|
var GOOGLE_CAMPAIGN_HELP = `adkit manage google campaigns \u2014 Google Ads campaigns
|
|
5279
5283
|
|
|
5280
5284
|
list List campaigns
|
package/package.json
CHANGED