@audienti/cli 0.1.65 → 0.1.67

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,18 @@ All notable changes to the Audienti CLI are documented here.
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [0.1.67] - 2026-09-17
8
+
9
+ ### Added
10
+
11
+ - List routing-rules API response now reports whether rules were force re-applied.
12
+
13
+ ## [0.1.66] - 2026-09-13
14
+
15
+ ### Added
16
+
17
+ - `network-ops queue` now shows the already-synced LinkedIn profile headline as a distinct column, leaving job title, company, and the invitation message unchanged and omitting a blank headline as `-`.
18
+
7
19
  ## [0.1.65] - 2026-09-13
8
20
 
9
21
  ### Changed
package/README.md CHANGED
@@ -231,8 +231,9 @@ scan does not mean the queue is empty. JSON output preserves the API response.
231
231
  Pagination flags are not accepted when recording outcomes or requeueing drafts.
232
232
 
233
233
  Network Ops has its own owner-scoped CLI surface for pending inbound LinkedIn
234
- connection requests. It shows the exact invitation-bound message when one was
235
- captured and queues the same canonical provider actions as the product UI:
234
+ connection requests. It shows the already-synced LinkedIn profile headline when
235
+ one is present, keeps the exact invitation-bound message when one was captured,
236
+ and queues the same canonical provider actions as the product UI:
236
237
 
237
238
  ```bash
238
239
  audienti network-ops queue [--page <n>] [--offset <n>|--cursor <token>]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@audienti/cli",
3
- "version": "0.1.65",
3
+ "version": "0.1.67",
4
4
  "description": "Agent-first command-line client for Audienti.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -6919,9 +6919,10 @@ function renderNetworkOpsQueue(payload, context, { accountId }) {
6919
6919
  const rows = decisionQueue.length > 0 ? decisionQueue : [payload?.next_move].filter(Boolean);
6920
6920
  if (rows.length === 0) return writeLine(context.stdout, "No Network Ops rows found.");
6921
6921
 
6922
- writeAlignedTable(context, ["ROW ID", "PERSON", "MESSAGE", "STATE"], rows.map((row) => [
6922
+ writeAlignedTable(context, ["ROW ID", "PERSON", "HEADLINE", "MESSAGE", "STATE"], rows.map((row) => [
6923
6923
  display(row?.id),
6924
6924
  operatorSubjectLabel(row),
6925
+ row?.network_ops?.headline || "-",
6925
6926
  row?.network_ops?.note || "-",
6926
6927
  display(row?.network_ops?.state)
6927
6928
  ]));
@@ -11389,7 +11390,7 @@ const HELP_TOPICS = new Map([
11389
11390
  "",
11390
11391
  ...OPERATOR_PAGINATION_HELP,
11391
11392
  "Purpose:",
11392
- " List one page of the authenticated owner's pending inbound LinkedIn connection requests, including the exact invitation-bound message when available.",
11393
+ " List one page of the authenticated owner's pending inbound LinkedIn connection requests, including the already-synced LinkedIn headline and the exact invitation-bound message when available.",
11393
11394
  " The general equivalent is `audienti operator queue --opportunity-kind network`.",
11394
11395
  "",
11395
11396
  "API:",