Browse Source

fix(apidocs): fix issues mutate and bulk mutate endpoint doc (#58872)

see status type definition in `static/app/types/group.tsx`:
```
export const enum GroupStatus {
  RESOLVED = 'resolved',
  UNRESOLVED = 'unresolved',
  IGNORED = 'ignored',
  REPROCESSING = 'reprocessing',
}
```
Michelle Zhang 1 year ago
parent
commit
4578ddad6e

+ 1 - 1
api-docs/paths/events/issue-details.json

@@ -212,7 +212,7 @@
             "properties": {
             "properties": {
               "status": {
               "status": {
                 "type": "string",
                 "type": "string",
-                "description": "The new status for the issues. Valid values are `\"resolved\"`, `\"resolvedInNextRelease\"`, `\"unresolved\"`, and `\"archive\"`."
+                "description": "The new status for the issues. Valid values are `\"resolved\"`, `\"reprocessing\"`, `\"unresolved\"`, and `\"ignored\"`."
               },
               },
               "assignedTo": {
               "assignedTo": {
                 "type": "string",
                 "type": "string",

+ 1 - 1
api-docs/paths/events/project-issues.json

@@ -172,7 +172,7 @@
       {
       {
         "name": "status",
         "name": "status",
         "in": "query",
         "in": "query",
-        "description": "Optionally limits the query to issues of the specified status. Valid values are `\"resolved\"`, `\"unresolved\"`, and `\"archive\"`.",
+        "description": "Optionally limits the query to issues of the specified status. Valid values are `\"resolved\"`, `\"reprocessing\"`, `\"unresolved\"`, and `\"ignored\"`.",
         "required": false,
         "required": false,
         "schema": {
         "schema": {
           "type": "string"
           "type": "string"