Skip to content

Commit

Permalink
deploy: 79d1120
Browse files Browse the repository at this point in the history
  • Loading branch information
janagoetze committed Jun 20, 2023
1 parent e3d88c5 commit f9c8038
Showing 1 changed file with 50 additions and 50 deletions.
100 changes: 50 additions & 50 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@
"parameters": [
{
"in": "path",
"name": "session_id",
"name": "connection_id",
"required": true,
"schema": {
"type": "string",
Expand All @@ -965,7 +965,7 @@
},
{
"in": "path",
"name": "connection_id",
"name": "session_id",
"required": true,
"schema": {
"type": "string",
Expand Down Expand Up @@ -1859,7 +1859,7 @@
"parameters": [
{
"in": "path",
"name": "user_id",
"name": "room_id",
"required": true,
"schema": {
"type": "integer",
Expand All @@ -1868,7 +1868,7 @@
},
{
"in": "path",
"name": "room_id",
"name": "user_id",
"required": true,
"schema": {
"type": "integer",
Expand Down Expand Up @@ -1919,20 +1919,20 @@
"parameters": [
{
"in": "path",
"name": "id",
"name": "room_id",
"required": true,
"schema": {
"type": "string",
"minLength": 1
"type": "integer",
"minimum": 0
}
},
{
"in": "path",
"name": "room_id",
"name": "id",
"required": true,
"schema": {
"type": "integer",
"minimum": 0
"type": "string",
"minLength": 1
}
}
]
Expand Down Expand Up @@ -2099,20 +2099,20 @@
"parameters": [
{
"in": "path",
"name": "id",
"name": "room_id",
"required": true,
"schema": {
"type": "string",
"minLength": 1
"type": "integer",
"minimum": 0
}
},
{
"in": "path",
"name": "room_id",
"name": "id",
"required": true,
"schema": {
"type": "integer",
"minimum": 0
"type": "string",
"minLength": 1
}
}
]
Expand Down Expand Up @@ -2197,20 +2197,20 @@
"parameters": [
{
"in": "path",
"name": "id",
"name": "room_id",
"required": true,
"schema": {
"type": "string",
"minLength": 1
"type": "integer",
"minimum": 0
}
},
{
"in": "path",
"name": "room_id",
"name": "id",
"required": true,
"schema": {
"type": "integer",
"minimum": 0
"type": "string",
"minLength": 1
}
}
]
Expand Down Expand Up @@ -4616,68 +4616,68 @@
"Scripts": {
"type": "object",
"properties": {
"submit-message": {
"incoming-text": {
"default": null,
"nullable": true,
"type": [
"[string]",
"string"
],
"description": "Called when a message is sent"
"description": "Called when a text message is received"
},
"incoming-text": {
"submit-message": {
"default": null,
"nullable": true,
"type": [
"[string]",
"string"
],
"description": "Called when a text message is received"
"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"
},
"plain": {
"document-ready": {
"default": null,
"nullable": true,
"type": [
"[string]",
"string"
],
"description": "Injected as a script file into the site"
"description": "Called when site is fully loaded"
},
"typing-users": {
"print-history": {
"default": null,
"nullable": true,
"type": [
"[string]",
"string"
],
"description": "Called when state of currently typing users is changed"
"description": "Used for printing the chat history"
},
"document-ready": {
"incoming-image": {
"default": null,
"nullable": true,
"type": [
"[string]",
"string"
],
"description": "Called when site is fully loaded"
"description": "Called when an image is received"
},
"print-history": {
"typing-users": {
"default": null,
"nullable": true,
"type": [
"[string]",
"string"
],
"description": "Used for printing the chat history"
"description": "Called when state of currently typing users is changed"
}
}
},
Expand Down Expand Up @@ -4834,22 +4834,22 @@
"Error": {
"type": "object",
"properties": {
"message": {
"status": {
"type": "string",
"description": "Error message"
"description": "Error name"
},
"errors": {
"type": "object",
"nullable": true,
"description": "Errors"
},
"message": {
"type": "string",
"description": "Error message"
},
"code": {
"type": "integer",
"description": "Error code"
},
"status": {
"type": "string",
"description": "Error name"
}
}
},
Expand Down Expand Up @@ -6132,15 +6132,15 @@
"type": "string",
"description": "The attribute to be updated"
},
"value": {
"type": "string",
"description": "The value to be set for the given attribute"
},
"receiver_id": {
"type": "integer",
"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 Down Expand Up @@ -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 f9c8038

Please sign in to comment.