@audienti/cli 0.1.59 → 0.1.60

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/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ All notable changes to the Audienti CLI are documented here.
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [0.1.60] - 2026-09-08
8
+
9
+ ### Changed
10
+
11
+ - Motion responses no longer include `post_accept_actions_enabled`; a Motion with an Approach always plans and executes post-accept outreach, so the per-Motion enabled/disabled line is gone from `motions show`.
12
+
7
13
  ## [0.1.59] - 2026-09-06
8
14
 
9
15
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@audienti/cli",
3
- "version": "0.1.59",
3
+ "version": "0.1.60",
4
4
  "description": "Agent-first command-line client for Audienti.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -5414,9 +5414,6 @@ function renderMotion(motion, context) {
5414
5414
  writeLine(context.stdout, `Status: ${display(motion?.status)}`);
5415
5415
  writeLine(context.stdout, `Kind: ${display(motion?.kind)}`);
5416
5416
  writeLine(context.stdout, `Approach: ${display(motion?.approach, "not set")}`);
5417
- if (typeof motion?.post_accept_actions_enabled === "boolean") {
5418
- writeLine(context.stdout, `Post-accept actions: ${motion.post_accept_actions_enabled ? "enabled" : "disabled"}`);
5419
- }
5420
5417
  writeLine(context.stdout, `Start date: ${display(motion?.starts_on, "not set")}`);
5421
5418
  writeLine(context.stdout, `End date: ${display(motion?.ends_on, "not set")}`);
5422
5419
  writeLine(context.stdout, `Maximum companies: ${display(motion?.maximum_company_count, "not set")}`);