diff --git a/CHANGELOG.md b/CHANGELOG.md index d35d6ce8..827134b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ # CHANGELOG -Lib version: 1.14.0-SNAPSHOT-260612144555 +Lib version: 1.14.0-SNAPSHOT-260615081042 diff --git a/lib/order.pb.dart b/lib/order.pb.dart index 8f83c03e..952e5197 100644 --- a/lib/order.pb.dart +++ b/lib/order.pb.dart @@ -50,6 +50,7 @@ class OrderPayload extends $pb.GeneratedMessage { $core.bool? anticipated, $core.Iterable<$0.AppointmentSummary>? appointments, $core.Iterable<$0.AppointmentSummary>? removedAppointments, + $core.bool? appointmentBookingDisabled, }) { final result = create(); if (creationDateTime != null) result.creationDateTime = creationDateTime; @@ -77,6 +78,7 @@ class OrderPayload extends $pb.GeneratedMessage { if (anticipated != null) result.anticipated = anticipated; if (appointments != null) result.appointments.addAll(appointments); if (removedAppointments != null) result.removedAppointments.addAll(removedAppointments); + if (appointmentBookingDisabled != null) result.appointmentBookingDisabled = appointmentBookingDisabled; return result; } @@ -111,6 +113,7 @@ class OrderPayload extends $pb.GeneratedMessage { ..aOB(24, _omitFieldNames ? '' : 'Anticipated', protoName: 'Anticipated') ..pc<$0.AppointmentSummary>(25, _omitFieldNames ? '' : 'Appointments', $pb.PbFieldType.PM, protoName: 'Appointments', subBuilder: $0.AppointmentSummary.create) ..pc<$0.AppointmentSummary>(26, _omitFieldNames ? '' : 'RemovedAppointments', $pb.PbFieldType.PM, protoName: 'RemovedAppointments', subBuilder: $0.AppointmentSummary.create) + ..aOB(27, _omitFieldNames ? '' : 'AppointmentBookingDisabled', protoName: 'AppointmentBookingDisabled') ..hasRequiredFields = false ; @@ -343,6 +346,15 @@ class OrderPayload extends $pb.GeneratedMessage { /// Appointment removed from the order @$pb.TagNumber(26) $pb.PbList<$0.AppointmentSummary> get removedAppointments => $_getList(24); + + @$pb.TagNumber(27) + $core.bool get appointmentBookingDisabled => $_getBF(25); + @$pb.TagNumber(27) + set appointmentBookingDisabled($core.bool value) => $_setBool(25, value); + @$pb.TagNumber(27) + $core.bool hasAppointmentBookingDisabled() => $_has(25); + @$pb.TagNumber(27) + void clearAppointmentBookingDisabled() => $_clearField(27); } /// Order entity diff --git a/lib/order.pbjson.dart b/lib/order.pbjson.dart index 3901cbff..b62f17b5 100644 --- a/lib/order.pbjson.dart +++ b/lib/order.pbjson.dart @@ -51,6 +51,7 @@ const OrderPayload$json = { {'1': 'Anticipated', '3': 24, '4': 1, '5': 8, '8': {}, '10': 'Anticipated'}, {'1': 'Appointments', '3': 25, '4': 3, '5': 11, '6': '.api.AppointmentSummary', '8': {}, '10': 'Appointments'}, {'1': 'RemovedAppointments', '3': 26, '4': 3, '5': 11, '6': '.api.AppointmentSummary', '8': {}, '10': 'RemovedAppointments'}, + {'1': 'AppointmentBookingDisabled', '3': 27, '4': 1, '5': 8, '8': {}, '10': 'AppointmentBookingDisabled'}, ], }; @@ -107,7 +108,9 @@ final $typed_data.Uint8List orderPayloadDescriptor = $convert.base64Decode( 'cyBhdHRhY2hlZCB0byB0aGUgb3JkZXLywRgSQXBwb2ludG1lbnRVcGRhdGVkUgxBcHBvaW50bW' 'VudHMSagoTUmVtb3ZlZEFwcG9pbnRtZW50cxgaIAMoCzIXLmFwaS5BcHBvaW50bWVudFN1bW1h' 'cnlCH5JBAkAB8sEYEkFwcG9pbnRtZW50VXBkYXRlZOjCGAFSE1JlbW92ZWRBcHBvaW50bWVudH' - 'M='); + 'MSfAoaQXBwb2ludG1lbnRCb29raW5nRGlzYWJsZWQYGyABKAhCPJJBOTI3SWYgdHJ1ZSwgYXBw' + 'b2ludG1lbnQgYm9va2luZyBpcyBkaXNhYmxlZCBmb3IgdGhpcyBvcmRlclIaQXBwb2ludG1lbn' + 'RCb29raW5nRGlzYWJsZWQ='); @$core.Deprecated('Use orderDescriptor instead') const Order$json = { diff --git a/lib/orderInput.pb.dart b/lib/orderInput.pb.dart index d6526f76..86600f87 100644 --- a/lib/orderInput.pb.dart +++ b/lib/orderInput.pb.dart @@ -8211,6 +8211,250 @@ class OrderAppointmentUpdatedResponse extends $pb.GeneratedMessage { $1.EntityID ensureID() => $_ensure(1); } +class OrderAppointmentBookingDisabledPayload extends $pb.GeneratedMessage { + factory OrderAppointmentBookingDisabledPayload() => create(); + + OrderAppointmentBookingDisabledPayload._(); + + factory OrderAppointmentBookingDisabledPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); + factory OrderAppointmentBookingDisabledPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'OrderAppointmentBookingDisabledPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) + ..hasRequiredFields = false + ; + + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + OrderAppointmentBookingDisabledPayload clone() => OrderAppointmentBookingDisabledPayload()..mergeFromMessage(this); + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + OrderAppointmentBookingDisabledPayload copyWith(void Function(OrderAppointmentBookingDisabledPayload) updates) => super.copyWith((message) => updates(message as OrderAppointmentBookingDisabledPayload)) as OrderAppointmentBookingDisabledPayload; + + @$core.override + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static OrderAppointmentBookingDisabledPayload create() => OrderAppointmentBookingDisabledPayload._(); + @$core.override + OrderAppointmentBookingDisabledPayload createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static OrderAppointmentBookingDisabledPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static OrderAppointmentBookingDisabledPayload? _defaultInstance; +} + +class OrderAppointmentBookingDisabledEvent extends $pb.GeneratedMessage { + factory OrderAppointmentBookingDisabledEvent({ + $1.EventHeader? header, + $1.EntityID? iD, + OrderAppointmentBookingDisabledPayload? payload, + }) { + final result = create(); + if (header != null) result.header = header; + if (iD != null) result.iD = iD; + if (payload != null) result.payload = payload; + return result; + } + + OrderAppointmentBookingDisabledEvent._(); + + factory OrderAppointmentBookingDisabledEvent.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); + factory OrderAppointmentBookingDisabledEvent.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'OrderAppointmentBookingDisabledEvent', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) + ..aOM<$1.EventHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.EventHeader.create) + ..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create) + ..aOM(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: OrderAppointmentBookingDisabledPayload.create) + ..hasRequiredFields = false + ; + + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + OrderAppointmentBookingDisabledEvent clone() => OrderAppointmentBookingDisabledEvent()..mergeFromMessage(this); + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + OrderAppointmentBookingDisabledEvent copyWith(void Function(OrderAppointmentBookingDisabledEvent) updates) => super.copyWith((message) => updates(message as OrderAppointmentBookingDisabledEvent)) as OrderAppointmentBookingDisabledEvent; + + @$core.override + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static OrderAppointmentBookingDisabledEvent create() => OrderAppointmentBookingDisabledEvent._(); + @$core.override + OrderAppointmentBookingDisabledEvent createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static OrderAppointmentBookingDisabledEvent getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static OrderAppointmentBookingDisabledEvent? _defaultInstance; + + @$pb.TagNumber(1) + $1.EventHeader get header => $_getN(0); + @$pb.TagNumber(1) + set header($1.EventHeader value) => $_setField(1, value); + @$pb.TagNumber(1) + $core.bool hasHeader() => $_has(0); + @$pb.TagNumber(1) + void clearHeader() => $_clearField(1); + @$pb.TagNumber(1) + $1.EventHeader ensureHeader() => $_ensure(0); + + @$pb.TagNumber(2) + $1.EntityID get iD => $_getN(1); + @$pb.TagNumber(2) + set iD($1.EntityID value) => $_setField(2, value); + @$pb.TagNumber(2) + $core.bool hasID() => $_has(1); + @$pb.TagNumber(2) + void clearID() => $_clearField(2); + @$pb.TagNumber(2) + $1.EntityID ensureID() => $_ensure(1); + + @$pb.TagNumber(3) + OrderAppointmentBookingDisabledPayload get payload => $_getN(2); + @$pb.TagNumber(3) + set payload(OrderAppointmentBookingDisabledPayload value) => $_setField(3, value); + @$pb.TagNumber(3) + $core.bool hasPayload() => $_has(2); + @$pb.TagNumber(3) + void clearPayload() => $_clearField(3); + @$pb.TagNumber(3) + OrderAppointmentBookingDisabledPayload ensurePayload() => $_ensure(2); +} + +class OrderAppointmentBookingDisabledRequest extends $pb.GeneratedMessage { + factory OrderAppointmentBookingDisabledRequest({ + $1.RequestProjectHeader? header, + $1.EntityID? iD, + OrderAppointmentBookingDisabledPayload? payload, + }) { + final result = create(); + if (header != null) result.header = header; + if (iD != null) result.iD = iD; + if (payload != null) result.payload = payload; + return result; + } + + OrderAppointmentBookingDisabledRequest._(); + + factory OrderAppointmentBookingDisabledRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); + factory OrderAppointmentBookingDisabledRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'OrderAppointmentBookingDisabledRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) + ..aOM<$1.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.RequestProjectHeader.create) + ..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create) + ..aOM(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: OrderAppointmentBookingDisabledPayload.create) + ..hasRequiredFields = false + ; + + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + OrderAppointmentBookingDisabledRequest clone() => OrderAppointmentBookingDisabledRequest()..mergeFromMessage(this); + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + OrderAppointmentBookingDisabledRequest copyWith(void Function(OrderAppointmentBookingDisabledRequest) updates) => super.copyWith((message) => updates(message as OrderAppointmentBookingDisabledRequest)) as OrderAppointmentBookingDisabledRequest; + + @$core.override + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static OrderAppointmentBookingDisabledRequest create() => OrderAppointmentBookingDisabledRequest._(); + @$core.override + OrderAppointmentBookingDisabledRequest createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static OrderAppointmentBookingDisabledRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static OrderAppointmentBookingDisabledRequest? _defaultInstance; + + @$pb.TagNumber(1) + $1.RequestProjectHeader get header => $_getN(0); + @$pb.TagNumber(1) + set header($1.RequestProjectHeader value) => $_setField(1, value); + @$pb.TagNumber(1) + $core.bool hasHeader() => $_has(0); + @$pb.TagNumber(1) + void clearHeader() => $_clearField(1); + @$pb.TagNumber(1) + $1.RequestProjectHeader ensureHeader() => $_ensure(0); + + @$pb.TagNumber(2) + $1.EntityID get iD => $_getN(1); + @$pb.TagNumber(2) + set iD($1.EntityID value) => $_setField(2, value); + @$pb.TagNumber(2) + $core.bool hasID() => $_has(1); + @$pb.TagNumber(2) + void clearID() => $_clearField(2); + @$pb.TagNumber(2) + $1.EntityID ensureID() => $_ensure(1); + + @$pb.TagNumber(3) + OrderAppointmentBookingDisabledPayload get payload => $_getN(2); + @$pb.TagNumber(3) + set payload(OrderAppointmentBookingDisabledPayload value) => $_setField(3, value); + @$pb.TagNumber(3) + $core.bool hasPayload() => $_has(2); + @$pb.TagNumber(3) + void clearPayload() => $_clearField(3); + @$pb.TagNumber(3) + OrderAppointmentBookingDisabledPayload ensurePayload() => $_ensure(2); +} + +class OrderAppointmentBookingDisabledResponse extends $pb.GeneratedMessage { + factory OrderAppointmentBookingDisabledResponse({ + $1.ResponseHeader? header, + $1.EntityID? iD, + }) { + final result = create(); + if (header != null) result.header = header; + if (iD != null) result.iD = iD; + return result; + } + + OrderAppointmentBookingDisabledResponse._(); + + factory OrderAppointmentBookingDisabledResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); + factory OrderAppointmentBookingDisabledResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'OrderAppointmentBookingDisabledResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) + ..aOM<$1.ResponseHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.ResponseHeader.create) + ..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create) + ..hasRequiredFields = false + ; + + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + OrderAppointmentBookingDisabledResponse clone() => OrderAppointmentBookingDisabledResponse()..mergeFromMessage(this); + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + OrderAppointmentBookingDisabledResponse copyWith(void Function(OrderAppointmentBookingDisabledResponse) updates) => super.copyWith((message) => updates(message as OrderAppointmentBookingDisabledResponse)) as OrderAppointmentBookingDisabledResponse; + + @$core.override + $pb.BuilderInfo get info_ => _i; + + @$core.pragma('dart2js:noInline') + static OrderAppointmentBookingDisabledResponse create() => OrderAppointmentBookingDisabledResponse._(); + @$core.override + OrderAppointmentBookingDisabledResponse createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); + @$core.pragma('dart2js:noInline') + static OrderAppointmentBookingDisabledResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static OrderAppointmentBookingDisabledResponse? _defaultInstance; + + @$pb.TagNumber(1) + $1.ResponseHeader get header => $_getN(0); + @$pb.TagNumber(1) + set header($1.ResponseHeader value) => $_setField(1, value); + @$pb.TagNumber(1) + $core.bool hasHeader() => $_has(0); + @$pb.TagNumber(1) + void clearHeader() => $_clearField(1); + @$pb.TagNumber(1) + $1.ResponseHeader ensureHeader() => $_ensure(0); + + @$pb.TagNumber(2) + $1.EntityID get iD => $_getN(1); + @$pb.TagNumber(2) + set iD($1.EntityID value) => $_setField(2, value); + @$pb.TagNumber(2) + $core.bool hasID() => $_has(1); + @$pb.TagNumber(2) + void clearID() => $_clearField(2); + @$pb.TagNumber(2) + $1.EntityID ensureID() => $_ensure(1); +} + 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/orderInput.pbgrpc.dart b/lib/orderInput.pbgrpc.dart index 4fa8d1c9..3d21a2a0 100644 --- a/lib/orderInput.pbgrpc.dart +++ b/lib/orderInput.pbgrpc.dart @@ -158,6 +158,10 @@ class OrderInputAPIClient extends $grpc.Client { return $createUnaryCall(_$appointmentUpdated, request, options: options); } + $grpc.ResponseFuture<$0.OrderAppointmentBookingDisabledResponse> appointmentBookingDisabled($0.OrderAppointmentBookingDisabledRequest request, {$grpc.CallOptions? options,}) { + return $createUnaryCall(_$appointmentBookingDisabled, request, options: options); + } + // method descriptors static final _$created = $grpc.ClientMethod<$0.OrderCreatedRequest, $0.OrderCreatedResponse>( @@ -284,6 +288,10 @@ class OrderInputAPIClient extends $grpc.Client { '/api.OrderInputAPI/AppointmentUpdated', ($0.OrderAppointmentUpdatedRequest value) => value.writeToBuffer(), $0.OrderAppointmentUpdatedResponse.fromBuffer); + static final _$appointmentBookingDisabled = $grpc.ClientMethod<$0.OrderAppointmentBookingDisabledRequest, $0.OrderAppointmentBookingDisabledResponse>( + '/api.OrderInputAPI/AppointmentBookingDisabled', + ($0.OrderAppointmentBookingDisabledRequest value) => value.writeToBuffer(), + $0.OrderAppointmentBookingDisabledResponse.fromBuffer); } @$pb.GrpcServiceName('api.OrderInputAPI') @@ -508,6 +516,13 @@ abstract class OrderInputAPIServiceBase extends $grpc.Service { false, ($core.List<$core.int> value) => $0.OrderAppointmentUpdatedRequest.fromBuffer(value), ($0.OrderAppointmentUpdatedResponse value) => value.writeToBuffer())); + $addMethod($grpc.ServiceMethod<$0.OrderAppointmentBookingDisabledRequest, $0.OrderAppointmentBookingDisabledResponse>( + 'AppointmentBookingDisabled', + appointmentBookingDisabled_Pre, + false, + false, + ($core.List<$core.int> value) => $0.OrderAppointmentBookingDisabledRequest.fromBuffer(value), + ($0.OrderAppointmentBookingDisabledResponse value) => value.writeToBuffer())); } $async.Future<$0.OrderCreatedResponse> created_Pre($grpc.ServiceCall $call, $async.Future<$0.OrderCreatedRequest> $request) async { @@ -696,4 +711,10 @@ abstract class OrderInputAPIServiceBase extends $grpc.Service { $async.Future<$0.OrderAppointmentUpdatedResponse> appointmentUpdated($grpc.ServiceCall call, $0.OrderAppointmentUpdatedRequest request); + $async.Future<$0.OrderAppointmentBookingDisabledResponse> appointmentBookingDisabled_Pre($grpc.ServiceCall $call, $async.Future<$0.OrderAppointmentBookingDisabledRequest> $request) async { + return appointmentBookingDisabled($call, await $request); + } + + $async.Future<$0.OrderAppointmentBookingDisabledResponse> appointmentBookingDisabled($grpc.ServiceCall call, $0.OrderAppointmentBookingDisabledRequest request); + } diff --git a/lib/orderInput.pbjson.dart b/lib/orderInput.pbjson.dart index 3826bfb6..7907f102 100644 --- a/lib/orderInput.pbjson.dart +++ b/lib/orderInput.pbjson.dart @@ -2184,3 +2184,70 @@ final $typed_data.Uint8List orderAppointmentUpdatedResponseDescriptor = $convert '5SZXNwb25zZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJRDoi' 'orsYCFJlc3BvbnNlursYEkFwcG9pbnRtZW50VXBkYXRlZA=='); +@$core.Deprecated('Use orderAppointmentBookingDisabledPayloadDescriptor instead') +const OrderAppointmentBookingDisabledPayload$json = { + '1': 'OrderAppointmentBookingDisabledPayload', + '7': {}, +}; + +/// Descriptor for `OrderAppointmentBookingDisabledPayload`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List orderAppointmentBookingDisabledPayloadDescriptor = $convert.base64Decode( + 'CiZPcmRlckFwcG9pbnRtZW50Qm9va2luZ0Rpc2FibGVkUGF5bG9hZDororsYBUV2ZW50qLsYAb' + 'q7GBpBcHBvaW50bWVudEJvb2tpbmdEaXNhYmxlZA=='); + +@$core.Deprecated('Use orderAppointmentBookingDisabledEventDescriptor instead') +const OrderAppointmentBookingDisabledEvent$json = { + '1': 'OrderAppointmentBookingDisabledEvent', + '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.OrderAppointmentBookingDisabledPayload', '8': {}, '10': 'Payload'}, + ], + '7': {}, +}; + +/// Descriptor for `OrderAppointmentBookingDisabledEvent`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List orderAppointmentBookingDisabledEventDescriptor = $convert.base64Decode( + 'CiRPcmRlckFwcG9pbnRtZW50Qm9va2luZ0Rpc2FibGVkRXZlbnQSMwoGSGVhZGVyGAEgASgLMh' + 'AuYXBpLkV2ZW50SGVhZGVyQgm6gQEFigECEAFSBkhlYWRlchIoCgJJRBgCIAEoCzINLmFwaS5F' + 'bnRpdHlJREIJuoEBBYoBAhABUgJJRBJQCgdQYXlsb2FkGAMgASgLMisuYXBpLk9yZGVyQXBwb2' + 'ludG1lbnRCb29raW5nRGlzYWJsZWRQYXlsb2FkQgm6gQEFigECEAFSB1BheWxvYWQ6RKK7GAVF' + 'dmVudLq7GBpBcHBvaW50bWVudEJvb2tpbmdEaXNhYmxlZMq7GBlkaXNhYmxlQXBwb2ludG1lbn' + 'RCb29raW5n'); + +@$core.Deprecated('Use orderAppointmentBookingDisabledRequestDescriptor instead') +const OrderAppointmentBookingDisabledRequest$json = { + '1': 'OrderAppointmentBookingDisabledRequest', + '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.OrderAppointmentBookingDisabledPayload', '8': {}, '10': 'Payload'}, + ], + '7': {}, +}; + +/// Descriptor for `OrderAppointmentBookingDisabledRequest`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List orderAppointmentBookingDisabledRequestDescriptor = $convert.base64Decode( + 'CiZPcmRlckFwcG9pbnRtZW50Qm9va2luZ0Rpc2FibGVkUmVxdWVzdBI8CgZIZWFkZXIYASABKA' + 'syGS5hcGkuUmVxdWVzdFByb2plY3RIZWFkZXJCCbqBAQWKAQIQAVIGSGVhZGVyEigKAklEGAIg' + 'ASgLMg0uYXBpLkVudGl0eUlEQgm6gQEFigECEAFSAklEElAKB1BheWxvYWQYAyABKAsyKy5hcG' + 'kuT3JkZXJBcHBvaW50bWVudEJvb2tpbmdEaXNhYmxlZFBheWxvYWRCCbqBAQWKAQIQAVIHUGF5' + 'bG9hZDpGkkEaChjSAQZIZWFkZXLSAQJJRNIBB1BheWxvYWSiuxgHUmVxdWVzdLq7GBpBcHBvaW' + '50bWVudEJvb2tpbmdEaXNhYmxlZA=='); + +@$core.Deprecated('Use orderAppointmentBookingDisabledResponseDescriptor instead') +const OrderAppointmentBookingDisabledResponse$json = { + '1': 'OrderAppointmentBookingDisabledResponse', + '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 `OrderAppointmentBookingDisabledResponse`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List orderAppointmentBookingDisabledResponseDescriptor = $convert.base64Decode( + 'CidPcmRlckFwcG9pbnRtZW50Qm9va2luZ0Rpc2FibGVkUmVzcG9uc2USKwoGSGVhZGVyGAEgAS' + 'gLMhMuYXBpLlJlc3BvbnNlSGVhZGVyUgZIZWFkZXISHQoCSUQYAiABKAsyDS5hcGkuRW50aXR5' + 'SURSAklEOiqiuxgIUmVzcG9uc2W6uxgaQXBwb2ludG1lbnRCb29raW5nRGlzYWJsZWQ='); + diff --git a/pubspec.yaml b/pubspec.yaml index 4388fe2c..9aaf293d 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.14.0-SNAPSHOT-260612144555 +version: 1.14.0-SNAPSHOT-260615081042 homepage: '' publish_to: '' repository: ''