From 6bdd0c5ae615f281ea9a9667a3125c821b97efcc Mon Sep 17 00:00:00 2001 From: Ken'ichiro Oyama Date: Wed, 3 Jun 2026 10:25:20 +0900 Subject: [PATCH] fix(types): remove non-existent updatedAt from tailor.idp.User The `updatedAt` field is declared on the `User` interface but is not returned by the IDP service, so any type-driven access yielded `undefined` and misled consumers. Drop it from the type so the declaration matches the runtime response. --- .changeset/remove-user-updated-at.md | 5 +++++ packages/types/tailor.d.ts | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .changeset/remove-user-updated-at.md diff --git a/.changeset/remove-user-updated-at.md b/.changeset/remove-user-updated-at.md new file mode 100644 index 0000000..f8e15da --- /dev/null +++ b/.changeset/remove-user-updated-at.md @@ -0,0 +1,5 @@ +--- +"@tailor-platform/function-types": patch +--- + +Remove non-existent `updatedAt` field from `tailor.idp.User` diff --git a/packages/types/tailor.d.ts b/packages/types/tailor.d.ts index 24ce00d..8f80d24 100644 --- a/packages/types/tailor.d.ts +++ b/packages/types/tailor.d.ts @@ -332,7 +332,6 @@ declare namespace tailor.idp { name: string; disabled: boolean; createdAt?: string; - updatedAt?: string; } /**