diff --git a/backend/src/app/rpc/commands/profile.clj b/backend/src/app/rpc/commands/profile.clj index 631f84af58..90e60057d8 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] 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"}