@mailhooks/sdk 2.0.1 → 2.1.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/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -212,6 +212,10 @@ interface WebhookPayload {
|
|
|
212
212
|
};
|
|
213
213
|
} | null;
|
|
214
214
|
};
|
|
215
|
+
/** Whether this email is stored in custom (BYOB) storage */
|
|
216
|
+
usesCustomStorage: boolean;
|
|
217
|
+
/** Storage path for the email (only present when usesCustomStorage is true) */
|
|
218
|
+
storagePath?: string;
|
|
215
219
|
}
|
|
216
220
|
/**
|
|
217
221
|
* Verifies a webhook signature using HMAC-SHA256.
|