@koda-sl/baker-cli 0.150.0-dev.04484bc24 → 0.150.0-dev.57528fa3f
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 +0 -8
- package/dist/cli.js +554 -211
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -846,7 +846,6 @@ audit --format md # deliverable-ready markdown table
|
|
|
846
846
|
|
|
847
847
|
campaign-groups create|update|pause|resume|duplicate # staged writes (see below)
|
|
848
848
|
campaigns create|update|pause|resume|archive|duplicate
|
|
849
|
-
campaigns url-params <ad-set-id> # UTMs for every ad in the ad set
|
|
850
849
|
creatives create|update|pause|resume|duplicate
|
|
851
850
|
audiences create|upload
|
|
852
851
|
conversions create|update
|
|
@@ -869,12 +868,6 @@ baker ads linkedin campaigns create --name "ABM Tier-1" --group li_temp_x1 \
|
|
|
869
868
|
baker ads linkedin creatives create --campaign li_temp_x2 --format image \
|
|
870
869
|
--image-id <bakerImageId> --headline "Book a demo" --landing-url https://example.com/demo --cta REQUEST_DEMO
|
|
871
870
|
|
|
872
|
-
# UTMs belong on the ad set — LinkedIn appends them to every ad in it, live ones included
|
|
873
|
-
baker ads linkedin campaigns url-params 123456 \
|
|
874
|
-
--param "utm_source=linkedin&utm_medium=paid-social" \
|
|
875
|
-
--dynamic utm_campaign=CAMPAIGN_NAME --dynamic utm_content=CREATIVE_ID
|
|
876
|
-
baker ads linkedin campaigns url-params 123456 --clear # remove them all
|
|
877
|
-
|
|
878
871
|
# Fix the classic audit findings
|
|
879
872
|
baker ads linkedin campaigns update 123456 --audience-expansion off --lan off
|
|
880
873
|
baker ads linkedin campaigns update 123456 --bid 7.50 --daily-budget 100 --currency USD
|
|
@@ -4724,4 +4717,3 @@ Pushing to `main` with changes in `packages/cli/` triggers the GitHub Actions wo
|
|
|
4724
4717
|
npx convex env set BAKER_CLI_VERSION <version> # Override sandbox version
|
|
4725
4718
|
npx convex env remove BAKER_CLI_VERSION # Clean up after testing
|
|
4726
4719
|
```
|
|
4727
|
-
- **0.150.0**: `baker ads linkedin campaigns url-params <ad-set-id>` stages an ad set's URL tracking parameters (LinkedIn's `adTrackingParameters`) — `--param key=value` for fixed values (repeatable or `&`-joined), `--dynamic key=PLACEHOLDER` for values LinkedIn fills in per ad (`CAMPAIGN_NAME`, `CREATIVE_ID`, …), `--clear` to remove them. LinkedIn appends these to the landing URL of every ad in the ad set, including ads already running, so this replaces stamping the same UTM onto each ad's `--landing-url` — which missed later ads and double-appended keys the ad set already set. Account-level parameters remain UI-only (LinkedIn exposes no API for them).
|