From 2ed373dedfe5569d4b58bcfbfdcb48115b92e34b Mon Sep 17 00:00:00 2001 From: Ken'ichiro Oyama Date: Wed, 1 Apr 2026 10:43:24 +0900 Subject: [PATCH] feat(types): add fromName and subject params to SendPasswordResetEmailInput --- packages/types/tailor.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/types/tailor.d.ts b/packages/types/tailor.d.ts index c582cb4..3c74f18 100644 --- a/packages/types/tailor.d.ts +++ b/packages/types/tailor.d.ts @@ -363,6 +363,10 @@ declare namespace tailor.idp { userId: string; /** The URI to redirect to after password reset */ redirectUri: string; + /** The sender display name. Defaults to 'Tailor Platform IdP'. */ + fromName?: string; + /** The email subject line. Defaults to the localized default subject. */ + subject?: string; } /**