@adkit/cli 1.13.34 → 1.13.35
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 +2 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -2812,8 +2812,8 @@ async function deleteGoogleAssetGroup(client, args, flags) {
|
|
|
2812
2812
|
}
|
|
2813
2813
|
async function listGoogleAdGroups(client, _args, flags) {
|
|
2814
2814
|
validateFlags(flags, AD_GROUP_LIST_FLAGS, "manage google ad-groups list");
|
|
2815
|
-
const
|
|
2816
|
-
const qs = buildGoogleListQuery(flags, {
|
|
2815
|
+
const campaignIds = typeof flags.campaign === "string" ? flags.campaign : void 0;
|
|
2816
|
+
const qs = buildGoogleListQuery(flags, { campaignIds });
|
|
2817
2817
|
const path3 = `/manage/google/ad-groups${qs}`;
|
|
2818
2818
|
return client.get(path3);
|
|
2819
2819
|
}
|
package/package.json
CHANGED