@koda-sl/baker-cli 0.149.0 → 0.150.0-dev.04484bc24
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 +8 -0
- package/dist/{chunk-OO5BDH3J.js → chunk-JBDSJZBZ.js} +4 -4
- package/dist/chunk-JBDSJZBZ.js.map +1 -0
- package/dist/cli.js +158 -3
- package/dist/cli.js.map +1 -1
- package/dist/engine/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-OO5BDH3J.js.map +0 -1
package/README.md
CHANGED
|
@@ -846,6 +846,7 @@ 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
|
|
849
850
|
creatives create|update|pause|resume|duplicate
|
|
850
851
|
audiences create|upload
|
|
851
852
|
conversions create|update
|
|
@@ -868,6 +869,12 @@ baker ads linkedin campaigns create --name "ABM Tier-1" --group li_temp_x1 \
|
|
|
868
869
|
baker ads linkedin creatives create --campaign li_temp_x2 --format image \
|
|
869
870
|
--image-id <bakerImageId> --headline "Book a demo" --landing-url https://example.com/demo --cta REQUEST_DEMO
|
|
870
871
|
|
|
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
|
+
|
|
871
878
|
# Fix the classic audit findings
|
|
872
879
|
baker ads linkedin campaigns update 123456 --audience-expansion off --lan off
|
|
873
880
|
baker ads linkedin campaigns update 123456 --bid 7.50 --daily-budget 100 --currency USD
|
|
@@ -4717,3 +4724,4 @@ Pushing to `main` with changes in `packages/cli/` triggers the GitHub Actions wo
|
|
|
4717
4724
|
npx convex env set BAKER_CLI_VERSION <version> # Override sandbox version
|
|
4718
4725
|
npx convex env remove BAKER_CLI_VERSION # Clean up after testing
|
|
4719
4726
|
```
|
|
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).
|
|
@@ -7,9 +7,9 @@ import {
|
|
|
7
7
|
__toESM
|
|
8
8
|
} from "./chunk-RK67WL4O.js";
|
|
9
9
|
|
|
10
|
-
//
|
|
10
|
+
// ../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/index.js
|
|
11
11
|
var require_safe_stable_stringify = __commonJS({
|
|
12
|
-
"
|
|
12
|
+
"../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/index.js"(exports, module) {
|
|
13
13
|
"use strict";
|
|
14
14
|
var { hasOwnProperty } = Object.prototype;
|
|
15
15
|
var stringify = configure2();
|
|
@@ -1070,7 +1070,7 @@ function resolveAdaptFormats(params) {
|
|
|
1070
1070
|
return params.formats ?? [];
|
|
1071
1071
|
}
|
|
1072
1072
|
|
|
1073
|
-
//
|
|
1073
|
+
// ../../.pnpm-store/v10/links/@/safe-stable-stringify/2.5.0/810146e81bae4e3a061fe487864f2fde80c4b03b886877dc0f1fffbc6480b67e/node_modules/safe-stable-stringify/esm/wrapper.js
|
|
1074
1074
|
var import__ = __toESM(require_safe_stable_stringify(), 1);
|
|
1075
1075
|
var configure = import__.default.configure;
|
|
1076
1076
|
var wrapper_default = import__.default;
|
|
@@ -7941,4 +7941,4 @@ export {
|
|
|
7941
7941
|
defaultRegistry,
|
|
7942
7942
|
createEngineFromEnv
|
|
7943
7943
|
};
|
|
7944
|
-
//# sourceMappingURL=chunk-
|
|
7944
|
+
//# sourceMappingURL=chunk-JBDSJZBZ.js.map
|