From 083e4749a0bb5a4759531c56192477ee468f13d5 Mon Sep 17 00:00:00 2001 From: Ken'ichiro Oyama Date: Wed, 3 Jun 2026 11:17:46 +0900 Subject: [PATCH] docs(function): remove updatedAt from IDP User interface The IDP client's User type does not expose an updatedAt field, so documenting it misleads readers into expecting a property that does not exist on returned users. --- docs/guides/function/managing-idp-users.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/guides/function/managing-idp-users.md b/docs/guides/function/managing-idp-users.md index 325e1df..c0f7782 100644 --- a/docs/guides/function/managing-idp-users.md +++ b/docs/guides/function/managing-idp-users.md @@ -28,7 +28,6 @@ interface User { name: string; disabled: boolean; createdAt?: string; - updatedAt?: string; } interface UserQuery {