@masters-union/outbound-sdk 0.2.11 → 0.2.12
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/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -443,8 +443,9 @@ interface IncomingWebhookEventV2 {
|
|
|
443
443
|
/** The JSON body POSTed to a v2 webhook endpoint. */
|
|
444
444
|
interface IncomingWebhookPayloadV2 {
|
|
445
445
|
webhookId: string;
|
|
446
|
-
/**
|
|
447
|
-
|
|
446
|
+
/** Webhook delivery (dispatch) id — one per POST/batch, stable across retries.
|
|
447
|
+
* Batch-level idempotency key (also in the X-Webhook-Delivery-Id header). */
|
|
448
|
+
webhookDeliveryId: string;
|
|
448
449
|
version: 2;
|
|
449
450
|
timestamp: string;
|
|
450
451
|
events: IncomingWebhookEventV2[];
|
package/dist/index.d.ts
CHANGED
|
@@ -443,8 +443,9 @@ interface IncomingWebhookEventV2 {
|
|
|
443
443
|
/** The JSON body POSTed to a v2 webhook endpoint. */
|
|
444
444
|
interface IncomingWebhookPayloadV2 {
|
|
445
445
|
webhookId: string;
|
|
446
|
-
/**
|
|
447
|
-
|
|
446
|
+
/** Webhook delivery (dispatch) id — one per POST/batch, stable across retries.
|
|
447
|
+
* Batch-level idempotency key (also in the X-Webhook-Delivery-Id header). */
|
|
448
|
+
webhookDeliveryId: string;
|
|
448
449
|
version: 2;
|
|
449
450
|
timestamp: string;
|
|
450
451
|
events: IncomingWebhookEventV2[];
|