openads-ai 0.2.18 → 0.2.19
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/cli.js +6 -6
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -315,21 +315,21 @@ async function main() {
|
|
|
315
315
|
return;
|
|
316
316
|
}
|
|
317
317
|
if (action === 'audit') {
|
|
318
|
-
let auditTemplate = 'audit-google-ads';
|
|
318
|
+
let auditTemplate = '/audit-google-ads';
|
|
319
319
|
if (config.metaToken && !config.connectGoogle) {
|
|
320
|
-
auditTemplate = 'audit-meta-ads';
|
|
320
|
+
auditTemplate = '/audit-meta-ads';
|
|
321
321
|
}
|
|
322
322
|
else if (config.metaToken && config.connectGoogle) {
|
|
323
|
-
auditTemplate = 'audit-campaigns';
|
|
323
|
+
auditTemplate = '/audit-campaigns';
|
|
324
324
|
}
|
|
325
325
|
finalArgs = [auditTemplate];
|
|
326
326
|
}
|
|
327
327
|
else {
|
|
328
328
|
const actionMap = {
|
|
329
329
|
chat: [],
|
|
330
|
-
copy: ['write-ad-copy'],
|
|
331
|
-
autoresearch: ['autoresearch-plan'],
|
|
332
|
-
gtm: ['go-to-market'],
|
|
330
|
+
copy: ['/write-ad-copy'],
|
|
331
|
+
autoresearch: ['/autoresearch-plan'],
|
|
332
|
+
gtm: ['/go-to-market'],
|
|
333
333
|
};
|
|
334
334
|
finalArgs = actionMap[action] || [];
|
|
335
335
|
}
|
package/package.json
CHANGED