Skip to content

Commit

Permalink
deploy: 7c088a2
Browse files Browse the repository at this point in the history
  • Loading branch information
janagoetze committed May 15, 2023
1 parent e7ef936 commit 514bb25
Showing 1 changed file with 44 additions and 44 deletions.
88 changes: 44 additions & 44 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1859,7 +1859,7 @@
"parameters": [
{
"in": "path",
"name": "room_id",
"name": "user_id",
"required": true,
"schema": {
"type": "integer",
Expand All @@ -1868,7 +1868,7 @@
},
{
"in": "path",
"name": "user_id",
"name": "room_id",
"required": true,
"schema": {
"type": "integer",
Expand Down Expand Up @@ -1979,20 +1979,20 @@
"parameters": [
{
"in": "path",
"name": "room_id",
"name": "cls",
"required": true,
"schema": {
"type": "integer",
"minimum": 0
"type": "string",
"minLength": 1
}
},
{
"in": "path",
"name": "cls",
"name": "room_id",
"required": true,
"schema": {
"type": "string",
"minLength": 1
"type": "integer",
"minimum": 0
}
}
]
Expand Down Expand Up @@ -2039,20 +2039,20 @@
"parameters": [
{
"in": "path",
"name": "room_id",
"name": "element",
"required": true,
"schema": {
"type": "integer",
"minimum": 0
"type": "string",
"minLength": 1
}
},
{
"in": "path",
"name": "element",
"name": "room_id",
"required": true,
"schema": {
"type": "string",
"minLength": 1
"type": "integer",
"minimum": 0
}
}
]
Expand Down Expand Up @@ -3664,7 +3664,7 @@
"parameters": [
{
"in": "path",
"name": "room_id",
"name": "user_id",
"required": true,
"schema": {
"type": "integer",
Expand All @@ -3673,7 +3673,7 @@
},
{
"in": "path",
"name": "user_id",
"name": "room_id",
"required": true,
"schema": {
"type": "integer",
Expand Down Expand Up @@ -4616,32 +4616,32 @@
"Scripts": {
"type": "object",
"properties": {
"plain": {
"print-history": {
"default": null,
"nullable": true,
"type": [
"[string]",
"string"
],
"description": "Injected as a script file into the site"
"description": "Used for printing the chat history"
},
"print-history": {
"incoming-image": {
"default": null,
"nullable": true,
"type": [
"[string]",
"string"
],
"description": "Used for printing the chat history"
"description": "Called when an image is received"
},
"incoming-text": {
"typing-users": {
"default": null,
"nullable": true,
"type": [
"[string]",
"string"
],
"description": "Called when a text message is received"
"description": "Called when state of currently typing users is changed"
},
"submit-message": {
"default": null,
Expand All @@ -4652,32 +4652,32 @@
],
"description": "Called when a message is sent"
},
"incoming-image": {
"plain": {
"default": null,
"nullable": true,
"type": [
"[string]",
"string"
],
"description": "Called when an image is received"
"description": "Injected as a script file into the site"
},
"typing-users": {
"document-ready": {
"default": null,
"nullable": true,
"type": [
"[string]",
"string"
],
"description": "Called when state of currently typing users is changed"
"description": "Called when site is fully loaded"
},
"document-ready": {
"incoming-text": {
"default": null,
"nullable": true,
"type": [
"[string]",
"string"
],
"description": "Called when site is fully loaded"
"description": "Called when a text message is received"
}
}
},
Expand Down Expand Up @@ -4834,6 +4834,10 @@
"Error": {
"type": "object",
"properties": {
"message": {
"type": "string",
"description": "Error message"
},
"errors": {
"type": "object",
"nullable": true,
Expand All @@ -4846,10 +4850,6 @@
"status": {
"type": "string",
"description": "Error name"
},
"message": {
"type": "string",
"description": "Error message"
}
}
},
Expand Down Expand Up @@ -6128,10 +6128,6 @@
"Attribute": {
"type": "object",
"properties": {
"value": {
"type": "string",
"description": "The value to be set for the given attribute"
},
"attribute": {
"type": "string",
"description": "The attribute to be updated"
Expand All @@ -6141,6 +6137,10 @@
"default": null,
"nullable": true,
"description": "Receiver for which the attribute should be set"
},
"value": {
"type": "string",
"description": "The value to be set for the given attribute"
}
},
"required": [
Expand All @@ -6151,15 +6151,15 @@
"Text": {
"type": "object",
"properties": {
"text": {
"type": "string",
"description": "The text to be set for the given ID"
},
"receiver_id": {
"type": "integer",
"default": null,
"nullable": true,
"description": "Receiver for which the text should be set"
},
"text": {
"type": "string",
"description": "The text to be set for the given ID"
}
},
"required": [
Expand All @@ -6169,15 +6169,15 @@
"Class": {
"type": "object",
"properties": {
"class": {
"type": "string",
"description": "The class to be modified"
},
"receiver_id": {
"type": "integer",
"default": null,
"nullable": true,
"description": "Receiver for which the class should be modified"
},
"class": {
"type": "string",
"description": "The class to be modified"
}
},
"required": [
Expand Down

0 comments on commit 514bb25

Please sign in to comment.