From 5148998e361a5574d301e18e85535717092b44d4 Mon Sep 17 00:00:00 2001 From: Miguel de Benito Delgado Date: Tue, 11 Nov 2025 19:46:02 +0000 Subject: [PATCH 1/2] :bug: Add missing fields to schema:profile --- backend/src/app/rpc/commands/profile.clj | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/src/app/rpc/commands/profile.clj b/backend/src/app/rpc/commands/profile.clj index 4207db2d22..b4fdab73e1 100644 --- a/backend/src/app/rpc/commands/profile.clj +++ b/backend/src/app/rpc/commands/profile.clj @@ -63,6 +63,8 @@ [:id ::sm/uuid] [:fullname [::sm/word-string {:max 250}]] [:email ::sm/email] + [:theme {:optional true} :string] + [:is-admin {:optional true} ::sm/boolean] [:is-active {:optional true} ::sm/boolean] [:is-blocked {:optional true} ::sm/boolean] [:is-demo {:optional true} ::sm/boolean] From 4f10fa2072e7816914f235ac0c993a66b54093e4 Mon Sep 17 00:00:00 2001 From: Miguel de Benito Delgado Date: Tue, 11 Nov 2025 19:46:30 +0000 Subject: [PATCH 2/2] :bug: Add missing fields to schema:dissolve-animation --- common/src/app/common/types/shape/interactions.cljc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/src/app/common/types/shape/interactions.cljc b/common/src/app/common/types/shape/interactions.cljc index 8dd4ea457c..1acbd84ac3 100644 --- a/common/src/app/common/types/shape/interactions.cljc +++ b/common/src/app/common/types/shape/interactions.cljc @@ -75,7 +75,10 @@ [:map {:title "AnimationDisolve"} [:animation-type [:= :dissolve]] [:duration ::sm/safe-int] - [:easing [::sm/one-of easing-types]]]) + [:easing [::sm/one-of easing-types]] + [:way {:optional true} [::sm/one-of way-types]] + [:offset-effect :boolean] + [:direction {:optional true} [::sm/one-of direction-types]]]) (def schema:slide-animation [:map {:title "AnimationSlide"}