aboutsummaryrefslogtreecommitdiff
path: root/event-schemas/schema
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-06-11 19:42:08 +0200
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-06-11 21:33:54 +0200
commited05d9d589fe3d36bd3714e648016352179afbef (patch)
treeb86c1c9417d1037f02011cc9b651ab3acb3c77cb /event-schemas/schema
parent3a2e7f19c97289fb962b1c0ba4439870bbd0f31d (diff)
downloadlibquotient-ed05d9d589fe3d36bd3714e648016352179afbef.tar.gz
libquotient-ed05d9d589fe3d36bd3714e648016352179afbef.zip
Regenerate API files using latest matrix-spec
New: - refresh tokens support (changes in login.* and registration.*; RefreshJob); - GetRelatingEvents[WithRelType[AndEventType]]Job Changed space_hierarchy.*: - childrenState is of type StateEvents now; limit and maxDepth are (omittable) integers, not doubles. - no more unused `stripped_state.h` file inclusion.
Diffstat (limited to 'event-schemas/schema')
-rw-r--r--event-schemas/schema/core-event-schema/stripped_state.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/event-schemas/schema/core-event-schema/stripped_state.h b/event-schemas/schema/core-event-schema/stripped_state.h
deleted file mode 100644
index 742b0a56..00000000
--- a/event-schemas/schema/core-event-schema/stripped_state.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/******************************************************************************
- * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
- */
-
-#pragma once
-
-#include "converters.h"
-
-namespace Quotient {
-/// A stripped down state event, with only the `type`, `state_key`,
-/// `sender`, and `content` keys.
-struct StrippedStateEvent {
- /// The `content` for the event.
- QJsonObject content;
-
- /// The `state_key` for the event.
- QString stateKey;
-
- /// The `type` for the event.
- QString type;
-
- /// The `sender` for the event.
- QString sender;
-};
-
-template <>
-struct JsonObjectConverter<StrippedStateEvent> {
- static void dumpTo(QJsonObject& jo, const StrippedStateEvent& pod)
- {
- addParam<>(jo, QStringLiteral("content"), pod.content);
- addParam<>(jo, QStringLiteral("state_key"), pod.stateKey);
- addParam<>(jo, QStringLiteral("type"), pod.type);
- addParam<>(jo, QStringLiteral("sender"), pod.sender);
- }
- static void fillFrom(const QJsonObject& jo, StrippedStateEvent& pod)
- {
- fromJson(jo.value("content"_ls), pod.content);
- fromJson(jo.value("state_key"_ls), pod.stateKey);
- fromJson(jo.value("type"_ls), pod.type);
- fromJson(jo.value("sender"_ls), pod.sender);
- }
-};
-
-} // namespace Quotient