Latest generation

This commit is contained in:
ci core model
2025-06-30 09:07:01 +00:00
parent 863fbd28f4
commit 1c942ea143
4 changed files with 18 additions and 3 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG # CHANGELOG
Lib version: 1.11.0-SNAPSHOT-250630081043 Lib version: 1.11.0-SNAPSHOT-250630090637

View File

@@ -12,6 +12,7 @@
import 'dart:core' as $core; import 'dart:core' as $core;
import 'package:fixnum/fixnum.dart' as $fixnum;
import 'package:protobuf/protobuf.dart' as $pb; import 'package:protobuf/protobuf.dart' as $pb;
import 'repositoryShared.pb.dart' as $1; import 'repositoryShared.pb.dart' as $1;
@@ -1169,9 +1170,11 @@ class GetAvailableSlotsRequest extends $pb.GeneratedMessage {
class GetAvailableSlotsResponse extends $pb.GeneratedMessage { class GetAvailableSlotsResponse extends $pb.GeneratedMessage {
factory GetAvailableSlotsResponse({ factory GetAvailableSlotsResponse({
$core.Iterable<$2.SlotGroup>? slotGroups, $core.Iterable<$2.SlotGroup>? slotGroups,
$fixnum.Int64? estimatedNeededDurationInMinutes,
}) { }) {
final result = create(); final result = create();
if (slotGroups != null) result.slotGroups.addAll(slotGroups); if (slotGroups != null) result.slotGroups.addAll(slotGroups);
if (estimatedNeededDurationInMinutes != null) result.estimatedNeededDurationInMinutes = estimatedNeededDurationInMinutes;
return result; return result;
} }
@@ -1182,6 +1185,7 @@ class GetAvailableSlotsResponse extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetAvailableSlotsResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetAvailableSlotsResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..pc<$2.SlotGroup>(1, _omitFieldNames ? '' : 'SlotGroups', $pb.PbFieldType.PM, protoName: 'SlotGroups', subBuilder: $2.SlotGroup.create) ..pc<$2.SlotGroup>(1, _omitFieldNames ? '' : 'SlotGroups', $pb.PbFieldType.PM, protoName: 'SlotGroups', subBuilder: $2.SlotGroup.create)
..a<$fixnum.Int64>(2, _omitFieldNames ? '' : 'EstimatedNeededDurationInMinutes', $pb.PbFieldType.OU6, protoName: 'EstimatedNeededDurationInMinutes', defaultOrMaker: $fixnum.Int64.ZERO)
..hasRequiredFields = false ..hasRequiredFields = false
; ;
@@ -1204,6 +1208,15 @@ class GetAvailableSlotsResponse extends $pb.GeneratedMessage {
@$pb.TagNumber(1) @$pb.TagNumber(1)
$pb.PbList<$2.SlotGroup> get slotGroups => $_getList(0); $pb.PbList<$2.SlotGroup> get slotGroups => $_getList(0);
@$pb.TagNumber(2)
$fixnum.Int64 get estimatedNeededDurationInMinutes => $_getI64(1);
@$pb.TagNumber(2)
set estimatedNeededDurationInMinutes($fixnum.Int64 value) => $_setInt64(1, value);
@$pb.TagNumber(2)
$core.bool hasEstimatedNeededDurationInMinutes() => $_has(1);
@$pb.TagNumber(2)
void clearEstimatedNeededDurationInMinutes() => $_clearField(2);
} }
/// BookAppointment /// BookAppointment

View File

@@ -309,13 +309,15 @@ const GetAvailableSlotsResponse$json = {
'1': 'GetAvailableSlotsResponse', '1': 'GetAvailableSlotsResponse',
'2': [ '2': [
{'1': 'SlotGroups', '3': 1, '4': 3, '5': 11, '6': '.api.SlotGroup', '10': 'SlotGroups'}, {'1': 'SlotGroups', '3': 1, '4': 3, '5': 11, '6': '.api.SlotGroup', '10': 'SlotGroups'},
{'1': 'EstimatedNeededDurationInMinutes', '3': 2, '4': 1, '5': 4, '10': 'EstimatedNeededDurationInMinutes'},
], ],
}; };
/// Descriptor for `GetAvailableSlotsResponse`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `GetAvailableSlotsResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List getAvailableSlotsResponseDescriptor = $convert.base64Decode( final $typed_data.Uint8List getAvailableSlotsResponseDescriptor = $convert.base64Decode(
'ChlHZXRBdmFpbGFibGVTbG90c1Jlc3BvbnNlEi4KClNsb3RHcm91cHMYASADKAsyDi5hcGkuU2' 'ChlHZXRBdmFpbGFibGVTbG90c1Jlc3BvbnNlEi4KClNsb3RHcm91cHMYASADKAsyDi5hcGkuU2'
'xvdEdyb3VwUgpTbG90R3JvdXBz'); 'xvdEdyb3VwUgpTbG90R3JvdXBzEkoKIEVzdGltYXRlZE5lZWRlZER1cmF0aW9uSW5NaW51dGVz'
'GAIgASgEUiBFc3RpbWF0ZWROZWVkZWREdXJhdGlvbkluTWludXRlcw==');
@$core.Deprecated('Use bookAppointmentRequestDescriptor instead') @$core.Deprecated('Use bookAppointmentRequestDescriptor instead')
const BookAppointmentRequest$json = { const BookAppointmentRequest$json = {

View File

@@ -1,6 +1,6 @@
name: dart_core_sdk name: dart_core_sdk
description: dart libs from core model proto files description: dart libs from core model proto files
version: 1.11.0-SNAPSHOT-250630081043 version: 1.11.0-SNAPSHOT-250630090637
homepage: '' homepage: ''
publish_to: '' publish_to: ''
repository: '' repository: ''