You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
# CHANGELOG
|
||||
|
||||
Lib version: 1.12.0-SNAPSHOT-251204152537
|
||||
Lib version: 1.12.0-SNAPSHOT-251205090118
|
||||
|
||||
184
lib/site.pb.dart
184
lib/site.pb.dart
@@ -2102,13 +2102,9 @@ class SiteActor extends $pb.GeneratedMessage {
|
||||
class GetBookingContextRequest extends $pb.GeneratedMessage {
|
||||
factory GetBookingContextRequest({
|
||||
$3.RequestProjectHeader? header,
|
||||
$core.String? actorID,
|
||||
$2.AppointmentType? appointmentType,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
if (appointmentType != null) result.appointmentType = appointmentType;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -2119,8 +2115,6 @@ class GetBookingContextRequest extends $pb.GeneratedMessage {
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetBookingContextRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$3.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.RequestProjectHeader.create)
|
||||
..aOS(2, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..e<$2.AppointmentType>(3, _omitFieldNames ? '' : 'AppointmentType', $pb.PbFieldType.OE, protoName: 'AppointmentType', defaultOrMaker: $2.AppointmentType.APPOINTMENT_TYPE_UNKNOWN, valueOf: $2.AppointmentType.valueOf, enumValues: $2.AppointmentType.values)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -2151,42 +2145,14 @@ class GetBookingContextRequest extends $pb.GeneratedMessage {
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$3.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$core.String get actorID => $_getSZ(1);
|
||||
@$pb.TagNumber(2)
|
||||
set actorID($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasActorID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearActorID() => $_clearField(2);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$2.AppointmentType get appointmentType => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set appointmentType($2.AppointmentType value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasAppointmentType() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearAppointmentType() => $_clearField(3);
|
||||
}
|
||||
|
||||
class GetBookingContextResponse extends $pb.GeneratedMessage {
|
||||
factory GetBookingContextResponse({
|
||||
$core.Iterable<$core.String>? unitIDs,
|
||||
$core.Iterable<$2.SegmentationFilter>? segmentations,
|
||||
$core.Iterable<$4.PrjMetadata>? carrierInformation,
|
||||
$core.Iterable<$4.PrjMetadata>? metaData,
|
||||
$2.Instruction? instruction,
|
||||
$core.Iterable<$2.Document>? instructionDocuments,
|
||||
$core.Iterable<ActorBookingContext>? actorBookingContexts,
|
||||
}) {
|
||||
final result = create();
|
||||
if (unitIDs != null) result.unitIDs.addAll(unitIDs);
|
||||
if (segmentations != null) result.segmentations.addAll(segmentations);
|
||||
if (carrierInformation != null) result.carrierInformation.addAll(carrierInformation);
|
||||
if (metaData != null) result.metaData.addAll(metaData);
|
||||
if (instruction != null) result.instruction = instruction;
|
||||
if (instructionDocuments != null) result.instructionDocuments.addAll(instructionDocuments);
|
||||
if (actorBookingContexts != null) result.actorBookingContexts.addAll(actorBookingContexts);
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -2196,12 +2162,7 @@ class GetBookingContextResponse extends $pb.GeneratedMessage {
|
||||
factory GetBookingContextResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetBookingContextResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..pPS(1, _omitFieldNames ? '' : 'UnitIDs', protoName: 'UnitIDs')
|
||||
..pc<$2.SegmentationFilter>(2, _omitFieldNames ? '' : 'Segmentations', $pb.PbFieldType.PM, protoName: 'Segmentations', subBuilder: $2.SegmentationFilter.create)
|
||||
..pc<$4.PrjMetadata>(3, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $4.PrjMetadata.create)
|
||||
..pc<$4.PrjMetadata>(4, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $4.PrjMetadata.create)
|
||||
..aOM<$2.Instruction>(15, _omitFieldNames ? '' : 'Instruction', protoName: 'Instruction', subBuilder: $2.Instruction.create)
|
||||
..pc<$2.Document>(16, _omitFieldNames ? '' : 'InstructionDocuments', $pb.PbFieldType.PM, protoName: 'InstructionDocuments', subBuilder: $2.Document.create)
|
||||
..pc<ActorBookingContext>(5, _omitFieldNames ? '' : 'ActorBookingContexts', $pb.PbFieldType.PM, protoName: 'ActorBookingContexts', subBuilder: ActorBookingContext.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -2222,11 +2183,75 @@ class GetBookingContextResponse extends $pb.GeneratedMessage {
|
||||
static GetBookingContextResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetBookingContextResponse>(create);
|
||||
static GetBookingContextResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$pb.PbList<ActorBookingContext> get actorBookingContexts => $_getList(0);
|
||||
}
|
||||
|
||||
class ActorBookingContext extends $pb.GeneratedMessage {
|
||||
factory ActorBookingContext({
|
||||
$core.String? actorID,
|
||||
$core.Iterable<$core.String>? unitIDs,
|
||||
$core.Iterable<$4.PrjMetadata>? carrierInformation,
|
||||
$core.Iterable<$4.PrjMetadata>? metaData,
|
||||
$2.Instruction? instruction,
|
||||
$core.Iterable<$2.Document>? instructionDocuments,
|
||||
$core.Iterable<SegmentationsByType>? segmentationsByTypes,
|
||||
}) {
|
||||
final result = create();
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
if (unitIDs != null) result.unitIDs.addAll(unitIDs);
|
||||
if (carrierInformation != null) result.carrierInformation.addAll(carrierInformation);
|
||||
if (metaData != null) result.metaData.addAll(metaData);
|
||||
if (instruction != null) result.instruction = instruction;
|
||||
if (instructionDocuments != null) result.instructionDocuments.addAll(instructionDocuments);
|
||||
if (segmentationsByTypes != null) result.segmentationsByTypes.addAll(segmentationsByTypes);
|
||||
return result;
|
||||
}
|
||||
|
||||
ActorBookingContext._();
|
||||
|
||||
factory ActorBookingContext.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ActorBookingContext.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorBookingContext', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..pPS(2, _omitFieldNames ? '' : 'UnitIDs', protoName: 'UnitIDs')
|
||||
..pc<$4.PrjMetadata>(3, _omitFieldNames ? '' : 'CarrierInformation', $pb.PbFieldType.PM, protoName: 'CarrierInformation', subBuilder: $4.PrjMetadata.create)
|
||||
..pc<$4.PrjMetadata>(4, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $4.PrjMetadata.create)
|
||||
..aOM<$2.Instruction>(5, _omitFieldNames ? '' : 'Instruction', protoName: 'Instruction', subBuilder: $2.Instruction.create)
|
||||
..pc<$2.Document>(6, _omitFieldNames ? '' : 'InstructionDocuments', $pb.PbFieldType.PM, protoName: 'InstructionDocuments', subBuilder: $2.Document.create)
|
||||
..pc<SegmentationsByType>(7, _omitFieldNames ? '' : 'SegmentationsByTypes', $pb.PbFieldType.PM, protoName: 'SegmentationsByTypes', subBuilder: SegmentationsByType.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorBookingContext clone() => ActorBookingContext()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorBookingContext copyWith(void Function(ActorBookingContext) updates) => super.copyWith((message) => updates(message as ActorBookingContext)) as ActorBookingContext;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorBookingContext create() => ActorBookingContext._();
|
||||
@$core.override
|
||||
ActorBookingContext createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorBookingContext> createRepeated() => $pb.PbList<ActorBookingContext>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorBookingContext getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorBookingContext>(create);
|
||||
static ActorBookingContext? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$pb.PbList<$core.String> get unitIDs => $_getList(0);
|
||||
$core.String get actorID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set actorID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasActorID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearActorID() => $_clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$2.SegmentationFilter> get segmentations => $_getList(1);
|
||||
$pb.PbList<$core.String> get unitIDs => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$pb.PbList<$4.PrjMetadata> get carrierInformation => $_getList(2);
|
||||
@@ -2234,19 +2259,74 @@ class GetBookingContextResponse extends $pb.GeneratedMessage {
|
||||
@$pb.TagNumber(4)
|
||||
$pb.PbList<$4.PrjMetadata> get metaData => $_getList(3);
|
||||
|
||||
@$pb.TagNumber(15)
|
||||
@$pb.TagNumber(5)
|
||||
$2.Instruction get instruction => $_getN(4);
|
||||
@$pb.TagNumber(15)
|
||||
set instruction($2.Instruction value) => $_setField(15, value);
|
||||
@$pb.TagNumber(15)
|
||||
@$pb.TagNumber(5)
|
||||
set instruction($2.Instruction value) => $_setField(5, value);
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasInstruction() => $_has(4);
|
||||
@$pb.TagNumber(15)
|
||||
void clearInstruction() => $_clearField(15);
|
||||
@$pb.TagNumber(15)
|
||||
@$pb.TagNumber(5)
|
||||
void clearInstruction() => $_clearField(5);
|
||||
@$pb.TagNumber(5)
|
||||
$2.Instruction ensureInstruction() => $_ensure(4);
|
||||
|
||||
@$pb.TagNumber(16)
|
||||
@$pb.TagNumber(6)
|
||||
$pb.PbList<$2.Document> get instructionDocuments => $_getList(5);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
$pb.PbList<SegmentationsByType> get segmentationsByTypes => $_getList(6);
|
||||
}
|
||||
|
||||
class SegmentationsByType extends $pb.GeneratedMessage {
|
||||
factory SegmentationsByType({
|
||||
$2.AppointmentType? appointmentType,
|
||||
$core.Iterable<$2.SegmentationFilter>? segmentations,
|
||||
}) {
|
||||
final result = create();
|
||||
if (appointmentType != null) result.appointmentType = appointmentType;
|
||||
if (segmentations != null) result.segmentations.addAll(segmentations);
|
||||
return result;
|
||||
}
|
||||
|
||||
SegmentationsByType._();
|
||||
|
||||
factory SegmentationsByType.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory SegmentationsByType.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SegmentationsByType', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..e<$2.AppointmentType>(1, _omitFieldNames ? '' : 'AppointmentType', $pb.PbFieldType.OE, protoName: 'AppointmentType', defaultOrMaker: $2.AppointmentType.APPOINTMENT_TYPE_UNKNOWN, valueOf: $2.AppointmentType.valueOf, enumValues: $2.AppointmentType.values)
|
||||
..pc<$2.SegmentationFilter>(2, _omitFieldNames ? '' : 'Segmentations', $pb.PbFieldType.PM, protoName: 'Segmentations', subBuilder: $2.SegmentationFilter.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
SegmentationsByType clone() => SegmentationsByType()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
SegmentationsByType copyWith(void Function(SegmentationsByType) updates) => super.copyWith((message) => updates(message as SegmentationsByType)) as SegmentationsByType;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static SegmentationsByType create() => SegmentationsByType._();
|
||||
@$core.override
|
||||
SegmentationsByType createEmptyInstance() => create();
|
||||
static $pb.PbList<SegmentationsByType> createRepeated() => $pb.PbList<SegmentationsByType>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static SegmentationsByType getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<SegmentationsByType>(create);
|
||||
static SegmentationsByType? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$2.AppointmentType get appointmentType => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set appointmentType($2.AppointmentType value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasAppointmentType() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearAppointmentType() => $_clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$2.SegmentationFilter> get segmentations => $_getList(1);
|
||||
}
|
||||
|
||||
class BookAppointmentResponse extends $pb.GeneratedMessage {
|
||||
|
||||
@@ -548,8 +548,6 @@ const GetBookingContextRequest$json = {
|
||||
'1': 'GetBookingContextRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'ActorID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'ActorID'},
|
||||
{'1': 'AppointmentType', '3': 3, '4': 1, '5': 14, '6': '.api.AppointmentType', '8': {}, '10': 'AppointmentType'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -557,33 +555,60 @@ const GetBookingContextRequest$json = {
|
||||
/// Descriptor for `GetBookingContextRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getBookingContextRequestDescriptor = $convert.base64Decode(
|
||||
'ChhHZXRCb29raW5nQ29udGV4dFJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYXBpLlJlcXVlc3'
|
||||
'RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEiEKB0FjdG9ySUQYAiABKAlCB/pCBHIC'
|
||||
'EAFSB0FjdG9ySUQSSAoPQXBwb2ludG1lbnRUeXBlGAMgASgOMhQuYXBpLkFwcG9pbnRtZW50VH'
|
||||
'lwZUII+kIFggECEAFSD0FwcG9pbnRtZW50VHlwZToqkkEnCiXSAQZIZWFkZXLSAQdBY3RvcklE'
|
||||
'0gEPQXBwb2ludG1lbnRUeXBl');
|
||||
'RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyOiqSQScKJdIBBkhlYWRlctIBB0FjdG9y'
|
||||
'SUTSAQ9BcHBvaW50bWVudFR5cGU=');
|
||||
|
||||
@$core.Deprecated('Use getBookingContextResponseDescriptor instead')
|
||||
const GetBookingContextResponse$json = {
|
||||
'1': 'GetBookingContextResponse',
|
||||
'2': [
|
||||
{'1': 'UnitIDs', '3': 1, '4': 3, '5': 9, '10': 'UnitIDs'},
|
||||
{'1': 'Segmentations', '3': 2, '4': 3, '5': 11, '6': '.api.SegmentationFilter', '10': 'Segmentations'},
|
||||
{'1': 'CarrierInformation', '3': 3, '4': 3, '5': 11, '6': '.api.PrjMetadata', '10': 'CarrierInformation'},
|
||||
{'1': 'MetaData', '3': 4, '4': 3, '5': 11, '6': '.api.PrjMetadata', '10': 'MetaData'},
|
||||
{'1': 'Instruction', '3': 15, '4': 1, '5': 11, '6': '.api.Instruction', '10': 'Instruction'},
|
||||
{'1': 'InstructionDocuments', '3': 16, '4': 3, '5': 11, '6': '.api.Document', '10': 'InstructionDocuments'},
|
||||
{'1': 'ActorBookingContexts', '3': 5, '4': 3, '5': 11, '6': '.api.ActorBookingContext', '10': 'ActorBookingContexts'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `GetBookingContextResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List getBookingContextResponseDescriptor = $convert.base64Decode(
|
||||
'ChlHZXRCb29raW5nQ29udGV4dFJlc3BvbnNlEhgKB1VuaXRJRHMYASADKAlSB1VuaXRJRHMSPQ'
|
||||
'oNU2VnbWVudGF0aW9ucxgCIAMoCzIXLmFwaS5TZWdtZW50YXRpb25GaWx0ZXJSDVNlZ21lbnRh'
|
||||
'dGlvbnMSQAoSQ2FycmllckluZm9ybWF0aW9uGAMgAygLMhAuYXBpLlByak1ldGFkYXRhUhJDYX'
|
||||
'JyaWVySW5mb3JtYXRpb24SLAoITWV0YURhdGEYBCADKAsyEC5hcGkuUHJqTWV0YWRhdGFSCE1l'
|
||||
'dGFEYXRhEjIKC0luc3RydWN0aW9uGA8gASgLMhAuYXBpLkluc3RydWN0aW9uUgtJbnN0cnVjdG'
|
||||
'lvbhJBChRJbnN0cnVjdGlvbkRvY3VtZW50cxgQIAMoCzINLmFwaS5Eb2N1bWVudFIUSW5zdHJ1'
|
||||
'Y3Rpb25Eb2N1bWVudHM=');
|
||||
'ChlHZXRCb29raW5nQ29udGV4dFJlc3BvbnNlEkwKFEFjdG9yQm9va2luZ0NvbnRleHRzGAUgAy'
|
||||
'gLMhguYXBpLkFjdG9yQm9va2luZ0NvbnRleHRSFEFjdG9yQm9va2luZ0NvbnRleHRz');
|
||||
|
||||
@$core.Deprecated('Use actorBookingContextDescriptor instead')
|
||||
const ActorBookingContext$json = {
|
||||
'1': 'ActorBookingContext',
|
||||
'2': [
|
||||
{'1': 'ActorID', '3': 1, '4': 1, '5': 9, '10': 'ActorID'},
|
||||
{'1': 'UnitIDs', '3': 2, '4': 3, '5': 9, '10': 'UnitIDs'},
|
||||
{'1': 'CarrierInformation', '3': 3, '4': 3, '5': 11, '6': '.api.PrjMetadata', '10': 'CarrierInformation'},
|
||||
{'1': 'MetaData', '3': 4, '4': 3, '5': 11, '6': '.api.PrjMetadata', '10': 'MetaData'},
|
||||
{'1': 'Instruction', '3': 5, '4': 1, '5': 11, '6': '.api.Instruction', '10': 'Instruction'},
|
||||
{'1': 'InstructionDocuments', '3': 6, '4': 3, '5': 11, '6': '.api.Document', '10': 'InstructionDocuments'},
|
||||
{'1': 'SegmentationsByTypes', '3': 7, '4': 3, '5': 11, '6': '.api.SegmentationsByType', '10': 'SegmentationsByTypes'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorBookingContext`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorBookingContextDescriptor = $convert.base64Decode(
|
||||
'ChNBY3RvckJvb2tpbmdDb250ZXh0EhgKB0FjdG9ySUQYASABKAlSB0FjdG9ySUQSGAoHVW5pdE'
|
||||
'lEcxgCIAMoCVIHVW5pdElEcxJAChJDYXJyaWVySW5mb3JtYXRpb24YAyADKAsyEC5hcGkuUHJq'
|
||||
'TWV0YWRhdGFSEkNhcnJpZXJJbmZvcm1hdGlvbhIsCghNZXRhRGF0YRgEIAMoCzIQLmFwaS5Qcm'
|
||||
'pNZXRhZGF0YVIITWV0YURhdGESMgoLSW5zdHJ1Y3Rpb24YBSABKAsyEC5hcGkuSW5zdHJ1Y3Rp'
|
||||
'b25SC0luc3RydWN0aW9uEkEKFEluc3RydWN0aW9uRG9jdW1lbnRzGAYgAygLMg0uYXBpLkRvY3'
|
||||
'VtZW50UhRJbnN0cnVjdGlvbkRvY3VtZW50cxJMChRTZWdtZW50YXRpb25zQnlUeXBlcxgHIAMo'
|
||||
'CzIYLmFwaS5TZWdtZW50YXRpb25zQnlUeXBlUhRTZWdtZW50YXRpb25zQnlUeXBlcw==');
|
||||
|
||||
@$core.Deprecated('Use segmentationsByTypeDescriptor instead')
|
||||
const SegmentationsByType$json = {
|
||||
'1': 'SegmentationsByType',
|
||||
'2': [
|
||||
{'1': 'AppointmentType', '3': 1, '4': 1, '5': 14, '6': '.api.AppointmentType', '10': 'AppointmentType'},
|
||||
{'1': 'Segmentations', '3': 2, '4': 3, '5': 11, '6': '.api.SegmentationFilter', '10': 'Segmentations'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `SegmentationsByType`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List segmentationsByTypeDescriptor = $convert.base64Decode(
|
||||
'ChNTZWdtZW50YXRpb25zQnlUeXBlEj4KD0FwcG9pbnRtZW50VHlwZRgBIAEoDjIULmFwaS5BcH'
|
||||
'BvaW50bWVudFR5cGVSD0FwcG9pbnRtZW50VHlwZRI9Cg1TZWdtZW50YXRpb25zGAIgAygLMhcu'
|
||||
'YXBpLlNlZ21lbnRhdGlvbkZpbHRlclINU2VnbWVudGF0aW9ucw==');
|
||||
|
||||
@$core.Deprecated('Use bookAppointmentResponseDescriptor instead')
|
||||
const BookAppointmentResponse$json = {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: dart_core_sdk
|
||||
description: dart libs from core model proto files
|
||||
version: 1.12.0-SNAPSHOT-251204152537
|
||||
version: 1.12.0-SNAPSHOT-251205090118
|
||||
homepage: ''
|
||||
publish_to: ''
|
||||
repository: ''
|
||||
|
||||
Reference in New Issue
Block a user