@wavyx/pdcli 0.9.0 → 0.10.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.
- package/CHANGELOG.md +39 -0
- package/README.md +9 -0
- package/oclif.manifest.json +2403 -1149
- package/package.json +4 -1
- package/src/commands/activity/list.js +47 -5
- package/src/commands/deal/history.js +73 -0
- package/src/commands/deal/list.js +40 -2
- package/src/commands/deal/product/add.js +69 -0
- package/src/commands/deal/product/list.js +56 -0
- package/src/commands/deal/product/remove.js +52 -0
- package/src/commands/deal/product/update.js +78 -0
- package/src/commands/funnel.js +7 -49
- package/src/commands/org/list.js +40 -2
- package/src/commands/person/list.js +40 -2
- package/src/commands/product/list.js +35 -2
- package/src/commands/user/find.js +50 -0
- package/src/commands/user/list.js +36 -0
- package/src/commands/webhook/create.js +8 -2
- package/src/lib/changelog.js +85 -0
- package/src/lib/client.js +25 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,45 @@ All notable changes to `pdcli` are documented here. Format follows
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/); versions follow
|
|
5
5
|
[SemVer](https://semver.org/).
|
|
6
6
|
|
|
7
|
+
## [0.10.0] - 2026-06-06
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- `deal product list/add/update/remove` — line items on deals at last.
|
|
12
|
+
Cursor-paginated listing with sort options; `add` takes `--product`,
|
|
13
|
+
`--price`, and `--quantity` (default 1) plus discount/tax/comments;
|
|
14
|
+
amounts are validated client-side (exit 64 on garbage). No
|
|
15
|
+
`--duration` flag: product durations were retired by Pipedrive in
|
|
16
|
+
2024 in favor of billing frequencies.
|
|
17
|
+
- `user list` and `user find <term>` (`--by-email` for exact lookups) —
|
|
18
|
+
every `--owner <id>` flag in the CLI is finally usable without
|
|
19
|
+
copying ids out of the web app.
|
|
20
|
+
- List power-params on `deal`, `person`, `org`, `activity`, and
|
|
21
|
+
`product` lists: `--filter <saved-filter-id>`, `--ids` (max 100),
|
|
22
|
+
`--sort-by`/`--sort-direction`, `--updated-since`/`--updated-until`
|
|
23
|
+
where the endpoint supports them. `--ids` and `--filter` are mutually
|
|
24
|
+
exclusive — the API silently ignores ids when a filter is present.
|
|
25
|
+
- `deal history <id>` — field-change audit trail, newest-first, with
|
|
26
|
+
`--field` filtering and `--resolve-fields` rendering custom-field
|
|
27
|
+
names and option labels.
|
|
28
|
+
- `webhook create --event-object` accepts the six v2 object types added
|
|
29
|
+
for projects and line items (project, task, board, phase,
|
|
30
|
+
deal_product, deal_installment).
|
|
31
|
+
- Daily-budget awareness: a 429 with `x-daily-ratelimit-token-remaining: 0`
|
|
32
|
+
fails fast with a clear message instead of backing off blindly;
|
|
33
|
+
`--verbose` logs the remaining daily token budget on every request.
|
|
34
|
+
|
|
35
|
+
### Changed
|
|
36
|
+
|
|
37
|
+
- List page size raised from 100 to 500 rows per request (the v2
|
|
38
|
+
maximum) — large pulls use 5x fewer requests and rate-limit tokens.
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- `activity list --type` never worked against the live API (the v2
|
|
43
|
+
endpoint rejects a `type` query parameter); the flag now filters
|
|
44
|
+
client-side.
|
|
45
|
+
|
|
7
46
|
## [0.9.0] - 2026-06-05
|
|
8
47
|
|
|
9
48
|
### Changed
|
package/README.md
CHANGED
|
@@ -42,6 +42,8 @@ pdcli note list --deal 42
|
|
|
42
42
|
pdcli pipeline list && pdcli stage list --pipeline 1
|
|
43
43
|
pdcli search "acme"
|
|
44
44
|
pdcli field list deal # custom fields with their hash keys
|
|
45
|
+
pdcli user list # resolve owner IDs to names
|
|
46
|
+
pdcli deal history 42 # field-change audit trail: who changed what, when
|
|
45
47
|
```
|
|
46
48
|
|
|
47
49
|
Output everywhere: `--output table|json|yaml|csv`, `--jq '<expr>'`, `--fields id,name`.
|
|
@@ -63,6 +65,13 @@ pdcli deal create --title "Sized" --field "Deal Size=Large" --field "Score=4.5"
|
|
|
63
65
|
pdcli deal update 42 --body '{"probability":75}' # raw JSON escape hatch
|
|
64
66
|
```
|
|
65
67
|
|
|
68
|
+
## Line items
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
pdcli deal product add 42 --product 10 --price 150 --quantity 4 # attach a product to a deal
|
|
72
|
+
pdcli deal product list 42 # lines, with server-computed sums
|
|
73
|
+
```
|
|
74
|
+
|
|
66
75
|
## Bulk
|
|
67
76
|
|
|
68
77
|
```bash
|