You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
Lib version: 1.12.0-SNAPSHOT-251127144827
|
Lib version: 1.12.0-SNAPSHOT-251128092626
|
||||||
|
|||||||
@@ -4269,10 +4269,24 @@ class SiteBookingContext extends $pb.GeneratedMessage {
|
|||||||
factory SiteBookingContext({
|
factory SiteBookingContext({
|
||||||
$core.String? siteID,
|
$core.String? siteID,
|
||||||
$core.Iterable<SiteProjectBookingContext>? byProjects,
|
$core.Iterable<SiteProjectBookingContext>? byProjects,
|
||||||
|
$core.String? name,
|
||||||
|
$1.Address? address,
|
||||||
|
$core.Iterable<$core.String>? phones,
|
||||||
|
$core.String? fax,
|
||||||
|
$core.Iterable<$core.String>? emails,
|
||||||
|
$core.String? photoURI,
|
||||||
|
$core.String? prefixAppointmentID,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (siteID != null) result.siteID = siteID;
|
if (siteID != null) result.siteID = siteID;
|
||||||
if (byProjects != null) result.byProjects.addAll(byProjects);
|
if (byProjects != null) result.byProjects.addAll(byProjects);
|
||||||
|
if (name != null) result.name = name;
|
||||||
|
if (address != null) result.address = address;
|
||||||
|
if (phones != null) result.phones.addAll(phones);
|
||||||
|
if (fax != null) result.fax = fax;
|
||||||
|
if (emails != null) result.emails.addAll(emails);
|
||||||
|
if (photoURI != null) result.photoURI = photoURI;
|
||||||
|
if (prefixAppointmentID != null) result.prefixAppointmentID = prefixAppointmentID;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -4284,6 +4298,13 @@ class SiteBookingContext extends $pb.GeneratedMessage {
|
|||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SiteBookingContext', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SiteBookingContext', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||||
..aOS(1, _omitFieldNames ? '' : 'SiteID', protoName: 'SiteID')
|
..aOS(1, _omitFieldNames ? '' : 'SiteID', protoName: 'SiteID')
|
||||||
..pc<SiteProjectBookingContext>(2, _omitFieldNames ? '' : 'ByProjects', $pb.PbFieldType.PM, protoName: 'ByProjects', subBuilder: SiteProjectBookingContext.create)
|
..pc<SiteProjectBookingContext>(2, _omitFieldNames ? '' : 'ByProjects', $pb.PbFieldType.PM, protoName: 'ByProjects', subBuilder: SiteProjectBookingContext.create)
|
||||||
|
..aOS(3, _omitFieldNames ? '' : 'Name', protoName: 'Name')
|
||||||
|
..aOM<$1.Address>(4, _omitFieldNames ? '' : 'Address', protoName: 'Address', subBuilder: $1.Address.create)
|
||||||
|
..pPS(5, _omitFieldNames ? '' : 'Phones', protoName: 'Phones')
|
||||||
|
..aOS(6, _omitFieldNames ? '' : 'Fax', protoName: 'Fax')
|
||||||
|
..pPS(7, _omitFieldNames ? '' : 'Emails', protoName: 'Emails')
|
||||||
|
..aOS(8, _omitFieldNames ? '' : 'PhotoURI', protoName: 'PhotoURI')
|
||||||
|
..aOS(9, _omitFieldNames ? '' : 'PrefixAppointmentID', protoName: 'PrefixAppointmentID')
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -4315,6 +4336,60 @@ class SiteBookingContext extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
@$pb.TagNumber(2)
|
@$pb.TagNumber(2)
|
||||||
$pb.PbList<SiteProjectBookingContext> get byProjects => $_getList(1);
|
$pb.PbList<SiteProjectBookingContext> get byProjects => $_getList(1);
|
||||||
|
|
||||||
|
/// Name of the Site
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
$core.String get name => $_getSZ(2);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
set name($core.String value) => $_setString(2, value);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
$core.bool hasName() => $_has(2);
|
||||||
|
@$pb.TagNumber(3)
|
||||||
|
void clearName() => $_clearField(3);
|
||||||
|
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
$1.Address get address => $_getN(3);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
set address($1.Address value) => $_setField(4, value);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
$core.bool hasAddress() => $_has(3);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
void clearAddress() => $_clearField(4);
|
||||||
|
@$pb.TagNumber(4)
|
||||||
|
$1.Address ensureAddress() => $_ensure(3);
|
||||||
|
|
||||||
|
@$pb.TagNumber(5)
|
||||||
|
$pb.PbList<$core.String> get phones => $_getList(4);
|
||||||
|
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
$core.String get fax => $_getSZ(5);
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
set fax($core.String value) => $_setString(5, value);
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
$core.bool hasFax() => $_has(5);
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
void clearFax() => $_clearField(6);
|
||||||
|
|
||||||
|
@$pb.TagNumber(7)
|
||||||
|
$pb.PbList<$core.String> get emails => $_getList(6);
|
||||||
|
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
$core.String get photoURI => $_getSZ(7);
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
set photoURI($core.String value) => $_setString(7, value);
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
$core.bool hasPhotoURI() => $_has(7);
|
||||||
|
@$pb.TagNumber(8)
|
||||||
|
void clearPhotoURI() => $_clearField(8);
|
||||||
|
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
$core.String get prefixAppointmentID => $_getSZ(8);
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
set prefixAppointmentID($core.String value) => $_setString(8, value);
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
$core.bool hasPrefixAppointmentID() => $_has(8);
|
||||||
|
@$pb.TagNumber(9)
|
||||||
|
void clearPrefixAppointmentID() => $_clearField(9);
|
||||||
}
|
}
|
||||||
|
|
||||||
class SiteProjectBookingContext extends $pb.GeneratedMessage {
|
class SiteProjectBookingContext extends $pb.GeneratedMessage {
|
||||||
|
|||||||
@@ -1147,13 +1147,24 @@ const SiteBookingContext$json = {
|
|||||||
'2': [
|
'2': [
|
||||||
{'1': 'SiteID', '3': 1, '4': 1, '5': 9, '10': 'SiteID'},
|
{'1': 'SiteID', '3': 1, '4': 1, '5': 9, '10': 'SiteID'},
|
||||||
{'1': 'ByProjects', '3': 2, '4': 3, '5': 11, '6': '.api.SiteProjectBookingContext', '10': 'ByProjects'},
|
{'1': 'ByProjects', '3': 2, '4': 3, '5': 11, '6': '.api.SiteProjectBookingContext', '10': 'ByProjects'},
|
||||||
|
{'1': 'Name', '3': 3, '4': 1, '5': 9, '10': 'Name'},
|
||||||
|
{'1': 'Address', '3': 4, '4': 1, '5': 11, '6': '.api.Address', '10': 'Address'},
|
||||||
|
{'1': 'Phones', '3': 5, '4': 3, '5': 9, '10': 'Phones'},
|
||||||
|
{'1': 'Fax', '3': 6, '4': 1, '5': 9, '10': 'Fax'},
|
||||||
|
{'1': 'Emails', '3': 7, '4': 3, '5': 9, '10': 'Emails'},
|
||||||
|
{'1': 'PhotoURI', '3': 8, '4': 1, '5': 9, '10': 'PhotoURI'},
|
||||||
|
{'1': 'PrefixAppointmentID', '3': 9, '4': 1, '5': 9, '10': 'PrefixAppointmentID'},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Descriptor for `SiteBookingContext`. Decode as a `google.protobuf.DescriptorProto`.
|
/// Descriptor for `SiteBookingContext`. Decode as a `google.protobuf.DescriptorProto`.
|
||||||
final $typed_data.Uint8List siteBookingContextDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List siteBookingContextDescriptor = $convert.base64Decode(
|
||||||
'ChJTaXRlQm9va2luZ0NvbnRleHQSFgoGU2l0ZUlEGAEgASgJUgZTaXRlSUQSPgoKQnlQcm9qZW'
|
'ChJTaXRlQm9va2luZ0NvbnRleHQSFgoGU2l0ZUlEGAEgASgJUgZTaXRlSUQSPgoKQnlQcm9qZW'
|
||||||
'N0cxgCIAMoCzIeLmFwaS5TaXRlUHJvamVjdEJvb2tpbmdDb250ZXh0UgpCeVByb2plY3Rz');
|
'N0cxgCIAMoCzIeLmFwaS5TaXRlUHJvamVjdEJvb2tpbmdDb250ZXh0UgpCeVByb2plY3RzEhIK'
|
||||||
|
'BE5hbWUYAyABKAlSBE5hbWUSJgoHQWRkcmVzcxgEIAEoCzIMLmFwaS5BZGRyZXNzUgdBZGRyZX'
|
||||||
|
'NzEhYKBlBob25lcxgFIAMoCVIGUGhvbmVzEhAKA0ZheBgGIAEoCVIDRmF4EhYKBkVtYWlscxgH'
|
||||||
|
'IAMoCVIGRW1haWxzEhoKCFBob3RvVVJJGAggASgJUghQaG90b1VSSRIwChNQcmVmaXhBcHBvaW'
|
||||||
|
'50bWVudElEGAkgASgJUhNQcmVmaXhBcHBvaW50bWVudElE');
|
||||||
|
|
||||||
@$core.Deprecated('Use siteProjectBookingContextDescriptor instead')
|
@$core.Deprecated('Use siteProjectBookingContextDescriptor instead')
|
||||||
const SiteProjectBookingContext$json = {
|
const SiteProjectBookingContext$json = {
|
||||||
|
|||||||
@@ -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.12.0-SNAPSHOT-251127144827
|
version: 1.12.0-SNAPSHOT-251128092626
|
||||||
homepage: ''
|
homepage: ''
|
||||||
publish_to: ''
|
publish_to: ''
|
||||||
repository: ''
|
repository: ''
|
||||||
|
|||||||
Reference in New Issue
Block a user