@audienti/cli 0.1.63 → 0.1.64

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.64] - 2026-09-10
8
+
9
+ ### Changed
10
+
11
+ - List routing-rule create and update resolve `locations` and `company_locations` labels to a known LinkedIn geography at save time. Unknown labels return 422. Read responses include `geo_key` on those entries.
12
+
7
13
  ## [0.1.63] - 2026-09-10
8
14
 
9
15
  ### Fixed
package/README.md CHANGED
@@ -321,7 +321,9 @@ audienti lists routing-rules <list_id> apply
321
321
  Use `action_kind: "route_to_list"` with `target_list_id` to route to another
322
322
  working list. `apply` queues the existing list-routing background job, just like
323
323
  the UI; it reports that work was enqueued, not that every prospect has finished
324
- routing. Run `audienti lists routing-rules help` for the full condition contract.
324
+ routing. Location and company_location labels must resolve to a known geography
325
+ at save time; unknown labels return 422. Run `audienti lists routing-rules help`
326
+ for the full condition contract.
325
327
 
326
328
  To inspect activity for prospects that entered the account during a specific
327
329
  cohort while keeping a separate activity window:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@audienti/cli",
3
- "version": "0.1.63",
3
+ "version": "0.1.64",
4
4
  "description": "Agent-first command-line client for Audienti.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -246,10 +246,11 @@ Never infer that `ready: true`, paused motions, or prepared queue work authorize
246
246
  provider execution.
247
247
 
248
248
  List routing-rule create and update commands accept the same normalized
249
- condition and action data as the list UI. Inspect the ordered rules first, use
250
- `audienti lists routing-rules help` for the payload contract, and treat `apply`
251
- as an asynchronous relaunch: it queues the existing routing job and does not
252
- mean every list member has finished routing.
249
+ condition and action data as the list UI. Location and company_location labels
250
+ must resolve to a known geography or the request returns 422. Inspect the
251
+ ordered rules first, use `audienti lists routing-rules help` for the payload
252
+ contract, and treat `apply` as an asynchronous relaunch: it queues the existing
253
+ routing job and does not mean every list member has finished routing.
253
254
 
254
255
  Motion start and end dates are optional lifecycle controls. A due start can
255
256
  activate a configured preparing or paused motion; an end date is the final
package/src/cli.js CHANGED
@@ -9513,6 +9513,15 @@ const HELP_TOPICS = new Map([
9513
9513
  " locations, company_locations, seniorities, job_titles, bio_texts,",
9514
9514
  " company_sizes, company_types, company_keywords, seniority_match_mode, industry_groups",
9515
9515
  "",
9516
+ "Location and company_location entries:",
9517
+ " name: string | required; must resolve to a known geography",
9518
+ " negative: boolean | optional",
9519
+ " geo_key: LinkedIn geography id or app key such as app:north_america | optional on write, filled on save",
9520
+ " id: legacy LinkedIn id | treated as geo_key",
9521
+ " Known labels include countries, US states, Canadian provinces, and named regions",
9522
+ " (North America, Europe, EMEA, DACH, Nordics, ANZ, UK and Ireland, Middle East,",
9523
+ " APAC, LATAM, Africa, Oceania). Unknown labels fail with 422.",
9524
+ "",
9516
9525
  "Example payload file:",
9517
9526
  " {",
9518
9527
  " \"name\": \"VP prospects to Alice\",",