@adkit/cli 1.13.27 → 1.13.29
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/README.md +1 -1
- package/dist/cli.js +4 -5
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/cli.js
CHANGED
|
@@ -4959,7 +4959,6 @@ var CLI_HELP_OVERRIDES = {
|
|
|
4959
4959
|
"manage google keywords add-negative": { path: "manage google keywords negatives add", description: "" },
|
|
4960
4960
|
"manage google keywords remove-negative": { path: "manage google keywords negatives remove", description: "" },
|
|
4961
4961
|
"studio ads generate": { path: "studio generate", description: "" },
|
|
4962
|
-
"studio ads media_list": { path: "studio media list", description: "" },
|
|
4963
4962
|
"studio ads share": { path: "studio share", description: "" },
|
|
4964
4963
|
"studio media request_upload_url": {
|
|
4965
4964
|
path: "studio media upload",
|
|
@@ -6903,7 +6902,7 @@ Examples:
|
|
|
6903
6902
|
"platform-api-requests": `adkit manage platform-api-requests \u2014 Send raw API requests to ad platforms
|
|
6904
6903
|
|
|
6905
6904
|
Bypasses normalized AdKit entity validation, but still runs account and safety checks.
|
|
6906
|
-
|
|
6905
|
+
Recognized read-only requests execute immediately. Other POST/PUT/PATCH/DELETE requests create drafts by default; add --publish to execute mutations immediately.
|
|
6907
6906
|
Must be enabled in Agent Permissions first.
|
|
6908
6907
|
Use this for unsupported native platform resources/workflows. Use platformOverrides instead when you only need raw fields on a supported normalized resource.
|
|
6909
6908
|
Use the selected platform's official endpoint paths, field names, enum values, and resource shapes. Do not translate normalized AdKit field names into raw API payloads by guessing.
|
|
@@ -6929,7 +6928,7 @@ Examples:
|
|
|
6929
6928
|
adkit manage platform-api-requests --platform reddit --endpoint "ad_accounts/a2_example/campaigns" --payload '{"name":"Test","objective":"TRAFFIC","configured_status":"PAUSED"}' --request-description "Create paused Reddit campaign" --account a2_example
|
|
6930
6929
|
adkit manage platform-api-requests --platform x --endpoint "accounts/18ce54d4x5t/campaigns" --method GET --request-description "List X campaigns" --account 18ce54d4x5t
|
|
6931
6930
|
adkit manage platform-api-requests --platform linkedin --endpoint "adCampaignGroups/(account:urn:li:sponsoredAccount:512345678)" --method GET --request-description "List LinkedIn campaign groups" --account 512345678
|
|
6932
|
-
adkit manage platform-api-requests --platform microsoft --endpoint "https://campaign.api.bingads.microsoft.com/CampaignManagement/v13/Campaigns/QueryByAccountId" --payload '{"AccountId":187276743,"CampaignType":"Search"}' --request-description "List Microsoft campaigns" --account 187276743
|
|
6931
|
+
adkit manage platform-api-requests --platform microsoft --endpoint "https://campaign.api.bingads.microsoft.com/CampaignManagement/v13/Campaigns/QueryByAccountId" --payload '{"AccountId":187276743,"CampaignType":"Search"}' --request-description "List Microsoft campaigns" --account 187276743`.trim(),
|
|
6933
6932
|
manage: `adkit manage \u2014 Ad platform management
|
|
6934
6933
|
|
|
6935
6934
|
Platforms:
|
|
@@ -7143,7 +7142,7 @@ Example:
|
|
|
7143
7142
|
Microsoft (Bing) is currently exposed through Advanced Platform Access, plus account assignment.
|
|
7144
7143
|
Endpoints are FULL https URLs to Bing Ads v13 hosts (campaign/reporting/bulk .api.bingads.microsoft.com) \u2014 not relative paths.
|
|
7145
7144
|
Bing REST puts the operation in the HTTP verb; query reads are POST to .../Query* paths.
|
|
7146
|
-
|
|
7145
|
+
Recognized Query* reads execute immediately even though Bing uses POST. Other POST requests remain draft-first.
|
|
7147
7146
|
|
|
7148
7147
|
${rawPlatformCommandLine("microsoft")}
|
|
7149
7148
|
|
|
@@ -7152,7 +7151,7 @@ Commands:
|
|
|
7152
7151
|
|
|
7153
7152
|
Examples:
|
|
7154
7153
|
adkit manage microsoft accounts available
|
|
7155
|
-
adkit manage platform-api-requests --platform microsoft --endpoint "https://campaign.api.bingads.microsoft.com/CampaignManagement/v13/Campaigns/QueryByAccountId" --payload '{"AccountId":187276743,"CampaignType":"Search"}' --request-description "List Microsoft campaigns" --account 187276743
|
|
7154
|
+
adkit manage platform-api-requests --platform microsoft --endpoint "https://campaign.api.bingads.microsoft.com/CampaignManagement/v13/Campaigns/QueryByAccountId" --payload '{"AccountId":187276743,"CampaignType":"Search"}' --request-description "List Microsoft campaigns" --account 187276743`.trim(),
|
|
7156
7155
|
"microsoft accounts": `adkit manage microsoft accounts \u2014 Microsoft Ads accounts
|
|
7157
7156
|
|
|
7158
7157
|
list List connected Microsoft ad accounts
|
package/package.json
CHANGED