@soku-ai/cli 0.1.0-alpha.16 → 0.1.0-alpha.18
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 +3 -0
- package/dist/commands/ads.d.ts.map +1 -1
- package/dist/commands/ads.js +373 -10
- package/dist/commands/ads.js.map +1 -1
- package/dist/commands/auth.d.ts +1 -3
- package/dist/commands/auth.d.ts.map +1 -1
- package/dist/commands/auth.js +18 -3
- package/dist/commands/auth.js.map +1 -1
- package/dist/commands/automation.d.ts +46 -0
- package/dist/commands/automation.d.ts.map +1 -1
- package/dist/commands/automation.js +150 -0
- package/dist/commands/automation.js.map +1 -1
- package/dist/commands/changelog.d.ts +79 -0
- package/dist/commands/changelog.d.ts.map +1 -0
- package/dist/commands/changelog.js +123 -0
- package/dist/commands/changelog.js.map +1 -0
- package/dist/commands/context.d.ts +54 -0
- package/dist/commands/context.d.ts.map +1 -1
- package/dist/commands/context.js +362 -43
- package/dist/commands/context.js.map +1 -1
- package/dist/commands/egress.d.ts +49 -1
- package/dist/commands/egress.d.ts.map +1 -1
- package/dist/commands/egress.js +222 -33
- package/dist/commands/egress.js.map +1 -1
- package/dist/commands/workspace.d.ts +13 -0
- package/dist/commands/workspace.d.ts.map +1 -1
- package/dist/commands/workspace.js +34 -7
- package/dist/commands/workspace.js.map +1 -1
- package/dist/generated/capabilities.json +4829 -1680
- package/dist/generated/changelog.json +1448 -0
- package/dist/http/client.d.ts +16 -0
- package/dist/http/client.d.ts.map +1 -1
- package/dist/http/client.js +25 -5
- package/dist/http/client.js.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/upload-journal.d.ts +46 -0
- package/dist/upload-journal.d.ts.map +1 -0
- package/dist/upload-journal.js +102 -0
- package/dist/upload-journal.js.map +1 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +3 -3
- package/skills/soku/SKILL.md +17 -2
- package/skills/soku/references/ads-write.md +48 -19
- package/skills/soku/references/auth-workspace.md +27 -12
- package/skills/soku/references/egress-security.md +44 -0
- package/skills/soku/references/seo-automation-files.md +67 -3
- package/skills/soku/references/skills-updates.md +23 -0
|
@@ -0,0 +1,1448 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"historyStartsAt": "0.1.0-alpha.15",
|
|
4
|
+
"entries": [
|
|
5
|
+
{
|
|
6
|
+
"version": "0.1.0-alpha.18",
|
|
7
|
+
"date": "2026-08-31",
|
|
8
|
+
"notes": [
|
|
9
|
+
"automation: added get, update, pause, resume, delete, and deps — an existing automation can now be edited and paused in place instead of rebuilt in the target brand.",
|
|
10
|
+
"context: upload retries transient failures, records a resumable run id, and can reconcile what landed against the server by size and checksum (--verify, or the standalone `context verify`).",
|
|
11
|
+
"context: added `context uploads` to list runs that still have unfinished files.",
|
|
12
|
+
"context: a transient server error during upload no longer terminates the whole batch.",
|
|
13
|
+
"changelog: added this file and the `soku changelog` command.",
|
|
14
|
+
"egress: `soku egress -- curl` no longer drops parameters. `--data-urlencode` is now handled (it was skipped entirely, taking its value with it), repeated data flags accumulate with `&` instead of overwriting, and any curl flag the parser does not understand is now a usage error rather than a silent skip.",
|
|
15
|
+
"egress: `--data-urlencode` encoding matches curl byte for byte — a space is `+`, percent-escapes are lowercase.",
|
|
16
|
+
"egress: `-o/--output` writes the response body to that file; `@-` reads a data body from stdin."
|
|
17
|
+
],
|
|
18
|
+
"commands": {
|
|
19
|
+
"added": [
|
|
20
|
+
"automation get",
|
|
21
|
+
"automation update",
|
|
22
|
+
"automation pause",
|
|
23
|
+
"automation resume",
|
|
24
|
+
"automation delete",
|
|
25
|
+
"automation deps",
|
|
26
|
+
"context verify",
|
|
27
|
+
"context uploads",
|
|
28
|
+
"changelog"
|
|
29
|
+
],
|
|
30
|
+
"changed": [
|
|
31
|
+
"context upload",
|
|
32
|
+
"egress"
|
|
33
|
+
],
|
|
34
|
+
"removed": []
|
|
35
|
+
},
|
|
36
|
+
"capabilities": {
|
|
37
|
+
"counts": {
|
|
38
|
+
"before": 253,
|
|
39
|
+
"after": 292,
|
|
40
|
+
"added": 43,
|
|
41
|
+
"removed": 4,
|
|
42
|
+
"changed": 156
|
|
43
|
+
},
|
|
44
|
+
"added": [
|
|
45
|
+
{
|
|
46
|
+
"id": "ads/build_batch_retry_template",
|
|
47
|
+
"mode": "read",
|
|
48
|
+
"description": "Build an editable resubmission template containing only the failed and skipped operations of a finished action-review batch."
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"id": "ads/get_deploy_readiness",
|
|
52
|
+
"mode": "read",
|
|
53
|
+
"description": "Read whether one ad account's synced conversion-event configuration is ready for a conversion-dependent campaign deploy, and which single state blocks it."
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"id": "ads/get_offline_conversion_readiness",
|
|
57
|
+
"mode": "read",
|
|
58
|
+
"description": "Read whether this brand's Google Ads conversion actions and Meta pixels are configured to receive offline (in-store) conversions, and what blocks each one."
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"id": "ads/list_instagram_media",
|
|
62
|
+
"mode": "read",
|
|
63
|
+
"description": "List existing media published by an Instagram Professional Account connected to this Meta ad account."
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "applovin/asset_performance",
|
|
67
|
+
"mode": "read",
|
|
68
|
+
"description": "AppLovin per-asset (image / video / playable) delivery and cost."
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"id": "applovin/campaign_performance",
|
|
72
|
+
"mode": "read",
|
|
73
|
+
"description": "AppLovin campaign-level delivery and cost for a date range."
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"id": "applovin/creative_performance",
|
|
77
|
+
"mode": "read",
|
|
78
|
+
"description": "AppLovin creative-set and ad level delivery for a date range."
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"id": "applovin/list_accounts",
|
|
82
|
+
"mode": "read",
|
|
83
|
+
"description": "List the AppLovin Ads accounts this brand may read reports for."
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"id": "applovin/roas_retention",
|
|
87
|
+
"mode": "read",
|
|
88
|
+
"description": "AppLovin cohort ROAS and retention by campaign for a date range."
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"id": "applovin/run_report",
|
|
92
|
+
"mode": "read",
|
|
93
|
+
"description": "Arbitrary AppLovin advertiser report over an explicit column set."
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"id": "bigquery/get_table_schema",
|
|
97
|
+
"mode": "read",
|
|
98
|
+
"description": "Read one BigQuery table or view's column list (name, type, mode) plus its row and byte counts."
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"id": "bigquery/list_datasets",
|
|
102
|
+
"mode": "read",
|
|
103
|
+
"description": "List the BigQuery datasets in a connected GCP project; returns the dataset_id values the other bigquery.* actions take."
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"id": "bigquery/list_tables",
|
|
107
|
+
"mode": "read",
|
|
108
|
+
"description": "List the tables and views in one BigQuery dataset; returns table_id values plus each entry's type."
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"id": "bigquery/query",
|
|
112
|
+
"mode": "risk",
|
|
113
|
+
"description": "Run one read-only GoogleSQL query against the connected BigQuery project. Always human-reviewed: a person reads the SQL before it runs."
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"id": "doordash/get_sales_summary",
|
|
117
|
+
"mode": "read",
|
|
118
|
+
"description": "DoorDash sales aggregates (orders, fees, marketing, net) — no rows."
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"id": "doordash/list_cancelled_orders",
|
|
122
|
+
"mode": "read",
|
|
123
|
+
"description": "List DoorDash cancelled-order rows with aggregates."
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"id": "doordash/list_orders",
|
|
127
|
+
"mode": "read",
|
|
128
|
+
"description": "List DoorDash order rows (ORDER_DETAIL report) with aggregates."
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"id": "doordash/list_payouts",
|
|
132
|
+
"mode": "read",
|
|
133
|
+
"description": "List DoorDash payout rows (PAYOUT_SUMMARY report) with aggregates."
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"id": "doordash/list_promotion_performance",
|
|
137
|
+
"mode": "read",
|
|
138
|
+
"description": "List DoorDash promotion performance rows."
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"id": "doordash/list_sponsored_listing_performance",
|
|
142
|
+
"mode": "read",
|
|
143
|
+
"description": "List DoorDash Sponsored Listing (ads) performance rows."
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"id": "doordash/list_stores",
|
|
147
|
+
"mode": "read",
|
|
148
|
+
"description": "List the DoorDash stores this brand can read."
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"id": "doordash/list_transactions",
|
|
152
|
+
"mode": "read",
|
|
153
|
+
"description": "List DoorDash per-order transaction rows (fees, refunds, marketing)."
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"id": "guardrails/clear_emergency_stop",
|
|
157
|
+
"mode": "risk",
|
|
158
|
+
"description": "Clear the emergency stop and return the restore whitelist (HITL-gated)."
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"id": "guardrails/list_rules",
|
|
162
|
+
"mode": "read",
|
|
163
|
+
"description": "Read the brand's write-guardrail rules and emergency-stop status."
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"id": "guardrails/remove_rule",
|
|
167
|
+
"mode": "write",
|
|
168
|
+
"description": "Delete one write-guardrail rule by coordinate (HITL-gated)."
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"id": "guardrails/seed_default_pack",
|
|
172
|
+
"mode": "write",
|
|
173
|
+
"description": "Seed the factory default guardrail pack (idempotent, HITL-gated)."
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"id": "guardrails/set_emergency_stop",
|
|
177
|
+
"mode": "risk",
|
|
178
|
+
"description": "Engage the brand's emergency stop for all ads writes (HITL-gated)."
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"id": "guardrails/set_rule",
|
|
182
|
+
"mode": "write",
|
|
183
|
+
"description": "Create or overwrite one write-guardrail rule (HITL-gated)."
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"id": "sprout/list_profiles",
|
|
187
|
+
"mode": "read",
|
|
188
|
+
"description": "List a Sprout Social customer's social profiles and tags (LinkedIn, Facebook, Instagram, X, ...)."
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"id": "sprout/post_analytics",
|
|
192
|
+
"mode": "read",
|
|
193
|
+
"description": "Per-post analytics (impressions, reactions, clicks per published post) for a time range."
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"id": "sprout/profile_analytics",
|
|
197
|
+
"mode": "read",
|
|
198
|
+
"description": "Daily owned-profile analytics (impressions, engagement, follower growth) for a date range."
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"id": "toast/get_order",
|
|
202
|
+
"mode": "read",
|
|
203
|
+
"description": "Get one Toast order in full detail."
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"id": "toast/list_checks",
|
|
207
|
+
"mode": "read",
|
|
208
|
+
"description": "List Toast checks (bills) across a business day or time range."
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"id": "toast/list_orders",
|
|
212
|
+
"mode": "read",
|
|
213
|
+
"description": "List Toast order summaries for a business day or time range."
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"id": "toast/list_payments",
|
|
217
|
+
"mode": "read",
|
|
218
|
+
"description": "List Toast payment details for one paid business day."
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"id": "toast/list_refunds",
|
|
222
|
+
"mode": "read",
|
|
223
|
+
"description": "List Toast refunds issued on one business day."
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"id": "toast/list_restaurants",
|
|
227
|
+
"mode": "read",
|
|
228
|
+
"description": "List the Toast restaurant locations this brand can read."
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"id": "ubereats/get_order",
|
|
232
|
+
"mode": "read",
|
|
233
|
+
"description": "Get one Uber Eats order in full detail."
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"id": "ubereats/get_report",
|
|
237
|
+
"mode": "read",
|
|
238
|
+
"description": "Poll a requested Uber Eats report and read its rows once ready."
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"id": "ubereats/get_store",
|
|
242
|
+
"mode": "read",
|
|
243
|
+
"description": "Get one Uber Eats store's live details."
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"id": "ubereats/list_active_orders",
|
|
247
|
+
"mode": "read",
|
|
248
|
+
"description": "List a store's incoming Uber Eats orders (CREATED state only)."
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"id": "ubereats/list_stores",
|
|
252
|
+
"mode": "read",
|
|
253
|
+
"description": "List the Uber Eats stores this brand can read (import-time snapshot)."
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"id": "ubereats/request_report",
|
|
257
|
+
"mode": "read",
|
|
258
|
+
"description": "Request an async Uber Eats CSV report (sales, payments, financials, history)."
|
|
259
|
+
}
|
|
260
|
+
],
|
|
261
|
+
"removed": [
|
|
262
|
+
{
|
|
263
|
+
"id": "org/get_overview",
|
|
264
|
+
"mode": "read",
|
|
265
|
+
"description": "Read the current organization's cross-brand overview."
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"id": "org/get_usage_summary",
|
|
269
|
+
"mode": "read",
|
|
270
|
+
"description": "Read cross-brand usage, tokens, source split, and spend."
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"id": "org/list_activity",
|
|
274
|
+
"mode": "read",
|
|
275
|
+
"description": "List the current organization's merged activity feed."
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"id": "org/list_brands",
|
|
279
|
+
"mode": "read",
|
|
280
|
+
"description": "List live brands in the current organization."
|
|
281
|
+
}
|
|
282
|
+
],
|
|
283
|
+
"changed": [
|
|
284
|
+
{
|
|
285
|
+
"id": "ads/add_account_negative_keywords",
|
|
286
|
+
"fields": [
|
|
287
|
+
"long_description"
|
|
288
|
+
]
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"id": "ads/add_ad_group_negative_keywords",
|
|
292
|
+
"fields": [
|
|
293
|
+
"long_description"
|
|
294
|
+
]
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"id": "ads/add_audience_targeting",
|
|
298
|
+
"fields": [
|
|
299
|
+
"long_description",
|
|
300
|
+
"input_params"
|
|
301
|
+
]
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"id": "ads/add_callouts",
|
|
305
|
+
"fields": [
|
|
306
|
+
"long_description",
|
|
307
|
+
"input_params"
|
|
308
|
+
]
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"id": "ads/add_campaign_ad_units",
|
|
312
|
+
"fields": [
|
|
313
|
+
"long_description"
|
|
314
|
+
]
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"id": "ads/add_campaign_audience_targeting",
|
|
318
|
+
"fields": [
|
|
319
|
+
"long_description",
|
|
320
|
+
"input_params"
|
|
321
|
+
]
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"id": "ads/add_campaign_negative_keywords",
|
|
325
|
+
"fields": [
|
|
326
|
+
"long_description",
|
|
327
|
+
"input_params"
|
|
328
|
+
]
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"id": "ads/add_campaign_webpage_exclusion",
|
|
332
|
+
"fields": [
|
|
333
|
+
"long_description"
|
|
334
|
+
]
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"id": "ads/add_keywords",
|
|
338
|
+
"fields": [
|
|
339
|
+
"long_description",
|
|
340
|
+
"input_params"
|
|
341
|
+
]
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"id": "ads/add_sitelinks",
|
|
345
|
+
"fields": [
|
|
346
|
+
"long_description",
|
|
347
|
+
"input_params"
|
|
348
|
+
]
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"id": "ads/add_structured_snippets",
|
|
352
|
+
"fields": [
|
|
353
|
+
"long_description",
|
|
354
|
+
"input_params"
|
|
355
|
+
]
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"id": "ads/apply_ad_group_label",
|
|
359
|
+
"fields": [
|
|
360
|
+
"long_description",
|
|
361
|
+
"input_params"
|
|
362
|
+
]
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"id": "ads/apply_campaign_label",
|
|
366
|
+
"fields": [
|
|
367
|
+
"long_description",
|
|
368
|
+
"input_params"
|
|
369
|
+
]
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"id": "ads/apply_label",
|
|
373
|
+
"fields": [
|
|
374
|
+
"long_description"
|
|
375
|
+
]
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"id": "ads/archive_ad",
|
|
379
|
+
"fields": [
|
|
380
|
+
"long_description"
|
|
381
|
+
]
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"id": "ads/archive_ad_group",
|
|
385
|
+
"fields": [
|
|
386
|
+
"long_description"
|
|
387
|
+
]
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"id": "ads/archive_ad_unit",
|
|
391
|
+
"fields": [
|
|
392
|
+
"long_description"
|
|
393
|
+
]
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"id": "ads/archive_lead_form",
|
|
397
|
+
"fields": [
|
|
398
|
+
"long_description"
|
|
399
|
+
]
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"id": "ads/audit_ad_automation_inventory",
|
|
403
|
+
"fields": [
|
|
404
|
+
"input_params"
|
|
405
|
+
]
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"id": "ads/audit_creative_automation",
|
|
409
|
+
"fields": [
|
|
410
|
+
"long_description",
|
|
411
|
+
"input_params"
|
|
412
|
+
]
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"id": "ads/bulk_create_ad_creatives",
|
|
416
|
+
"fields": [
|
|
417
|
+
"long_description"
|
|
418
|
+
]
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"id": "ads/bulk_create_ads",
|
|
422
|
+
"fields": [
|
|
423
|
+
"long_description"
|
|
424
|
+
]
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"id": "ads/bulk_create_adsets",
|
|
428
|
+
"fields": [
|
|
429
|
+
"long_description"
|
|
430
|
+
]
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"id": "ads/bulk_create_campaigns",
|
|
434
|
+
"fields": [
|
|
435
|
+
"long_description"
|
|
436
|
+
]
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"id": "ads/create_ad",
|
|
440
|
+
"fields": [
|
|
441
|
+
"long_description",
|
|
442
|
+
"platforms",
|
|
443
|
+
"input_params",
|
|
444
|
+
"output_shape"
|
|
445
|
+
]
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
"id": "ads/create_ad_creative",
|
|
449
|
+
"fields": [
|
|
450
|
+
"long_description",
|
|
451
|
+
"input_params",
|
|
452
|
+
"output_shape"
|
|
453
|
+
]
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"id": "ads/create_ad_group",
|
|
457
|
+
"fields": [
|
|
458
|
+
"description",
|
|
459
|
+
"long_description",
|
|
460
|
+
"input_params",
|
|
461
|
+
"output_shape"
|
|
462
|
+
]
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"id": "ads/create_ad_label",
|
|
466
|
+
"fields": [
|
|
467
|
+
"long_description"
|
|
468
|
+
]
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"id": "ads/create_ad_rule",
|
|
472
|
+
"fields": [
|
|
473
|
+
"long_description"
|
|
474
|
+
]
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"id": "ads/create_ad_unit",
|
|
478
|
+
"fields": [
|
|
479
|
+
"long_description"
|
|
480
|
+
]
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"id": "ads/create_adset",
|
|
484
|
+
"fields": [
|
|
485
|
+
"long_description",
|
|
486
|
+
"input_params",
|
|
487
|
+
"output_shape"
|
|
488
|
+
]
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"id": "ads/create_bidding_strategy",
|
|
492
|
+
"fields": [
|
|
493
|
+
"long_description"
|
|
494
|
+
]
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"id": "ads/create_campaign",
|
|
498
|
+
"fields": [
|
|
499
|
+
"description",
|
|
500
|
+
"long_description",
|
|
501
|
+
"platforms",
|
|
502
|
+
"input_params",
|
|
503
|
+
"output_shape"
|
|
504
|
+
]
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"id": "ads/create_change_history_task",
|
|
508
|
+
"fields": [
|
|
509
|
+
"long_description"
|
|
510
|
+
]
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"id": "ads/create_conversion_action",
|
|
514
|
+
"fields": [
|
|
515
|
+
"long_description"
|
|
516
|
+
]
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"id": "ads/create_custom_audience",
|
|
520
|
+
"fields": [
|
|
521
|
+
"long_description"
|
|
522
|
+
]
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"id": "ads/create_gmv_max_campaign",
|
|
526
|
+
"fields": [
|
|
527
|
+
"long_description"
|
|
528
|
+
]
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"id": "ads/create_label",
|
|
532
|
+
"fields": [
|
|
533
|
+
"long_description"
|
|
534
|
+
]
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"id": "ads/create_lead_form",
|
|
538
|
+
"fields": [
|
|
539
|
+
"long_description"
|
|
540
|
+
]
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"id": "ads/create_lookalike_audience",
|
|
544
|
+
"fields": [
|
|
545
|
+
"long_description"
|
|
546
|
+
]
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"id": "ads/create_pixel",
|
|
550
|
+
"fields": [
|
|
551
|
+
"long_description"
|
|
552
|
+
]
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"id": "ads/create_pmax_campaign",
|
|
556
|
+
"fields": [
|
|
557
|
+
"long_description"
|
|
558
|
+
]
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"id": "ads/create_product_catalog",
|
|
562
|
+
"fields": [
|
|
563
|
+
"long_description"
|
|
564
|
+
]
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"id": "ads/create_product_feed",
|
|
568
|
+
"fields": [
|
|
569
|
+
"long_description"
|
|
570
|
+
]
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"id": "ads/create_rule_custom_audience",
|
|
574
|
+
"fields": [
|
|
575
|
+
"long_description"
|
|
576
|
+
]
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"id": "ads/create_smart_plus_campaign",
|
|
580
|
+
"fields": [
|
|
581
|
+
"long_description"
|
|
582
|
+
]
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"id": "ads/create_text_asset",
|
|
586
|
+
"fields": [
|
|
587
|
+
"long_description"
|
|
588
|
+
]
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"id": "ads/create_user_list",
|
|
592
|
+
"fields": [
|
|
593
|
+
"long_description"
|
|
594
|
+
]
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"id": "ads/create_youtube_video_asset",
|
|
598
|
+
"fields": [
|
|
599
|
+
"long_description"
|
|
600
|
+
]
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"id": "ads/deploy_image_ads_batch",
|
|
604
|
+
"fields": [
|
|
605
|
+
"long_description"
|
|
606
|
+
]
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
"id": "ads/enable_ad_automation_audits",
|
|
610
|
+
"fields": [
|
|
611
|
+
"long_description"
|
|
612
|
+
]
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"id": "ads/establish_automation_baseline",
|
|
616
|
+
"fields": [
|
|
617
|
+
"long_description"
|
|
618
|
+
]
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"id": "ads/estimate_audience_size",
|
|
622
|
+
"fields": [
|
|
623
|
+
"freshness_kind"
|
|
624
|
+
]
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"id": "ads/gaql_search",
|
|
628
|
+
"fields": [
|
|
629
|
+
"long_description"
|
|
630
|
+
]
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"id": "ads/generate_ad_preview",
|
|
634
|
+
"fields": [
|
|
635
|
+
"freshness_kind"
|
|
636
|
+
]
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"id": "ads/generate_ad_units",
|
|
640
|
+
"fields": [
|
|
641
|
+
"long_description"
|
|
642
|
+
]
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"id": "ads/get_account_info",
|
|
646
|
+
"fields": [
|
|
647
|
+
"long_description",
|
|
648
|
+
"platforms",
|
|
649
|
+
"freshness_kind",
|
|
650
|
+
"input_params"
|
|
651
|
+
]
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
"id": "ads/get_account_pages",
|
|
655
|
+
"fields": [
|
|
656
|
+
"freshness_kind"
|
|
657
|
+
]
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
"id": "ads/get_ad",
|
|
661
|
+
"fields": [
|
|
662
|
+
"long_description",
|
|
663
|
+
"platforms",
|
|
664
|
+
"freshness_kind",
|
|
665
|
+
"input_params"
|
|
666
|
+
]
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"id": "ads/get_ad_creative",
|
|
670
|
+
"fields": [
|
|
671
|
+
"freshness_kind"
|
|
672
|
+
]
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"id": "ads/get_ad_creatives",
|
|
676
|
+
"fields": [
|
|
677
|
+
"freshness_kind"
|
|
678
|
+
]
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"id": "ads/get_ad_group",
|
|
682
|
+
"fields": [
|
|
683
|
+
"freshness_kind"
|
|
684
|
+
]
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"id": "ads/get_adset",
|
|
688
|
+
"fields": [
|
|
689
|
+
"freshness_kind"
|
|
690
|
+
]
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"id": "ads/get_bidding_strategy",
|
|
694
|
+
"fields": [
|
|
695
|
+
"freshness_kind"
|
|
696
|
+
]
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
"id": "ads/get_campaign",
|
|
700
|
+
"fields": [
|
|
701
|
+
"long_description",
|
|
702
|
+
"platforms",
|
|
703
|
+
"freshness_kind",
|
|
704
|
+
"input_params"
|
|
705
|
+
]
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"id": "ads/get_connected_instagram_accounts",
|
|
709
|
+
"fields": [
|
|
710
|
+
"freshness_kind"
|
|
711
|
+
]
|
|
712
|
+
},
|
|
713
|
+
{
|
|
714
|
+
"id": "ads/get_conversion_tracking_snippets",
|
|
715
|
+
"fields": [
|
|
716
|
+
"freshness_kind"
|
|
717
|
+
]
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"id": "ads/get_data_readiness",
|
|
721
|
+
"fields": [
|
|
722
|
+
"platforms"
|
|
723
|
+
]
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
"id": "ads/get_insights",
|
|
727
|
+
"fields": [
|
|
728
|
+
"long_description",
|
|
729
|
+
"platforms",
|
|
730
|
+
"freshness_kind",
|
|
731
|
+
"input_params"
|
|
732
|
+
]
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
"id": "ads/get_leads",
|
|
736
|
+
"fields": [
|
|
737
|
+
"freshness_kind"
|
|
738
|
+
]
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"id": "ads/get_pmax_campaign",
|
|
742
|
+
"fields": [
|
|
743
|
+
"freshness_kind"
|
|
744
|
+
]
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"id": "ads/get_recommendations",
|
|
748
|
+
"fields": [
|
|
749
|
+
"freshness_kind"
|
|
750
|
+
]
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"id": "ads/get_resource_metadata",
|
|
754
|
+
"fields": [
|
|
755
|
+
"long_description"
|
|
756
|
+
]
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"id": "ads/get_tree_structure",
|
|
760
|
+
"fields": [
|
|
761
|
+
"freshness_kind"
|
|
762
|
+
]
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"id": "ads/list_account_negative_keywords",
|
|
766
|
+
"fields": [
|
|
767
|
+
"freshness_kind"
|
|
768
|
+
]
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
"id": "ads/list_ad_accounts",
|
|
772
|
+
"fields": [
|
|
773
|
+
"platforms"
|
|
774
|
+
]
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"id": "ads/list_ad_creatives",
|
|
778
|
+
"fields": [
|
|
779
|
+
"freshness_kind"
|
|
780
|
+
]
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"id": "ads/list_ad_group_negative_keywords",
|
|
784
|
+
"fields": [
|
|
785
|
+
"freshness_kind"
|
|
786
|
+
]
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
"id": "ads/list_ad_groups",
|
|
790
|
+
"fields": [
|
|
791
|
+
"freshness_kind"
|
|
792
|
+
]
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
"id": "ads/list_ad_labels",
|
|
796
|
+
"fields": [
|
|
797
|
+
"freshness_kind"
|
|
798
|
+
]
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
"id": "ads/list_ad_rules",
|
|
802
|
+
"fields": [
|
|
803
|
+
"long_description",
|
|
804
|
+
"freshness_kind",
|
|
805
|
+
"input_params",
|
|
806
|
+
"output_shape"
|
|
807
|
+
]
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"id": "ads/list_ads",
|
|
811
|
+
"fields": [
|
|
812
|
+
"long_description",
|
|
813
|
+
"platforms",
|
|
814
|
+
"freshness_kind",
|
|
815
|
+
"input_params"
|
|
816
|
+
]
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"id": "ads/list_adsets",
|
|
820
|
+
"fields": [
|
|
821
|
+
"freshness_kind"
|
|
822
|
+
]
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
"id": "ads/list_bidding_strategies",
|
|
826
|
+
"fields": [
|
|
827
|
+
"freshness_kind"
|
|
828
|
+
]
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"id": "ads/list_brand_campaigns",
|
|
832
|
+
"fields": [
|
|
833
|
+
"platforms"
|
|
834
|
+
]
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
"id": "ads/list_campaign_negative_keywords",
|
|
838
|
+
"fields": [
|
|
839
|
+
"freshness_kind"
|
|
840
|
+
]
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"id": "ads/list_campaigns",
|
|
844
|
+
"fields": [
|
|
845
|
+
"long_description",
|
|
846
|
+
"platforms",
|
|
847
|
+
"freshness_kind",
|
|
848
|
+
"input_params"
|
|
849
|
+
]
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"id": "ads/list_conversion_actions",
|
|
853
|
+
"fields": [
|
|
854
|
+
"long_description",
|
|
855
|
+
"see_also"
|
|
856
|
+
]
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"id": "ads/list_countries",
|
|
860
|
+
"fields": [
|
|
861
|
+
"freshness_kind"
|
|
862
|
+
]
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"id": "ads/list_custom_audiences",
|
|
866
|
+
"fields": [
|
|
867
|
+
"freshness_kind"
|
|
868
|
+
]
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"id": "ads/list_customers",
|
|
872
|
+
"fields": [
|
|
873
|
+
"freshness_kind"
|
|
874
|
+
]
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
"id": "ads/list_dimensions",
|
|
878
|
+
"fields": [
|
|
879
|
+
"platforms"
|
|
880
|
+
]
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"id": "ads/list_languages",
|
|
884
|
+
"fields": [
|
|
885
|
+
"freshness_kind"
|
|
886
|
+
]
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"id": "ads/list_lead_forms",
|
|
890
|
+
"fields": [
|
|
891
|
+
"freshness_kind"
|
|
892
|
+
]
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
"id": "ads/list_operation_records",
|
|
896
|
+
"fields": [
|
|
897
|
+
"platforms"
|
|
898
|
+
]
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"id": "ads/list_pixels",
|
|
902
|
+
"fields": [
|
|
903
|
+
"freshness_kind"
|
|
904
|
+
]
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
"id": "ads/list_saved_audiences",
|
|
908
|
+
"fields": [
|
|
909
|
+
"freshness_kind"
|
|
910
|
+
]
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
"id": "ads/migrate_legacy_ad_units",
|
|
914
|
+
"fields": [
|
|
915
|
+
"long_description"
|
|
916
|
+
]
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
"id": "ads/query_single_dimension",
|
|
920
|
+
"fields": [
|
|
921
|
+
"long_description",
|
|
922
|
+
"platforms"
|
|
923
|
+
]
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"id": "ads/register_automation_copy",
|
|
927
|
+
"fields": [
|
|
928
|
+
"long_description"
|
|
929
|
+
]
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"id": "ads/remove_account_negative_keywords",
|
|
933
|
+
"fields": [
|
|
934
|
+
"long_description"
|
|
935
|
+
]
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"id": "ads/remove_ad",
|
|
939
|
+
"fields": [
|
|
940
|
+
"long_description",
|
|
941
|
+
"platforms",
|
|
942
|
+
"input_params"
|
|
943
|
+
]
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"id": "ads/remove_ad_creative",
|
|
947
|
+
"fields": [
|
|
948
|
+
"long_description"
|
|
949
|
+
]
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
"id": "ads/remove_ad_group",
|
|
953
|
+
"fields": [
|
|
954
|
+
"long_description"
|
|
955
|
+
]
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
"id": "ads/remove_ad_group_label",
|
|
959
|
+
"fields": [
|
|
960
|
+
"long_description"
|
|
961
|
+
]
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"id": "ads/remove_ad_group_negative_keywords",
|
|
965
|
+
"fields": [
|
|
966
|
+
"long_description"
|
|
967
|
+
]
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
"id": "ads/remove_ad_rule",
|
|
971
|
+
"fields": [
|
|
972
|
+
"long_description"
|
|
973
|
+
]
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
"id": "ads/remove_adset",
|
|
977
|
+
"fields": [
|
|
978
|
+
"long_description"
|
|
979
|
+
]
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"id": "ads/remove_audience_targeting",
|
|
983
|
+
"fields": [
|
|
984
|
+
"long_description"
|
|
985
|
+
]
|
|
986
|
+
},
|
|
987
|
+
{
|
|
988
|
+
"id": "ads/remove_bidding_strategy",
|
|
989
|
+
"fields": [
|
|
990
|
+
"long_description"
|
|
991
|
+
]
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
"id": "ads/remove_campaign",
|
|
995
|
+
"fields": [
|
|
996
|
+
"long_description",
|
|
997
|
+
"platforms",
|
|
998
|
+
"input_params"
|
|
999
|
+
]
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
"id": "ads/remove_campaign_assets",
|
|
1003
|
+
"fields": [
|
|
1004
|
+
"long_description"
|
|
1005
|
+
]
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
"id": "ads/remove_campaign_audience_targeting",
|
|
1009
|
+
"fields": [
|
|
1010
|
+
"long_description"
|
|
1011
|
+
]
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
"id": "ads/remove_campaign_label",
|
|
1015
|
+
"fields": [
|
|
1016
|
+
"long_description"
|
|
1017
|
+
]
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"id": "ads/remove_campaign_negative_keywords",
|
|
1021
|
+
"fields": [
|
|
1022
|
+
"long_description"
|
|
1023
|
+
]
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
"id": "ads/remove_conversion_action",
|
|
1027
|
+
"fields": [
|
|
1028
|
+
"long_description"
|
|
1029
|
+
]
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"id": "ads/remove_custom_audience",
|
|
1033
|
+
"fields": [
|
|
1034
|
+
"long_description"
|
|
1035
|
+
]
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
"id": "ads/remove_keyword",
|
|
1039
|
+
"fields": [
|
|
1040
|
+
"long_description"
|
|
1041
|
+
]
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"id": "ads/remove_label",
|
|
1045
|
+
"fields": [
|
|
1046
|
+
"long_description"
|
|
1047
|
+
]
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
"id": "ads/remove_product_catalog",
|
|
1051
|
+
"fields": [
|
|
1052
|
+
"long_description"
|
|
1053
|
+
]
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"id": "ads/remove_product_feed",
|
|
1057
|
+
"fields": [
|
|
1058
|
+
"long_description"
|
|
1059
|
+
]
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
"id": "ads/replace_campaign_ad_units",
|
|
1063
|
+
"fields": [
|
|
1064
|
+
"long_description"
|
|
1065
|
+
]
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"id": "ads/resolve_terms",
|
|
1069
|
+
"fields": [
|
|
1070
|
+
"platforms"
|
|
1071
|
+
]
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"id": "ads/search_geo_locations",
|
|
1075
|
+
"fields": [
|
|
1076
|
+
"freshness_kind"
|
|
1077
|
+
]
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
"id": "ads/search_interests",
|
|
1081
|
+
"fields": [
|
|
1082
|
+
"freshness_kind"
|
|
1083
|
+
]
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"id": "ads/send_conversion_event",
|
|
1087
|
+
"fields": [
|
|
1088
|
+
"long_description",
|
|
1089
|
+
"input_params"
|
|
1090
|
+
]
|
|
1091
|
+
},
|
|
1092
|
+
{
|
|
1093
|
+
"id": "ads/set_ad_schedule",
|
|
1094
|
+
"fields": [
|
|
1095
|
+
"long_description",
|
|
1096
|
+
"input_params"
|
|
1097
|
+
]
|
|
1098
|
+
},
|
|
1099
|
+
{
|
|
1100
|
+
"id": "ads/set_bid_modifier",
|
|
1101
|
+
"fields": [
|
|
1102
|
+
"long_description",
|
|
1103
|
+
"input_params"
|
|
1104
|
+
]
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
"id": "ads/set_final_url_suffix",
|
|
1108
|
+
"fields": [
|
|
1109
|
+
"long_description",
|
|
1110
|
+
"input_params"
|
|
1111
|
+
]
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
"id": "ads/set_geo_targeting",
|
|
1115
|
+
"fields": [
|
|
1116
|
+
"long_description",
|
|
1117
|
+
"input_params"
|
|
1118
|
+
]
|
|
1119
|
+
},
|
|
1120
|
+
{
|
|
1121
|
+
"id": "ads/set_language_targeting",
|
|
1122
|
+
"fields": [
|
|
1123
|
+
"long_description",
|
|
1124
|
+
"input_params"
|
|
1125
|
+
]
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
"id": "ads/set_network_settings",
|
|
1129
|
+
"fields": [
|
|
1130
|
+
"long_description",
|
|
1131
|
+
"input_params"
|
|
1132
|
+
]
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
"id": "ads/update_ad",
|
|
1136
|
+
"fields": [
|
|
1137
|
+
"long_description",
|
|
1138
|
+
"platforms",
|
|
1139
|
+
"input_params"
|
|
1140
|
+
]
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
"id": "ads/update_ad_group",
|
|
1144
|
+
"fields": [
|
|
1145
|
+
"long_description",
|
|
1146
|
+
"input_params",
|
|
1147
|
+
"output_shape"
|
|
1148
|
+
]
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
"id": "ads/update_ad_rule",
|
|
1152
|
+
"fields": [
|
|
1153
|
+
"long_description"
|
|
1154
|
+
]
|
|
1155
|
+
},
|
|
1156
|
+
{
|
|
1157
|
+
"id": "ads/update_adset",
|
|
1158
|
+
"fields": [
|
|
1159
|
+
"long_description",
|
|
1160
|
+
"input_params",
|
|
1161
|
+
"output_shape"
|
|
1162
|
+
]
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
"id": "ads/update_bidding_strategy",
|
|
1166
|
+
"fields": [
|
|
1167
|
+
"long_description"
|
|
1168
|
+
]
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
"id": "ads/update_campaign",
|
|
1172
|
+
"fields": [
|
|
1173
|
+
"long_description",
|
|
1174
|
+
"platforms",
|
|
1175
|
+
"input_params",
|
|
1176
|
+
"output_shape"
|
|
1177
|
+
]
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"id": "ads/update_conversion_action",
|
|
1181
|
+
"fields": [
|
|
1182
|
+
"long_description"
|
|
1183
|
+
]
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
"id": "ads/update_custom_audience",
|
|
1187
|
+
"fields": [
|
|
1188
|
+
"long_description"
|
|
1189
|
+
]
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
"id": "ads/update_gmv_max_campaign",
|
|
1193
|
+
"fields": [
|
|
1194
|
+
"long_description"
|
|
1195
|
+
]
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
"id": "ads/update_keyword",
|
|
1199
|
+
"fields": [
|
|
1200
|
+
"long_description"
|
|
1201
|
+
]
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
"id": "ads/update_pixel",
|
|
1205
|
+
"fields": [
|
|
1206
|
+
"long_description"
|
|
1207
|
+
]
|
|
1208
|
+
},
|
|
1209
|
+
{
|
|
1210
|
+
"id": "ads/update_product_catalog",
|
|
1211
|
+
"fields": [
|
|
1212
|
+
"long_description"
|
|
1213
|
+
]
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
"id": "ads/update_product_feed",
|
|
1217
|
+
"fields": [
|
|
1218
|
+
"long_description"
|
|
1219
|
+
]
|
|
1220
|
+
},
|
|
1221
|
+
{
|
|
1222
|
+
"id": "ads/update_smart_plus_campaign",
|
|
1223
|
+
"fields": [
|
|
1224
|
+
"long_description"
|
|
1225
|
+
]
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
"id": "ads/update_smart_plus_campaign_status",
|
|
1229
|
+
"fields": [
|
|
1230
|
+
"long_description"
|
|
1231
|
+
]
|
|
1232
|
+
},
|
|
1233
|
+
{
|
|
1234
|
+
"id": "ads/update_user_list",
|
|
1235
|
+
"fields": [
|
|
1236
|
+
"long_description"
|
|
1237
|
+
]
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
"id": "ads/upload_custom_audience_file",
|
|
1241
|
+
"fields": [
|
|
1242
|
+
"long_description"
|
|
1243
|
+
]
|
|
1244
|
+
},
|
|
1245
|
+
{
|
|
1246
|
+
"id": "ads/upload_image",
|
|
1247
|
+
"fields": [
|
|
1248
|
+
"long_description"
|
|
1249
|
+
]
|
|
1250
|
+
},
|
|
1251
|
+
{
|
|
1252
|
+
"id": "ads/upload_image_asset",
|
|
1253
|
+
"fields": [
|
|
1254
|
+
"long_description"
|
|
1255
|
+
]
|
|
1256
|
+
},
|
|
1257
|
+
{
|
|
1258
|
+
"id": "ads/upload_images",
|
|
1259
|
+
"fields": [
|
|
1260
|
+
"long_description"
|
|
1261
|
+
]
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
"id": "ads/upload_video",
|
|
1265
|
+
"fields": [
|
|
1266
|
+
"long_description"
|
|
1267
|
+
]
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
"id": "gsc/query_search_analytics",
|
|
1271
|
+
"fields": [
|
|
1272
|
+
"long_description"
|
|
1273
|
+
]
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
"id": "integration/byo_mcp_read_tool",
|
|
1277
|
+
"fields": [
|
|
1278
|
+
"freshness_kind"
|
|
1279
|
+
]
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
"id": "integration/list_tools",
|
|
1283
|
+
"fields": [
|
|
1284
|
+
"freshness_kind"
|
|
1285
|
+
]
|
|
1286
|
+
}
|
|
1287
|
+
]
|
|
1288
|
+
}
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
"version": "0.1.0-alpha.17",
|
|
1292
|
+
"date": "2026-08-03",
|
|
1293
|
+
"notes": [],
|
|
1294
|
+
"commands": {
|
|
1295
|
+
"added": [],
|
|
1296
|
+
"changed": [],
|
|
1297
|
+
"removed": []
|
|
1298
|
+
},
|
|
1299
|
+
"capabilities": {
|
|
1300
|
+
"counts": {
|
|
1301
|
+
"before": 246,
|
|
1302
|
+
"after": 253,
|
|
1303
|
+
"added": 7,
|
|
1304
|
+
"removed": 0,
|
|
1305
|
+
"changed": 8
|
|
1306
|
+
},
|
|
1307
|
+
"added": [
|
|
1308
|
+
{
|
|
1309
|
+
"id": "ads/add_campaign_webpage_exclusion",
|
|
1310
|
+
"mode": "risk",
|
|
1311
|
+
"description": "Exclude webpages (URL paths, page titles, content) from a Google campaign via negative WEBPAGE criteria; review-gated."
|
|
1312
|
+
},
|
|
1313
|
+
{
|
|
1314
|
+
"id": "ads/audit_ad_automation_inventory",
|
|
1315
|
+
"mode": "read",
|
|
1316
|
+
"description": "Read-only paginated TikTok, Google, Meta, or ChatGPT Ads audit of every automation baseline currently tracked for one brand-scoped ad account."
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
"id": "ads/audit_creative_automation",
|
|
1320
|
+
"mode": "read",
|
|
1321
|
+
"description": "Read-only drift audit: compare a Meta creative's or Google campaign's live AI-automation settings against the approved intent baseline."
|
|
1322
|
+
},
|
|
1323
|
+
{
|
|
1324
|
+
"id": "ads/enable_ad_automation_audits",
|
|
1325
|
+
"mode": "risk",
|
|
1326
|
+
"description": "HITL provision or recover the current brand's 48-hour and weekly full-current-state Google, Meta, TikTok, and ChatGPT Ads automation audits."
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
"id": "ads/establish_automation_baseline",
|
|
1330
|
+
"mode": "risk",
|
|
1331
|
+
"description": "HITL Google, Meta, TikTok, or ChatGPT Ads confirmation of a fresh provider state as a human baseline."
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
"id": "ads/preview_automation_baseline",
|
|
1335
|
+
"mode": "read",
|
|
1336
|
+
"description": "Read-only Google, Meta, TikTok, or ChatGPT Ads automation observation and identity-bound approval digest."
|
|
1337
|
+
},
|
|
1338
|
+
{
|
|
1339
|
+
"id": "ads/register_automation_copy",
|
|
1340
|
+
"mode": "risk",
|
|
1341
|
+
"description": "HITL register a Google, Meta, TikTok, or ChatGPT Ads copy from one authoritative automation intent."
|
|
1342
|
+
}
|
|
1343
|
+
],
|
|
1344
|
+
"removed": [],
|
|
1345
|
+
"changed": [
|
|
1346
|
+
{
|
|
1347
|
+
"id": "ads/create_ad",
|
|
1348
|
+
"fields": [
|
|
1349
|
+
"input_params"
|
|
1350
|
+
]
|
|
1351
|
+
},
|
|
1352
|
+
{
|
|
1353
|
+
"id": "ads/create_ad_creative",
|
|
1354
|
+
"fields": [
|
|
1355
|
+
"input_params"
|
|
1356
|
+
]
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
"id": "ads/create_ad_group",
|
|
1360
|
+
"fields": [
|
|
1361
|
+
"input_params"
|
|
1362
|
+
]
|
|
1363
|
+
},
|
|
1364
|
+
{
|
|
1365
|
+
"id": "ads/create_campaign",
|
|
1366
|
+
"fields": [
|
|
1367
|
+
"input_params"
|
|
1368
|
+
]
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
"id": "ads/create_pmax_campaign",
|
|
1372
|
+
"fields": [
|
|
1373
|
+
"input_params"
|
|
1374
|
+
]
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
"id": "ads/migrate_legacy_ad_units",
|
|
1378
|
+
"fields": [
|
|
1379
|
+
"long_description",
|
|
1380
|
+
"input_params"
|
|
1381
|
+
]
|
|
1382
|
+
},
|
|
1383
|
+
{
|
|
1384
|
+
"id": "ads/update_ad",
|
|
1385
|
+
"fields": [
|
|
1386
|
+
"input_params"
|
|
1387
|
+
]
|
|
1388
|
+
},
|
|
1389
|
+
{
|
|
1390
|
+
"id": "ads/update_campaign",
|
|
1391
|
+
"fields": [
|
|
1392
|
+
"long_description",
|
|
1393
|
+
"input_params"
|
|
1394
|
+
]
|
|
1395
|
+
}
|
|
1396
|
+
]
|
|
1397
|
+
}
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"version": "0.1.0-alpha.16",
|
|
1401
|
+
"date": "2026-07-30",
|
|
1402
|
+
"notes": [],
|
|
1403
|
+
"commands": {
|
|
1404
|
+
"added": [],
|
|
1405
|
+
"changed": [],
|
|
1406
|
+
"removed": []
|
|
1407
|
+
},
|
|
1408
|
+
"capabilities": {
|
|
1409
|
+
"counts": {
|
|
1410
|
+
"before": 246,
|
|
1411
|
+
"after": 246,
|
|
1412
|
+
"added": 0,
|
|
1413
|
+
"removed": 0,
|
|
1414
|
+
"changed": 0
|
|
1415
|
+
},
|
|
1416
|
+
"added": [],
|
|
1417
|
+
"removed": [],
|
|
1418
|
+
"changed": []
|
|
1419
|
+
}
|
|
1420
|
+
},
|
|
1421
|
+
{
|
|
1422
|
+
"version": "0.1.0-alpha.15",
|
|
1423
|
+
"date": "2026-07-30",
|
|
1424
|
+
"notes": [
|
|
1425
|
+
"First release published from this repository, with 246 capabilities.",
|
|
1426
|
+
"No earlier manifest exists here to diff against: the alpha.14 manifest lived in the monorepo before the CLI was extracted."
|
|
1427
|
+
],
|
|
1428
|
+
"commands": {
|
|
1429
|
+
"added": [],
|
|
1430
|
+
"changed": [],
|
|
1431
|
+
"removed": []
|
|
1432
|
+
},
|
|
1433
|
+
"capabilities": {
|
|
1434
|
+
"counts": {
|
|
1435
|
+
"before": 0,
|
|
1436
|
+
"after": 246,
|
|
1437
|
+
"added": 0,
|
|
1438
|
+
"removed": 0,
|
|
1439
|
+
"changed": 0
|
|
1440
|
+
},
|
|
1441
|
+
"added": [],
|
|
1442
|
+
"removed": [],
|
|
1443
|
+
"changed": [],
|
|
1444
|
+
"baseline": true
|
|
1445
|
+
}
|
|
1446
|
+
}
|
|
1447
|
+
]
|
|
1448
|
+
}
|