Latest generation

This commit is contained in:
ci core model
2025-12-01 09:06:40 +00:00
parent ced104d1c3
commit bca3b3a2ed
6 changed files with 34 additions and 5 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG
Lib version: 1.12.0-SNAPSHOT-251128143427
Lib version: 1.12.0-SNAPSHOT-251201090615

View File

@@ -118,6 +118,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
$core.Iterable<$0.MetadataElement>? carrierInformation,
$core.String? actorID,
$3.Address? address,
$core.String? siteName,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
@@ -137,6 +138,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
if (carrierInformation != null) result.carrierInformation.addAll(carrierInformation);
if (actorID != null) result.actorID = actorID;
if (address != null) result.address = address;
if (siteName != null) result.siteName = siteName;
return result;
}
@@ -163,6 +165,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
..pc<$0.MetadataElement>(19, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $0.MetadataElement.create)
..aOS(20, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..aOM<$3.Address>(21, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $3.Address.create)
..aOS(22, _omitFieldNames ? '' : 'SiteName', protoName: 'SiteName')
..hasRequiredFields = false
;
@@ -315,6 +318,16 @@ class AppointmentPayload extends $pb.GeneratedMessage {
void clearAddress() => $_clearField(21);
@$pb.TagNumber(21)
$3.Address ensureAddress() => $_ensure(16);
/// Name of the appointment site
@$pb.TagNumber(22)
$core.String get siteName => $_getSZ(17);
@$pb.TagNumber(22)
set siteName($core.String value) => $_setString(17, value);
@$pb.TagNumber(22)
$core.bool hasSiteName() => $_has(17);
@$pb.TagNumber(22)
void clearSiteName() => $_clearField(22);
}
class AppointmentTriplet extends $pb.GeneratedMessage {

View File

@@ -53,6 +53,7 @@ const AppointmentPayload$json = {
{'1': 'InstructionAck', '3': 18, '4': 1, '5': 8, '10': 'InstructionAck'},
{'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'},
],
'7': {},
};
@@ -88,8 +89,8 @@ final $typed_data.Uint8List appointmentPayloadDescriptor = $convert.base64Decode
'YWRpbmdTdGFydGVkLFVubG9hZGluZ0NvbXBsZXRlZCxDYXJyaWVyRGVwYXJ0ZWQsTWV0YURhdG'
'FVcGRhdGVkLEF0dGFjaG1lbnRBZGRlZCxBdHRhY2htZW50UmVtb3ZlZCxFbWFpbHNBZGRlZCxF'
'bWFpbHNSZW1vdmVkLFNhbml0aXNlZCxDdXN0b21GaWVsZHNVcGRhdGVkUgdBY3RvcklEEiYKB0'
'FkZHJlc3MYFSABKAsyDC5hcGkuQWRkcmVzc1IHQWRkcmVzczonkkEkCiLSAQ9BcHBvaW50bWVu'
'dFR5cGXSAQ1TZWdtZW50YXRpb25z');
'FkZHJlc3MYFSABKAsyDC5hcGkuQWRkcmVzc1IHQWRkcmVzcxIaCghTaXRlTmFtZRgWIAEoCVII'
'U2l0ZU5hbWU6J5JBJAoi0gEPQXBwb2ludG1lbnRUeXBl0gENU2VnbWVudGF0aW9ucw==');
@$core.Deprecated('Use appointmentTripletDescriptor instead')
const AppointmentTriplet$json = {

View File

@@ -325,6 +325,7 @@ class AppointmentMailPayload extends $pb.GeneratedMessage {
$core.String? reason,
$3.Address? address,
$core.Iterable<$2.MetadataElement>? carrierInformation,
$core.String? siteName,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
@@ -342,6 +343,7 @@ class AppointmentMailPayload extends $pb.GeneratedMessage {
if (reason != null) result.reason = reason;
if (address != null) result.address = address;
if (carrierInformation != null) result.carrierInformation.addAll(carrierInformation);
if (siteName != null) result.siteName = siteName;
return result;
}
@@ -366,6 +368,7 @@ class AppointmentMailPayload extends $pb.GeneratedMessage {
..aOS(17, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
..aOM<$3.Address>(18, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $3.Address.create)
..pc<$2.MetadataElement>(19, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $2.MetadataElement.create)
..aOS(20, _omitFieldNames ? '' : 'SiteName', protoName: 'SiteName')
..hasRequiredFields = false
;
@@ -487,6 +490,16 @@ class AppointmentMailPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(19)
$pb.PbList<$2.MetadataElement> get carrierInformation => $_getList(14);
/// Name of the appointment site
@$pb.TagNumber(20)
$core.String get siteName => $_getSZ(15);
@$pb.TagNumber(20)
set siteName($core.String value) => $_setString(15, value);
@$pb.TagNumber(20)
$core.bool hasSiteName() => $_has(15);
@$pb.TagNumber(20)
void clearSiteName() => $_clearField(20);
}
class AppointmentMail extends $pb.GeneratedMessage {

View File

@@ -95,6 +95,7 @@ const AppointmentMailPayload$json = {
{'1': 'HasCommission', '3': 15, '4': 1, '5': 8, '10': 'HasCommission'},
{'1': 'Reason', '3': 17, '4': 1, '5': 9, '10': 'Reason'},
{'1': 'Address', '3': 18, '4': 1, '5': 11, '6': '.api.Address', '10': 'Address'},
{'1': 'SiteName', '3': 20, '4': 1, '5': 9, '10': 'SiteName'},
],
'7': {},
};
@@ -114,7 +115,8 @@ final $typed_data.Uint8List appointmentMailPayloadDescriptor = $convert.base64De
'AygLMhYuYXBpLkF0dGFjaG1lbnRTdW1tYXJ5UgtBdHRhY2htZW50cxIqChBBdHRhY2htZW50Tn'
'VtYmVyGA4gASgFUhBBdHRhY2htZW50TnVtYmVyEiQKDUhhc0NvbW1pc3Npb24YDyABKAhSDUhh'
'c0NvbW1pc3Npb24SFgoGUmVhc29uGBEgASgJUgZSZWFzb24SJgoHQWRkcmVzcxgSIAEoCzIMLm'
'FwaS5BZGRyZXNzUgdBZGRyZXNzOheiuxgHQ29tbWFuZKi7GAGyuxgETWFpbA==');
'FwaS5BZGRyZXNzUgdBZGRyZXNzEhoKCFNpdGVOYW1lGBQgASgJUghTaXRlTmFtZToXorsYB0Nv'
'bW1hbmSouxgBsrsYBE1haWw=');
@$core.Deprecated('Use appointmentMailDescriptor instead')
const AppointmentMail$json = {

View File

@@ -1,6 +1,6 @@
name: dart_core_sdk
description: dart libs from core model proto files
version: 1.12.0-SNAPSHOT-251128143427
version: 1.12.0-SNAPSHOT-251201090615
homepage: ''
publish_to: ''
repository: ''