@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 +6 -0
- package/README.md +3 -1
- package/package.json +1 -1
- package/skills/audienti/SKILL.md +5 -4
- package/src/cli.js +9 -0
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.
|
|
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
package/skills/audienti/SKILL.md
CHANGED
|
@@ -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.
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
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\",",
|