fix: Recompile openapi

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2026-01-09 18:06:06 +01:00 committed by Maksim Sukharev
parent 927bea2b4d
commit 2510020b33
5 changed files with 414 additions and 0 deletions

View file

@ -70,6 +70,9 @@
"type": "string"
}
}
},
"can-create-app-token": {
"type": "boolean"
}
}
}

View file

@ -70,6 +70,9 @@
"type": "string"
}
}
},
"can-create-app-token": {
"type": "boolean"
}
}
}

View file

@ -136,6 +136,9 @@
"type": "string"
}
}
},
"can-create-app-token": {
"type": "boolean"
}
}
}
@ -1749,6 +1752,139 @@
}
}
},
"/ocs/v2.php/core/getapppassword-onetime": {
"get": {
"operationId": "app_password-get-app-password-with-one-time-password",
"summary": "Get app password with one-time password",
"description": "This endpoint requires password confirmation",
"tags": [
"app_password"
],
"security": [
{
"bearer_auth": []
},
{
"basic_auth": []
}
],
"parameters": [
{
"name": "user-agent",
"in": "header",
"schema": {
"type": "string"
}
},
{
"name": "OCS-APIRequest",
"in": "header",
"description": "Required to be true for the API request to pass",
"required": true,
"schema": {
"type": "boolean",
"default": true
}
}
],
"responses": {
"200": {
"description": "App password returned",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"ocs"
],
"properties": {
"ocs": {
"type": "object",
"required": [
"meta",
"data"
],
"properties": {
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {
"type": "object",
"required": [
"apppassword"
],
"properties": {
"apppassword": {
"type": "string"
}
}
}
}
}
}
}
}
}
},
"403": {
"description": "Creating app password is not allowed",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"ocs"
],
"properties": {
"ocs": {
"type": "object",
"required": [
"meta",
"data"
],
"properties": {
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
}
}
}
}
}
}
},
"401": {
"description": "Current user is not logged in",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"ocs"
],
"properties": {
"ocs": {
"type": "object",
"required": [
"meta",
"data"
],
"properties": {
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
}
}
}
}
}
}
}
}
}
},
"/ocs/v2.php/core/autocomplete/get": {
"get": {
"operationId": "auto_complete-get",

View file

@ -136,6 +136,9 @@
"type": "string"
}
}
},
"can-create-app-token": {
"type": "boolean"
}
}
}
@ -1749,6 +1752,139 @@
}
}
},
"/ocs/v2.php/core/getapppassword-onetime": {
"get": {
"operationId": "app_password-get-app-password-with-one-time-password",
"summary": "Get app password with one-time password",
"description": "This endpoint requires password confirmation",
"tags": [
"app_password"
],
"security": [
{
"bearer_auth": []
},
{
"basic_auth": []
}
],
"parameters": [
{
"name": "user-agent",
"in": "header",
"schema": {
"type": "string"
}
},
{
"name": "OCS-APIRequest",
"in": "header",
"description": "Required to be true for the API request to pass",
"required": true,
"schema": {
"type": "boolean",
"default": true
}
}
],
"responses": {
"200": {
"description": "App password returned",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"ocs"
],
"properties": {
"ocs": {
"type": "object",
"required": [
"meta",
"data"
],
"properties": {
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {
"type": "object",
"required": [
"apppassword"
],
"properties": {
"apppassword": {
"type": "string"
}
}
}
}
}
}
}
}
}
},
"403": {
"description": "Creating app password is not allowed",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"ocs"
],
"properties": {
"ocs": {
"type": "object",
"required": [
"meta",
"data"
],
"properties": {
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
}
}
}
}
}
}
},
"401": {
"description": "Current user is not logged in",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"ocs"
],
"properties": {
"ocs": {
"type": "object",
"required": [
"meta",
"data"
],
"properties": {
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
}
}
}
}
}
}
}
}
}
},
"/ocs/v2.php/core/autocomplete/get": {
"get": {
"operationId": "auto_complete-get",

View file

@ -182,6 +182,9 @@
"type": "string"
}
}
},
"can-create-app-token": {
"type": "boolean"
}
}
}
@ -5249,6 +5252,139 @@
}
}
},
"/ocs/v2.php/core/getapppassword-onetime": {
"get": {
"operationId": "core-app_password-get-app-password-with-one-time-password",
"summary": "Get app password with one-time password",
"description": "This endpoint requires password confirmation",
"tags": [
"core/app_password"
],
"security": [
{
"bearer_auth": []
},
{
"basic_auth": []
}
],
"parameters": [
{
"name": "user-agent",
"in": "header",
"schema": {
"type": "string"
}
},
{
"name": "OCS-APIRequest",
"in": "header",
"description": "Required to be true for the API request to pass",
"required": true,
"schema": {
"type": "boolean",
"default": true
}
}
],
"responses": {
"200": {
"description": "App password returned",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"ocs"
],
"properties": {
"ocs": {
"type": "object",
"required": [
"meta",
"data"
],
"properties": {
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {
"type": "object",
"required": [
"apppassword"
],
"properties": {
"apppassword": {
"type": "string"
}
}
}
}
}
}
}
}
}
},
"403": {
"description": "Creating app password is not allowed",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"ocs"
],
"properties": {
"ocs": {
"type": "object",
"required": [
"meta",
"data"
],
"properties": {
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
}
}
}
}
}
}
},
"401": {
"description": "Current user is not logged in",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"ocs"
],
"properties": {
"ocs": {
"type": "object",
"required": [
"meta",
"data"
],
"properties": {
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
}
}
}
}
}
}
}
}
}
},
"/ocs/v2.php/core/autocomplete/get": {
"get": {
"operationId": "core-auto_complete-get",