Latest generation

This commit is contained in:
ci core model
2025-08-11 09:08:06 +00:00
parent 637b42f52f
commit bde14c34a7
6 changed files with 47 additions and 5 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG
Lib version: 1.11.0-SNAPSHOT-250808122715
Lib version: 1.11.0-SNAPSHOT-250811090745

View File

@@ -116,6 +116,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
$core.bool? hasCommission,
$core.Iterable<$core.String>? removedEmails,
$core.String? reason,
$core.bool? instructionAck,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
@@ -134,6 +135,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
if (hasCommission != null) result.hasCommission = hasCommission;
if (removedEmails != null) result.removedEmails.addAll(removedEmails);
if (reason != null) result.reason = reason;
if (instructionAck != null) result.instructionAck = instructionAck;
return result;
}
@@ -159,6 +161,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
..aOB(15, _omitFieldNames ? '' : 'HasCommission', protoName: 'HasCommission')
..pPS(16, _omitFieldNames ? '' : 'RemovedEmails', protoName: 'RemovedEmails')
..aOS(17, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
..aOB(18, _omitFieldNames ? '' : 'InstructionAck', protoName: 'InstructionAck')
..hasRequiredFields = false
;
@@ -295,6 +298,15 @@ class AppointmentPayload extends $pb.GeneratedMessage {
$core.bool hasReason() => $_has(15);
@$pb.TagNumber(17)
void clearReason() => $_clearField(17);
@$pb.TagNumber(18)
$core.bool get instructionAck => $_getBF(16);
@$pb.TagNumber(18)
set instructionAck($core.bool value) => $_setBool(16, value);
@$pb.TagNumber(18)
$core.bool hasInstructionAck() => $_has(16);
@$pb.TagNumber(18)
void clearInstructionAck() => $_clearField(18);
}
class AppointmentTriplet extends $pb.GeneratedMessage {

View File

@@ -52,6 +52,7 @@ const AppointmentPayload$json = {
{'1': 'AttachmentNumber', '3': 14, '4': 1, '5': 5, '8': {}, '10': 'AttachmentNumber'},
{'1': 'HasCommission', '3': 15, '4': 1, '5': 8, '10': 'HasCommission'},
{'1': 'Reason', '3': 17, '4': 1, '5': 9, '10': 'Reason'},
{'1': 'InstructionAck', '3': 18, '4': 1, '5': 8, '10': 'InstructionAck'},
],
'7': {},
};
@@ -80,7 +81,8 @@ final $typed_data.Uint8List appointmentPayloadDescriptor = $convert.base64Decode
'F0dGFjaG1lbnRSZW1vdmVkUgtBdHRhY2htZW50cxJMChBBdHRhY2htZW50TnVtYmVyGA4gASgF'
'QiCSQR0yG1RvdGFsIG51bWJlciBvZiBhdHRhY2htZW50c1IQQXR0YWNobWVudE51bWJlchIkCg'
'1IYXNDb21taXNzaW9uGA8gASgIUg1IYXNDb21taXNzaW9uEhYKBlJlYXNvbhgRIAEoCVIGUmVh'
'c29uOieSQSQKItIBD0FwcG9pbnRtZW50VHlwZdIBDVNlZ21lbnRhdGlvbnM=');
'c29uEiYKDkluc3RydWN0aW9uQWNrGBIgASgIUg5JbnN0cnVjdGlvbkFjazonkkEkCiLSAQ9BcH'
'BvaW50bWVudFR5cGXSAQ1TZWdtZW50YXRpb25z');
@$core.Deprecated('Use appointmentTripletDescriptor instead')
const AppointmentTriplet$json = {

View File

@@ -32,6 +32,8 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
$core.String? carrierID,
$core.String? carrierName,
$core.String? reason,
$core.bool? hasCommission,
$core.bool? instructionAck,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
@@ -44,6 +46,8 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
if (carrierID != null) result.carrierID = carrierID;
if (carrierName != null) result.carrierName = carrierName;
if (reason != null) result.reason = reason;
if (hasCommission != null) result.hasCommission = hasCommission;
if (instructionAck != null) result.instructionAck = instructionAck;
return result;
}
@@ -63,6 +67,8 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
..aOS(10, _omitFieldNames ? '' : 'CarrierID', protoName: 'CarrierID')
..aOS(11, _omitFieldNames ? '' : 'CarrierName', protoName: 'CarrierName')
..aOS(12, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
..aOB(13, _omitFieldNames ? '' : 'HasCommission', protoName: 'HasCommission')
..aOB(14, _omitFieldNames ? '' : 'InstructionAck', protoName: 'InstructionAck')
..hasRequiredFields = false
;
@@ -152,6 +158,24 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
$core.bool hasReason() => $_has(9);
@$pb.TagNumber(12)
void clearReason() => $_clearField(12);
@$pb.TagNumber(13)
$core.bool get hasCommission => $_getBF(10);
@$pb.TagNumber(13)
set hasCommission($core.bool value) => $_setBool(10, value);
@$pb.TagNumber(13)
$core.bool hasHasCommission() => $_has(10);
@$pb.TagNumber(13)
void clearHasCommission() => $_clearField(13);
@$pb.TagNumber(14)
$core.bool get instructionAck => $_getBF(11);
@$pb.TagNumber(14)
set instructionAck($core.bool value) => $_setBool(11, value);
@$pb.TagNumber(14)
$core.bool hasInstructionAck() => $_has(11);
@$pb.TagNumber(14)
void clearInstructionAck() => $_clearField(14);
}
/// Event message

View File

@@ -28,6 +28,8 @@ const AppointmentCreatedPayload$json = {
{'1': 'CarrierID', '3': 10, '4': 1, '5': 9, '10': 'CarrierID'},
{'1': 'CarrierName', '3': 11, '4': 1, '5': 9, '10': 'CarrierName'},
{'1': 'Reason', '3': 12, '4': 1, '5': 9, '10': 'Reason'},
{'1': 'HasCommission', '3': 13, '4': 1, '5': 8, '10': 'HasCommission'},
{'1': 'InstructionAck', '3': 14, '4': 1, '5': 8, '10': 'InstructionAck'},
],
'7': {},
};
@@ -47,8 +49,10 @@ final $typed_data.Uint8List appointmentCreatedPayloadDescriptor = $convert.base6
'IHNwZWNpZmljIHRvIHRoZSBzaXRlLiBUaGV5IGNhbiBiZSBvZiBzZXZlcmFsIGRhdGEgZm9ybS'
'Aoc3RyaW5nLCBpbnRlZ2VyLCBmbG9hdCwgYm9vbGVhbiBvciB0aW1lc3RhbXApwMEYAerBGANL'
'ZXlSCE1ldGFEYXRhEhwKCUNhcnJpZXJJRBgKIAEoCVIJQ2FycmllcklEEiAKC0NhcnJpZXJOYW'
'1lGAsgASgJUgtDYXJyaWVyTmFtZRIWCgZSZWFzb24YDCABKAlSBlJlYXNvbjo+kkEjCiEyDUV2'
'ZW50IFBheWxvYWTSAQ9BcHBvaW50bWVudFR5cGWiuxgFRXZlbnSouxgBursYB0NyZWF0ZWQ=');
'1lGAsgASgJUgtDYXJyaWVyTmFtZRIWCgZSZWFzb24YDCABKAlSBlJlYXNvbhIkCg1IYXNDb21t'
'aXNzaW9uGA0gASgIUg1IYXNDb21taXNzaW9uEiYKDkluc3RydWN0aW9uQWNrGA4gASgIUg5Jbn'
'N0cnVjdGlvbkFjazo+kkEjCiEyDUV2ZW50IFBheWxvYWTSAQ9BcHBvaW50bWVudFR5cGWiuxgF'
'RXZlbnSouxgBursYB0NyZWF0ZWQ=');
@$core.Deprecated('Use appointmentCreatedEventDescriptor instead')
const AppointmentCreatedEvent$json = {

View File

@@ -1,6 +1,6 @@
name: dart_core_sdk
description: dart libs from core model proto files
version: 1.11.0-SNAPSHOT-250808122715
version: 1.11.0-SNAPSHOT-250811090745
homepage: ''
publish_to: ''
repository: ''