Fix out of sync openapi specs (#97250)

Update swagger spec after drift
pull/97253/head
Josh Hunt 1 year ago committed by GitHub
parent cfbeea4ce7
commit aa37029270
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 26
      public/api-merged.json
  2. 26
      public/openapi3.json

@ -8606,6 +8606,32 @@
} }
} }
}, },
"/scim/users/": {
"post": {
"tags": [
"users"
],
"summary": "Creates user.",
"operationId": "createUser",
"responses": {
"200": {
"$ref": "#/responses/okResponse"
},
"401": {
"$ref": "#/responses/unauthorisedError"
},
"403": {
"$ref": "#/responses/forbiddenError"
},
"409": {
"$ref": "#/responses/conflictError"
},
"500": {
"$ref": "#/responses/internalServerError"
}
}
}
},
"/search": { "/search": {
"get": { "get": {
"tags": [ "tags": [

@ -22483,6 +22483,32 @@
] ]
} }
}, },
"/scim/users/": {
"post": {
"operationId": "createUser",
"responses": {
"200": {
"$ref": "#/components/responses/okResponse"
},
"401": {
"$ref": "#/components/responses/unauthorisedError"
},
"403": {
"$ref": "#/components/responses/forbiddenError"
},
"409": {
"$ref": "#/components/responses/conflictError"
},
"500": {
"$ref": "#/components/responses/internalServerError"
}
},
"summary": "Creates user.",
"tags": [
"users"
]
}
},
"/search": { "/search": {
"get": { "get": {
"operationId": "search", "operationId": "search",

Loading…
Cancel
Save