Latest generation

This commit is contained in:
ci core model
2025-12-11 08:56:06 +00:00
parent ab59698eb2
commit b1128af3c4
8 changed files with 55 additions and 12 deletions

View File

@@ -118,6 +118,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
$core.String? actorID,
$3.Address? address,
$core.String? siteName,
$core.Iterable<$1.QuantityByUnit>? totalQuantities,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
@@ -137,6 +138,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
if (actorID != null) result.actorID = actorID;
if (address != null) result.address = address;
if (siteName != null) result.siteName = siteName;
if (totalQuantities != null) result.totalQuantities.addAll(totalQuantities);
return result;
}
@@ -163,6 +165,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
..aOS(20, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..aOM<$3.Address>(21, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $3.Address.create)
..aOS(22, _omitFieldNames ? '' : 'SiteName', protoName: 'SiteName')
..pc<$1.QuantityByUnit>(23, _omitFieldNames ? '' : 'TotalQuantities', $pb.PbFieldType.PM, protoName: 'TotalQuantities', subBuilder: $1.QuantityByUnit.create)
..hasRequiredFields = false
;
@@ -315,6 +318,10 @@ class AppointmentPayload extends $pb.GeneratedMessage {
$core.bool hasSiteName() => $_has(16);
@$pb.TagNumber(22)
void clearSiteName() => $_clearField(22);
/// Total volumetry in all commissions inside the truck.
@$pb.TagNumber(23)
$pb.PbList<$1.QuantityByUnit> get totalQuantities => $_getList(17);
}
class AppointmentTriplet extends $pb.GeneratedMessage {

View File

@@ -53,6 +53,7 @@ const AppointmentPayload$json = {
{'1': 'ActorID', '3': 20, '4': 1, '5': 9, '8': {}, '10': 'ActorID'},
{'1': 'Address', '3': 21, '4': 1, '5': 11, '6': '.api.Address', '10': 'Address'},
{'1': 'SiteName', '3': 22, '4': 1, '5': 9, '10': 'SiteName'},
{'1': 'TotalQuantities', '3': 23, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '10': 'TotalQuantities'},
],
'7': {},
};
@@ -88,8 +89,9 @@ final $typed_data.Uint8List appointmentPayloadDescriptor = $convert.base64Decode
'ckRlcGFydGVkLE1ldGFEYXRhVXBkYXRlZCxBdHRhY2htZW50QWRkZWQsQXR0YWNobWVudFJlbW'
'92ZWQsRW1haWxzQWRkZWQsRW1haWxzUmVtb3ZlZCxTYW5pdGlzZWQsQ3VzdG9tRmllbGRzVXBk'
'YXRlZFIHQWN0b3JJRBImCgdBZGRyZXNzGBUgASgLMgwuYXBpLkFkZHJlc3NSB0FkZHJlc3MSGg'
'oIU2l0ZU5hbWUYFiABKAlSCFNpdGVOYW1lOieSQSQKItIBD0FwcG9pbnRtZW50VHlwZdIBDVNl'
'Z21lbnRhdGlvbnM=');
'oIU2l0ZU5hbWUYFiABKAlSCFNpdGVOYW1lEj0KD1RvdGFsUXVhbnRpdGllcxgXIAMoCzITLmFw'
'aS5RdWFudGl0eUJ5VW5pdFIPVG90YWxRdWFudGl0aWVzOieSQSQKItIBD0FwcG9pbnRtZW50VH'
'lwZdIBDVNlZ21lbnRhdGlvbnM=');
@$core.Deprecated('Use appointmentTripletDescriptor instead')
const AppointmentTriplet$json = {

View File

@@ -35,6 +35,7 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
$core.String? actorID,
$3.Address? address,
$core.String? siteName,
$core.Iterable<$1.QuantityByUnit>? totalQuantities,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
@@ -49,6 +50,7 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
if (actorID != null) result.actorID = actorID;
if (address != null) result.address = address;
if (siteName != null) result.siteName = siteName;
if (totalQuantities != null) result.totalQuantities.addAll(totalQuantities);
return result;
}
@@ -70,6 +72,7 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
..aOS(16, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..aOM<$3.Address>(17, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $3.Address.create)
..aOS(18, _omitFieldNames ? '' : 'SiteName', protoName: 'SiteName')
..pc<$1.QuantityByUnit>(19, _omitFieldNames ? '' : 'TotalQuantities', $pb.PbFieldType.PM, protoName: 'TotalQuantities', subBuilder: $1.QuantityByUnit.create)
..hasRequiredFields = false
;
@@ -183,6 +186,10 @@ class AppointmentCreatedPayload extends $pb.GeneratedMessage {
$core.bool hasSiteName() => $_has(11);
@$pb.TagNumber(18)
void clearSiteName() => $_clearField(18);
/// Total volumetry in all commissions inside the truck.
@$pb.TagNumber(19)
$pb.PbList<$1.QuantityByUnit> get totalQuantities => $_getList(12);
}
/// Event message
@@ -949,10 +956,12 @@ class AppointmentCommissionsUpdatedPayload extends $pb.GeneratedMessage {
factory AppointmentCommissionsUpdatedPayload({
$core.String? actorID,
$core.Iterable<$1.AppointmentCommission>? commissions,
$core.Iterable<$1.QuantityByUnit>? totalQuantities,
}) {
final result = create();
if (actorID != null) result.actorID = actorID;
if (commissions != null) result.commissions.addAll(commissions);
if (totalQuantities != null) result.totalQuantities.addAll(totalQuantities);
return result;
}
@@ -964,6 +973,7 @@ class AppointmentCommissionsUpdatedPayload extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentCommissionsUpdatedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..pc<$1.AppointmentCommission>(2, _omitFieldNames ? '' : 'Commissions', $pb.PbFieldType.PM, protoName: 'Commissions', subBuilder: $1.AppointmentCommission.create)
..pc<$1.QuantityByUnit>(3, _omitFieldNames ? '' : 'TotalQuantities', $pb.PbFieldType.PM, protoName: 'TotalQuantities', subBuilder: $1.QuantityByUnit.create)
..hasRequiredFields = false
;
@@ -995,6 +1005,10 @@ class AppointmentCommissionsUpdatedPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
$pb.PbList<$1.AppointmentCommission> get commissions => $_getList(1);
/// Total volumetry in all commissions inside the truck.
@$pb.TagNumber(3)
$pb.PbList<$1.QuantityByUnit> get totalQuantities => $_getList(2);
}
/// Event message

View File

@@ -30,6 +30,7 @@ const AppointmentCreatedPayload$json = {
{'1': 'ActorID', '3': 16, '4': 1, '5': 9, '10': 'ActorID'},
{'1': 'Address', '3': 17, '4': 1, '5': 11, '6': '.api.Address', '10': 'Address'},
{'1': 'SiteName', '3': 18, '4': 1, '5': 9, '10': 'SiteName'},
{'1': 'TotalQuantities', '3': 19, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '10': 'TotalQuantities'},
],
'7': {},
};
@@ -51,9 +52,10 @@ final $typed_data.Uint8List appointmentCreatedPayloadDescriptor = $convert.base6
'bnRlZ2VyLCBmbG9hdCwgYm9vbGVhbiBvciB0aW1lc3RhbXApwMEYAerBGANLZXlSCE1ldGFEYX'
'RhEhYKBlJlYXNvbhgMIAEoCVIGUmVhc29uEiYKDkluc3RydWN0aW9uQWNrGA4gASgIUg5JbnN0'
'cnVjdGlvbkFjaxIYCgdBY3RvcklEGBAgASgJUgdBY3RvcklEEiYKB0FkZHJlc3MYESABKAsyDC'
'5hcGkuQWRkcmVzc1IHQWRkcmVzcxIaCghTaXRlTmFtZRgSIAEoCVIIU2l0ZU5hbWU6PpJBIwoh'
'Mg1FdmVudCBQYXlsb2Fk0gEPQXBwb2ludG1lbnRUeXBlorsYBUV2ZW50qLsYAbq7GAdDcmVhdG'
'Vk');
'5hcGkuQWRkcmVzc1IHQWRkcmVzcxIaCghTaXRlTmFtZRgSIAEoCVIIU2l0ZU5hbWUSPQoPVG90'
'YWxRdWFudGl0aWVzGBMgAygLMhMuYXBpLlF1YW50aXR5QnlVbml0Ug9Ub3RhbFF1YW50aXRpZX'
'M6PpJBIwohMg1FdmVudCBQYXlsb2Fk0gEPQXBwb2ludG1lbnRUeXBlorsYBUV2ZW50qLsYAbq7'
'GAdDcmVhdGVk');
@$core.Deprecated('Use appointmentCreatedEventDescriptor instead')
const AppointmentCreatedEvent$json = {
@@ -253,6 +255,7 @@ const AppointmentCommissionsUpdatedPayload$json = {
'2': [
{'1': 'Commissions', '3': 2, '4': 3, '5': 11, '6': '.api.AppointmentCommission', '10': 'Commissions'},
{'1': 'ActorID', '3': 1, '4': 1, '5': 9, '10': 'ActorID'},
{'1': 'TotalQuantities', '3': 3, '4': 3, '5': 11, '6': '.api.QuantityByUnit', '10': 'TotalQuantities'},
],
'7': {},
};
@@ -261,8 +264,9 @@ const AppointmentCommissionsUpdatedPayload$json = {
final $typed_data.Uint8List appointmentCommissionsUpdatedPayloadDescriptor = $convert.base64Decode(
'CiRBcHBvaW50bWVudENvbW1pc3Npb25zVXBkYXRlZFBheWxvYWQSPAoLQ29tbWlzc2lvbnMYAi'
'ADKAsyGi5hcGkuQXBwb2ludG1lbnRDb21taXNzaW9uUgtDb21taXNzaW9ucxIYCgdBY3RvcklE'
'GAEgASgJUgdBY3RvcklEOjeSQREKDzINRXZlbnQgUGF5bG9hZKK7GAVFdmVudKi7GAG6uxgSQ2'
'9tbWlzc2lvbnNVcGRhdGVk');
'GAEgASgJUgdBY3RvcklEEj0KD1RvdGFsUXVhbnRpdGllcxgDIAMoCzITLmFwaS5RdWFudGl0eU'
'J5VW5pdFIPVG90YWxRdWFudGl0aWVzOjeSQREKDzINRXZlbnQgUGF5bG9hZKK7GAVFdmVudKi7'
'GAG6uxgSQ29tbWlzc2lvbnNVcGRhdGVk');
@$core.Deprecated('Use appointmentCommissionsUpdatedEventDescriptor instead')
const AppointmentCommissionsUpdatedEvent$json = {

View File

@@ -139,10 +139,12 @@ class Slot extends $pb.GeneratedMessage {
factory Slot({
$core.String? startDateTime,
$fixnum.Int64? durationInSeconds,
$core.String? endDateTime,
}) {
final result = create();
if (startDateTime != null) result.startDateTime = startDateTime;
if (durationInSeconds != null) result.durationInSeconds = durationInSeconds;
if (endDateTime != null) result.endDateTime = endDateTime;
return result;
}
@@ -154,6 +156,7 @@ class Slot extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'Slot', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'StartDateTime', protoName: 'StartDateTime')
..a<$fixnum.Int64>(3, _omitFieldNames ? '' : 'DurationInSeconds', $pb.PbFieldType.OU6, protoName: 'DurationInSeconds', defaultOrMaker: $fixnum.Int64.ZERO)
..aOS(4, _omitFieldNames ? '' : 'EndDateTime', protoName: 'EndDateTime')
..hasRequiredFields = false
;
@@ -192,6 +195,15 @@ class Slot extends $pb.GeneratedMessage {
$core.bool hasDurationInSeconds() => $_has(1);
@$pb.TagNumber(3)
void clearDurationInSeconds() => $_clearField(3);
@$pb.TagNumber(4)
$core.String get endDateTime => $_getSZ(2);
@$pb.TagNumber(4)
set endDateTime($core.String value) => $_setString(2, value);
@$pb.TagNumber(4)
$core.bool hasEndDateTime() => $_has(2);
@$pb.TagNumber(4)
void clearEndDateTime() => $_clearField(4);
}
/// Segmentation

View File

@@ -115,15 +115,19 @@ const Slot$json = {
'2': [
{'1': 'StartDateTime', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'StartDateTime'},
{'1': 'DurationInSeconds', '3': 3, '4': 1, '5': 4, '10': 'DurationInSeconds'},
{'1': 'EndDateTime', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'EndDateTime'},
],
};
/// Descriptor for `Slot`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List slotDescriptor = $convert.base64Decode(
'CgRTbG90EokBCg1TdGFydERhdGVUaW1lGAEgASgJQmP6QmByXjJcXjIwWzAtOV17Mn0tKDBbMS'
'CgRTbG90EpgBCg1TdGFydERhdGVUaW1lGAEgASgJQnL6QmByXjJcXjIwWzAtOV17Mn0tKDBbMS'
'05XXwxWzAtMl0pLSgwWzEtOV18WzEyXVswLTldfDNbMDFdKVRbMDFdWzAtOV18MlswLTNdOlsw'
'LTVdWzAtOV06WzAtNV1bMC05XSRSDVN0YXJ0RGF0ZVRpbWUSLAoRRHVyYXRpb25JblNlY29uZH'
'MYAyABKARSEUR1cmF0aW9uSW5TZWNvbmRz');
'LTVdWzAtOV06WzAtNV1bMC05XSTKwhgLCgkKASoSBGRhdGVSDVN0YXJ0RGF0ZVRpbWUSLAoRRH'
'VyYXRpb25JblNlY29uZHMYAyABKARSEUR1cmF0aW9uSW5TZWNvbmRzEpQBCgtFbmREYXRlVGlt'
'ZRgEIAEoCUJy+kJgcl4yXF4yMFswLTldezJ9LSgwWzEtOV18MVswLTJdKS0oMFsxLTldfFsxMl'
'1bMC05XXwzWzAxXSlUWzAxXVswLTldfDJbMC0zXTpbMC01XVswLTldOlswLTVdWzAtOV0kysIY'
'CwoJCgEqEgRkYXRlUgtFbmREYXRlVGltZQ==');
@$core.Deprecated('Use segmentationDescriptor instead')
const Segmentation$json = {