@waffo/pancake-ts 0.5.0 → 0.5.1
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/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js.map +1 -1
- package/docs/webhook-guide.md +1 -0
- package/package.json +1 -1
package/docs/webhook-guide.md
CHANGED
|
@@ -361,6 +361,7 @@ Both APIs share the same underlying verification logic and resolution chain.
|
|
|
361
361
|
| `eventType` | `string` | Event type (e.g. `"order.completed"`) |
|
|
362
362
|
| `eventId` | `string` | Business event ID (e.g. payment ID) |
|
|
363
363
|
| `storeId` | `string` | Store ID the event belongs to |
|
|
364
|
+
| `storeName` | `string` | Store name |
|
|
364
365
|
| `mode` | `string` | Environment (`"test"` or `"prod"`) |
|
|
365
366
|
| `data` | `T` | Event data (defaults to `WebhookEventData`) |
|
|
366
367
|
|