summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/ResponseDefinitions.php1
-rw-r--r--openapi-backend-sipbridge.json6
-rw-r--r--openapi-federation.json6
-rw-r--r--openapi-full.json6
-rw-r--r--openapi.json6
-rw-r--r--src/types/openapi/openapi-backend-sipbridge.ts1
-rw-r--r--src/types/openapi/openapi-federation.ts1
-rw-r--r--src/types/openapi/openapi-full.ts1
-rw-r--r--src/types/openapi/openapi.ts1
9 files changed, 29 insertions, 0 deletions
diff --git a/lib/ResponseDefinitions.php b/lib/ResponseDefinitions.php
index 0470af3e2..2d0c766b8 100644
--- a/lib/ResponseDefinitions.php
+++ b/lib/ResponseDefinitions.php
@@ -103,6 +103,7 @@ namespace OCA\Talk;
* isReplyable: bool,
* markdown: bool,
* reactions: array<string, integer>|\stdClass,
+ * reactionsSelf?: string[],
* referenceId: string,
* timestamp: int,
* token: string,
diff --git a/openapi-backend-sipbridge.json b/openapi-backend-sipbridge.json
index 5d0c6b6c4..011045694 100644
--- a/openapi-backend-sipbridge.json
+++ b/openapi-backend-sipbridge.json
@@ -308,6 +308,12 @@
"format": "int64"
}
},
+ "reactionsSelf": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
"referenceId": {
"type": "string"
},
diff --git a/openapi-federation.json b/openapi-federation.json
index eb255d804..1fcab6197 100644
--- a/openapi-federation.json
+++ b/openapi-federation.json
@@ -308,6 +308,12 @@
"format": "int64"
}
},
+ "reactionsSelf": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
"referenceId": {
"type": "string"
},
diff --git a/openapi-full.json b/openapi-full.json
index f5c7033e3..78bf283ec 100644
--- a/openapi-full.json
+++ b/openapi-full.json
@@ -506,6 +506,12 @@
"format": "int64"
}
},
+ "reactionsSelf": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
"referenceId": {
"type": "string"
},
diff --git a/openapi.json b/openapi.json
index 0028d1154..cd0f449cf 100644
--- a/openapi.json
+++ b/openapi.json
@@ -447,6 +447,12 @@
"format": "int64"
}
},
+ "reactionsSelf": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
"referenceId": {
"type": "string"
},
diff --git a/src/types/openapi/openapi-backend-sipbridge.ts b/src/types/openapi/openapi-backend-sipbridge.ts
index e2032d564..f7c859b20 100644
--- a/src/types/openapi/openapi-backend-sipbridge.ts
+++ b/src/types/openapi/openapi-backend-sipbridge.ts
@@ -117,6 +117,7 @@ export type components = {
reactions: {
[key: string]: number;
};
+ reactionsSelf?: string[];
referenceId: string;
/** Format: int64 */
timestamp: number;
diff --git a/src/types/openapi/openapi-federation.ts b/src/types/openapi/openapi-federation.ts
index 164ac9217..27b299c53 100644
--- a/src/types/openapi/openapi-federation.ts
+++ b/src/types/openapi/openapi-federation.ts
@@ -132,6 +132,7 @@ export type components = {
reactions: {
[key: string]: number;
};
+ reactionsSelf?: string[];
referenceId: string;
/** Format: int64 */
timestamp: number;
diff --git a/src/types/openapi/openapi-full.ts b/src/types/openapi/openapi-full.ts
index 08f2b6aa0..f44fa4585 100644
--- a/src/types/openapi/openapi-full.ts
+++ b/src/types/openapi/openapi-full.ts
@@ -679,6 +679,7 @@ export type components = {
reactions: {
[key: string]: number;
};
+ reactionsSelf?: string[];
referenceId: string;
/** Format: int64 */
timestamp: number;
diff --git a/src/types/openapi/openapi.ts b/src/types/openapi/openapi.ts
index 57fb073a1..7158c684a 100644
--- a/src/types/openapi/openapi.ts
+++ b/src/types/openapi/openapi.ts
@@ -518,6 +518,7 @@ export type components = {
reactions: {
[key: string]: number;
};
+ reactionsSelf?: string[];
referenceId: string;
/** Format: int64 */
timestamp: number;