-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test_: message reactions test (#6335)
* test_: message reactions test * test_: linting * test_: privileged/unprivileged notes
- Loading branch information
1 parent
cd1c084
commit 735b574
Showing
12 changed files
with
896 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
{ | ||
"$schema": "http://json-schema.org/schema#", | ||
"properties": { | ||
"id": { | ||
"type": "integer" | ||
}, | ||
"jsonrpc": { | ||
"type": "string" | ||
}, | ||
"result": { | ||
"items": { | ||
"properties": { | ||
"chatId": { | ||
"type": "string" | ||
}, | ||
"clock": { | ||
"type": "integer" | ||
}, | ||
"compressedKey": { | ||
"type": "string" | ||
}, | ||
"emojiHash": { | ||
"items": { | ||
"type": "string" | ||
}, | ||
"type": "array" | ||
}, | ||
"emojiId": { | ||
"type": "integer" | ||
}, | ||
"from": { | ||
"type": "string" | ||
}, | ||
"id": { | ||
"type": "string" | ||
}, | ||
"localChatId": { | ||
"type": "string" | ||
}, | ||
"messageId": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"chatId", | ||
"clock", | ||
"compressedKey", | ||
"emojiHash", | ||
"emojiId", | ||
"from", | ||
"id", | ||
"localChatId", | ||
"messageId" | ||
], | ||
"type": "object" | ||
}, | ||
"type": "array" | ||
} | ||
}, | ||
"required": [ | ||
"id", | ||
"jsonrpc", | ||
"result" | ||
], | ||
"type": "object" | ||
} |
66 changes: 66 additions & 0 deletions
66
tests-functional/schemas/wakuext_emojiReactionsByChatIDMessageID
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
{ | ||
"$schema": "http://json-schema.org/schema#", | ||
"properties": { | ||
"id": { | ||
"type": "integer" | ||
}, | ||
"jsonrpc": { | ||
"type": "string" | ||
}, | ||
"result": { | ||
"items": { | ||
"properties": { | ||
"chatId": { | ||
"type": "string" | ||
}, | ||
"clock": { | ||
"type": "integer" | ||
}, | ||
"compressedKey": { | ||
"type": "string" | ||
}, | ||
"emojiHash": { | ||
"items": { | ||
"type": "string" | ||
}, | ||
"type": "array" | ||
}, | ||
"emojiId": { | ||
"type": "integer" | ||
}, | ||
"from": { | ||
"type": "string" | ||
}, | ||
"id": { | ||
"type": "string" | ||
}, | ||
"localChatId": { | ||
"type": "string" | ||
}, | ||
"messageId": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"chatId", | ||
"clock", | ||
"compressedKey", | ||
"emojiHash", | ||
"emojiId", | ||
"from", | ||
"id", | ||
"localChatId", | ||
"messageId" | ||
], | ||
"type": "object" | ||
}, | ||
"type": "array" | ||
} | ||
}, | ||
"required": [ | ||
"id", | ||
"jsonrpc", | ||
"result" | ||
], | ||
"type": "object" | ||
} |
Oops, something went wrong.