argorant 0.1.0 → 0.2.0

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.
Files changed (2) hide show
  1. package/bin/argorant.js +11 -4
  2. package/package.json +3 -3
package/bin/argorant.js CHANGED
@@ -52,11 +52,16 @@ function resolveKey() {
52
52
  // Flags that map to API filter params. Value flags take the next token.
53
53
  const VALUE_FLAGS = {
54
54
  "--title": "title",
55
+ "--exclude-title": "exclude_title",
55
56
  "--seniority": "seniority",
56
57
  "--department": "departments",
57
58
  "--departments": "departments",
58
59
  "--industry": "industry",
59
60
  "--country": "country",
61
+ // --geography is an alias for --country; the API expands regions like
62
+ // "Europe", "EMEA", "DACH", "APAC" into their member countries.
63
+ "--geography": "country",
64
+ "--region": "country",
60
65
  "--state": "state",
61
66
  "--city": "city",
62
67
  "--company": "company_name",
@@ -356,10 +361,12 @@ ${bold("COMMANDS")}
356
361
  ${cyan("export")} "<query>" -n 1000 -o leads.csv Verified CSV export ${dim("(uses quota)")}
357
362
 
358
363
  ${bold("FILTERS")}
359
- --title <t> --seniority <s> --department <d>
360
- --industry <i> --country <c> --state <s> --city <c>
361
- --company <name> --domain <domain> --verify-status <v>
362
- --has-phone --has-linkedin --has-email
364
+ --title <t> --exclude-title <t> --seniority <s> --department <d>
365
+ --industry <i> --country <c> --geography <r> --state <s>
366
+ --city <c> --company <name> --domain <domain> --verify-status <v>
367
+ --has-phone --has-linkedin --has-email
368
+ ${dim("--title is abbreviation-aware (CFO ↔ Chief Financial Officer).")}
369
+ ${dim("--country / --geography accept regions: Europe, EMEA, DACH, Nordics, APAC, LATAM, GCC…")}
363
370
 
364
371
  ${bold("OPTIONS")}
365
372
  -n, --limit <n> Max rows -o, --output <file> CSV path (export)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "argorant",
3
- "version": "0.1.0",
4
- "description": "Search, count, reveal, and export verified B2B contacts from the Argorant database from your terminal, scripts, or coding agent.",
3
+ "version": "0.2.0",
4
+ "description": "Search, count, reveal, and export verified B2B contacts from the Argorant database \u2014 from your terminal, scripts, or coding agent.",
5
5
  "bin": {
6
6
  "argorant": "bin/argorant.js"
7
7
  },
@@ -29,4 +29,4 @@
29
29
  "url": "https://argorant.com/docs/cli"
30
30
  },
31
31
  "license": "MIT"
32
- }
32
+ }