diff --git a/compiler/datas/endpoints.json b/compiler/datas/endpoints.json index ca37a3f..a0148f0 100644 --- a/compiler/datas/endpoints.json +++ b/compiler/datas/endpoints.json @@ -358,5 +358,19 @@ "/api/users/lists/favorite", "/api/users/lists/unfavorite", "/api/users/lists/create-from-public", - "/api/users/flashs" + "/api/users/flashs", + "/api/following/update", + "/api/notes/update", + "/api/notifications/test-notification", + "/api/admin/avatar-decorations/create", + "/api/admin/avatar-decorations/delete", + "/api/admin/avatar-decorations/list", + "/api/admin/avatar-decorations/update", + "/api/following/update-all", + "/api/get-avatar-decorations", + "/api/i/notifications-grouped", + "/api/users/featured-notes", + "/api/users/lists/update-membership", + "/api/users/lists/get-memberships", + "/api/fetch-external-resources" ] \ No newline at end of file diff --git a/compiler/datas/removed-endpoints.json b/compiler/datas/removed-endpoints.json index dd4f9b0..b3c2a26 100644 --- a/compiler/datas/removed-endpoints.json +++ b/compiler/datas/removed-endpoints.json @@ -1,4 +1,6 @@ [ "/api/invite", - "/api/notifications/read" + "/api/i/get-word-muted-notes-count", + "/api/notifications/read", + "/api/notes/update" ] \ No newline at end of file diff --git a/mipac/types/endpoints.py b/mipac/types/endpoints.py index 4479970..4cebc6c 100644 --- a/mipac/types/endpoints.py +++ b/mipac/types/endpoints.py @@ -372,4 +372,15 @@ ENDPOINTS = Literal[ "/api/following/update", "/api/notes/update", "/api/notifications/test-notification", + "/api/admin/avatar-decorations/create", + "/api/admin/avatar-decorations/delete", + "/api/admin/avatar-decorations/list", + "/api/admin/avatar-decorations/update", + "/api/following/update-all", + "/api/get-avatar-decorations", + "/api/i/notifications-grouped", + "/api/users/featured-notes", + "/api/users/lists/update-membership", + "/api/users/lists/get-memberships", + "/api/fetch-external-resources" ]