Latest generation

This commit is contained in:
ci core model
2025-08-11 09:30:33 +00:00
parent bde14c34a7
commit 0a80690fda
5 changed files with 76 additions and 13 deletions

View File

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

View File

@@ -277,6 +277,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(14)
void clearAttachmentNumber() => $_clearField(14);
/// This boolean will be used to either check reason or check the commissions for informations
@$pb.TagNumber(15)
$core.bool get hasCommission => $_getBF(13);
@$pb.TagNumber(15)
@@ -290,6 +291,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(16)
$pb.PbList<$core.String> get removedEmails => $_getList(14);
/// The Reason for which the appointment has no commission
@$pb.TagNumber(17)
$core.String get reason => $_getSZ(15);
@$pb.TagNumber(17)
@@ -299,6 +301,7 @@ class AppointmentPayload extends $pb.GeneratedMessage {
@$pb.TagNumber(17)
void clearReason() => $_clearField(17);
/// Acknowledgment of the site instructions
@$pb.TagNumber(18)
$core.bool get instructionAck => $_getBF(16);
@$pb.TagNumber(18)

View File

@@ -1950,6 +1950,7 @@ class BookAppointmentRequest extends $pb.GeneratedMessage {
$core.String? carrierID,
$core.String? carrierName,
$core.String? appointmentID,
$core.bool? instructionAck,
}) {
final result = create();
if (header != null) result.header = header;
@@ -1962,6 +1963,7 @@ class BookAppointmentRequest extends $pb.GeneratedMessage {
if (carrierID != null) result.carrierID = carrierID;
if (carrierName != null) result.carrierName = carrierName;
if (appointmentID != null) result.appointmentID = appointmentID;
if (instructionAck != null) result.instructionAck = instructionAck;
return result;
}
@@ -1981,6 +1983,7 @@ class BookAppointmentRequest extends $pb.GeneratedMessage {
..aOS(9, _omitFieldNames ? '' : 'CarrierID', protoName: 'CarrierID')
..aOS(10, _omitFieldNames ? '' : 'CarrierName', protoName: 'CarrierName')
..aOS(11, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
..aOB(12, _omitFieldNames ? '' : 'InstructionAck', protoName: 'InstructionAck')
..hasRequiredFields = false
;
@@ -2072,6 +2075,16 @@ class BookAppointmentRequest extends $pb.GeneratedMessage {
$core.bool hasAppointmentID() => $_has(9);
@$pb.TagNumber(11)
void clearAppointmentID() => $_clearField(11);
/// Acknowledgment of the site instructions
@$pb.TagNumber(12)
$core.bool get instructionAck => $_getBF(10);
@$pb.TagNumber(12)
set instructionAck($core.bool value) => $_setBool(10, value);
@$pb.TagNumber(12)
$core.bool hasInstructionAck() => $_has(10);
@$pb.TagNumber(12)
void clearInstructionAck() => $_clearField(12);
}
/// BookAppointment
@@ -2089,6 +2102,7 @@ class BookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
$core.String? carrierName,
$core.String? appointmentID,
$core.String? reason,
$core.bool? instructionAck,
}) {
final result = create();
if (header != null) result.header = header;
@@ -2103,6 +2117,7 @@ class BookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
if (carrierName != null) result.carrierName = carrierName;
if (appointmentID != null) result.appointmentID = appointmentID;
if (reason != null) result.reason = reason;
if (instructionAck != null) result.instructionAck = instructionAck;
return result;
}
@@ -2124,6 +2139,7 @@ class BookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
..aOS(10, _omitFieldNames ? '' : 'CarrierName', protoName: 'CarrierName')
..aOS(11, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
..aOS(12, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
..aOB(13, _omitFieldNames ? '' : 'InstructionAck', protoName: 'InstructionAck')
..hasRequiredFields = false
;
@@ -2235,6 +2251,16 @@ class BookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
$core.bool hasReason() => $_has(11);
@$pb.TagNumber(12)
void clearReason() => $_clearField(12);
/// Acknowledgment of the site instructions
@$pb.TagNumber(13)
$core.bool get instructionAck => $_getBF(12);
@$pb.TagNumber(13)
set instructionAck($core.bool value) => $_setBool(12, value);
@$pb.TagNumber(13)
$core.bool hasInstructionAck() => $_has(12);
@$pb.TagNumber(13)
void clearInstructionAck() => $_clearField(13);
}
/// BookAppointment
@@ -2251,6 +2277,7 @@ class WMSBookAppointmentRequest extends $pb.GeneratedMessage {
$core.String? carrierName,
$core.String? timeZone,
$core.String? appointmentID,
$core.bool? instructionAck,
}) {
final result = create();
if (header != null) result.header = header;
@@ -2264,6 +2291,7 @@ class WMSBookAppointmentRequest extends $pb.GeneratedMessage {
if (carrierName != null) result.carrierName = carrierName;
if (timeZone != null) result.timeZone = timeZone;
if (appointmentID != null) result.appointmentID = appointmentID;
if (instructionAck != null) result.instructionAck = instructionAck;
return result;
}
@@ -2284,6 +2312,7 @@ class WMSBookAppointmentRequest extends $pb.GeneratedMessage {
..aOS(10, _omitFieldNames ? '' : 'CarrierName', protoName: 'CarrierName')
..aOS(11, _omitFieldNames ? '' : 'TimeZone', protoName: 'TimeZone')
..aOS(12, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
..aOB(13, _omitFieldNames ? '' : 'InstructionAck', protoName: 'InstructionAck')
..hasRequiredFields = false
;
@@ -2385,6 +2414,16 @@ class WMSBookAppointmentRequest extends $pb.GeneratedMessage {
$core.bool hasAppointmentID() => $_has(10);
@$pb.TagNumber(12)
void clearAppointmentID() => $_clearField(12);
/// Acknowledgment of the site instructions
@$pb.TagNumber(13)
$core.bool get instructionAck => $_getBF(11);
@$pb.TagNumber(13)
set instructionAck($core.bool value) => $_setBool(11, value);
@$pb.TagNumber(13)
$core.bool hasInstructionAck() => $_has(11);
@$pb.TagNumber(13)
void clearInstructionAck() => $_clearField(13);
}
/// BookAppointment
@@ -2403,6 +2442,7 @@ class WMSBookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
$core.String? timeZone,
$core.String? appointmentID,
$core.String? reason,
$core.bool? instructionAck,
}) {
final result = create();
if (header != null) result.header = header;
@@ -2418,6 +2458,7 @@ class WMSBookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
if (timeZone != null) result.timeZone = timeZone;
if (appointmentID != null) result.appointmentID = appointmentID;
if (reason != null) result.reason = reason;
if (instructionAck != null) result.instructionAck = instructionAck;
return result;
}
@@ -2440,6 +2481,7 @@ class WMSBookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
..aOS(11, _omitFieldNames ? '' : 'TimeZone', protoName: 'TimeZone')
..aOS(12, _omitFieldNames ? '' : 'AppointmentID', protoName: 'AppointmentID')
..aOS(13, _omitFieldNames ? '' : 'Reason', protoName: 'Reason')
..aOB(14, _omitFieldNames ? '' : 'InstructionAck', protoName: 'InstructionAck')
..hasRequiredFields = false
;
@@ -2561,6 +2603,16 @@ class WMSBookAppointmentNoReferenceRequest extends $pb.GeneratedMessage {
$core.bool hasReason() => $_has(12);
@$pb.TagNumber(13)
void clearReason() => $_clearField(13);
/// Acknowledgment of the site instructions
@$pb.TagNumber(14)
$core.bool get instructionAck => $_getBF(13);
@$pb.TagNumber(14)
set instructionAck($core.bool value) => $_setBool(13, value);
@$pb.TagNumber(14)
$core.bool hasInstructionAck() => $_has(13);
@$pb.TagNumber(14)
void clearInstructionAck() => $_clearField(14);
}
class BookAppointmentResponse extends $pb.GeneratedMessage {

View File

@@ -530,6 +530,7 @@ const BookAppointmentRequest$json = {
{'1': 'CarrierID', '3': 9, '4': 1, '5': 9, '10': 'CarrierID'},
{'1': 'CarrierName', '3': 10, '4': 1, '5': 9, '10': 'CarrierName'},
{'1': 'AppointmentID', '3': 11, '4': 1, '5': 9, '8': {}, '10': 'AppointmentID'},
{'1': 'InstructionAck', '3': 12, '4': 1, '5': 8, '10': 'InstructionAck'},
],
'7': {},
};
@@ -547,9 +548,10 @@ final $typed_data.Uint8List bookAppointmentRequestDescriptor = $convert.base64De
'IGVtYWlsIGFkZHJlc3NKMFsiSm9obi5kb2VAcmVmbGV4LmNvbSIsICJ3aWxsLnNtaXRoQHJlZm'
'xleC5jb20iXfpCDpIBCwgBIgdyBWAB8AEBUgZFbWFpbHMSHAoJQ2FycmllcklEGAkgASgJUglD'
'YXJyaWVySUQSIAoLQ2Fycmllck5hbWUYCiABKAlSC0NhcnJpZXJOYW1lEjsKDUFwcG9pbnRtZW'
'50SUQYCyABKAlCFZJBEooBD15bYS16QS1aMC05LV0rJFINQXBwb2ludG1lbnRJRDpTkkFQCk7S'
'AQZIZWFkZXLSAQ9BcHBvaW50bWVudFR5cGXSAQtDb21taXNzaW9uc9IBDVNlZ21lbnRhdGlvbn'
'PSARJDYXJyaWVySW5mb3JtYXRpb24=');
'50SUQYCyABKAlCFZJBEooBD15bYS16QS1aMC05LV0rJFINQXBwb2ludG1lbnRJRBImCg5JbnN0'
'cnVjdGlvbkFjaxgMIAEoCFIOSW5zdHJ1Y3Rpb25BY2s6U5JBUApO0gEGSGVhZGVy0gEPQXBwb2'
'ludG1lbnRUeXBl0gELQ29tbWlzc2lvbnPSAQ1TZWdtZW50YXRpb25z0gESQ2FycmllckluZm9y'
'bWF0aW9u');
@$core.Deprecated('Use bookAppointmentNoReferenceRequestDescriptor instead')
const BookAppointmentNoReferenceRequest$json = {
@@ -567,6 +569,7 @@ const BookAppointmentNoReferenceRequest$json = {
{'1': 'CarrierName', '3': 10, '4': 1, '5': 9, '10': 'CarrierName'},
{'1': 'AppointmentID', '3': 11, '4': 1, '5': 9, '10': 'AppointmentID'},
{'1': 'Reason', '3': 12, '4': 1, '5': 9, '10': 'Reason'},
{'1': 'InstructionAck', '3': 13, '4': 1, '5': 8, '10': 'InstructionAck'},
],
'7': {},
};
@@ -585,9 +588,10 @@ final $typed_data.Uint8List bookAppointmentNoReferenceRequestDescriptor = $conve
'1haWwgYWRkcmVzc0owWyJKb2huLmRvZUByZWZsZXguY29tIiwgIndpbGwuc21pdGhAcmVmbGV4'
'LmNvbSJd+kIOkgELCAEiB3IFYAHwAQFSBkVtYWlscxIcCglDYXJyaWVySUQYCSABKAlSCUNhcn'
'JpZXJJRBIgCgtDYXJyaWVyTmFtZRgKIAEoCVILQ2Fycmllck5hbWUSJAoNQXBwb2ludG1lbnRJ'
'RBgLIAEoCVINQXBwb2ludG1lbnRJRBIWCgZSZWFzb24YDCABKAlSBlJlYXNvbjpekkFbClnSAQ'
'ZIZWFkZXLSAQ9BcHBvaW50bWVudFR5cGXSAQlQcm9qZWN0SUTSAQpRdWFudGl0aWVz0gENU2Vn'
'bWVudGF0aW9uc9IBEkNhcnJpZXJJbmZvcm1hdGlvbg==');
'RBgLIAEoCVINQXBwb2ludG1lbnRJRBIWCgZSZWFzb24YDCABKAlSBlJlYXNvbhImCg5JbnN0cn'
'VjdGlvbkFjaxgNIAEoCFIOSW5zdHJ1Y3Rpb25BY2s6XpJBWwpZ0gEGSGVhZGVy0gEPQXBwb2lu'
'dG1lbnRUeXBl0gEJUHJvamVjdElE0gEKUXVhbnRpdGllc9IBDVNlZ21lbnRhdGlvbnPSARJDYX'
'JyaWVySW5mb3JtYXRpb24=');
@$core.Deprecated('Use wMSBookAppointmentRequestDescriptor instead')
const WMSBookAppointmentRequest$json = {
@@ -604,6 +608,7 @@ const WMSBookAppointmentRequest$json = {
{'1': 'CarrierName', '3': 10, '4': 1, '5': 9, '10': 'CarrierName'},
{'1': 'TimeZone', '3': 11, '4': 1, '5': 9, '10': 'TimeZone'},
{'1': 'AppointmentID', '3': 12, '4': 1, '5': 9, '10': 'AppointmentID'},
{'1': 'InstructionAck', '3': 13, '4': 1, '5': 8, '10': 'InstructionAck'},
],
'7': {},
};
@@ -622,8 +627,9 @@ final $typed_data.Uint8List wMSBookAppointmentRequestDescriptor = $convert.base6
'JlZmxleC5jb20iXfpCDpIBCwgBIgdyBWAB8AEBUgZFbWFpbHMSHAoJQ2FycmllcklEGAkgASgJ'
'UglDYXJyaWVySUQSIAoLQ2Fycmllck5hbWUYCiABKAlSC0NhcnJpZXJOYW1lEhoKCFRpbWVab2'
'5lGAsgASgJUghUaW1lWm9uZRIkCg1BcHBvaW50bWVudElEGAwgASgJUg1BcHBvaW50bWVudElE'
'Ol6SQVsKWdIBBkhlYWRlctIBD0FwcG9pbnRtZW50VHlwZdIBC0NvbW1pc3Npb25z0gENU2VnbW'
'VudGF0aW9uc9IBEkNhcnJpZXJJbmZvcm1hdGlvbtIBCFRpbWVab25l');
'EiYKDkluc3RydWN0aW9uQWNrGA0gASgIUg5JbnN0cnVjdGlvbkFjazpekkFbClnSAQZIZWFkZX'
'LSAQ9BcHBvaW50bWVudFR5cGXSAQtDb21taXNzaW9uc9IBDVNlZ21lbnRhdGlvbnPSARJDYXJy'
'aWVySW5mb3JtYXRpb27SAQhUaW1lWm9uZQ==');
@$core.Deprecated('Use wMSBookAppointmentNoReferenceRequestDescriptor instead')
const WMSBookAppointmentNoReferenceRequest$json = {
@@ -642,6 +648,7 @@ const WMSBookAppointmentNoReferenceRequest$json = {
{'1': 'TimeZone', '3': 11, '4': 1, '5': 9, '10': 'TimeZone'},
{'1': 'AppointmentID', '3': 12, '4': 1, '5': 9, '10': 'AppointmentID'},
{'1': 'Reason', '3': 13, '4': 1, '5': 9, '10': 'Reason'},
{'1': 'InstructionAck', '3': 14, '4': 1, '5': 8, '10': 'InstructionAck'},
],
'7': {},
};
@@ -661,9 +668,10 @@ final $typed_data.Uint8List wMSBookAppointmentNoReferenceRequestDescriptor = $co
'bGV4LmNvbSJd+kIOkgELCAEiB3IFYAHwAQFSBkVtYWlscxIcCglDYXJyaWVySUQYCSABKAlSCU'
'NhcnJpZXJJRBIgCgtDYXJyaWVyTmFtZRgKIAEoCVILQ2Fycmllck5hbWUSGgoIVGltZVpvbmUY'
'CyABKAlSCFRpbWVab25lEiQKDUFwcG9pbnRtZW50SUQYDCABKAlSDUFwcG9pbnRtZW50SUQSFg'
'oGUmVhc29uGA0gASgJUgZSZWFzb246aZJBZgpk0gEGSGVhZGVy0gEPQXBwb2ludG1lbnRUeXBl'
'0gEJUHJvamVjdElE0gEKUXVhbnRpdGllc9IBDVNlZ21lbnRhdGlvbnPSARJDYXJyaWVySW5mb3'
'JtYXRpb27SAQhUaW1lWm9uZQ==');
'oGUmVhc29uGA0gASgJUgZSZWFzb24SJgoOSW5zdHJ1Y3Rpb25BY2sYDiABKAhSDkluc3RydWN0'
'aW9uQWNrOmmSQWYKZNIBBkhlYWRlctIBD0FwcG9pbnRtZW50VHlwZdIBCVByb2plY3RJRNIBCl'
'F1YW50aXRpZXPSAQ1TZWdtZW50YXRpb25z0gESQ2FycmllckluZm9ybWF0aW9u0gEIVGltZVpv'
'bmU=');
@$core.Deprecated('Use bookAppointmentResponseDescriptor instead')
const BookAppointmentResponse$json = {

View File

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