From b8f8fed499d80e19746c80d48e2ed44f3dc564e2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 9 Jan 2026 06:09:57 +0000 Subject: [PATCH 1/3] Initial plan From 1b4dc31979218c2175440918618fd3ef13d7f56b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 9 Jan 2026 06:11:39 +0000 Subject: [PATCH 2/3] Fix typo: add missing closing backtick in code comment Co-authored-by: ymc9 <104139426+ymc9@users.noreply.github.com> --- docs/service/api-handler/rest.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/service/api-handler/rest.md b/docs/service/api-handler/rest.md index d2311f2c..8236b1fd 100644 --- a/docs/service/api-handler/rest.md +++ b/docs/service/api-handler/rest.md @@ -867,7 +867,7 @@ POST /$procs/:procName #### Examples ```ts -// for arguments `{"userId":1,"limit":10} +// for arguments `{"userId":1,"limit":10}` GET /$procs/getUserFeeds?args=%7B%22userId%22%3A1%2Climit%3A10%7D ``` From 8f3174d657925a22a8d75b751521bab90d19f2aa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 9 Jan 2026 06:15:44 +0000 Subject: [PATCH 3/3] Fix correct typo: change "URL encoded" to "URL-encoded" Co-authored-by: ymc9 <104139426+ymc9@users.noreply.github.com> --- docs/service/api-handler/rest.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/service/api-handler/rest.md b/docs/service/api-handler/rest.md index 8236b1fd..eeb2c3ca 100644 --- a/docs/service/api-handler/rest.md +++ b/docs/service/api-handler/rest.md @@ -843,7 +843,7 @@ PATCH /:type/:id/relationships/:relationship Custom procedures can be invoked with the special `$procs` resource type. -Use `GET` for query procedures and pass the arguments as a URL encoded object in the `args` query parameter: +Use `GET` for query procedures and pass the arguments as a URL-encoded object in the `args` query parameter: ```ts GET /$procs/:procName?args= @@ -867,7 +867,7 @@ POST /$procs/:procName #### Examples ```ts -// for arguments `{"userId":1,"limit":10}` +// for arguments `{"userId":1,"limit":10} GET /$procs/getUserFeeds?args=%7B%22userId%22%3A1%2Climit%3A10%7D ```