From 17b57513f1ff262643ff0c39b29923fc82252a56 Mon Sep 17 00:00:00 2001 From: ci core model Date: Tue, 17 Mar 2026 10:35:35 +0000 Subject: [PATCH] Latest generation --- CHANGELOG.md | 2 +- lib/appointmentAction.pb.dart | 154 ++++++++++++++++++++++++++++++ lib/appointmentAction.pbjson.dart | 38 ++++++++ lib/appointmentInput.pbjson.dart | 4 +- pubspec.yaml | 2 +- 5 files changed, 196 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed82d919..4d510a9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ # CHANGELOG -Lib version: 1.13.0-SNAPSHOT-260316163507 +Lib version: 1.13.0-SNAPSHOT-260317103447 diff --git a/lib/appointmentAction.pb.dart b/lib/appointmentAction.pb.dart index 54e60582..a8fc8873 100644 --- a/lib/appointmentAction.pb.dart +++ b/lib/appointmentAction.pb.dart @@ -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 createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static AppointmentLockBookingPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(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(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: AppointmentLockBookingPayload.create) + ..aOM(4, _omitFieldNames ? '' : 'EventPayload', protoName: 'EventPayload', subBuilder: AppointmentLockBookingPayload.create) + ..aOM(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 createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static AppointmentLockBooking getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(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'); diff --git a/lib/appointmentAction.pbjson.dart b/lib/appointmentAction.pbjson.dart index 73c71d20..34169f2c 100644 --- a/lib/appointmentAction.pbjson.dart +++ b/lib/appointmentAction.pbjson.dart @@ -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=='); + diff --git a/lib/appointmentInput.pbjson.dart b/lib/appointmentInput.pbjson.dart index 1b2fa621..5b92c838 100644 --- a/lib/appointmentInput.pbjson.dart +++ b/lib/appointmentInput.pbjson.dart @@ -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 = { diff --git a/pubspec.yaml b/pubspec.yaml index d3726743..ba516d7a 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.13.0-SNAPSHOT-260316163507 +version: 1.13.0-SNAPSHOT-260317103447 homepage: '' publish_to: '' repository: ''