1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
// Namespace: "chat.1"
// Protocol: "gregor"
#![allow(dead_code)]
#![allow(non_snake_case)]
#![allow(non_camel_case_types)]
#![allow(unused_imports)]
use serde::{Serialize, Deserialize};
use serde_repr::{Deserialize_repr, Serialize_repr};use super::*;

use crate::protocol::gregor1;
use crate::protocol::keybase1;
#[derive(Serialize, Deserialize, Debug)]
pub struct GenericPayload {
  // @lint("ignore")
  #[serde(default)]
  pub Action: Option<String>,
  pub inboxVers: Option<InboxVers>,
  pub convID: Option<ConversationID>,
  pub topicType: Option<TopicType>,
  pub unreadUpdate: Option<UnreadUpdate>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct NewConversationPayload {
  // @lint("ignore")
  #[serde(default)]
  pub Action: Option<String>,
  pub convID: Option<ConversationID>,
  pub inboxVers: Option<InboxVers>,
  pub topicType: Option<TopicType>,
  pub unreadUpdate: Option<UnreadUpdate>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct NewMessagePayload {
  // @lint("ignore")
  #[serde(default)]
  pub Action: Option<String>,
  pub convID: Option<ConversationID>,
  pub message: Option<MessageBoxed>,
  pub inboxVers: Option<InboxVers>,
  pub topicType: Option<TopicType>,
  pub unreadUpdate: Option<UnreadUpdate>,
  #[serde(default)]
  pub maxMsgs: Option<Vec<MessageSummary>>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct ReadMessagePayload {
  // @lint("ignore")
  #[serde(default)]
  pub Action: Option<String>,
  pub convID: Option<ConversationID>,
  pub msgID: Option<MessageID>,
  pub inboxVers: Option<InboxVers>,
  pub topicType: Option<TopicType>,
  pub unreadUpdate: Option<UnreadUpdate>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct SetStatusPayload {
  // @lint("ignore")
  #[serde(default)]
  pub Action: Option<String>,
  pub convID: Option<ConversationID>,
  pub status: Option<ConversationStatus>,
  pub inboxVers: Option<InboxVers>,
  pub topicType: Option<TopicType>,
  pub unreadUpdate: Option<UnreadUpdate>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct TeamTypePayload {
  // @lint("ignore")
  #[serde(default)]
  pub Action: Option<String>,
  pub convID: Option<ConversationID>,
  pub teamType: Option<TeamType>,
  pub inboxVers: Option<InboxVers>,
  pub topicType: Option<TopicType>,
  pub unreadUpdate: Option<UnreadUpdate>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct SetAppNotificationSettingsPayload {
  // @lint("ignore")
  #[serde(default)]
  pub Action: Option<String>,
  pub convID: Option<ConversationID>,
  pub inboxVers: Option<InboxVers>,
  pub settings: Option<ConversationNotificationInfo>,
  pub topicType: Option<TopicType>,
  pub unreadUpdate: Option<UnreadUpdate>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct ExpungePayload {
  // @lint("ignore")
  #[serde(default)]
  pub Action: Option<String>,
  pub convID: Option<ConversationID>,
  pub inboxVers: Option<InboxVers>,
  pub expunge: Option<Expunge>,
  #[serde(default)]
  pub maxMsgs: Option<Vec<MessageSummary>>,
  pub topicType: Option<TopicType>,
  pub unreadUpdate: Option<UnreadUpdate>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct UnreadUpdate {
  pub convID: Option<ConversationID>,
  pub unreadMessages: Option<i32>,
  pub unreadNotifyingMessages: Option<std::collections::HashMap<keybase1::DeviceType, i32>>,
  // @mpackkey("UnreadMessages")
  #[serde(rename = "UnreadMessages")]
  pub compatUnreadMessages: Option<i32>,
  #[serde(default)]
  pub diff: Option<bool>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct TLFFinalizeUpdate {
  pub finalizeInfo: Option<ConversationFinalizeInfo>,
  #[serde(default)]
  pub convIDs: Option<Vec<ConversationID>>,
  pub inboxVers: Option<InboxVers>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct TLFResolveUpdate {
  pub convID: Option<ConversationID>,
  pub inboxVers: Option<InboxVers>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct RemoteUserTypingUpdate {
  pub uid: Option<gregor1::UID>,
  pub deviceID: Option<gregor1::DeviceID>,
  pub convID: Option<ConversationID>,
  #[serde(default)]
  pub typing: Option<bool>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct UpdateConversationMembership {
  pub inboxVers: Option<InboxVers>,
  #[serde(default)]
  pub joined: Option<Vec<ConversationMember>>,
  #[serde(default)]
  pub removed: Option<Vec<ConversationMember>>,
  #[serde(default)]
  pub reset: Option<Vec<ConversationMember>>,
  #[serde(default)]
  pub previewed: Option<Vec<ConversationID>>,
  pub unreadUpdate: Option<UnreadUpdate>,
  #[serde(default)]
  pub unreadUpdates: Option<Vec<UnreadUpdate>>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct ConversationUpdate {
  pub convID: Option<ConversationID>,
  pub existence: Option<ConversationExistence>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct UpdateConversations {
  pub inboxVers: Option<InboxVers>,
  #[serde(default)]
  pub convUpdates: Option<Vec<ConversationUpdate>>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct TeamChannelUpdate {
  pub teamID: Option<TLFID>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct SetConvRetentionUpdate {
  pub inboxVers: Option<InboxVers>,
  pub convID: Option<ConversationID>,
  pub policy: Option<RetentionPolicy>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct SetTeamRetentionUpdate {
  pub inboxVers: Option<InboxVers>,
  pub teamID: Option<keybase1::TeamID>,
  pub policy: Option<RetentionPolicy>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct SetConvSettingsUpdate {
  pub inboxVers: Option<InboxVers>,
  pub convID: Option<ConversationID>,
  pub convSettings: Option<ConversationSettings>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct KBFSImpteamUpgradeUpdate {
  pub convID: Option<ConversationID>,
  pub inboxVers: Option<InboxVers>,
  pub topicType: Option<TopicType>,
}

#[derive(Serialize, Deserialize, Debug)]
pub struct SubteamRenameUpdate {
  #[serde(default)]
  pub convIDs: Option<Vec<ConversationID>>,
  pub inboxVers: Option<InboxVers>,
}