diff --git a/backend/src/app/rpc/commands/files.clj b/backend/src/app/rpc/commands/files.clj index dd81c5c882..3a71359aab 100644 --- a/backend/src/app/rpc/commands/files.clj +++ b/backend/src/app/rpc/commands/files.clj @@ -668,7 +668,7 @@ counts by type, component/color/typography counts, and inbound and outbound library reference counts. Cheap alternative to `get-file` when only metrics are needed." - {::doc/added "2.16" + {::doc/added "2.17" ::sm/params schema:get-file-stats ::sm/result schema:get-file-stats-result ::db/transaction true} diff --git a/backend/src/app/rpc/commands/media.clj b/backend/src/app/rpc/commands/media.clj index 5bea17d379..22fedd39b9 100644 --- a/backend/src/app/rpc/commands/media.clj +++ b/backend/src/app/rpc/commands/media.clj @@ -255,7 +255,7 @@ [:session-id ::sm/uuid]]) (sv/defmethod ::create-upload-session - {::doc/added "2.16" + {::doc/added "2.17" ::sm/params schema:create-upload-session ::sm/result schema:create-upload-session-result} [{:keys [::db/pool] :as cfg} @@ -293,7 +293,7 @@ [:index ::sm/int]]) (sv/defmethod ::upload-chunk - {::doc/added "2.16" + {::doc/added "2.17" ::sm/params schema:upload-chunk ::sm/result schema:upload-chunk-result} [{:keys [::db/pool] :as cfg} @@ -389,7 +389,7 @@ [:id {:optional true} ::sm/uuid]]) (sv/defmethod ::assemble-file-media-object - {::doc/added "2.16" + {::doc/added "2.17" ::sm/params schema:assemble-file-media-object ::climit/id [[:process-image/by-profile ::rpc/profile-id] [:process-image/global]]} diff --git a/backend/src/app/rpc/commands/nitrate.clj b/backend/src/app/rpc/commands/nitrate.clj index 7a81d05e4e..db552ae070 100644 --- a/backend/src/app/rpc/commands/nitrate.clj +++ b/backend/src/app/rpc/commands/nitrate.clj @@ -237,7 +237,7 @@ [:organization-name ::sm/text]]) (sv/defmethod ::remove-team-from-org - {::doc/added "2.16" + {::doc/added "2.17" ::sm/params schema:remove-team-from-org} [cfg {:keys [::rpc/profile-id team-id organization-id organization-name]}] @@ -261,7 +261,7 @@ (sv/defmethod ::add-team-to-org {::rpc/auth true - ::doc/added "2.16" + ::doc/added "2.17" ::sm/params schema:add-team-to-org ::db/transaction true} [cfg {:keys [::rpc/profile-id team-id organization-id organization-name]}] diff --git a/backend/src/app/rpc/commands/profile.clj b/backend/src/app/rpc/commands/profile.clj index 2199df39ea..ce6c1d71c0 100644 --- a/backend/src/app/rpc/commands/profile.clj +++ b/backend/src/app/rpc/commands/profile.clj @@ -317,7 +317,7 @@ ;; --- MUTATION: Delete Photo (sv/defmethod ::delete-profile-photo - {::doc/added "2.16" + {::doc/added "2.17" ::sm/params [:map] ::sm/result :nil ::db/transaction true} diff --git a/backend/src/app/rpc/management/nitrate.clj b/backend/src/app/rpc/management/nitrate.clj index 539adb8fbf..58a06e5c65 100644 --- a/backend/src/app/rpc/management/nitrate.clj +++ b/backend/src/app/rpc/management/nitrate.clj @@ -98,7 +98,7 @@ "Store an organization logo in penpot storage and return its ID. Accepts an optional previous-id to mark the old logo for garbage collection when replacing an existing one." - {::doc/added "2.16" + {::doc/added "2.17" ::sm/params schema:upload-org-logo ::sm/result schema:upload-org-logo-result} [{:keys [::sto/storage]} {:keys [content organization-id previous-id]}] @@ -403,7 +403,7 @@ RETURNING id, name;") (sv/defmethod ::remove-from-org "Remove an user from an organization" - {::doc/added "2.16" + {::doc/added "2.17" ::sm/params [:map [:profile-id ::sm/uuid] [:organization-id ::sm/uuid] @@ -439,7 +439,7 @@ RETURNING id, name;") (sv/defmethod ::get-remove-from-org-summary "Get a summary of the teams that would be deleted, transferred, or exited if the user were removed from the organization" - {::doc/added "2.16" + {::doc/added "2.17" ::sm/params [:map [:profile-id ::sm/uuid] [:organization-id ::sm/uuid]