From c6e7024d823f9f693ba979296b09fe3d641b2120 Mon Sep 17 00:00:00 2001 From: ci core model Date: Tue, 27 Jan 2026 15:24:39 +0000 Subject: [PATCH] Latest generation --- CHANGELOG.md | 2 +- lib/appointmentInput.pb.dart | 276 +++++++++++++++++++++++++++++++ lib/appointmentInput.pbgrpc.dart | 21 +++ lib/appointmentInput.pbjson.dart | 70 ++++++++ lib/slotbooking.pb.dart | 12 ++ lib/slotbooking.pbjson.dart | 3 +- pubspec.yaml | 2 +- 7 files changed, 383 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b1a8d1e0..e5809f89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ # CHANGELOG -Lib version: 1.13.0-SNAPSHOT-260126141455 +Lib version: 1.13.0-SNAPSHOT-260127152400 diff --git a/lib/appointmentInput.pb.dart b/lib/appointmentInput.pb.dart index ffe77e03..3aa35108 100644 --- a/lib/appointmentInput.pb.dart +++ b/lib/appointmentInput.pb.dart @@ -1253,6 +1253,282 @@ class AppointmentCommissionsUpdatedResponse extends $pb.GeneratedMessage { $2.EntityID ensureID() => $_ensure(1); } +/// Event Payload +class AppointmentReasonUpdatedPayload extends $pb.GeneratedMessage { + factory AppointmentReasonUpdatedPayload({ + $core.String? actorID, + $core.String? reason, + }) { + final result = create(); + if (actorID != null) result.actorID = actorID; + if (reason != null) result.reason = reason; + return result; + } + + AppointmentReasonUpdatedPayload._(); + + factory AppointmentReasonUpdatedPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); + factory AppointmentReasonUpdatedPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentReasonUpdatedPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) + ..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID') + ..aOS(4, _omitFieldNames ? '' : 'Reason', protoName: 'Reason') + ..hasRequiredFields = false + ; + + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + AppointmentReasonUpdatedPayload clone() => AppointmentReasonUpdatedPayload()..mergeFromMessage(this); + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + AppointmentReasonUpdatedPayload copyWith(void Function(AppointmentReasonUpdatedPayload) updates) => super.copyWith((message) => updates(message as AppointmentReasonUpdatedPayload)) as AppointmentReasonUpdatedPayload; + + @$core.override + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static AppointmentReasonUpdatedPayload create() => AppointmentReasonUpdatedPayload._(); + @$core.override + AppointmentReasonUpdatedPayload createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static AppointmentReasonUpdatedPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static AppointmentReasonUpdatedPayload? _defaultInstance; + + @$pb.TagNumber(1) + $core.String get actorID => $_getSZ(0); + @$pb.TagNumber(1) + set actorID($core.String value) => $_setString(0, value); + @$pb.TagNumber(1) + $core.bool hasActorID() => $_has(0); + @$pb.TagNumber(1) + void clearActorID() => $_clearField(1); + + @$pb.TagNumber(4) + $core.String get reason => $_getSZ(1); + @$pb.TagNumber(4) + set reason($core.String value) => $_setString(1, value); + @$pb.TagNumber(4) + $core.bool hasReason() => $_has(1); + @$pb.TagNumber(4) + void clearReason() => $_clearField(4); +} + +/// Event message +class AppointmentReasonUpdatedEvent extends $pb.GeneratedMessage { + factory AppointmentReasonUpdatedEvent({ + $2.EventHeader? header, + $2.EntityID? iD, + AppointmentReasonUpdatedPayload? payload, + }) { + final result = create(); + if (header != null) result.header = header; + if (iD != null) result.iD = iD; + if (payload != null) result.payload = payload; + return result; + } + + AppointmentReasonUpdatedEvent._(); + + factory AppointmentReasonUpdatedEvent.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); + factory AppointmentReasonUpdatedEvent.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentReasonUpdatedEvent', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) + ..aOM<$2.EventHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.EventHeader.create) + ..aOM<$2.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $2.EntityID.create) + ..aOM(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: AppointmentReasonUpdatedPayload.create) + ..hasRequiredFields = false + ; + + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + AppointmentReasonUpdatedEvent clone() => AppointmentReasonUpdatedEvent()..mergeFromMessage(this); + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + AppointmentReasonUpdatedEvent copyWith(void Function(AppointmentReasonUpdatedEvent) updates) => super.copyWith((message) => updates(message as AppointmentReasonUpdatedEvent)) as AppointmentReasonUpdatedEvent; + + @$core.override + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static AppointmentReasonUpdatedEvent create() => AppointmentReasonUpdatedEvent._(); + @$core.override + AppointmentReasonUpdatedEvent createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static AppointmentReasonUpdatedEvent getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static AppointmentReasonUpdatedEvent? _defaultInstance; + + @$pb.TagNumber(1) + $2.EventHeader get header => $_getN(0); + @$pb.TagNumber(1) + set header($2.EventHeader value) => $_setField(1, value); + @$pb.TagNumber(1) + $core.bool hasHeader() => $_has(0); + @$pb.TagNumber(1) + void clearHeader() => $_clearField(1); + @$pb.TagNumber(1) + $2.EventHeader 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) + AppointmentReasonUpdatedPayload get payload => $_getN(2); + @$pb.TagNumber(3) + set payload(AppointmentReasonUpdatedPayload value) => $_setField(3, value); + @$pb.TagNumber(3) + $core.bool hasPayload() => $_has(2); + @$pb.TagNumber(3) + void clearPayload() => $_clearField(3); + @$pb.TagNumber(3) + AppointmentReasonUpdatedPayload ensurePayload() => $_ensure(2); +} + +/// API Request +class AppointmentReasonUpdatedRequest extends $pb.GeneratedMessage { + factory AppointmentReasonUpdatedRequest({ + $2.RequestProjectHeader? header, + $2.EntityID? iD, + AppointmentReasonUpdatedPayload? payload, + }) { + final result = create(); + if (header != null) result.header = header; + if (iD != null) result.iD = iD; + if (payload != null) result.payload = payload; + return result; + } + + AppointmentReasonUpdatedRequest._(); + + factory AppointmentReasonUpdatedRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); + factory AppointmentReasonUpdatedRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentReasonUpdatedRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) + ..aOM<$2.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.RequestProjectHeader.create) + ..aOM<$2.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $2.EntityID.create) + ..aOM(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: AppointmentReasonUpdatedPayload.create) + ..hasRequiredFields = false + ; + + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + AppointmentReasonUpdatedRequest clone() => AppointmentReasonUpdatedRequest()..mergeFromMessage(this); + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + AppointmentReasonUpdatedRequest copyWith(void Function(AppointmentReasonUpdatedRequest) updates) => super.copyWith((message) => updates(message as AppointmentReasonUpdatedRequest)) as AppointmentReasonUpdatedRequest; + + @$core.override + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static AppointmentReasonUpdatedRequest create() => AppointmentReasonUpdatedRequest._(); + @$core.override + AppointmentReasonUpdatedRequest createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static AppointmentReasonUpdatedRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static AppointmentReasonUpdatedRequest? _defaultInstance; + + @$pb.TagNumber(1) + $2.RequestProjectHeader get header => $_getN(0); + @$pb.TagNumber(1) + set header($2.RequestProjectHeader value) => $_setField(1, value); + @$pb.TagNumber(1) + $core.bool hasHeader() => $_has(0); + @$pb.TagNumber(1) + void clearHeader() => $_clearField(1); + @$pb.TagNumber(1) + $2.RequestProjectHeader 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) + AppointmentReasonUpdatedPayload get payload => $_getN(2); + @$pb.TagNumber(3) + set payload(AppointmentReasonUpdatedPayload value) => $_setField(3, value); + @$pb.TagNumber(3) + $core.bool hasPayload() => $_has(2); + @$pb.TagNumber(3) + void clearPayload() => $_clearField(3); + @$pb.TagNumber(3) + AppointmentReasonUpdatedPayload ensurePayload() => $_ensure(2); +} + +/// API Response +class AppointmentReasonUpdatedResponse extends $pb.GeneratedMessage { + factory AppointmentReasonUpdatedResponse({ + $2.ResponseHeader? header, + $2.EntityID? iD, + }) { + final result = create(); + if (header != null) result.header = header; + if (iD != null) result.iD = iD; + return result; + } + + AppointmentReasonUpdatedResponse._(); + + factory AppointmentReasonUpdatedResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); + factory AppointmentReasonUpdatedResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentReasonUpdatedResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) + ..aOM<$2.ResponseHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.ResponseHeader.create) + ..aOM<$2.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $2.EntityID.create) + ..hasRequiredFields = false + ; + + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + AppointmentReasonUpdatedResponse clone() => AppointmentReasonUpdatedResponse()..mergeFromMessage(this); + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + AppointmentReasonUpdatedResponse copyWith(void Function(AppointmentReasonUpdatedResponse) updates) => super.copyWith((message) => updates(message as AppointmentReasonUpdatedResponse)) as AppointmentReasonUpdatedResponse; + + @$core.override + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static AppointmentReasonUpdatedResponse create() => AppointmentReasonUpdatedResponse._(); + @$core.override + AppointmentReasonUpdatedResponse createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static AppointmentReasonUpdatedResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static AppointmentReasonUpdatedResponse? _defaultInstance; + + @$pb.TagNumber(1) + $2.ResponseHeader get header => $_getN(0); + @$pb.TagNumber(1) + set header($2.ResponseHeader value) => $_setField(1, value); + @$pb.TagNumber(1) + $core.bool hasHeader() => $_has(0); + @$pb.TagNumber(1) + void clearHeader() => $_clearField(1); + @$pb.TagNumber(1) + $2.ResponseHeader 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); +} + class AppointmentAttachmentAddedPayload extends $pb.GeneratedMessage { factory AppointmentAttachmentAddedPayload({ $core.Iterable<$2.AttachmentSummary>? attachments, diff --git a/lib/appointmentInput.pbgrpc.dart b/lib/appointmentInput.pbgrpc.dart index 6faaf789..c18cd94c 100644 --- a/lib/appointmentInput.pbgrpc.dart +++ b/lib/appointmentInput.pbgrpc.dart @@ -50,6 +50,10 @@ class AppointmentInputAPIClient extends $grpc.Client { return $createUnaryCall(_$commissionsUpdated, request, options: options); } + $grpc.ResponseFuture<$0.AppointmentReasonUpdatedResponse> reasonUpdated($0.AppointmentReasonUpdatedRequest request, {$grpc.CallOptions? options,}) { + return $createUnaryCall(_$reasonUpdated, request, options: options); + } + $grpc.ResponseFuture<$0.AppointmentCarrierInformationUpdatedResponse> carrierInformationUpdated($0.AppointmentCarrierInformationUpdatedRequest request, {$grpc.CallOptions? options,}) { return $createUnaryCall(_$carrierInformationUpdated, request, options: options); } @@ -136,6 +140,10 @@ class AppointmentInputAPIClient extends $grpc.Client { '/api.AppointmentInputAPI/CommissionsUpdated', ($0.AppointmentCommissionsUpdatedRequest value) => value.writeToBuffer(), $0.AppointmentCommissionsUpdatedResponse.fromBuffer); + static final _$reasonUpdated = $grpc.ClientMethod<$0.AppointmentReasonUpdatedRequest, $0.AppointmentReasonUpdatedResponse>( + '/api.AppointmentInputAPI/ReasonUpdated', + ($0.AppointmentReasonUpdatedRequest value) => value.writeToBuffer(), + $0.AppointmentReasonUpdatedResponse.fromBuffer); static final _$carrierInformationUpdated = $grpc.ClientMethod<$0.AppointmentCarrierInformationUpdatedRequest, $0.AppointmentCarrierInformationUpdatedResponse>( '/api.AppointmentInputAPI/CarrierInformationUpdated', ($0.AppointmentCarrierInformationUpdatedRequest value) => value.writeToBuffer(), @@ -239,6 +247,13 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service { false, ($core.List<$core.int> value) => $0.AppointmentCommissionsUpdatedRequest.fromBuffer(value), ($0.AppointmentCommissionsUpdatedResponse value) => value.writeToBuffer())); + $addMethod($grpc.ServiceMethod<$0.AppointmentReasonUpdatedRequest, $0.AppointmentReasonUpdatedResponse>( + 'ReasonUpdated', + reasonUpdated_Pre, + false, + false, + ($core.List<$core.int> value) => $0.AppointmentReasonUpdatedRequest.fromBuffer(value), + ($0.AppointmentReasonUpdatedResponse value) => value.writeToBuffer())); $addMethod($grpc.ServiceMethod<$0.AppointmentCarrierInformationUpdatedRequest, $0.AppointmentCarrierInformationUpdatedResponse>( 'CarrierInformationUpdated', carrierInformationUpdated_Pre, @@ -384,6 +399,12 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service { $async.Future<$0.AppointmentCommissionsUpdatedResponse> commissionsUpdated($grpc.ServiceCall call, $0.AppointmentCommissionsUpdatedRequest request); + $async.Future<$0.AppointmentReasonUpdatedResponse> reasonUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentReasonUpdatedRequest> $request) async { + return reasonUpdated($call, await $request); + } + + $async.Future<$0.AppointmentReasonUpdatedResponse> reasonUpdated($grpc.ServiceCall call, $0.AppointmentReasonUpdatedRequest request); + $async.Future<$0.AppointmentCarrierInformationUpdatedResponse> carrierInformationUpdated_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCarrierInformationUpdatedRequest> $request) async { return carrierInformationUpdated($call, await $request); } diff --git a/lib/appointmentInput.pbjson.dart b/lib/appointmentInput.pbjson.dart index 19893225..764a5406 100644 --- a/lib/appointmentInput.pbjson.dart +++ b/lib/appointmentInput.pbjson.dart @@ -325,6 +325,76 @@ final $typed_data.Uint8List appointmentCommissionsUpdatedResponseDescriptor = $c 'ITLmFwaS5SZXNwb25zZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlE' 'UgJJRDoiorsYCFJlc3BvbnNlursYEkNvbW1pc3Npb25zVXBkYXRlZA=='); +@$core.Deprecated('Use appointmentReasonUpdatedPayloadDescriptor instead') +const AppointmentReasonUpdatedPayload$json = { + '1': 'AppointmentReasonUpdatedPayload', + '2': [ + {'1': 'ActorID', '3': 1, '4': 1, '5': 9, '10': 'ActorID'}, + {'1': 'Reason', '3': 4, '4': 1, '5': 9, '10': 'Reason'}, + ], + '7': {}, +}; + +/// Descriptor for `AppointmentReasonUpdatedPayload`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List appointmentReasonUpdatedPayloadDescriptor = $convert.base64Decode( + 'Ch9BcHBvaW50bWVudFJlYXNvblVwZGF0ZWRQYXlsb2FkEhgKB0FjdG9ySUQYASABKAlSB0FjdG' + '9ySUQSFgoGUmVhc29uGAQgASgJUgZSZWFzb246MpJBEQoPMg1FdmVudCBQYXlsb2FkorsYBUV2' + 'ZW50qLsYAbq7GA1SZWFzb25VcGRhdGVk'); + +@$core.Deprecated('Use appointmentReasonUpdatedEventDescriptor instead') +const AppointmentReasonUpdatedEvent$json = { + '1': 'AppointmentReasonUpdatedEvent', + '2': [ + {'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.EventHeader', '8': {}, '10': 'Header'}, + {'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'}, + {'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentReasonUpdatedPayload', '8': {}, '10': 'Payload'}, + ], + '7': {}, +}; + +/// Descriptor for `AppointmentReasonUpdatedEvent`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List appointmentReasonUpdatedEventDescriptor = $convert.base64Decode( + 'Ch1BcHBvaW50bWVudFJlYXNvblVwZGF0ZWRFdmVudBIyCgZIZWFkZXIYASABKAsyEC5hcGkuRX' + 'ZlbnRIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISJwoCSUQYAiABKAsyDS5hcGkuRW50aXR5SURC' + 'CPpCBYoBAhABUgJJRBJICgdQYXlsb2FkGAMgASgLMiQuYXBpLkFwcG9pbnRtZW50UmVhc29uVX' + 'BkYXRlZFBheWxvYWRCCPpCBYoBAhABUgdQYXlsb2FkOjeSQRoKGNIBBkhlYWRlctIBAklE0gEH' + 'UGF5bG9hZKK7GAVFdmVudLq7GA1SZWFzb25VcGRhdGVk'); + +@$core.Deprecated('Use appointmentReasonUpdatedRequestDescriptor instead') +const AppointmentReasonUpdatedRequest$json = { + '1': 'AppointmentReasonUpdatedRequest', + '2': [ + {'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'}, + {'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'}, + {'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentReasonUpdatedPayload', '8': {}, '10': 'Payload'}, + ], + '7': {}, +}; + +/// Descriptor for `AppointmentReasonUpdatedRequest`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List appointmentReasonUpdatedRequestDescriptor = $convert.base64Decode( + 'Ch9BcHBvaW50bWVudFJlYXNvblVwZGF0ZWRSZXF1ZXN0EjsKBkhlYWRlchgBIAEoCzIZLmFwaS' + '5SZXF1ZXN0UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFw' + 'aS5FbnRpdHlJREII+kIFigECEAFSAklEEkgKB1BheWxvYWQYAyABKAsyJC5hcGkuQXBwb2ludG' + '1lbnRSZWFzb25VcGRhdGVkUGF5bG9hZEII+kIFigECEAFSB1BheWxvYWQ6OZJBGgoY0gEGSGVh' + 'ZGVy0gECSUTSAQdQYXlsb2FkorsYB1JlcXVlc3S6uxgNUmVhc29uVXBkYXRlZA=='); + +@$core.Deprecated('Use appointmentReasonUpdatedResponseDescriptor instead') +const AppointmentReasonUpdatedResponse$json = { + '1': 'AppointmentReasonUpdatedResponse', + '2': [ + {'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResponseHeader', '10': 'Header'}, + {'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'}, + ], + '7': {}, +}; + +/// Descriptor for `AppointmentReasonUpdatedResponse`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List appointmentReasonUpdatedResponseDescriptor = $convert.base64Decode( + 'CiBBcHBvaW50bWVudFJlYXNvblVwZGF0ZWRSZXNwb25zZRIrCgZIZWFkZXIYASABKAsyEy5hcG' + 'kuUmVzcG9uc2VIZWFkZXJSBkhlYWRlchIdCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJRFICSUQ6' + 'HaK7GAhSZXNwb25zZbq7GA1SZWFzb25VcGRhdGVk'); + @$core.Deprecated('Use appointmentAttachmentAddedPayloadDescriptor instead') const AppointmentAttachmentAddedPayload$json = { '1': 'AppointmentAttachmentAddedPayload', diff --git a/lib/slotbooking.pb.dart b/lib/slotbooking.pb.dart index 90ae5201..788b15d8 100644 --- a/lib/slotbooking.pb.dart +++ b/lib/slotbooking.pb.dart @@ -1904,6 +1904,7 @@ class Booking extends $pb.GeneratedMessage { $core.String? appointmentKind, $core.bool? hasReference, $core.Iterable<$core.String>? emails, + $core.String? reason, }) { final result = create(); if (appointmentType != null) result.appointmentType = appointmentType; @@ -1913,6 +1914,7 @@ class Booking extends $pb.GeneratedMessage { if (appointmentKind != null) result.appointmentKind = appointmentKind; if (hasReference != null) result.hasReference = hasReference; if (emails != null) result.emails.addAll(emails); + if (reason != null) result.reason = reason; return result; } @@ -1929,6 +1931,7 @@ class Booking extends $pb.GeneratedMessage { ..aOS(5, _omitFieldNames ? '' : 'AppointmentKind', protoName: 'AppointmentKind') ..aOB(6, _omitFieldNames ? '' : 'HasReference', protoName: 'HasReference') ..pPS(7, _omitFieldNames ? '' : 'Emails', protoName: 'Emails') + ..aOS(8, _omitFieldNames ? '' : 'Reason', protoName: 'Reason') ..hasRequiredFields = false ; @@ -1987,6 +1990,15 @@ class Booking extends $pb.GeneratedMessage { @$pb.TagNumber(7) $pb.PbList<$core.String> get emails => $_getList(6); + + @$pb.TagNumber(8) + $core.String get reason => $_getSZ(7); + @$pb.TagNumber(8) + set reason($core.String value) => $_setString(7, value); + @$pb.TagNumber(8) + $core.bool hasReason() => $_has(7); + @$pb.TagNumber(8) + void clearReason() => $_clearField(8); } class SlotGroup extends $pb.GeneratedMessage { diff --git a/lib/slotbooking.pbjson.dart b/lib/slotbooking.pbjson.dart index b1a92813..ae007c22 100644 --- a/lib/slotbooking.pbjson.dart +++ b/lib/slotbooking.pbjson.dart @@ -547,6 +547,7 @@ const Booking$json = { {'1': 'AppointmentKind', '3': 5, '4': 1, '5': 9, '10': 'AppointmentKind'}, {'1': 'HasReference', '3': 6, '4': 1, '5': 8, '10': 'HasReference'}, {'1': 'Emails', '3': 7, '4': 3, '5': 9, '10': 'Emails'}, + {'1': 'Reason', '3': 8, '4': 1, '5': 9, '10': 'Reason'}, ], }; @@ -558,7 +559,7 @@ final $typed_data.Uint8List bookingDescriptor = $convert.base64Decode( '1lbnRhdGlvblNlbGVjdGlvblIWU2VnbWVudGF0aW9uU2VsZWN0aW9ucxIfCgVTbG90cxgEIAMo' 'CzIJLmFwaS5TbG90UgVTbG90cxIoCg9BcHBvaW50bWVudEtpbmQYBSABKAlSD0FwcG9pbnRtZW' '50S2luZBIiCgxIYXNSZWZlcmVuY2UYBiABKAhSDEhhc1JlZmVyZW5jZRIWCgZFbWFpbHMYByAD' - 'KAlSBkVtYWlscw=='); + 'KAlSBkVtYWlscxIWCgZSZWFzb24YCCABKAlSBlJlYXNvbg=='); @$core.Deprecated('Use slotGroupDescriptor instead') const SlotGroup$json = { diff --git a/pubspec.yaml b/pubspec.yaml index 0a389d2f..be1d6593 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-260126141455 +version: 1.13.0-SNAPSHOT-260127152400 homepage: '' publish_to: '' repository: ''