Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion apps/dav/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,8 @@
"description": "location/URL to filter by",
"schema": {
"type": "string",
"nullable": true
"nullable": true,
"default": null
}
},
{
Expand Down
20 changes: 20 additions & 0 deletions apps/federatedfilesharing/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,47 +158,56 @@
"remote": {
"type": "string",
"nullable": true,
"default": null,
"description": "Address of the remote"
},
"token": {
"type": "string",
"nullable": true,
"default": null,
"description": "Shared secret between servers"
},
"name": {
"type": "string",
"nullable": true,
"default": null,
"description": "Name of the shared resource"
},
"owner": {
"type": "string",
"nullable": true,
"default": null,
"description": "Display name of the receiver"
},
"sharedBy": {
"type": "string",
"nullable": true,
"default": null,
"description": "Display name of the sender"
},
"shareWith": {
"type": "string",
"nullable": true,
"default": null,
"description": "ID of the user that receives the share"
},
"remoteId": {
"type": "integer",
"format": "int64",
"nullable": true,
"default": null,
"description": "ID of the remote"
},
"sharedByFederatedId": {
"type": "string",
"nullable": true,
"default": null,
"description": "Federated ID of the sender"
},
"ownerFederatedId": {
"type": "string",
"nullable": true,
"default": null,
"description": "Federated ID of the receiver"
}
}
Expand Down Expand Up @@ -276,11 +285,13 @@
"token": {
"type": "string",
"nullable": true,
"default": null,
"description": "Shared secret between servers"
},
"shareWith": {
"type": "string",
"nullable": true,
"default": null,
"description": "ID of the user that receives the share"
},
"remoteId": {
Expand Down Expand Up @@ -417,12 +428,14 @@
"token": {
"type": "string",
"nullable": true,
"default": null,
"description": "Shared secret between servers"
},
"permissions": {
"type": "integer",
"format": "int64",
"nullable": true,
"default": null,
"description": "New permissions"
}
}
Expand Down Expand Up @@ -538,6 +551,7 @@
"token": {
"type": "string",
"nullable": true,
"default": null,
"description": "Shared secret between servers"
}
}
Expand Down Expand Up @@ -635,6 +649,7 @@
"token": {
"type": "string",
"nullable": true,
"default": null,
"description": "Shared secret between servers"
}
}
Expand Down Expand Up @@ -722,6 +737,7 @@
"token": {
"type": "string",
"nullable": true,
"default": null,
"description": "Shared secret between servers"
}
}
Expand Down Expand Up @@ -809,6 +825,7 @@
"token": {
"type": "string",
"nullable": true,
"default": null,
"description": "Shared secret between servers"
}
}
Expand Down Expand Up @@ -924,16 +941,19 @@
"token": {
"type": "string",
"nullable": true,
"default": null,
"description": "Shared secret between servers"
},
"remote": {
"type": "string",
"nullable": true,
"default": null,
"description": "Address of the remote"
},
"remote_id": {
"type": "string",
"nullable": true,
"default": null,
"description": "ID of the remote"
}
}
Expand Down
4 changes: 4 additions & 0 deletions apps/files/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -847,12 +847,14 @@
"editorId": {
"type": "string",
"nullable": true,
"default": null,
"description": "ID of the editor"
},
"fileId": {
"type": "integer",
"format": "int64",
"nullable": true,
"default": null,
"description": "ID of the file"
}
}
Expand Down Expand Up @@ -1032,6 +1034,7 @@
"templateId": {
"type": "string",
"nullable": true,
"default": null,
"description": "ID of the template"
}
}
Expand Down Expand Up @@ -2366,6 +2369,7 @@
"destination": {
"type": "string",
"nullable": true,
"default": null,
"description": "The target path of the converted file. Written to a temporary file if left empty"
}
}
Expand Down
33 changes: 32 additions & 1 deletion apps/files_sharing/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1490,6 +1490,13 @@
1
]
}
},
{
"name": "X-NC-Preview",
"in": "header",
"schema": {
"type": "string"
}
}
],
"responses": {
Expand Down Expand Up @@ -1574,11 +1581,13 @@
"password": {
"type": "string",
"nullable": true,
"default": null,
"description": "Password of the share"
},
"dir": {
"type": "string",
"nullable": true,
"default": null,
"description": "Subdirectory to get info about"
},
"depth": {
Expand Down Expand Up @@ -1782,12 +1791,14 @@
"path": {
"type": "string",
"nullable": true,
"default": null,
"description": "Path of the share"
},
"permissions": {
"type": "integer",
"format": "int64",
"nullable": true,
"default": null,
"description": "Permissions for the share"
},
"shareType": {
Expand All @@ -1799,11 +1810,13 @@
"shareWith": {
"type": "string",
"nullable": true,
"default": null,
"description": "The entity this should be shared with"
},
"publicUpload": {
"type": "string",
"nullable": true,
"default": null,
"enum": [
"true",
"false"
Expand All @@ -1818,11 +1831,13 @@
"sendPasswordByTalk": {
"type": "string",
"nullable": true,
"default": null,
"description": "Send the password for the share over Talk"
},
"expireDate": {
"type": "string",
"nullable": true,
"default": null,
"description": "The expiry date of the share in the user's timezone at 00:00. If $expireDate is not supplied or set to `null`, the system default will be used."
},
"note": {
Expand All @@ -1838,11 +1853,13 @@
"attributes": {
"type": "string",
"nullable": true,
"default": null,
"description": "Additional attributes for the share"
},
"sendMail": {
"type": "string",
"nullable": true,
"default": null,
"enum": [
"false",
"true"
Expand Down Expand Up @@ -2297,56 +2314,67 @@
"type": "integer",
"format": "int64",
"nullable": true,
"default": null,
"description": "New permissions"
},
"password": {
"type": "string",
"nullable": true,
"default": null,
"description": "New password"
},
"sendPasswordByTalk": {
"type": "string",
"nullable": true,
"default": null,
"description": "New condition if the password should be send over Talk"
},
"publicUpload": {
"type": "string",
"nullable": true,
"default": null,
"description": "New condition if public uploading is allowed"
},
"expireDate": {
"type": "string",
"nullable": true,
"default": null,
"description": "New expiry date"
},
"note": {
"type": "string",
"nullable": true,
"default": null,
"description": "New note"
},
"label": {
"type": "string",
"nullable": true,
"default": null,
"description": "New label"
},
"hideDownload": {
"type": "string",
"nullable": true,
"default": null,
"description": "New condition if the download should be hidden"
},
"attributes": {
"type": "string",
"nullable": true,
"default": null,
"description": "New additional attributes"
},
"sendMail": {
"type": "string",
"nullable": true,
"default": null,
"description": "if the share should be send by mail. Considering the share already exists, no mail will be send after the share is updated. You will have to use the sendMail action to send the mail."
},
"token": {
"type": "string",
"nullable": true,
"default": null,
"description": "New token"
}
}
Expand Down Expand Up @@ -3099,7 +3127,8 @@
"description": "Limit to specific item types",
"schema": {
"type": "string",
"nullable": true
"nullable": true,
"default": null
}
},
{
Expand Down Expand Up @@ -3128,6 +3157,7 @@
"description": "Limit to specific share types",
"schema": {
"nullable": true,
"default": null,
"oneOf": [
{
"type": "integer",
Expand Down Expand Up @@ -3267,6 +3297,7 @@
"description": "Limit to specific share types",
"schema": {
"nullable": true,
"default": null,
"oneOf": [
{
"type": "integer",
Expand Down
6 changes: 4 additions & 2 deletions apps/provisioning_api/openapi-administration.json
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,8 @@
"description": "Filter for enabled or disabled apps",
"schema": {
"type": "string",
"nullable": true
"nullable": true,
"default": null
}
},
{
Expand Down Expand Up @@ -1003,7 +1004,8 @@
"schema": {
"type": "integer",
"format": "int64",
"nullable": true
"nullable": true,
"default": null
}
},
{
Expand Down
Loading
Loading