@audienti/cli 0.1.21 → 0.1.22
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/package.json +1 -1
- package/src/cli.js +2 -2
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.22] - 2026-07-21
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- Add `related` mode to `audienti users activity` for inspecting human work performed through the selected user's connected accounts.
|
|
12
|
+
|
|
7
13
|
## [0.1.21] - 2026-07-20
|
|
8
14
|
|
|
9
15
|
### Changed
|
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -51,7 +51,7 @@ const COMPANY_RULES_CREATE_USAGE = "Usage: audienti company-rules create (--link
|
|
|
51
51
|
const COMPANY_RULES_UPDATE_USAGE = "Usage: audienti company-rules update <rule_id> [--linkedin-url <url>] [--domain <domain>] [--disposition <monitor|nurture|not_fit|reject>] [--name <text>] [--user <account_user_id|email|me|none>] [--note <text>] [--json] [--account <acct_id>]";
|
|
52
52
|
const COMPANY_RULES_REMOVE_USAGE = "Usage: audienti company-rules remove <rule_id> [--json] [--account <acct_id>]";
|
|
53
53
|
const COMPANY_RULES_APPLY_USAGE = "Usage: audienti company-rules apply (<rule_id>|--all) [--json] [--account <acct_id>]";
|
|
54
|
-
const USERS_ACTIVITY_USAGE = "Usage: audienti users activity [account_user_id|me] [--mode <actor|account_usage>] [--window <24h|7d|30d>] [--platform <linkedin|email|gmail>] [--query <text>] [--limit <n>] [--page <n>] [--json] [--account <acct_id>]";
|
|
54
|
+
const USERS_ACTIVITY_USAGE = "Usage: audienti users activity [account_user_id|me] [--mode <actor|account_usage|related>] [--window <24h|7d|30d>] [--platform <linkedin|email|gmail>] [--query <text>] [--limit <n>] [--page <n>] [--json] [--account <acct_id>]";
|
|
55
55
|
const OFFERS_SHOW_USAGE = "Usage: audienti offers show <offr_id> [--json] [--account <acct_id>]";
|
|
56
56
|
const OFFERS_UPDATE_USAGE = "Usage: audienti offers update <offr_id> [--name <text>] [--description <text>] [--url <url>] [--json] [--account <acct_id>]";
|
|
57
57
|
const OFFERS_DELETE_USAGE = "Usage: audienti offers delete <offr_id> --confirm <yes|true|Y|y> [--json] [--account <acct_id>]";
|
|
@@ -5679,7 +5679,7 @@ const HELP_TOPICS = new Map([
|
|
|
5679
5679
|
"",
|
|
5680
5680
|
"Input shape:",
|
|
5681
5681
|
" account_user_id: integer account user id, or me for the saved default account user when configured",
|
|
5682
|
-
" mode: actor | account_usage",
|
|
5682
|
+
" mode: actor | account_usage | related",
|
|
5683
5683
|
" window: 24h | 7d | 30d",
|
|
5684
5684
|
" platform: linkedin | email | gmail",
|
|
5685
5685
|
"",
|