@adkit/cli 1.13.31 → 1.13.33
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 -1
- package/dist/cli.js +943 -116
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,9 +41,14 @@ adkit projects current
|
|
|
41
41
|
|
|
42
42
|
### Ad Library
|
|
43
43
|
|
|
44
|
-
Browse
|
|
44
|
+
Browse the shared ad library or your project’s My Watchlist. `add` finds or creates an advertiser and saves it to that project; `track` and `untrack` change membership for an existing ID. Repeating either is safe. Untracking keeps the shared advertiser and other projects intact.
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
+
adkit library advertisers list --scope watchlist --project <project-id>
|
|
48
|
+
adkit library advertisers search "notion" --scope watchlist --project <project-id>
|
|
49
|
+
adkit library advertisers add --website notion.so --project <project-id>
|
|
50
|
+
adkit library advertisers track <id> --project <project-id>
|
|
51
|
+
adkit library advertisers untrack <id> --project <project-id>
|
|
47
52
|
adkit library advertisers search "notion" --platform meta
|
|
48
53
|
adkit library advertisers <id>
|
|
49
54
|
adkit library advertisers similar --industry saas
|
|
@@ -51,6 +56,8 @@ adkit library ads list --advertiser <id>
|
|
|
51
56
|
adkit library ads <id>
|
|
52
57
|
```
|
|
53
58
|
|
|
59
|
+
Omit `--scope` (or use `--scope library`) for the whole library. List/search default to newest first; use `--sort name` for alphabetical order. Use `--json` for automation.
|
|
60
|
+
|
|
54
61
|
### Studio
|
|
55
62
|
|
|
56
63
|
Create and manage AI-generated ads.
|