Latest generation

This commit is contained in:
ci core model
2026-03-17 10:35:35 +00:00
parent 19fdf52d17
commit 17b57513f1
5 changed files with 196 additions and 4 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG
Lib version: 1.13.0-SNAPSHOT-260316163507
Lib version: 1.13.0-SNAPSHOT-260317103447

View File

@@ -645,6 +645,160 @@ class AppointmentMail extends $pb.GeneratedMessage {
AppointmentMailPayload ensurePreviousPayload() => $_ensure(4);
}
///
/// LockBooking : Push the appointment event to watchers
class AppointmentLockBookingPayload extends $pb.GeneratedMessage {
factory AppointmentLockBookingPayload({
$1.AppointmentStatusStruct? status,
}) {
final result = create();
if (status != null) result.status = status;
return result;
}
AppointmentLockBookingPayload._();
factory AppointmentLockBookingPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentLockBookingPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentLockBookingPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$1.AppointmentStatusStruct>(1, _omitFieldNames ? '' : 'Status', protoName: 'Status', subBuilder: $1.AppointmentStatusStruct.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentLockBookingPayload clone() => AppointmentLockBookingPayload()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentLockBookingPayload copyWith(void Function(AppointmentLockBookingPayload) updates) => super.copyWith((message) => updates(message as AppointmentLockBookingPayload)) as AppointmentLockBookingPayload;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentLockBookingPayload create() => AppointmentLockBookingPayload._();
@$core.override
AppointmentLockBookingPayload createEmptyInstance() => create();
static $pb.PbList<AppointmentLockBookingPayload> createRepeated() => $pb.PbList<AppointmentLockBookingPayload>();
@$core.pragma('dart2js:noInline')
static AppointmentLockBookingPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentLockBookingPayload>(create);
static AppointmentLockBookingPayload? _defaultInstance;
@$pb.TagNumber(1)
$1.AppointmentStatusStruct get status => $_getN(0);
@$pb.TagNumber(1)
set status($1.AppointmentStatusStruct value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasStatus() => $_has(0);
@$pb.TagNumber(1)
void clearStatus() => $_clearField(1);
@$pb.TagNumber(1)
$1.AppointmentStatusStruct ensureStatus() => $_ensure(0);
}
class AppointmentLockBooking extends $pb.GeneratedMessage {
factory AppointmentLockBooking({
$2.CommandHeader? header,
$2.EntityID? iD,
AppointmentLockBookingPayload? payload,
AppointmentLockBookingPayload? eventPayload,
AppointmentLockBookingPayload? previousPayload,
}) {
final result = create();
if (header != null) result.header = header;
if (iD != null) result.iD = iD;
if (payload != null) result.payload = payload;
if (eventPayload != null) result.eventPayload = eventPayload;
if (previousPayload != null) result.previousPayload = previousPayload;
return result;
}
AppointmentLockBooking._();
factory AppointmentLockBooking.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory AppointmentLockBooking.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentLockBooking', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$2.CommandHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.CommandHeader.create)
..aOM<$2.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $2.EntityID.create)
..aOM<AppointmentLockBookingPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: AppointmentLockBookingPayload.create)
..aOM<AppointmentLockBookingPayload>(4, _omitFieldNames ? '' : 'EventPayload', protoName: 'EventPayload', subBuilder: AppointmentLockBookingPayload.create)
..aOM<AppointmentLockBookingPayload>(5, _omitFieldNames ? '' : 'PreviousPayload', protoName: 'PreviousPayload', subBuilder: AppointmentLockBookingPayload.create)
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentLockBooking clone() => AppointmentLockBooking()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
AppointmentLockBooking copyWith(void Function(AppointmentLockBooking) updates) => super.copyWith((message) => updates(message as AppointmentLockBooking)) as AppointmentLockBooking;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static AppointmentLockBooking create() => AppointmentLockBooking._();
@$core.override
AppointmentLockBooking createEmptyInstance() => create();
static $pb.PbList<AppointmentLockBooking> createRepeated() => $pb.PbList<AppointmentLockBooking>();
@$core.pragma('dart2js:noInline')
static AppointmentLockBooking getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentLockBooking>(create);
static AppointmentLockBooking? _defaultInstance;
@$pb.TagNumber(1)
$2.CommandHeader get header => $_getN(0);
@$pb.TagNumber(1)
set header($2.CommandHeader value) => $_setField(1, value);
@$pb.TagNumber(1)
$core.bool hasHeader() => $_has(0);
@$pb.TagNumber(1)
void clearHeader() => $_clearField(1);
@$pb.TagNumber(1)
$2.CommandHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(2)
$2.EntityID get iD => $_getN(1);
@$pb.TagNumber(2)
set iD($2.EntityID value) => $_setField(2, value);
@$pb.TagNumber(2)
$core.bool hasID() => $_has(1);
@$pb.TagNumber(2)
void clearID() => $_clearField(2);
@$pb.TagNumber(2)
$2.EntityID ensureID() => $_ensure(1);
@$pb.TagNumber(3)
AppointmentLockBookingPayload get payload => $_getN(2);
@$pb.TagNumber(3)
set payload(AppointmentLockBookingPayload value) => $_setField(3, value);
@$pb.TagNumber(3)
$core.bool hasPayload() => $_has(2);
@$pb.TagNumber(3)
void clearPayload() => $_clearField(3);
@$pb.TagNumber(3)
AppointmentLockBookingPayload ensurePayload() => $_ensure(2);
@$pb.TagNumber(4)
AppointmentLockBookingPayload get eventPayload => $_getN(3);
@$pb.TagNumber(4)
set eventPayload(AppointmentLockBookingPayload value) => $_setField(4, value);
@$pb.TagNumber(4)
$core.bool hasEventPayload() => $_has(3);
@$pb.TagNumber(4)
void clearEventPayload() => $_clearField(4);
@$pb.TagNumber(4)
AppointmentLockBookingPayload ensureEventPayload() => $_ensure(3);
@$pb.TagNumber(5)
AppointmentLockBookingPayload get previousPayload => $_getN(4);
@$pb.TagNumber(5)
set previousPayload(AppointmentLockBookingPayload value) => $_setField(5, value);
@$pb.TagNumber(5)
$core.bool hasPreviousPayload() => $_has(4);
@$pb.TagNumber(5)
void clearPreviousPayload() => $_clearField(5);
@$pb.TagNumber(5)
AppointmentLockBookingPayload ensurePreviousPayload() => $_ensure(4);
}
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');

View File

@@ -144,3 +144,41 @@ final $typed_data.Uint8List appointmentMailDescriptor = $convert.base64Decode(
'F5bG9hZDpmorsYB0NvbW1hbmSyuxgETWFpbMK7GBRjb2xsYWIubm90aWYuQ3JlYXRlZOq7GDdD'
'cmVhdGVkLEVtYWlsc0FkZGVkLFNsb3RVcGRhdGVkLENhbmNlbGVkLEF0dGVuZGVlc0FkZGVk');
@$core.Deprecated('Use appointmentLockBookingPayloadDescriptor instead')
const AppointmentLockBookingPayload$json = {
'1': 'AppointmentLockBookingPayload',
'2': [
{'1': 'Status', '3': 1, '4': 1, '5': 11, '6': '.api.AppointmentStatusStruct', '10': 'Status'},
],
'7': {},
};
/// Descriptor for `AppointmentLockBookingPayload`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentLockBookingPayloadDescriptor = $convert.base64Decode(
'Ch1BcHBvaW50bWVudExvY2tCb29raW5nUGF5bG9hZBI0CgZTdGF0dXMYASABKAsyHC5hcGkuQX'
'Bwb2ludG1lbnRTdGF0dXNTdHJ1Y3RSBlN0YXR1czoeorsYB0NvbW1hbmSouxgBsrsYC0xvY2tC'
'b29raW5n');
@$core.Deprecated('Use appointmentLockBookingDescriptor instead')
const AppointmentLockBooking$json = {
'1': 'AppointmentLockBooking',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.CommandHeader', '10': 'Header'},
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentLockBookingPayload', '10': 'Payload'},
{'1': 'EventPayload', '3': 4, '4': 1, '5': 11, '6': '.api.AppointmentLockBookingPayload', '10': 'EventPayload'},
{'1': 'PreviousPayload', '3': 5, '4': 1, '5': 11, '6': '.api.AppointmentLockBookingPayload', '10': 'PreviousPayload'},
],
'7': {},
};
/// Descriptor for `AppointmentLockBooking`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List appointmentLockBookingDescriptor = $convert.base64Decode(
'ChZBcHBvaW50bWVudExvY2tCb29raW5nEioKBkhlYWRlchgBIAEoCzISLmFwaS5Db21tYW5kSG'
'VhZGVyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURSAklEEjwKB1BheWxvYWQY'
'AyABKAsyIi5hcGkuQXBwb2ludG1lbnRMb2NrQm9va2luZ1BheWxvYWRSB1BheWxvYWQSRgoMRX'
'ZlbnRQYXlsb2FkGAQgASgLMiIuYXBpLkFwcG9pbnRtZW50TG9ja0Jvb2tpbmdQYXlsb2FkUgxF'
'dmVudFBheWxvYWQSTAoPUHJldmlvdXNQYXlsb2FkGAUgASgLMiIuYXBpLkFwcG9pbnRtZW50TG'
'9ja0Jvb2tpbmdQYXlsb2FkUg9QcmV2aW91c1BheWxvYWQ6LaK7GAdDb21tYW5ksrsYC0xvY2tC'
'b29raW5n6rsYD0NhcnJpZXJEZXBhcnRlZA==');

View File

@@ -1242,8 +1242,8 @@ final $typed_data.Uint8List appointmentCarrierDepartedEventDescriptor = $convert
'Ch9BcHBvaW50bWVudENhcnJpZXJEZXBhcnRlZEV2ZW50EjIKBkhlYWRlchgBIAEoCzIQLmFwaS'
'5FdmVudEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJ'
'REII+kIFigECEAFSAklEEkoKB1BheWxvYWQYAyABKAsyJi5hcGkuQXBwb2ludG1lbnRDYXJyaW'
'VyRGVwYXJ0ZWRQYXlsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDpIkkEaChjSAQZIZWFkZXLSAQJJ'
'RNIBB1BheWxvYWSiuxgFRXZlbnS6uxgPQ2FycmllckRlcGFydGVkyrsYC2xvY2tCb29raW5n');
'VyRGVwYXJ0ZWRQYXlsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDo5kkEaChjSAQZIZWFkZXLSAQJJ'
'RNIBB1BheWxvYWSiuxgFRXZlbnS6uxgPQ2FycmllckRlcGFydGVk');
@$core.Deprecated('Use appointmentCarrierDepartedRequestDescriptor instead')
const AppointmentCarrierDepartedRequest$json = {

View File

@@ -1,6 +1,6 @@
name: dart_core_sdk
description: dart libs from core model proto files
version: 1.13.0-SNAPSHOT-260316163507
version: 1.13.0-SNAPSHOT-260317103447
homepage: ''
publish_to: ''
repository: ''