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
17 changes: 10 additions & 7 deletions specs/latest/open-api3-latest-client.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openapi": "3.0.0",
"info": {
"version": "1.9.5",
"version": "1.9.6",
"title": "Appwrite",
"description": "Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https:\/\/appwrite.io\/docs](https:\/\/appwrite.io\/docs)",
"termsOfService": "https:\/\/appwrite.io\/policy\/terms",
Expand Down Expand Up @@ -3332,11 +3332,12 @@
"parameters": [
{
"name": "sessionId",
"description": "Session ID. Use the string 'current' to get the current device session.",
"description": "Session ID. Use the string 'current' to get the current device session. Defaults to 'current'.",
"required": true,
"schema": {
"type": "string",
"x-example": "<SESSION_ID>"
"x-example": "<SESSION_ID>",
"default": "current"
},
"in": "path"
}
Expand Down Expand Up @@ -3394,11 +3395,12 @@
"parameters": [
{
"name": "sessionId",
"description": "Session ID. Use the string 'current' to update the current device session.",
"description": "Session ID. Use the string 'current' to update the current device session. Defaults to 'current'.",
"required": true,
"schema": {
"type": "string",
"x-example": "<SESSION_ID>"
"x-example": "<SESSION_ID>",
"default": "current"
},
"in": "path"
}
Expand Down Expand Up @@ -3449,11 +3451,12 @@
"parameters": [
{
"name": "sessionId",
"description": "Session ID. Use the string 'current' to delete the current device session.",
"description": "Session ID. Use the string 'current' to delete the current device session. Defaults to 'current'.",
"required": true,
"schema": {
"type": "string",
"x-example": "<SESSION_ID>"
"x-example": "<SESSION_ID>",
"default": "current"
},
"in": "path"
}
Expand Down
Loading