@soku-ai/cli 0.1.0-alpha.13 → 0.1.0-alpha.14
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/commands/ads.d.ts.map +1 -1
- package/dist/commands/ads.js +23 -1
- package/dist/commands/ads.js.map +1 -1
- package/dist/generated/capabilities.json +2537 -979
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/skills/soku/references/ads-write.md +17 -0
package/dist/version.d.ts
CHANGED
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -82,6 +82,23 @@ soku ads meta ad create \
|
|
|
82
82
|
--summary "Create paused Meta ad Hero image ad"
|
|
83
83
|
```
|
|
84
84
|
|
|
85
|
+
Dynamic creative (Advantage+ creative) uses `--asset-feed-spec` instead of a
|
|
86
|
+
single asset — Meta auto-combines the arrays. It is a primary media source, so
|
|
87
|
+
it is mutually exclusive with `--image-hash` / `--video-id` /
|
|
88
|
+
`--child-attachments`; the spec needs at least one of `images`/`videos` plus
|
|
89
|
+
`ad_formats`, and CTA / lead-form wiring goes inside the spec
|
|
90
|
+
(`call_to_action_types`), not as top-level flags. The ad set must be
|
|
91
|
+
dynamic-creative-enabled (`soku ads meta adset create ... -p is_dynamic_creative=true`).
|
|
92
|
+
|
|
93
|
+
```bash
|
|
94
|
+
soku ads meta creative create \
|
|
95
|
+
--account-id <meta_account_id> \
|
|
96
|
+
--name "Dynamic creative" \
|
|
97
|
+
--page-id <page_id> \
|
|
98
|
+
--asset-feed-spec '{"images":[{"hash":"<hash1>"},{"hash":"<hash2>"}],"bodies":[{"text":"Primary text A"},{"text":"Primary text B"}],"titles":[{"text":"Headline A"}],"link_urls":[{"website_url":"https://example.com"}],"call_to_action_types":["LEARN_MORE"],"ad_formats":["SINGLE_IMAGE"]}' \
|
|
99
|
+
--summary "Create Meta dynamic creative"
|
|
100
|
+
```
|
|
101
|
+
|
|
85
102
|
Status controls exist at delivery levels:
|
|
86
103
|
|
|
87
104
|
```bash
|