paymongo-cli 1.4.9 → 1.4.10
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 +13 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/dev.js +3 -3
- package/dist/commands/generate/templates/webhook-handler/javascript.js +15 -9
- package/dist/commands/generate/templates/webhook-handler/typescript.js +24 -6
- package/dist/commands/payments/actions.js +8 -7
- package/dist/commands/payments.js +6 -5
- package/dist/commands/trigger/helpers.js +5 -6
- package/dist/commands/webhooks/actions.js +36 -9
- package/dist/commands/webhooks.js +11 -6
- package/dist/index.js +2 -2
- package/dist/services/api/client.js +15 -6
- package/dist/services/dev/server.js +7 -16
- package/dist/utils/constants.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.4.10] - 2026-03-08
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **Official API Alignment** - Updated webhook management to use disable/enable semantics instead of hard delete, while keeping the old delete command as a compatibility alias.
|
|
15
|
+
- **Payment Intent Flow** - Switched the payment intent action path to PayMongo's current attach flow and updated the CLI to expose `payments attach` with `confirm` retained as an alias.
|
|
16
|
+
- **Webhook Signing** - Aligned local webhook signature parsing, trigger signing, and generated webhook handler templates with PayMongo's documented `Paymongo-Signature` header format for test and live signatures.
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- **Developer UX** - Updated command help text, user documentation, troubleshooting guidance, and CLI examples so the surfaced behavior matches the current PayMongo documentation and the CLI implementation.
|
|
21
|
+
- **Regression Coverage** - Expanded unit coverage for webhook disable/enable behavior, payment intent attachment, dev-server signature verification, and compatibility aliases.
|
|
22
|
+
|
|
10
23
|
## [1.4.9] - 2026-03-08
|
|
11
24
|
|
|
12
25
|
### Fixed
|