Reactivate bounced emails
This commit is contained in:
parent
9ce3970f3f
commit
4bff54fc1b
|
|
@ -1794,6 +1794,7 @@ abstract class InvitationEntity extends Object
|
||||||
sentDate: '',
|
sentDate: '',
|
||||||
viewedDate: '',
|
viewedDate: '',
|
||||||
openedDate: '',
|
openedDate: '',
|
||||||
|
messageId: '',
|
||||||
updatedAt: 0,
|
updatedAt: 0,
|
||||||
archivedAt: 0,
|
archivedAt: 0,
|
||||||
isDeleted: false,
|
isDeleted: false,
|
||||||
|
|
@ -1835,6 +1836,9 @@ abstract class InvitationEntity extends Object
|
||||||
@BuiltValueField(wireName: 'email_error', compare: false)
|
@BuiltValueField(wireName: 'email_error', compare: false)
|
||||||
String get emailError;
|
String get emailError;
|
||||||
|
|
||||||
|
@BuiltValueField(wireName: 'message_id', compare: false)
|
||||||
|
String get messageId;
|
||||||
|
|
||||||
String get downloadLink =>
|
String get downloadLink =>
|
||||||
'$link/download?t=${DateTime.now().millisecondsSinceEpoch}';
|
'$link/download?t=${DateTime.now().millisecondsSinceEpoch}';
|
||||||
|
|
||||||
|
|
@ -1903,7 +1907,8 @@ abstract class InvitationEntity extends Object
|
||||||
..clientContactId = ''
|
..clientContactId = ''
|
||||||
..vendorContactId = ''
|
..vendorContactId = ''
|
||||||
..emailError = ''
|
..emailError = ''
|
||||||
..emailStatus = '';
|
..emailStatus = ''
|
||||||
|
..messageId = '';
|
||||||
|
|
||||||
static Serializer<InvitationEntity> get serializer =>
|
static Serializer<InvitationEntity> get serializer =>
|
||||||
_$invitationEntitySerializer;
|
_$invitationEntitySerializer;
|
||||||
|
|
|
||||||
|
|
@ -983,6 +983,9 @@ class _$InvitationEntitySerializer
|
||||||
'email_error',
|
'email_error',
|
||||||
serializers.serialize(object.emailError,
|
serializers.serialize(object.emailError,
|
||||||
specifiedType: const FullType(String)),
|
specifiedType: const FullType(String)),
|
||||||
|
'message_id',
|
||||||
|
serializers.serialize(object.messageId,
|
||||||
|
specifiedType: const FullType(String)),
|
||||||
'created_at',
|
'created_at',
|
||||||
serializers.serialize(object.createdAt,
|
serializers.serialize(object.createdAt,
|
||||||
specifiedType: const FullType(int)),
|
specifiedType: const FullType(int)),
|
||||||
|
|
@ -1082,6 +1085,10 @@ class _$InvitationEntitySerializer
|
||||||
result.emailError = serializers.deserialize(value,
|
result.emailError = serializers.deserialize(value,
|
||||||
specifiedType: const FullType(String))! as String;
|
specifiedType: const FullType(String))! as String;
|
||||||
break;
|
break;
|
||||||
|
case 'message_id':
|
||||||
|
result.messageId = serializers.deserialize(value,
|
||||||
|
specifiedType: const FullType(String))! as String;
|
||||||
|
break;
|
||||||
case 'isChanged':
|
case 'isChanged':
|
||||||
result.isChanged = serializers.deserialize(value,
|
result.isChanged = serializers.deserialize(value,
|
||||||
specifiedType: const FullType(bool)) as bool?;
|
specifiedType: const FullType(bool)) as bool?;
|
||||||
|
|
@ -2986,6 +2993,8 @@ class _$InvitationEntity extends InvitationEntity {
|
||||||
@override
|
@override
|
||||||
final String emailError;
|
final String emailError;
|
||||||
@override
|
@override
|
||||||
|
final String messageId;
|
||||||
|
@override
|
||||||
final bool? isChanged;
|
final bool? isChanged;
|
||||||
@override
|
@override
|
||||||
final int createdAt;
|
final int createdAt;
|
||||||
|
|
@ -3018,6 +3027,7 @@ class _$InvitationEntity extends InvitationEntity {
|
||||||
required this.openedDate,
|
required this.openedDate,
|
||||||
required this.emailStatus,
|
required this.emailStatus,
|
||||||
required this.emailError,
|
required this.emailError,
|
||||||
|
required this.messageId,
|
||||||
this.isChanged,
|
this.isChanged,
|
||||||
required this.createdAt,
|
required this.createdAt,
|
||||||
required this.updatedAt,
|
required this.updatedAt,
|
||||||
|
|
@ -3044,6 +3054,8 @@ class _$InvitationEntity extends InvitationEntity {
|
||||||
emailStatus, r'InvitationEntity', 'emailStatus');
|
emailStatus, r'InvitationEntity', 'emailStatus');
|
||||||
BuiltValueNullFieldError.checkNotNull(
|
BuiltValueNullFieldError.checkNotNull(
|
||||||
emailError, r'InvitationEntity', 'emailError');
|
emailError, r'InvitationEntity', 'emailError');
|
||||||
|
BuiltValueNullFieldError.checkNotNull(
|
||||||
|
messageId, r'InvitationEntity', 'messageId');
|
||||||
BuiltValueNullFieldError.checkNotNull(
|
BuiltValueNullFieldError.checkNotNull(
|
||||||
createdAt, r'InvitationEntity', 'createdAt');
|
createdAt, r'InvitationEntity', 'createdAt');
|
||||||
BuiltValueNullFieldError.checkNotNull(
|
BuiltValueNullFieldError.checkNotNull(
|
||||||
|
|
@ -3114,6 +3126,7 @@ class _$InvitationEntity extends InvitationEntity {
|
||||||
..add('openedDate', openedDate)
|
..add('openedDate', openedDate)
|
||||||
..add('emailStatus', emailStatus)
|
..add('emailStatus', emailStatus)
|
||||||
..add('emailError', emailError)
|
..add('emailError', emailError)
|
||||||
|
..add('messageId', messageId)
|
||||||
..add('isChanged', isChanged)
|
..add('isChanged', isChanged)
|
||||||
..add('createdAt', createdAt)
|
..add('createdAt', createdAt)
|
||||||
..add('updatedAt', updatedAt)
|
..add('updatedAt', updatedAt)
|
||||||
|
|
@ -3169,6 +3182,10 @@ class InvitationEntityBuilder
|
||||||
String? get emailError => _$this._emailError;
|
String? get emailError => _$this._emailError;
|
||||||
set emailError(String? emailError) => _$this._emailError = emailError;
|
set emailError(String? emailError) => _$this._emailError = emailError;
|
||||||
|
|
||||||
|
String? _messageId;
|
||||||
|
String? get messageId => _$this._messageId;
|
||||||
|
set messageId(String? messageId) => _$this._messageId = messageId;
|
||||||
|
|
||||||
bool? _isChanged;
|
bool? _isChanged;
|
||||||
bool? get isChanged => _$this._isChanged;
|
bool? get isChanged => _$this._isChanged;
|
||||||
set isChanged(bool? isChanged) => _$this._isChanged = isChanged;
|
set isChanged(bool? isChanged) => _$this._isChanged = isChanged;
|
||||||
|
|
@ -3223,6 +3240,7 @@ class InvitationEntityBuilder
|
||||||
_openedDate = $v.openedDate;
|
_openedDate = $v.openedDate;
|
||||||
_emailStatus = $v.emailStatus;
|
_emailStatus = $v.emailStatus;
|
||||||
_emailError = $v.emailError;
|
_emailError = $v.emailError;
|
||||||
|
_messageId = $v.messageId;
|
||||||
_isChanged = $v.isChanged;
|
_isChanged = $v.isChanged;
|
||||||
_createdAt = $v.createdAt;
|
_createdAt = $v.createdAt;
|
||||||
_updatedAt = $v.updatedAt;
|
_updatedAt = $v.updatedAt;
|
||||||
|
|
@ -3272,6 +3290,7 @@ class InvitationEntityBuilder
|
||||||
emailStatus, r'InvitationEntity', 'emailStatus'),
|
emailStatus, r'InvitationEntity', 'emailStatus'),
|
||||||
emailError:
|
emailError:
|
||||||
BuiltValueNullFieldError.checkNotNull(emailError, r'InvitationEntity', 'emailError'),
|
BuiltValueNullFieldError.checkNotNull(emailError, r'InvitationEntity', 'emailError'),
|
||||||
|
messageId: BuiltValueNullFieldError.checkNotNull(messageId, r'InvitationEntity', 'messageId'),
|
||||||
isChanged: isChanged,
|
isChanged: isChanged,
|
||||||
createdAt: BuiltValueNullFieldError.checkNotNull(createdAt, r'InvitationEntity', 'createdAt'),
|
createdAt: BuiltValueNullFieldError.checkNotNull(createdAt, r'InvitationEntity', 'createdAt'),
|
||||||
updatedAt: BuiltValueNullFieldError.checkNotNull(updatedAt, r'InvitationEntity', 'updatedAt'),
|
updatedAt: BuiltValueNullFieldError.checkNotNull(updatedAt, r'InvitationEntity', 'updatedAt'),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue