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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
// Namespace: "chat.1"
// Protocol: "NotifyChat"
#![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::keybase1;
#[derive(Serialize_repr, Deserialize_repr, Debug, Hash, PartialEq, Eq)]
#[repr(u8)]
pub enum ChatActivitySource {
  Local_0,
  Remote_1,
}

#[derive(Serialize_repr, Deserialize_repr, Debug, Hash, PartialEq, Eq)]
#[repr(u8)]
pub enum ChatActivityType {
  Reserved_0,
  Incoming_message_1,
  Read_message_2,
  New_conversation_3,
  Set_status_4,
  Failed_message_5,
  Members_update_6,
  Set_app_notification_settings_7,
  Teamtype_8,
  Expunge_9,
  Ephemeral_purge_10,
  Reaction_update_11,
  Messages_updated_12,
}

pub struct IncomingMessage {
  pub message: Box<UIMessage>,
  pub modifiedMessage: Option<Box<UIMessage>>,
  pub convID: ConversationID,
  pub displayDesktopNotification: bool,
  pub desktopNotificationSnippet: Option<String>,
  pub conv: Option<InboxUIItem>,
  pub pagination: Option<UIPagination>,
}

pub struct ReadMessageInfo {
  pub convID: ConversationID,
  pub msgID: MessageID,
  pub conv: Option<InboxUIItem>,
}

pub struct NewConversationInfo {
  pub convID: ConversationID,
  pub conv: Option<InboxUIItem>,
}

pub struct SetStatusInfo {
  pub convID: ConversationID,
  pub status: ConversationStatus,
  pub conv: Option<InboxUIItem>,
}

pub struct SetAppNotificationSettingsInfo {
  pub convID: ConversationID,
  pub settings: ConversationNotificationInfo,
}

pub struct FailedMessageInfo {
  pub outboxRecords: Option<Vec<OutboxRecord>>,
  pub isEphemeralPurge: bool,
}

pub struct MemberInfo {
  pub member: Option<String>,
  pub status: ConversationMemberStatus,
}

pub struct MembersUpdateInfo {
  pub convID: ConversationID,
  pub members: Option<Vec<MemberInfo>>,
}

pub struct TeamTypeInfo {
  pub convID: ConversationID,
  pub teamType: TeamType,
  pub conv: Option<InboxUIItem>,
}

pub struct ExpungeInfo {
  pub convID: ConversationID,
  pub expunge: Expunge,
}

pub struct EphemeralPurgeNotifInfo {
  pub convID: ConversationID,
  pub msgs: Option<Vec<Box<UIMessage>>>,
}

pub struct ReactionUpdate {
  pub reactions: ReactionMap,
  pub targetMsgID: MessageID,
}

pub struct ReactionUpdateNotif {
  pub convID: ConversationID,
  pub userReacjis: keybase1::UserReacjis,
  pub reactionUpdates: Option<Vec<ReactionUpdate>>,
}

pub struct MessagesUpdated {
  pub convID: ConversationID,
  pub updates: Option<Vec<Box<UIMessage>>>,
}

pub enum ChatActivity {
  Incoming_message {incoming_message: IncomingMessage},
  Read_message {read_message: ReadMessageInfo},
  New_conversation {new_conversation: NewConversationInfo},
  Set_status {set_status: SetStatusInfo},
  Failed_message {failed_message: FailedMessageInfo},
  Members_update {members_update: MembersUpdateInfo},
  Set_app_notification_settings {set_app_notification_settings: SetAppNotificationSettingsInfo},
  Teamtype {teamtype: TeamTypeInfo},
  Expunge {expunge: ExpungeInfo},
  Ephemeral_purge {ephemeral_purge: EphemeralPurgeNotifInfo},
  Reaction_update {reaction_update: ReactionUpdateNotif},
  Messages_updated {messages_updated: MessagesUpdated},
}

pub struct TyperInfo {
  pub uid: keybase1::UID,
  pub username: Option<String>,
  pub deviceID: keybase1::DeviceID,
  pub deviceName: Option<String>,
  pub deviceType: Option<String>,
}

pub struct ConvTypingUpdate {
  pub convID: ConversationID,
  pub typers: Option<Vec<TyperInfo>>,
}

#[derive(Serialize_repr, Deserialize_repr, Debug, Hash, PartialEq, Eq)]
#[repr(u8)]
pub enum StaleUpdateType {
  Clear_0,
  Newactivity_1,
  Convupdate_2,
}

pub struct ConversationStaleUpdate {
  pub convID: ConversationID,
  pub updateType: StaleUpdateType,
}

pub struct ChatSyncIncrementalConv {
  pub conv: UnverifiedInboxUIItem,
  pub shouldUnbox: bool,
}

pub struct ChatSyncIncrementalInfo {
  pub items: Option<Vec<ChatSyncIncrementalConv>>,
  pub removals: Option<Vec<String>>,
}

pub enum ChatSyncResult {
  Current {current: ()},
  Clear {clear: ()},
  Incremental {incremental: ChatSyncIncrementalInfo},
}

// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")


// @notify("")
// @lint("ignore")