@audienti/cli 0.1.56 → 0.1.57

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.57] - 2026-09-05
8
+
9
+ ### Added
10
+
11
+ - Show the selected LinkedIn account's stored Premium and Sales Navigator status and last detection timestamp in setup preflight, preserving unknown values and the unchanged JSON response.
12
+
7
13
  ## [0.1.56] - 2026-09-05
8
14
 
9
15
  ### Added
package/README.md CHANGED
@@ -355,6 +355,13 @@ today's window, and whether provider execution is currently inside the window.
355
355
  It also reports the configured user fallback location, the connected account's
356
356
  configured and last-verified effective proxy geography, and the proxy source
357
357
  without exposing proxy URLs, credentials, egress IPs, or browser session data.
358
+ For authorized LinkedIn account owners and admins, `social_cookie.capabilities.linkedin`
359
+ reports Audienti's stored `premium` and `sales_navigator` booleans plus the
360
+ `checked_at` timestamp. Text output shows yes, no, or unknown and when detection
361
+ last ran. Null or missing values mean unknown, including older server responses
362
+ and unavailable access. These are stored observations that may be stale;
363
+ preflight does not perform a fresh provider check. `--json` preserves the server
364
+ payload unchanged.
358
365
  For LinkedIn, `social_cookie.automation.pacing` includes effective weekly
359
366
  quotas, daily targets, motion active days, the outstanding-invitation cap, ramp
360
367
  configuration, current outstanding inventory, any inventory blocker, and current
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@audienti/cli",
3
- "version": "0.1.56",
3
+ "version": "0.1.57",
4
4
  "description": "Agent-first command-line client for Audienti.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -4977,6 +4977,9 @@ function renderSetupPlayPreflight(payload, context) {
4977
4977
  writeLine(context.stdout, `Connection status: ${display(socialCookie.status)}`);
4978
4978
  writeLine(context.stdout, `Mapped to account: ${socialCookie.accessible_to_account ? "yes" : "no"}`);
4979
4979
  writeLine(context.stdout, `Actionable: ${socialCookie.actionable ? "yes" : "no"}`);
4980
+ if ((socialCookie.service_identifier || payload?.platform) === "linkedin") {
4981
+ renderSetupLinkedInCapabilities(socialCookie.capabilities?.linkedin, context);
4982
+ }
4980
4983
  renderSetupProxyLocation(socialCookie.proxy_location, context);
4981
4984
  renderSetupAutomationSummary(socialCookie.automation || {}, context);
4982
4985
  } else {
@@ -4994,6 +4997,14 @@ function renderSetupPlayPreflight(payload, context) {
4994
4997
  }
4995
4998
  }
4996
4999
 
5000
+ function renderSetupLinkedInCapabilities(capabilities, context) {
5001
+ const storedBoolean = (value) => value === true ? "yes" : value === false ? "no" : "unknown";
5002
+ writeLine(
5003
+ context.stdout,
5004
+ `LinkedIn capabilities (stored): Premium ${storedBoolean(capabilities?.premium)}, Sales Navigator ${storedBoolean(capabilities?.sales_navigator)}; last checked ${display(capabilities?.checked_at, "not recorded")}`
5005
+ );
5006
+ }
5007
+
4997
5008
  function renderSetupAutomationSummary(automation, context) {
4998
5009
  const summary = [
4999
5010
  `autopilot ${automation.autopilot_enabled ? "on" : "off"}`,
@@ -8069,6 +8080,8 @@ const HELP_TOPICS = new Map([
8069
8080
  " social_cookie.automation.in_working_hours: server-side current schedule decision",
8070
8081
  " account_user.location: configured user location used as the proxy fallback; unknown fields are null",
8071
8082
  " social_cookie.proxy_location: configured and last-verified effective proxy geography plus its source",
8083
+ " social_cookie.capabilities.linkedin: stored premium and sales_navigator booleans (null means unknown), plus checked_at; missing or unauthorized data is unknown",
8084
+ " Stored capabilities may be stale. Preflight does not check the provider again.",
8072
8085
  " social_cookie.automation.pacing: effective LinkedIn quotas, ramp settings, invitation inventory authority, and current capacity",
8073
8086
  " social_cookie.urls.mapping_url: owner URL for granting account access",
8074
8087
  " social_cookie.urls.edit_url: operations URL for reconnect/settings review when mapped",