@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/version.d.ts CHANGED
@@ -1,3 +1,3 @@
1
1
  export declare const CLI_PACKAGE_NAME = "@soku-ai/cli";
2
- export declare const CLI_VERSION = "0.1.0-alpha.13";
2
+ export declare const CLI_VERSION = "0.1.0-alpha.14";
3
3
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  export const CLI_PACKAGE_NAME = '@soku-ai/cli';
2
- export const CLI_VERSION = '0.1.0-alpha.13';
2
+ export const CLI_VERSION = '0.1.0-alpha.14';
3
3
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soku-ai/cli",
3
- "version": "0.1.0-alpha.13",
3
+ "version": "0.1.0-alpha.14",
4
4
  "description": "Soku CLI — call Soku ads/GA4/PostHog data capabilities from any AI agent or shell.",
5
5
  "license": "Proprietary",
6
6
  "author": "Soku",
@@ -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