diff --git a/CHANGELOG.md b/CHANGELOG.md index f092328..20c05da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ # CHANGELOG -Lib version: 1.14.0-SNAPSHOT-260601131814 +Lib version: 1.14.0-SNAPSHOT-260601140546 diff --git a/lib/appointment.pb.dart b/lib/appointment.pb.dart index 10fc82f..c76d056 100644 --- a/lib/appointment.pb.dart +++ b/lib/appointment.pb.dart @@ -12,6 +12,7 @@ import 'dart:core' as $core; +import 'package:fixnum/fixnum.dart' as $fixnum; import 'package:protobuf/protobuf.dart' as $pb; import 'repositoryShared.pb.dart' as $2; @@ -519,10 +520,12 @@ class AppointmentExternalAccess extends $pb.GeneratedMessage { factory AppointmentExternalAccess({ $core.String? hash, $core.String? uRL, + $fixnum.Int64? expirationTime, }) { final result = create(); if (hash != null) result.hash = hash; if (uRL != null) result.uRL = uRL; + if (expirationTime != null) result.expirationTime = expirationTime; return result; } @@ -534,6 +537,7 @@ class AppointmentExternalAccess extends $pb.GeneratedMessage { static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentExternalAccess', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) ..aOS(1, _omitFieldNames ? '' : 'Hash', protoName: 'Hash') ..aOS(2, _omitFieldNames ? '' : 'URL', protoName: 'URL') + ..aInt64(3, _omitFieldNames ? '' : 'ExpirationTime', protoName: 'ExpirationTime') ..hasRequiredFields = false ; @@ -571,6 +575,15 @@ class AppointmentExternalAccess extends $pb.GeneratedMessage { $core.bool hasURL() => $_has(1); @$pb.TagNumber(2) void clearURL() => $_clearField(2); + + @$pb.TagNumber(3) + $fixnum.Int64 get expirationTime => $_getI64(2); + @$pb.TagNumber(3) + set expirationTime($fixnum.Int64 value) => $_setInt64(2, value); + @$pb.TagNumber(3) + $core.bool hasExpirationTime() => $_has(2); + @$pb.TagNumber(3) + void clearExpirationTime() => $_clearField(3); } diff --git a/lib/appointment.pbjson.dart b/lib/appointment.pbjson.dart index 1f0068a..eb4c420 100644 --- a/lib/appointment.pbjson.dart +++ b/lib/appointment.pbjson.dart @@ -186,11 +186,12 @@ const AppointmentExternalAccess$json = { '2': [ {'1': 'Hash', '3': 1, '4': 1, '5': 9, '10': 'Hash'}, {'1': 'URL', '3': 2, '4': 1, '5': 9, '10': 'URL'}, + {'1': 'ExpirationTime', '3': 3, '4': 1, '5': 3, '10': 'ExpirationTime'}, ], }; /// Descriptor for `AppointmentExternalAccess`. Decode as a `google.protobuf.DescriptorProto`. final $typed_data.Uint8List appointmentExternalAccessDescriptor = $convert.base64Decode( 'ChlBcHBvaW50bWVudEV4dGVybmFsQWNjZXNzEhIKBEhhc2gYASABKAlSBEhhc2gSEAoDVVJMGA' - 'IgASgJUgNVUkw='); + 'IgASgJUgNVUkwSJgoORXhwaXJhdGlvblRpbWUYAyABKANSDkV4cGlyYXRpb25UaW1l'); diff --git a/pubspec.yaml b/pubspec.yaml index f41113e..546f25c 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-260601131814 +version: 1.14.0-SNAPSHOT-260601140546 homepage: '' publish_to: '' repository: ''