You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
# CHANGELOG
|
||||
|
||||
Lib version: 1.13.0-SNAPSHOT-260316102336
|
||||
Lib version: 1.13.0-SNAPSHOT-260316103636
|
||||
|
||||
@@ -491,228 +491,6 @@ class AppointmentByMatchResult extends $pb.GeneratedMessage {
|
||||
$pb.PbList<$1.MatchFieldResult> get matchResults => $_getList(0);
|
||||
}
|
||||
|
||||
class FindMineByMatchQuery extends $pb.GeneratedMessage {
|
||||
factory FindMineByMatchQuery({
|
||||
$1.QueryBasicHeader? header,
|
||||
$core.Iterable<$1.BlockFilter>? blockFilters,
|
||||
$core.Iterable<$1.MatchField>? matchFields,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (blockFilters != null) result.blockFilters.addAll(blockFilters);
|
||||
if (matchFields != null) result.matchFields.addAll(matchFields);
|
||||
return result;
|
||||
}
|
||||
|
||||
FindMineByMatchQuery._();
|
||||
|
||||
factory FindMineByMatchQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory FindMineByMatchQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'FindMineByMatchQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.QueryBasicHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryBasicHeader.create)
|
||||
..pc<$1.BlockFilter>(5, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $1.BlockFilter.create)
|
||||
..pc<$1.MatchField>(6, _omitFieldNames ? '' : 'MatchFields', $pb.PbFieldType.PM, protoName: 'MatchFields', subBuilder: $1.MatchField.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
FindMineByMatchQuery clone() => FindMineByMatchQuery()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
FindMineByMatchQuery copyWith(void Function(FindMineByMatchQuery) updates) => super.copyWith((message) => updates(message as FindMineByMatchQuery)) as FindMineByMatchQuery;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static FindMineByMatchQuery create() => FindMineByMatchQuery._();
|
||||
@$core.override
|
||||
FindMineByMatchQuery createEmptyInstance() => create();
|
||||
static $pb.PbList<FindMineByMatchQuery> createRepeated() => $pb.PbList<FindMineByMatchQuery>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static FindMineByMatchQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<FindMineByMatchQuery>(create);
|
||||
static FindMineByMatchQuery? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$1.QueryBasicHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($1.QueryBasicHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$1.QueryBasicHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query
|
||||
@$pb.TagNumber(5)
|
||||
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(1);
|
||||
|
||||
/// MatchField list structure, for FindMatching query
|
||||
@$pb.TagNumber(6)
|
||||
$pb.PbList<$1.MatchField> get matchFields => $_getList(2);
|
||||
}
|
||||
|
||||
class FindByCommissionQuery extends $pb.GeneratedMessage {
|
||||
factory FindByCommissionQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
$core.String? limitFilter,
|
||||
$core.String? queryContext,
|
||||
$core.Iterable<$1.BlockFilter>? blockFilters,
|
||||
AppointmentQueryOptions? options,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (limitFilter != null) result.limitFilter = limitFilter;
|
||||
if (queryContext != null) result.queryContext = queryContext;
|
||||
if (blockFilters != null) result.blockFilters.addAll(blockFilters);
|
||||
if (options != null) result.options = options;
|
||||
return result;
|
||||
}
|
||||
|
||||
FindByCommissionQuery._();
|
||||
|
||||
factory FindByCommissionQuery.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory FindByCommissionQuery.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'FindByCommissionQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
|
||||
..aOS(4, _omitFieldNames ? '' : 'limitFilter', protoName: 'limitFilter')
|
||||
..aOS(5, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
|
||||
..pc<$1.BlockFilter>(6, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $1.BlockFilter.create)
|
||||
..aOM<AppointmentQueryOptions>(7, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: AppointmentQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
FindByCommissionQuery clone() => FindByCommissionQuery()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
FindByCommissionQuery copyWith(void Function(FindByCommissionQuery) updates) => super.copyWith((message) => updates(message as FindByCommissionQuery)) as FindByCommissionQuery;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static FindByCommissionQuery create() => FindByCommissionQuery._();
|
||||
@$core.override
|
||||
FindByCommissionQuery createEmptyInstance() => create();
|
||||
static $pb.PbList<FindByCommissionQuery> createRepeated() => $pb.PbList<FindByCommissionQuery>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static FindByCommissionQuery getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<FindByCommissionQuery>(create);
|
||||
static FindByCommissionQuery? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$1.QueryProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($1.QueryProjectHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$1.QueryProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
/// Number of maximum result
|
||||
@$pb.TagNumber(4)
|
||||
$core.String get limitFilter => $_getSZ(1);
|
||||
@$pb.TagNumber(4)
|
||||
set limitFilter($core.String value) => $_setString(1, value);
|
||||
@$pb.TagNumber(4)
|
||||
$core.bool hasLimitFilter() => $_has(1);
|
||||
@$pb.TagNumber(4)
|
||||
void clearLimitFilter() => $_clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
$core.String get queryContext => $_getSZ(2);
|
||||
@$pb.TagNumber(5)
|
||||
set queryContext($core.String value) => $_setString(2, value);
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasQueryContext() => $_has(2);
|
||||
@$pb.TagNumber(5)
|
||||
void clearQueryContext() => $_clearField(5);
|
||||
|
||||
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query
|
||||
@$pb.TagNumber(6)
|
||||
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(3);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
AppointmentQueryOptions get options => $_getN(4);
|
||||
@$pb.TagNumber(7)
|
||||
set options(AppointmentQueryOptions value) => $_setField(7, value);
|
||||
@$pb.TagNumber(7)
|
||||
$core.bool hasOptions() => $_has(4);
|
||||
@$pb.TagNumber(7)
|
||||
void clearOptions() => $_clearField(7);
|
||||
@$pb.TagNumber(7)
|
||||
AppointmentQueryOptions ensureOptions() => $_ensure(4);
|
||||
}
|
||||
|
||||
class FindByCommissionResult extends $pb.GeneratedMessage {
|
||||
factory FindByCommissionResult({
|
||||
$1.ResultHeader? header,
|
||||
$core.Iterable<$3.Appointment>? objects,
|
||||
$core.String? queryContext,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (objects != null) result.objects.addAll(objects);
|
||||
if (queryContext != null) result.queryContext = queryContext;
|
||||
return result;
|
||||
}
|
||||
|
||||
FindByCommissionResult._();
|
||||
|
||||
factory FindByCommissionResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory FindByCommissionResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'FindByCommissionResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.ResultHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.ResultHeader.create)
|
||||
..pc<$3.Appointment>(2, _omitFieldNames ? '' : 'Objects', $pb.PbFieldType.PM, protoName: 'Objects', subBuilder: $3.Appointment.create)
|
||||
..aOS(3, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
FindByCommissionResult clone() => FindByCommissionResult()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
FindByCommissionResult copyWith(void Function(FindByCommissionResult) updates) => super.copyWith((message) => updates(message as FindByCommissionResult)) as FindByCommissionResult;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static FindByCommissionResult create() => FindByCommissionResult._();
|
||||
@$core.override
|
||||
FindByCommissionResult createEmptyInstance() => create();
|
||||
static $pb.PbList<FindByCommissionResult> createRepeated() => $pb.PbList<FindByCommissionResult>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static FindByCommissionResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<FindByCommissionResult>(create);
|
||||
static FindByCommissionResult? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$1.ResultHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($1.ResultHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$1.ResultHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$3.Appointment> get objects => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$core.String get queryContext => $_getSZ(2);
|
||||
@$pb.TagNumber(3)
|
||||
set queryContext($core.String value) => $_setString(2, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasQueryContext() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearQueryContext() => $_clearField(3);
|
||||
}
|
||||
|
||||
class CrossFindAppointmentResult extends $pb.GeneratedMessage {
|
||||
factory CrossFindAppointmentResult({
|
||||
$core.Iterable<$3.Appointment>? objects,
|
||||
|
||||
@@ -62,16 +62,6 @@ class AppointmentQueryClient extends $grpc.Client {
|
||||
return $createUnaryCall(_$countLines, request, options: options);
|
||||
}
|
||||
|
||||
@$core.Deprecated('This method is deprecated')
|
||||
$grpc.ResponseFuture<$0.AppointmentByMatchResult> findMineMatchingFieldValues($0.FindMineByMatchQuery request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$findMineMatchingFieldValues, request, options: options);
|
||||
}
|
||||
|
||||
@$core.Deprecated('This method is deprecated')
|
||||
$grpc.ResponseFuture<$0.FindByCommissionResult> findByCommission($0.FindByCommissionQuery request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$findByCommission, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.CrossFindAppointmentResult> crossFind($1.CrossFindQuery request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$crossFind, request, options: options);
|
||||
}
|
||||
@@ -114,14 +104,6 @@ class AppointmentQueryClient extends $grpc.Client {
|
||||
'/api.AppointmentQuery/CountLines',
|
||||
($1.CountLinesQuery value) => value.writeToBuffer(),
|
||||
$1.CountLinesResult.fromBuffer);
|
||||
static final _$findMineMatchingFieldValues = $grpc.ClientMethod<$0.FindMineByMatchQuery, $0.AppointmentByMatchResult>(
|
||||
'/api.AppointmentQuery/FindMineMatchingFieldValues',
|
||||
($0.FindMineByMatchQuery value) => value.writeToBuffer(),
|
||||
$0.AppointmentByMatchResult.fromBuffer);
|
||||
static final _$findByCommission = $grpc.ClientMethod<$0.FindByCommissionQuery, $0.FindByCommissionResult>(
|
||||
'/api.AppointmentQuery/FindByCommission',
|
||||
($0.FindByCommissionQuery value) => value.writeToBuffer(),
|
||||
$0.FindByCommissionResult.fromBuffer);
|
||||
static final _$crossFind = $grpc.ClientMethod<$1.CrossFindQuery, $0.CrossFindAppointmentResult>(
|
||||
'/api.AppointmentQuery/CrossFind',
|
||||
($1.CrossFindQuery value) => value.writeToBuffer(),
|
||||
@@ -190,20 +172,6 @@ abstract class AppointmentQueryServiceBase extends $grpc.Service {
|
||||
false,
|
||||
($core.List<$core.int> value) => $1.CountLinesQuery.fromBuffer(value),
|
||||
($1.CountLinesResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.FindMineByMatchQuery, $0.AppointmentByMatchResult>(
|
||||
'FindMineMatchingFieldValues',
|
||||
findMineMatchingFieldValues_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.FindMineByMatchQuery.fromBuffer(value),
|
||||
($0.AppointmentByMatchResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.FindByCommissionQuery, $0.FindByCommissionResult>(
|
||||
'FindByCommission',
|
||||
findByCommission_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.FindByCommissionQuery.fromBuffer(value),
|
||||
($0.FindByCommissionResult value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$1.CrossFindQuery, $0.CrossFindAppointmentResult>(
|
||||
'CrossFind',
|
||||
crossFind_Pre,
|
||||
@@ -269,18 +237,6 @@ abstract class AppointmentQueryServiceBase extends $grpc.Service {
|
||||
|
||||
$async.Future<$1.CountLinesResult> countLines($grpc.ServiceCall call, $1.CountLinesQuery request);
|
||||
|
||||
$async.Future<$0.AppointmentByMatchResult> findMineMatchingFieldValues_Pre($grpc.ServiceCall $call, $async.Future<$0.FindMineByMatchQuery> $request) async {
|
||||
return findMineMatchingFieldValues($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.AppointmentByMatchResult> findMineMatchingFieldValues($grpc.ServiceCall call, $0.FindMineByMatchQuery request);
|
||||
|
||||
$async.Future<$0.FindByCommissionResult> findByCommission_Pre($grpc.ServiceCall $call, $async.Future<$0.FindByCommissionQuery> $request) async {
|
||||
return findByCommission($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.FindByCommissionResult> findByCommission($grpc.ServiceCall call, $0.FindByCommissionQuery request);
|
||||
|
||||
$async.Future<$0.CrossFindAppointmentResult> crossFind_Pre($grpc.ServiceCall $call, $async.Future<$1.CrossFindQuery> $request) async {
|
||||
return crossFind($call, await $request);
|
||||
}
|
||||
|
||||
@@ -155,63 +155,6 @@ final $typed_data.Uint8List appointmentByMatchResultDescriptor = $convert.base64
|
||||
'ChhBcHBvaW50bWVudEJ5TWF0Y2hSZXN1bHQSOQoMTWF0Y2hSZXN1bHRzGAIgAygLMhUuYXBpLk'
|
||||
'1hdGNoRmllbGRSZXN1bHRSDE1hdGNoUmVzdWx0cw==');
|
||||
|
||||
@$core.Deprecated('Use findMineByMatchQueryDescriptor instead')
|
||||
const FindMineByMatchQuery$json = {
|
||||
'1': 'FindMineByMatchQuery',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryBasicHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'BlockFilters', '3': 5, '4': 3, '5': 11, '6': '.api.BlockFilter', '10': 'BlockFilters'},
|
||||
{'1': 'MatchFields', '3': 6, '4': 3, '5': 11, '6': '.api.MatchField', '8': {}, '10': 'MatchFields'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `FindMineByMatchQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List findMineByMatchQueryDescriptor = $convert.base64Decode(
|
||||
'ChRGaW5kTWluZUJ5TWF0Y2hRdWVyeRI3CgZIZWFkZXIYASABKAsyFS5hcGkuUXVlcnlCYXNpY0'
|
||||
'hlYWRlckII+kIFigECEAFSBkhlYWRlchI0CgxCbG9ja0ZpbHRlcnMYBSADKAsyEC5hcGkuQmxv'
|
||||
'Y2tGaWx0ZXJSDEJsb2NrRmlsdGVycxJpCgtNYXRjaEZpZWxkcxgGIAMoCzIPLmFwaS5NYXRjaE'
|
||||
'ZpZWxkQjaSQTMyMU1hdGNoRmllbGQgbGlzdCBzdHJ1Y3R1cmUsIGZvciBGaW5kTWF0Y2hpbmcg'
|
||||
'cXVlcnlSC01hdGNoRmllbGRzOg6SQQsKCdIBBkhlYWRlcg==');
|
||||
|
||||
@$core.Deprecated('Use findByCommissionQueryDescriptor instead')
|
||||
const FindByCommissionQuery$json = {
|
||||
'1': 'FindByCommissionQuery',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'limitFilter', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'limitFilter'},
|
||||
{'1': 'queryContext', '3': 5, '4': 1, '5': 9, '10': 'queryContext'},
|
||||
{'1': 'BlockFilters', '3': 6, '4': 3, '5': 11, '6': '.api.BlockFilter', '10': 'BlockFilters'},
|
||||
{'1': 'Options', '3': 7, '4': 1, '5': 11, '6': '.api.AppointmentQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `FindByCommissionQuery`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List findByCommissionQueryDescriptor = $convert.base64Decode(
|
||||
'ChVGaW5kQnlDb21taXNzaW9uUXVlcnkSPAoGSGVhZGVyGAEgASgLMhcuYXBpLlF1ZXJ5UHJvam'
|
||||
'VjdEhlYWRlckILkkEA+kIFigECEAFSBkhlYWRlchJGCgtsaW1pdEZpbHRlchgEIAEoCUIkkkEh'
|
||||
'MhhOdW1iZXIgb2YgbWF4aW11bSByZXN1bHRKBSI1MDAiUgtsaW1pdEZpbHRlchIiCgxxdWVyeU'
|
||||
'NvbnRleHQYBSABKAlSDHF1ZXJ5Q29udGV4dBI0CgxCbG9ja0ZpbHRlcnMYBiADKAsyEC5hcGku'
|
||||
'QmxvY2tGaWx0ZXJSDEJsb2NrRmlsdGVycxI2CgdPcHRpb25zGAcgASgLMhwuYXBpLkFwcG9pbn'
|
||||
'RtZW50UXVlcnlPcHRpb25zUgdPcHRpb25zOg6SQQsKCdIBBkhlYWRlcg==');
|
||||
|
||||
@$core.Deprecated('Use findByCommissionResultDescriptor instead')
|
||||
const FindByCommissionResult$json = {
|
||||
'1': 'FindByCommissionResult',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResultHeader', '10': 'Header'},
|
||||
{'1': 'Objects', '3': 2, '4': 3, '5': 11, '6': '.api.Appointment', '10': 'Objects'},
|
||||
{'1': 'queryContext', '3': 3, '4': 1, '5': 9, '10': 'queryContext'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `FindByCommissionResult`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List findByCommissionResultDescriptor = $convert.base64Decode(
|
||||
'ChZGaW5kQnlDb21taXNzaW9uUmVzdWx0EikKBkhlYWRlchgBIAEoCzIRLmFwaS5SZXN1bHRIZW'
|
||||
'FkZXJSBkhlYWRlchIqCgdPYmplY3RzGAIgAygLMhAuYXBpLkFwcG9pbnRtZW50UgdPYmplY3Rz'
|
||||
'EiIKDHF1ZXJ5Q29udGV4dBgDIAEoCVIMcXVlcnlDb250ZXh0');
|
||||
|
||||
@$core.Deprecated('Use crossFindAppointmentResultDescriptor instead')
|
||||
const CrossFindAppointmentResult$json = {
|
||||
'1': 'CrossFindAppointmentResult',
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: dart_core_sdk
|
||||
description: dart libs from core model proto files
|
||||
version: 1.13.0-SNAPSHOT-260316102336
|
||||
version: 1.13.0-SNAPSHOT-260316103636
|
||||
homepage: ''
|
||||
publish_to: ''
|
||||
repository: ''
|
||||
|
||||
Reference in New Issue
Block a user