Latest generation

This commit is contained in:
ci core model
2025-12-04 15:26:28 +00:00
parent 74e9f8bf34
commit 91a6130bf3
4 changed files with 116 additions and 10 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG
Lib version: 1.12.0-SNAPSHOT-251204092455
Lib version: 1.12.0-SNAPSHOT-251204152537

View File

@@ -1997,12 +1997,16 @@ class SiteActor extends $pb.GeneratedMessage {
$core.String? actorID,
$core.String? siteID,
$2.AppointmentType? type,
$2.CommandIdentifierEntry? loadingCommandIdentifierEntry,
$2.CommandIdentifierEntry? unLoadingCommandIdentifierEntry,
}) {
final result = create();
if (projectID != null) result.projectID = projectID;
if (actorID != null) result.actorID = actorID;
if (siteID != null) result.siteID = siteID;
if (type != null) result.type = type;
if (loadingCommandIdentifierEntry != null) result.loadingCommandIdentifierEntry = loadingCommandIdentifierEntry;
if (unLoadingCommandIdentifierEntry != null) result.unLoadingCommandIdentifierEntry = unLoadingCommandIdentifierEntry;
return result;
}
@@ -2016,6 +2020,8 @@ class SiteActor extends $pb.GeneratedMessage {
..aOS(2, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
..aOS(3, _omitFieldNames ? '' : 'SiteID', protoName: 'SiteID')
..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)
..hasRequiredFields = false
;
@@ -2071,6 +2077,26 @@ class SiteActor extends $pb.GeneratedMessage {
$core.bool hasType() => $_has(3);
@$pb.TagNumber(4)
void clearType() => $_clearField(4);
/// CommandIdentifierEntry
@$pb.TagNumber(5)
$2.CommandIdentifierEntry get loadingCommandIdentifierEntry => $_getN(4);
@$pb.TagNumber(5)
set loadingCommandIdentifierEntry($2.CommandIdentifierEntry value) => $_setField(5, value);
@$pb.TagNumber(5)
$core.bool hasLoadingCommandIdentifierEntry() => $_has(4);
@$pb.TagNumber(5)
void clearLoadingCommandIdentifierEntry() => $_clearField(5);
/// CommandIdentifierEntry
@$pb.TagNumber(6)
$2.CommandIdentifierEntry get unLoadingCommandIdentifierEntry => $_getN(5);
@$pb.TagNumber(6)
set unLoadingCommandIdentifierEntry($2.CommandIdentifierEntry value) => $_setField(6, value);
@$pb.TagNumber(6)
$core.bool hasUnLoadingCommandIdentifierEntry() => $_has(5);
@$pb.TagNumber(6)
void clearUnLoadingCommandIdentifierEntry() => $_clearField(6);
}
class GetBookingContextRequest extends $pb.GeneratedMessage {
@@ -4459,11 +4485,11 @@ class SiteProjectBookingContext extends $pb.GeneratedMessage {
class SiteProjectAptTypeBookingContext extends $pb.GeneratedMessage {
factory SiteProjectAptTypeBookingContext({
$2.AppointmentType? appointmentType,
$core.Iterable<$core.String>? actorIDs,
$core.Iterable<SiteProjectAptTypeBookingActorsContext>? actors,
}) {
final result = create();
if (appointmentType != null) result.appointmentType = appointmentType;
if (actorIDs != null) result.actorIDs.addAll(actorIDs);
if (actors != null) result.actors.addAll(actors);
return result;
}
@@ -4474,7 +4500,7 @@ class SiteProjectAptTypeBookingContext extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SiteProjectAptTypeBookingContext', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..e<$2.AppointmentType>(1, _omitFieldNames ? '' : 'AppointmentType', $pb.PbFieldType.OE, protoName: 'AppointmentType', defaultOrMaker: $2.AppointmentType.APPOINTMENT_TYPE_UNKNOWN, valueOf: $2.AppointmentType.valueOf, enumValues: $2.AppointmentType.values)
..pPS(2, _omitFieldNames ? '' : 'ActorIDs', protoName: 'ActorIDs')
..pc<SiteProjectAptTypeBookingActorsContext>(2, _omitFieldNames ? '' : 'Actors', $pb.PbFieldType.PM, protoName: 'Actors', subBuilder: SiteProjectAptTypeBookingActorsContext.create)
..hasRequiredFields = false
;
@@ -4505,7 +4531,65 @@ class SiteProjectAptTypeBookingContext extends $pb.GeneratedMessage {
void clearAppointmentType() => $_clearField(1);
@$pb.TagNumber(2)
$pb.PbList<$core.String> get actorIDs => $_getList(1);
$pb.PbList<SiteProjectAptTypeBookingActorsContext> get actors => $_getList(1);
}
class SiteProjectAptTypeBookingActorsContext extends $pb.GeneratedMessage {
factory SiteProjectAptTypeBookingActorsContext({
$2.CommandIdentifierEntry? commandIdentifierEntry,
$core.String? actorIDs,
}) {
final result = create();
if (commandIdentifierEntry != null) result.commandIdentifierEntry = commandIdentifierEntry;
if (actorIDs != null) result.actorIDs = actorIDs;
return result;
}
SiteProjectAptTypeBookingActorsContext._();
factory SiteProjectAptTypeBookingActorsContext.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory SiteProjectAptTypeBookingActorsContext.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
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 ? '' : 'ActorIDs', protoName: 'ActorIDs')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
SiteProjectAptTypeBookingActorsContext clone() => SiteProjectAptTypeBookingActorsContext()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
SiteProjectAptTypeBookingActorsContext copyWith(void Function(SiteProjectAptTypeBookingActorsContext) updates) => super.copyWith((message) => updates(message as SiteProjectAptTypeBookingActorsContext)) as SiteProjectAptTypeBookingActorsContext;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static SiteProjectAptTypeBookingActorsContext create() => SiteProjectAptTypeBookingActorsContext._();
@$core.override
SiteProjectAptTypeBookingActorsContext createEmptyInstance() => create();
static $pb.PbList<SiteProjectAptTypeBookingActorsContext> createRepeated() => $pb.PbList<SiteProjectAptTypeBookingActorsContext>();
@$core.pragma('dart2js:noInline')
static SiteProjectAptTypeBookingActorsContext getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<SiteProjectAptTypeBookingActorsContext>(create);
static SiteProjectAptTypeBookingActorsContext? _defaultInstance;
@$pb.TagNumber(1)
$2.CommandIdentifierEntry get commandIdentifierEntry => $_getN(0);
@$pb.TagNumber(1)
set commandIdentifierEntry($2.CommandIdentifierEntry value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasCommandIdentifierEntry() => $_has(0);
@$pb.TagNumber(1)
void clearCommandIdentifierEntry() => $_clearField(1);
@$pb.TagNumber(2)
$core.String get actorIDs => $_getSZ(1);
@$pb.TagNumber(2)
set actorIDs($core.String value) => $_setString(1, value);
@$pb.TagNumber(2)
$core.bool hasActorIDs() => $_has(1);
@$pb.TagNumber(2)
void clearActorIDs() => $_clearField(2);
}
class InitBookerProfileRequest extends $pb.GeneratedMessage {

View File

@@ -527,6 +527,8 @@ const SiteActor$json = {
{'1': 'ActorID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ActorID'},
{'1': 'SiteID', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'SiteID'},
{'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'},
],
};
@@ -535,7 +537,11 @@ final $typed_data.Uint8List siteActorDescriptor = $convert.base64Decode(
'CglTaXRlQWN0b3ISJQoJUHJvamVjdElEGAEgASgJQgf6QgRyAhABUglQcm9qZWN0SUQSIQoHQW'
'N0b3JJRBgCIAEoCUIH+kIEcgIQAVIHQWN0b3JJRBIfCgZTaXRlSUQYAyABKAlCB/pCBHICEAFS'
'BlNpdGVJRBIyCgRUeXBlGAQgASgOMhQuYXBpLkFwcG9pbnRtZW50VHlwZUII+kIFggECEAFSBF'
'R5cGU=');
'R5cGUSawodTG9hZGluZ0NvbW1hbmRJZGVudGlmaWVyRW50cnkYBSABKA4yGy5hcGkuQ29tbWFu'
'ZElkZW50aWZpZXJFbnRyeUII+kIFggECEAFSHUxvYWRpbmdDb21tYW5kSWRlbnRpZmllckVudH'
'J5Em8KH1VuTG9hZGluZ0NvbW1hbmRJZGVudGlmaWVyRW50cnkYBiABKA4yGy5hcGkuQ29tbWFu'
'ZElkZW50aWZpZXJFbnRyeUII+kIFggECEAFSH1VuTG9hZGluZ0NvbW1hbmRJZGVudGlmaWVyRW'
'50cnk=');
@$core.Deprecated('Use getBookingContextRequestDescriptor instead')
const GetBookingContextRequest$json = {
@@ -1188,15 +1194,31 @@ const SiteProjectAptTypeBookingContext$json = {
'1': 'SiteProjectAptTypeBookingContext',
'2': [
{'1': 'AppointmentType', '3': 1, '4': 1, '5': 14, '6': '.api.AppointmentType', '10': 'AppointmentType'},
{'1': 'ActorIDs', '3': 2, '4': 3, '5': 9, '10': 'ActorIDs'},
{'1': 'Actors', '3': 2, '4': 3, '5': 11, '6': '.api.SiteProjectAptTypeBookingActorsContext', '10': 'Actors'},
],
};
/// Descriptor for `SiteProjectAptTypeBookingContext`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List siteProjectAptTypeBookingContextDescriptor = $convert.base64Decode(
'CiBTaXRlUHJvamVjdEFwdFR5cGVCb29raW5nQ29udGV4dBI+Cg9BcHBvaW50bWVudFR5cGUYAS'
'ABKA4yFC5hcGkuQXBwb2ludG1lbnRUeXBlUg9BcHBvaW50bWVudFR5cGUSGgoIQWN0b3JJRHMY'
'AiADKAlSCEFjdG9ySURz');
'ABKA4yFC5hcGkuQXBwb2ludG1lbnRUeXBlUg9BcHBvaW50bWVudFR5cGUSQwoGQWN0b3JzGAIg'
'AygLMisuYXBpLlNpdGVQcm9qZWN0QXB0VHlwZUJvb2tpbmdBY3RvcnNDb250ZXh0UgZBY3Rvcn'
'M=');
@$core.Deprecated('Use siteProjectAptTypeBookingActorsContextDescriptor instead')
const SiteProjectAptTypeBookingActorsContext$json = {
'1': 'SiteProjectAptTypeBookingActorsContext',
'2': [
{'1': 'CommandIdentifierEntry', '3': 1, '4': 1, '5': 14, '6': '.api.CommandIdentifierEntry', '10': 'CommandIdentifierEntry'},
{'1': 'ActorIDs', '3': 2, '4': 1, '5': 9, '10': 'ActorIDs'},
],
};
/// Descriptor for `SiteProjectAptTypeBookingActorsContext`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List siteProjectAptTypeBookingActorsContextDescriptor = $convert.base64Decode(
'CiZTaXRlUHJvamVjdEFwdFR5cGVCb29raW5nQWN0b3JzQ29udGV4dBJTChZDb21tYW5kSWRlbn'
'RpZmllckVudHJ5GAEgASgOMhsuYXBpLkNvbW1hbmRJZGVudGlmaWVyRW50cnlSFkNvbW1hbmRJ'
'ZGVudGlmaWVyRW50cnkSGgoIQWN0b3JJRHMYAiABKAlSCEFjdG9ySURz');
@$core.Deprecated('Use initBookerProfileRequestDescriptor instead')
const InitBookerProfileRequest$json = {

View File

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