From ae5dbe7a55b03a983236bca53c83d8bf85ccb271 Mon Sep 17 00:00:00 2001 From: ci core model Date: Wed, 17 Dec 2025 08:35:22 +0000 Subject: [PATCH] Latest generation --- CHANGELOG.md | 2 +- lib/actorAction.pb.dart | 12 ++++++++++++ lib/actorAction.pbjson.dart | 5 +++-- lib/site.pb.dart | 25 +++++++++++++++++++++++++ lib/site.pbjson.dart | 7 +++++-- pubspec.yaml | 2 +- 6 files changed, 47 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 292cb78..fdd1b05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ # CHANGELOG -Lib version: 1.12.0-SNAPSHOT-251216104932 +Lib version: 1.12.0-SNAPSHOT-251217083455 diff --git a/lib/actorAction.pb.dart b/lib/actorAction.pb.dart index f20f1d1..c0c87eb 100644 --- a/lib/actorAction.pb.dart +++ b/lib/actorAction.pb.dart @@ -183,11 +183,13 @@ class ActorSetSiteAliasPayload extends $pb.GeneratedMessage { $0.SiteAlias? siteAlias, $core.bool? isSlotBookingEnabled, $2.ActorAuthorisation? appointmentConstraints, + $core.String? actorName, }) { final result = create(); if (siteAlias != null) result.siteAlias = siteAlias; if (isSlotBookingEnabled != null) result.isSlotBookingEnabled = isSlotBookingEnabled; if (appointmentConstraints != null) result.appointmentConstraints = appointmentConstraints; + if (actorName != null) result.actorName = actorName; return result; } @@ -200,6 +202,7 @@ class ActorSetSiteAliasPayload extends $pb.GeneratedMessage { ..aOM<$0.SiteAlias>(1, _omitFieldNames ? '' : 'SiteAlias', protoName: 'SiteAlias', subBuilder: $0.SiteAlias.create) ..aOB(2, _omitFieldNames ? '' : 'IsSlotBookingEnabled', protoName: 'IsSlotBookingEnabled') ..aOM<$2.ActorAuthorisation>(3, _omitFieldNames ? '' : 'AppointmentConstraints', protoName: 'AppointmentConstraints', subBuilder: $2.ActorAuthorisation.create) + ..aOS(4, _omitFieldNames ? '' : 'ActorName', protoName: 'ActorName') ..hasRequiredFields = false ; @@ -250,6 +253,15 @@ class ActorSetSiteAliasPayload extends $pb.GeneratedMessage { void clearAppointmentConstraints() => $_clearField(3); @$pb.TagNumber(3) $2.ActorAuthorisation ensureAppointmentConstraints() => $_ensure(2); + + @$pb.TagNumber(4) + $core.String get actorName => $_getSZ(3); + @$pb.TagNumber(4) + set actorName($core.String value) => $_setString(3, value); + @$pb.TagNumber(4) + $core.bool hasActorName() => $_has(3); + @$pb.TagNumber(4) + void clearActorName() => $_clearField(4); } class ActorSetSiteAlias extends $pb.GeneratedMessage { diff --git a/lib/actorAction.pbjson.dart b/lib/actorAction.pbjson.dart index 134e9a8..857ada6 100644 --- a/lib/actorAction.pbjson.dart +++ b/lib/actorAction.pbjson.dart @@ -60,6 +60,7 @@ const ActorSetSiteAliasPayload$json = { {'1': 'SiteAlias', '3': 1, '4': 1, '5': 11, '6': '.api.SiteAlias', '10': 'SiteAlias'}, {'1': 'IsSlotBookingEnabled', '3': 2, '4': 1, '5': 8, '10': 'IsSlotBookingEnabled'}, {'1': 'AppointmentConstraints', '3': 3, '4': 1, '5': 11, '6': '.api.ActorAuthorisation', '10': 'AppointmentConstraints'}, + {'1': 'ActorName', '3': 4, '4': 1, '5': 9, '10': 'ActorName'}, ], '7': {}, }; @@ -69,8 +70,8 @@ final $typed_data.Uint8List actorSetSiteAliasPayloadDescriptor = $convert.base64 'ChhBY3RvclNldFNpdGVBbGlhc1BheWxvYWQSLAoJU2l0ZUFsaWFzGAEgASgLMg4uYXBpLlNpdG' 'VBbGlhc1IJU2l0ZUFsaWFzEjIKFElzU2xvdEJvb2tpbmdFbmFibGVkGAIgASgIUhRJc1Nsb3RC' 'b29raW5nRW5hYmxlZBJPChZBcHBvaW50bWVudENvbnN0cmFpbnRzGAMgASgLMhcuYXBpLkFjdG' - '9yQXV0aG9yaXNhdGlvblIWQXBwb2ludG1lbnRDb25zdHJhaW50czoforsYB0NvbW1hbmSouxgB' - 'srsYDFNldFNpdGVBbGlhcw=='); + '9yQXV0aG9yaXNhdGlvblIWQXBwb2ludG1lbnRDb25zdHJhaW50cxIcCglBY3Rvck5hbWUYBCAB' + 'KAlSCUFjdG9yTmFtZToforsYB0NvbW1hbmSouxgBsrsYDFNldFNpdGVBbGlhcw=='); @$core.Deprecated('Use actorSetSiteAliasDescriptor instead') const ActorSetSiteAlias$json = { diff --git a/lib/site.pb.dart b/lib/site.pb.dart index 11b26cd..de72d92 100644 --- a/lib/site.pb.dart +++ b/lib/site.pb.dart @@ -1999,6 +1999,7 @@ class SiteActor extends $pb.GeneratedMessage { $2.AppointmentType? type, $2.CommandIdentifierEntry? loadingCommandIdentifierEntry, $2.CommandIdentifierEntry? unLoadingCommandIdentifierEntry, + $core.String? actorName, }) { final result = create(); if (projectID != null) result.projectID = projectID; @@ -2007,6 +2008,7 @@ class SiteActor extends $pb.GeneratedMessage { if (type != null) result.type = type; if (loadingCommandIdentifierEntry != null) result.loadingCommandIdentifierEntry = loadingCommandIdentifierEntry; if (unLoadingCommandIdentifierEntry != null) result.unLoadingCommandIdentifierEntry = unLoadingCommandIdentifierEntry; + if (actorName != null) result.actorName = actorName; return result; } @@ -2022,6 +2024,7 @@ class SiteActor extends $pb.GeneratedMessage { ..e<$2.AppointmentType>(4, _omitFieldNames ? '' : 'Type', $pb.PbFieldType.OE, protoName: 'Type', defaultOrMaker: $2.AppointmentType.APPOINTMENT_TYPE_UNKNOWN, valueOf: $2.AppointmentType.valueOf, enumValues: $2.AppointmentType.values) ..e<$2.CommandIdentifierEntry>(5, _omitFieldNames ? '' : 'LoadingCommandIdentifierEntry', $pb.PbFieldType.OE, protoName: 'LoadingCommandIdentifierEntry', defaultOrMaker: $2.CommandIdentifierEntry.CommandIdentifierEntry_MandatoryExceptForAllowedUsers, valueOf: $2.CommandIdentifierEntry.valueOf, enumValues: $2.CommandIdentifierEntry.values) ..e<$2.CommandIdentifierEntry>(6, _omitFieldNames ? '' : 'UnLoadingCommandIdentifierEntry', $pb.PbFieldType.OE, protoName: 'UnLoadingCommandIdentifierEntry', defaultOrMaker: $2.CommandIdentifierEntry.CommandIdentifierEntry_MandatoryExceptForAllowedUsers, valueOf: $2.CommandIdentifierEntry.valueOf, enumValues: $2.CommandIdentifierEntry.values) + ..aOS(7, _omitFieldNames ? '' : 'ActorName', protoName: 'ActorName') ..hasRequiredFields = false ; @@ -2097,6 +2100,16 @@ class SiteActor extends $pb.GeneratedMessage { $core.bool hasUnLoadingCommandIdentifierEntry() => $_has(5); @$pb.TagNumber(6) void clearUnLoadingCommandIdentifierEntry() => $_clearField(6); + + /// Name of the actor + @$pb.TagNumber(7) + $core.String get actorName => $_getSZ(6); + @$pb.TagNumber(7) + set actorName($core.String value) => $_setString(6, value); + @$pb.TagNumber(7) + $core.bool hasActorName() => $_has(6); + @$pb.TagNumber(7) + void clearActorName() => $_clearField(7); } class GetBookingContextRequest extends $pb.GeneratedMessage { @@ -4759,10 +4772,12 @@ class SiteProjectAptTypeBookingActorsContext extends $pb.GeneratedMessage { factory SiteProjectAptTypeBookingActorsContext({ $2.CommandIdentifierEntry? commandIdentifierEntry, $core.String? actorID, + $core.String? actorName, }) { final result = create(); if (commandIdentifierEntry != null) result.commandIdentifierEntry = commandIdentifierEntry; if (actorID != null) result.actorID = actorID; + if (actorName != null) result.actorName = actorName; return result; } @@ -4774,6 +4789,7 @@ class SiteProjectAptTypeBookingActorsContext extends $pb.GeneratedMessage { static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SiteProjectAptTypeBookingActorsContext', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) ..e<$2.CommandIdentifierEntry>(1, _omitFieldNames ? '' : 'CommandIdentifierEntry', $pb.PbFieldType.OE, protoName: 'CommandIdentifierEntry', defaultOrMaker: $2.CommandIdentifierEntry.CommandIdentifierEntry_MandatoryExceptForAllowedUsers, valueOf: $2.CommandIdentifierEntry.valueOf, enumValues: $2.CommandIdentifierEntry.values) ..aOS(2, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID') + ..aOS(3, _omitFieldNames ? '' : 'ActorName', protoName: 'ActorName') ..hasRequiredFields = false ; @@ -4811,6 +4827,15 @@ class SiteProjectAptTypeBookingActorsContext extends $pb.GeneratedMessage { $core.bool hasActorID() => $_has(1); @$pb.TagNumber(2) void clearActorID() => $_clearField(2); + + @$pb.TagNumber(3) + $core.String get actorName => $_getSZ(2); + @$pb.TagNumber(3) + set actorName($core.String value) => $_setString(2, value); + @$pb.TagNumber(3) + $core.bool hasActorName() => $_has(2); + @$pb.TagNumber(3) + void clearActorName() => $_clearField(3); } class InitBookerProfileRequest extends $pb.GeneratedMessage { diff --git a/lib/site.pbjson.dart b/lib/site.pbjson.dart index 86c58e1..24ac815 100644 --- a/lib/site.pbjson.dart +++ b/lib/site.pbjson.dart @@ -529,6 +529,7 @@ const SiteActor$json = { {'1': 'Type', '3': 4, '4': 1, '5': 14, '6': '.api.AppointmentType', '8': {}, '10': 'Type'}, {'1': 'LoadingCommandIdentifierEntry', '3': 5, '4': 1, '5': 14, '6': '.api.CommandIdentifierEntry', '8': {}, '10': 'LoadingCommandIdentifierEntry'}, {'1': 'UnLoadingCommandIdentifierEntry', '3': 6, '4': 1, '5': 14, '6': '.api.CommandIdentifierEntry', '8': {}, '10': 'UnLoadingCommandIdentifierEntry'}, + {'1': 'ActorName', '3': 7, '4': 1, '5': 9, '10': 'ActorName'}, ], }; @@ -541,7 +542,7 @@ final $typed_data.Uint8List siteActorDescriptor = $convert.base64Decode( 'ZElkZW50aWZpZXJFbnRyeUII+kIFggECEAFSHUxvYWRpbmdDb21tYW5kSWRlbnRpZmllckVudH' 'J5Em8KH1VuTG9hZGluZ0NvbW1hbmRJZGVudGlmaWVyRW50cnkYBiABKA4yGy5hcGkuQ29tbWFu' 'ZElkZW50aWZpZXJFbnRyeUII+kIFggECEAFSH1VuTG9hZGluZ0NvbW1hbmRJZGVudGlmaWVyRW' - '50cnk='); + '50cnkSHAoJQWN0b3JOYW1lGAcgASgJUglBY3Rvck5hbWU='); @$core.Deprecated('Use getBookingContextRequestDescriptor instead') const GetBookingContextRequest$json = { @@ -1275,6 +1276,7 @@ const SiteProjectAptTypeBookingActorsContext$json = { '2': [ {'1': 'CommandIdentifierEntry', '3': 1, '4': 1, '5': 14, '6': '.api.CommandIdentifierEntry', '10': 'CommandIdentifierEntry'}, {'1': 'ActorID', '3': 2, '4': 1, '5': 9, '10': 'ActorID'}, + {'1': 'ActorName', '3': 3, '4': 1, '5': 9, '10': 'ActorName'}, ], }; @@ -1282,7 +1284,8 @@ const SiteProjectAptTypeBookingActorsContext$json = { final $typed_data.Uint8List siteProjectAptTypeBookingActorsContextDescriptor = $convert.base64Decode( 'CiZTaXRlUHJvamVjdEFwdFR5cGVCb29raW5nQWN0b3JzQ29udGV4dBJTChZDb21tYW5kSWRlbn' 'RpZmllckVudHJ5GAEgASgOMhsuYXBpLkNvbW1hbmRJZGVudGlmaWVyRW50cnlSFkNvbW1hbmRJ' - 'ZGVudGlmaWVyRW50cnkSGAoHQWN0b3JJRBgCIAEoCVIHQWN0b3JJRA=='); + 'ZGVudGlmaWVyRW50cnkSGAoHQWN0b3JJRBgCIAEoCVIHQWN0b3JJRBIcCglBY3Rvck5hbWUYAy' + 'ABKAlSCUFjdG9yTmFtZQ=='); @$core.Deprecated('Use initBookerProfileRequestDescriptor instead') const InitBookerProfileRequest$json = { diff --git a/pubspec.yaml b/pubspec.yaml index 8f9e927..b98f3e5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: dart_core_sdk description: dart libs from core model proto files -version: 1.12.0-SNAPSHOT-251216104932 +version: 1.12.0-SNAPSHOT-251217083455 homepage: '' publish_to: '' repository: ''