Latest generation

This commit is contained in:
ci core model
2026-06-22 09:38:52 +00:00
parent dc3d2c5055
commit 7b78cc093e
4 changed files with 50 additions and 37 deletions

View File

@@ -141,7 +141,7 @@ class Site extends $pb.GeneratedMessage {
@$pb.TagNumber(2)
void clearName() => $_clearField(2);
/// Identifier for the organisation associated with the site.
/// Identifier for the organisation associated with the site
@$pb.TagNumber(3)
$core.String get organisationID => $_getSZ(2);
@$pb.TagNumber(3)
@@ -192,27 +192,27 @@ class Site extends $pb.GeneratedMessage {
@$pb.TagNumber(8)
void clearFax() => $_clearField(8);
/// List of Segmentations that segment the logistic site.
/// List of Segmentations that segment the logistic site
@$pb.TagNumber(9)
$pb.PbList<$2.Segmentation> get segmentations => $_getList(8);
/// List of allowed project and the constraints (interval time in which they can book an appointment) they are associated with.
/// List of allowed project and the constraints (interval time in which they can book an appointment) they are associated with
@$pb.TagNumber(10)
$pb.PbList<$2.ProjectAuthorisation> get authorisations => $_getList(9);
/// List of containment units which will be used to estimate the needed time to load or unload.
/// List of containment units which will be used to estimate the needed time to load or unload
@$pb.TagNumber(11)
$pb.PbList<$2.Unit> get units => $_getList(10);
/// Definition of the opening rules. 2 opening rule definitions cannot overlap.
/// Definition of the opening rules. 2 opening rule definitions cannot overlap
@$pb.TagNumber(12)
$pb.PbList<$2.OpeningRule> get openingRules => $_getList(11);
/// Definition of the booking slot duration rules.
/// Definition of the booking slot duration rules
@$pb.TagNumber(13)
$pb.PbList<$2.DurationRule> get durationRules => $_getList(12);
/// Definition of the capacity rules. 2 capacity rule can overlap and the more constraining one will be applied.
/// Definition of the capacity rules. 2 capacity rule can overlap and the more constraining one will be applied
@$pb.TagNumber(14)
$pb.PbList<$2.CapacityRule> get capacityRules => $_getList(13);
@@ -274,7 +274,7 @@ class Site extends $pb.GeneratedMessage {
@$pb.TagNumber(23)
void clearPrefixAppointmentID() => $_clearField(23);
/// standAlone mode configuration
/// Standalone mode configuration
@$pb.TagNumber(24)
StandAloneConf get standAloneConf => $_getN(21);
@$pb.TagNumber(24)
@@ -3041,22 +3041,24 @@ class GetBasicSettingsResponse extends $pb.GeneratedMessage {
$core.bool? active,
$1.Address? address,
$core.Iterable<$core.String>? phones,
$core.String? fax,
$core.Iterable<$core.String>? emails,
$core.String? iD,
$core.String? photoURI,
$core.String? prefixAppointmentID,
$core.bool? canSendSMS,
$core.bool? isStandalone,
}) {
final result = create();
if (name != null) result.name = name;
if (active != null) result.active = active;
if (address != null) result.address = address;
if (phones != null) result.phones.addAll(phones);
if (fax != null) result.fax = fax;
if (emails != null) result.emails.addAll(emails);
if (iD != null) result.iD = iD;
if (photoURI != null) result.photoURI = photoURI;
if (prefixAppointmentID != null) result.prefixAppointmentID = prefixAppointmentID;
if (canSendSMS != null) result.canSendSMS = canSendSMS;
if (isStandalone != null) result.isStandalone = isStandalone;
return result;
}
@@ -3070,11 +3072,12 @@ class GetBasicSettingsResponse extends $pb.GeneratedMessage {
..aOB(2, _omitFieldNames ? '' : 'Active', protoName: 'Active')
..aOM<$1.Address>(3, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $1.Address.create)
..pPS(4, _omitFieldNames ? '' : 'Phones', protoName: 'Phones')
..aOS(5, _omitFieldNames ? '' : 'Fax', protoName: 'Fax')
..pPS(6, _omitFieldNames ? '' : 'Emails', protoName: 'Emails')
..aOS(7, _omitFieldNames ? '' : 'ID', protoName: 'ID')
..aOS(8, _omitFieldNames ? '' : 'PhotoURI', protoName: 'PhotoURI')
..aOS(9, _omitFieldNames ? '' : 'PrefixAppointmentID', protoName: 'PrefixAppointmentID')
..aOB(10, _omitFieldNames ? '' : 'CanSendSMS', protoName: 'CanSendSMS')
..aOB(11, _omitFieldNames ? '' : 'IsStandalone', protoName: 'IsStandalone')
..hasRequiredFields = false
;
@@ -3095,7 +3098,6 @@ class GetBasicSettingsResponse extends $pb.GeneratedMessage {
static GetBasicSettingsResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetBasicSettingsResponse>(create);
static GetBasicSettingsResponse? _defaultInstance;
/// Name of the Site
@$pb.TagNumber(1)
$core.String get name => $_getSZ(0);
@$pb.TagNumber(1)
@@ -3128,44 +3130,53 @@ class GetBasicSettingsResponse extends $pb.GeneratedMessage {
@$pb.TagNumber(4)
$pb.PbList<$core.String> get phones => $_getList(3);
@$pb.TagNumber(5)
$core.String get fax => $_getSZ(4);
@$pb.TagNumber(5)
set fax($core.String value) => $_setString(4, value);
@$pb.TagNumber(5)
$core.bool hasFax() => $_has(4);
@$pb.TagNumber(5)
void clearFax() => $_clearField(5);
@$pb.TagNumber(6)
$pb.PbList<$core.String> get emails => $_getList(5);
$pb.PbList<$core.String> get emails => $_getList(4);
@$pb.TagNumber(7)
$core.String get iD => $_getSZ(6);
$core.String get iD => $_getSZ(5);
@$pb.TagNumber(7)
set iD($core.String value) => $_setString(6, value);
set iD($core.String value) => $_setString(5, value);
@$pb.TagNumber(7)
$core.bool hasID() => $_has(6);
$core.bool hasID() => $_has(5);
@$pb.TagNumber(7)
void clearID() => $_clearField(7);
@$pb.TagNumber(8)
$core.String get photoURI => $_getSZ(7);
$core.String get photoURI => $_getSZ(6);
@$pb.TagNumber(8)
set photoURI($core.String value) => $_setString(7, value);
set photoURI($core.String value) => $_setString(6, value);
@$pb.TagNumber(8)
$core.bool hasPhotoURI() => $_has(7);
$core.bool hasPhotoURI() => $_has(6);
@$pb.TagNumber(8)
void clearPhotoURI() => $_clearField(8);
@$pb.TagNumber(9)
$core.String get prefixAppointmentID => $_getSZ(8);
$core.String get prefixAppointmentID => $_getSZ(7);
@$pb.TagNumber(9)
set prefixAppointmentID($core.String value) => $_setString(8, value);
set prefixAppointmentID($core.String value) => $_setString(7, value);
@$pb.TagNumber(9)
$core.bool hasPrefixAppointmentID() => $_has(8);
$core.bool hasPrefixAppointmentID() => $_has(7);
@$pb.TagNumber(9)
void clearPrefixAppointmentID() => $_clearField(9);
@$pb.TagNumber(10)
$core.bool get canSendSMS => $_getBF(8);
@$pb.TagNumber(10)
set canSendSMS($core.bool value) => $_setBool(8, value);
@$pb.TagNumber(10)
$core.bool hasCanSendSMS() => $_has(8);
@$pb.TagNumber(10)
void clearCanSendSMS() => $_clearField(10);
@$pb.TagNumber(11)
$core.bool get isStandalone => $_getBF(9);
@$pb.TagNumber(11)
set isStandalone($core.bool value) => $_setBool(9, value);
@$pb.TagNumber(11)
$core.bool hasIsStandalone() => $_has(9);
@$pb.TagNumber(11)
void clearIsStandalone() => $_clearField(11);
}
class GetUnitsRequest extends $pb.GeneratedMessage {

View File

@@ -824,11 +824,12 @@ const GetBasicSettingsResponse$json = {
{'1': 'Active', '3': 2, '4': 1, '5': 8, '10': 'Active'},
{'1': 'Address', '3': 3, '4': 1, '5': 11, '6': '.api.Address', '10': 'Address'},
{'1': 'Phones', '3': 4, '4': 3, '5': 9, '10': 'Phones'},
{'1': 'Fax', '3': 5, '4': 1, '5': 9, '10': 'Fax'},
{'1': 'Emails', '3': 6, '4': 3, '5': 9, '10': 'Emails'},
{'1': 'ID', '3': 7, '4': 1, '5': 9, '10': 'ID'},
{'1': 'PhotoURI', '3': 8, '4': 1, '5': 9, '10': 'PhotoURI'},
{'1': 'PrefixAppointmentID', '3': 9, '4': 1, '5': 9, '10': 'PrefixAppointmentID'},
{'1': 'CanSendSMS', '3': 10, '4': 1, '5': 8, '10': 'CanSendSMS'},
{'1': 'IsStandalone', '3': 11, '4': 1, '5': 8, '10': 'IsStandalone'},
],
};
@@ -836,9 +837,10 @@ const GetBasicSettingsResponse$json = {
final $typed_data.Uint8List getBasicSettingsResponseDescriptor = $convert.base64Decode(
'ChhHZXRCYXNpY1NldHRpbmdzUmVzcG9uc2USEgoETmFtZRgBIAEoCVIETmFtZRIWCgZBY3Rpdm'
'UYAiABKAhSBkFjdGl2ZRImCgdBZGRyZXNzGAMgASgLMgwuYXBpLkFkZHJlc3NSB0FkZHJlc3MS'
'FgoGUGhvbmVzGAQgAygJUgZQaG9uZXMSEAoDRmF4GAUgASgJUgNGYXgSFgoGRW1haWxzGAYgAy'
'gJUgZFbWFpbHMSDgoCSUQYByABKAlSAklEEhoKCFBob3RvVVJJGAggASgJUghQaG90b1VSSRIw'
'ChNQcmVmaXhBcHBvaW50bWVudElEGAkgASgJUhNQcmVmaXhBcHBvaW50bWVudElE');
'FgoGUGhvbmVzGAQgAygJUgZQaG9uZXMSFgoGRW1haWxzGAYgAygJUgZFbWFpbHMSDgoCSUQYBy'
'ABKAlSAklEEhoKCFBob3RvVVJJGAggASgJUghQaG90b1VSSRIwChNQcmVmaXhBcHBvaW50bWVu'
'dElEGAkgASgJUhNQcmVmaXhBcHBvaW50bWVudElEEh4KCkNhblNlbmRTTVMYCiABKAhSCkNhbl'
'NlbmRTTVMSIgoMSXNTdGFuZGFsb25lGAsgASgIUgxJc1N0YW5kYWxvbmU=');
@$core.Deprecated('Use getUnitsRequestDescriptor instead')
const GetUnitsRequest$json = {