From b0b43c4a3e5676c98f2dee160e9e563e4a3de359 Mon Sep 17 00:00:00 2001 From: Olutoke Adedamola Date: Thu, 4 Jun 2026 16:34:38 +0100 Subject: [PATCH] add rootdata_profile to CommonMetaIds for RootData profile links --- .changeset/add-rootdata-profile.md | 5 +++++ src/schema/index.ts | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changeset/add-rootdata-profile.md diff --git a/.changeset/add-rootdata-profile.md b/.changeset/add-rootdata-profile.md new file mode 100644 index 0000000..5bae706 --- /dev/null +++ b/.changeset/add-rootdata-profile.md @@ -0,0 +1,5 @@ +--- +"@everipedia/iq-utils": minor +--- + +Add `rootdata_profile` to CommonMetaIds for RootData (https://www.rootdata.com/) profile links diff --git a/src/schema/index.ts b/src/schema/index.ts index a7588b7..c1a4b80 100644 --- a/src/schema/index.ts +++ b/src/schema/index.ts @@ -49,6 +49,7 @@ export const CommonMetaIds = z.enum([ "mirror_profile", "tiktok_profile", "explorer_injective_profile", + "rootdata_profile", ]); export type CommonMetaIds = z.infer;