You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
Lib version: 1.14.0-SNAPSHOT-260601131814
|
Lib version: 1.14.0-SNAPSHOT-260601140546
|
||||||
|
|||||||
@@ -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 $2;
|
import 'repositoryShared.pb.dart' as $2;
|
||||||
@@ -519,10 +520,12 @@ class AppointmentExternalAccess extends $pb.GeneratedMessage {
|
|||||||
factory AppointmentExternalAccess({
|
factory AppointmentExternalAccess({
|
||||||
$core.String? hash,
|
$core.String? hash,
|
||||||
$core.String? uRL,
|
$core.String? uRL,
|
||||||
|
$fixnum.Int64? expirationTime,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (hash != null) result.hash = hash;
|
if (hash != null) result.hash = hash;
|
||||||
if (uRL != null) result.uRL = uRL;
|
if (uRL != null) result.uRL = uRL;
|
||||||
|
if (expirationTime != null) result.expirationTime = expirationTime;
|
||||||
return result;
|
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)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentExternalAccess', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||||
..aOS(1, _omitFieldNames ? '' : 'Hash', protoName: 'Hash')
|
..aOS(1, _omitFieldNames ? '' : 'Hash', protoName: 'Hash')
|
||||||
..aOS(2, _omitFieldNames ? '' : 'URL', protoName: 'URL')
|
..aOS(2, _omitFieldNames ? '' : 'URL', protoName: 'URL')
|
||||||
|
..aInt64(3, _omitFieldNames ? '' : 'ExpirationTime', protoName: 'ExpirationTime')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -571,6 +575,15 @@ class AppointmentExternalAccess extends $pb.GeneratedMessage {
|
|||||||
$core.bool hasURL() => $_has(1);
|
$core.bool hasURL() => $_has(1);
|
||||||
@$pb.TagNumber(2)
|
@$pb.TagNumber(2)
|
||||||
void clearURL() => $_clearField(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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -186,11 +186,12 @@ const AppointmentExternalAccess$json = {
|
|||||||
'2': [
|
'2': [
|
||||||
{'1': 'Hash', '3': 1, '4': 1, '5': 9, '10': 'Hash'},
|
{'1': 'Hash', '3': 1, '4': 1, '5': 9, '10': 'Hash'},
|
||||||
{'1': 'URL', '3': 2, '4': 1, '5': 9, '10': 'URL'},
|
{'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`.
|
/// Descriptor for `AppointmentExternalAccess`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List appointmentExternalAccessDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List appointmentExternalAccessDescriptor = $convert.base64Decode(
|
||||||
'ChlBcHBvaW50bWVudEV4dGVybmFsQWNjZXNzEhIKBEhhc2gYASABKAlSBEhhc2gSEAoDVVJMGA'
|
'ChlBcHBvaW50bWVudEV4dGVybmFsQWNjZXNzEhIKBEhhc2gYASABKAlSBEhhc2gSEAoDVVJMGA'
|
||||||
'IgASgJUgNVUkw=');
|
'IgASgJUgNVUkwSJgoORXhwaXJhdGlvblRpbWUYAyABKANSDkV4cGlyYXRpb25UaW1l');
|
||||||
|
|
||||||
|
|||||||
@@ -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.14.0-SNAPSHOT-260601131814
|
version: 1.14.0-SNAPSHOT-260601140546
|
||||||
homepage: ''
|
homepage: ''
|
||||||
publish_to: ''
|
publish_to: ''
|
||||||
repository: ''
|
repository: ''
|
||||||
|
|||||||
Reference in New Issue
Block a user