ui cleanup

This commit is contained in:
Christien Rioux 2025-03-17 00:51:16 -04:00
parent d460a0388c
commit 77c68aa45f
57 changed files with 1158 additions and 914 deletions

View file

@ -3024,6 +3024,7 @@ class ContactInvitationRecord extends $pb.GeneratedMessage {
$fixnum.Int64? expiration,
$core.List<$core.int>? invitation,
$core.String? message,
$core.String? recipient,
}) {
final $result = create();
if (contactRequestInbox != null) {
@ -3047,6 +3048,9 @@ class ContactInvitationRecord extends $pb.GeneratedMessage {
if (message != null) {
$result.message = message;
}
if (recipient != null) {
$result.recipient = recipient;
}
return $result;
}
ContactInvitationRecord._() : super();
@ -3061,6 +3065,7 @@ class ContactInvitationRecord extends $pb.GeneratedMessage {
..a<$fixnum.Int64>(5, _omitFieldNames ? '' : 'expiration', $pb.PbFieldType.OU6, defaultOrMaker: $fixnum.Int64.ZERO)
..a<$core.List<$core.int>>(6, _omitFieldNames ? '' : 'invitation', $pb.PbFieldType.OY)
..aOS(7, _omitFieldNames ? '' : 'message')
..aOS(8, _omitFieldNames ? '' : 'recipient')
..hasRequiredFields = false
;
@ -3162,6 +3167,16 @@ class ContactInvitationRecord extends $pb.GeneratedMessage {
$core.bool hasMessage() => $_has(6);
@$pb.TagNumber(7)
void clearMessage() => clearField(7);
/// The recipient sent along with the invitation
@$pb.TagNumber(8)
$core.String get recipient => $_getSZ(7);
@$pb.TagNumber(8)
set recipient($core.String v) { $_setString(7, v); }
@$pb.TagNumber(8)
$core.bool hasRecipient() => $_has(7);
@$pb.TagNumber(8)
void clearRecipient() => clearField(8);
}

View file

@ -628,6 +628,7 @@ const ContactInvitationRecord$json = {
{'1': 'expiration', '3': 5, '4': 1, '5': 4, '10': 'expiration'},
{'1': 'invitation', '3': 6, '4': 1, '5': 12, '10': 'invitation'},
{'1': 'message', '3': 7, '4': 1, '5': 9, '10': 'message'},
{'1': 'recipient', '3': 8, '4': 1, '5': 9, '10': 'recipient'},
],
};
@ -639,5 +640,6 @@ final $typed_data.Uint8List contactInvitationRecordDescriptor = $convert.base64D
'NlY3JldBgDIAEoCzIRLnZlaWxpZC5DcnlwdG9LZXlSDHdyaXRlclNlY3JldBJTCh1sb2NhbF9j'
'b252ZXJzYXRpb25fcmVjb3JkX2tleRgEIAEoCzIQLnZlaWxpZC5UeXBlZEtleVIabG9jYWxDb2'
'52ZXJzYXRpb25SZWNvcmRLZXkSHgoKZXhwaXJhdGlvbhgFIAEoBFIKZXhwaXJhdGlvbhIeCgpp'
'bnZpdGF0aW9uGAYgASgMUgppbnZpdGF0aW9uEhgKB21lc3NhZ2UYByABKAlSB21lc3NhZ2U=');
'bnZpdGF0aW9uGAYgASgMUgppbnZpdGF0aW9uEhgKB21lc3NhZ2UYByABKAlSB21lc3NhZ2USHA'
'oJcmVjaXBpZW50GAggASgJUglyZWNpcGllbnQ=');

View file

@ -478,4 +478,6 @@ message ContactInvitationRecord {
bytes invitation = 6;
// The message sent along with the invitation
string message = 7;
// The recipient sent along with the invitation
string recipient = 8;
}