@siglume/direct-request-payment 0.4.15 → 0.4.16
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 +18 -0
- package/README.md +4 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/docs/announcement-ja.md +1 -1
- package/docs/api-reference.md +19 -0
- package/docs/merchant-quickstart.md +4 -0
- package/docs/metered-statements.md +23 -4
- package/docs/pricing.md +6 -1
- package/package.json +1 -1
package/docs/pricing.md
CHANGED
|
@@ -233,12 +233,17 @@ but it does not replace the Micro / Nano statement APIs.
|
|
|
233
233
|
|
|
234
234
|
Use [Micro / Nano Statements and Notices](./metered-statements.md) to integrate:
|
|
235
235
|
|
|
236
|
-
- provider summary of open, settled, unsettled,
|
|
236
|
+
- provider summary of open, settled, unsettled, past-due, and terminal
|
|
237
|
+
`uncollectible` / `written_off` revenue buckets,
|
|
237
238
|
- provider usage-event CSV export,
|
|
238
239
|
- buyer summaries for open-period estimated debit and past-due blocks,
|
|
239
240
|
- sanitized public failure reasons and support references,
|
|
240
241
|
- the fixed final notice plus close-plus-3-day debit window.
|
|
241
242
|
|
|
243
|
+
Reusing the same Micro / Nano execution idempotency key with a different input
|
|
244
|
+
payload fails closed before provider execution with
|
|
245
|
+
`IDEMPOTENCY_KEY_REUSED_WITH_DIFFERENT_PAYLOAD` and HTTP status `409`.
|
|
246
|
+
|
|
242
247
|
## SDK Behavior
|
|
243
248
|
|
|
244
249
|
The SDK does not calculate merchant invoices or enforce plan limits locally.
|