You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
# CHANGELOG
|
||||
|
||||
Lib version: 1.11.0-SNAPSHOT-250819142540
|
||||
Lib version: 1.11.0-SNAPSHOT-250820082309
|
||||
|
||||
@@ -23,10 +23,12 @@ class ActorByIdQuery extends $pb.GeneratedMessage {
|
||||
factory ActorByIdQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
$core.Iterable<$1.EntityID>? iDs,
|
||||
ActorQueryOptions? options,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iDs != null) result.iDs.addAll(iDs);
|
||||
if (options != null) result.options = options;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -38,6 +40,7 @@ class ActorByIdQuery extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
|
||||
..pc<$1.EntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $1.EntityID.create)
|
||||
..aOM<ActorQueryOptions>(3, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: ActorQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -71,6 +74,17 @@ class ActorByIdQuery extends $pb.GeneratedMessage {
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$1.EntityID> get iDs => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
ActorQueryOptions get options => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set options(ActorQueryOptions value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasOptions() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearOptions() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
ActorQueryOptions ensureOptions() => $_ensure(2);
|
||||
}
|
||||
|
||||
class ActorByIdResult extends $pb.GeneratedMessage {
|
||||
@@ -133,12 +147,14 @@ class ActorByFilterQuery extends $pb.GeneratedMessage {
|
||||
$core.String? limitFilter,
|
||||
$core.String? queryContext,
|
||||
$core.Iterable<$1.BlockFilter>? blockFilters,
|
||||
ActorQueryOptions? 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;
|
||||
}
|
||||
|
||||
@@ -152,6 +168,7 @@ class ActorByFilterQuery extends $pb.GeneratedMessage {
|
||||
..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<ActorQueryOptions>(7, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: ActorQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -205,6 +222,17 @@ class ActorByFilterQuery extends $pb.GeneratedMessage {
|
||||
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
|
||||
@$pb.TagNumber(6)
|
||||
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(3);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
ActorQueryOptions get options => $_getN(4);
|
||||
@$pb.TagNumber(7)
|
||||
set options(ActorQueryOptions value) => $_setField(7, value);
|
||||
@$pb.TagNumber(7)
|
||||
$core.bool hasOptions() => $_has(4);
|
||||
@$pb.TagNumber(7)
|
||||
void clearOptions() => $_clearField(7);
|
||||
@$pb.TagNumber(7)
|
||||
ActorQueryOptions ensureOptions() => $_ensure(4);
|
||||
}
|
||||
|
||||
class ActorByFilterResult extends $pb.GeneratedMessage {
|
||||
@@ -273,6 +301,36 @@ class ActorByFilterResult extends $pb.GeneratedMessage {
|
||||
void clearQueryContext() => $_clearField(3);
|
||||
}
|
||||
|
||||
class ActorQueryOptions extends $pb.GeneratedMessage {
|
||||
factory ActorQueryOptions() => create();
|
||||
|
||||
ActorQueryOptions._();
|
||||
|
||||
factory ActorQueryOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ActorQueryOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorQueryOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorQueryOptions clone() => ActorQueryOptions()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ActorQueryOptions copyWith(void Function(ActorQueryOptions) updates) => super.copyWith((message) => updates(message as ActorQueryOptions)) as ActorQueryOptions;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorQueryOptions create() => ActorQueryOptions._();
|
||||
@$core.override
|
||||
ActorQueryOptions createEmptyInstance() => create();
|
||||
static $pb.PbList<ActorQueryOptions> createRepeated() => $pb.PbList<ActorQueryOptions>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ActorQueryOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ActorQueryOptions>(create);
|
||||
static ActorQueryOptions? _defaultInstance;
|
||||
}
|
||||
|
||||
class ActorByMatchQuery extends $pb.GeneratedMessage {
|
||||
factory ActorByMatchQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
|
||||
@@ -20,6 +20,7 @@ const ActorByIdQuery$json = {
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'IDs', '3': 2, '4': 3, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'IDs'},
|
||||
{'1': 'Options', '3': 3, '4': 1, '5': 11, '6': '.api.ActorQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -28,7 +29,8 @@ const ActorByIdQuery$json = {
|
||||
final $typed_data.Uint8List actorByIdQueryDescriptor = $convert.base64Decode(
|
||||
'Cg5BY3RvckJ5SWRRdWVyeRI5CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SGVhZG'
|
||||
'VyQgj6QgWKAQIQAVIGSGVhZGVyEikKA0lEcxgCIAMoCzINLmFwaS5FbnRpdHlJREII+kIFkgEC'
|
||||
'CAFSA0lEczodkkERCg/SAQZIZWFkZXLSAQNJRHOiuxgFUXVlcnk=');
|
||||
'CAFSA0lEcxIwCgdPcHRpb25zGAMgASgLMhYuYXBpLkFjdG9yUXVlcnlPcHRpb25zUgdPcHRpb2'
|
||||
'5zOh2SQREKD9IBBkhlYWRlctIBA0lEc6K7GAVRdWVyeQ==');
|
||||
|
||||
@$core.Deprecated('Use actorByIdResultDescriptor instead')
|
||||
const ActorByIdResult$json = {
|
||||
@@ -54,6 +56,7 @@ const ActorByFilterQuery$json = {
|
||||
{'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.ActorQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -64,7 +67,8 @@ final $typed_data.Uint8List actorByFilterQueryDescriptor = $convert.base64Decode
|
||||
'hlYWRlckILkkEA+kIFigECEAFSBkhlYWRlchJGCgtsaW1pdEZpbHRlchgEIAEoCUIkkkEhMhhO'
|
||||
'dW1iZXIgb2YgbWF4aW11bSByZXN1bHRKBSI1MDAiUgtsaW1pdEZpbHRlchIiCgxxdWVyeUNvbn'
|
||||
'RleHQYBSABKAlSDHF1ZXJ5Q29udGV4dBI0CgxCbG9ja0ZpbHRlcnMYBiADKAsyEC5hcGkuQmxv'
|
||||
'Y2tGaWx0ZXJSDEJsb2NrRmlsdGVyczoOkkELCgnSAQZIZWFkZXI=');
|
||||
'Y2tGaWx0ZXJSDEJsb2NrRmlsdGVycxIwCgdPcHRpb25zGAcgASgLMhYuYXBpLkFjdG9yUXVlcn'
|
||||
'lPcHRpb25zUgdPcHRpb25zOg6SQQsKCdIBBkhlYWRlcg==');
|
||||
|
||||
@$core.Deprecated('Use actorByFilterResultDescriptor instead')
|
||||
const ActorByFilterResult$json = {
|
||||
@@ -82,6 +86,15 @@ final $typed_data.Uint8List actorByFilterResultDescriptor = $convert.base64Decod
|
||||
'JSBkhlYWRlchIkCgdPYmplY3RzGAIgAygLMgouYXBpLkFjdG9yUgdPYmplY3RzEiIKDHF1ZXJ5'
|
||||
'Q29udGV4dBgDIAEoCVIMcXVlcnlDb250ZXh0');
|
||||
|
||||
@$core.Deprecated('Use actorQueryOptionsDescriptor instead')
|
||||
const ActorQueryOptions$json = {
|
||||
'1': 'ActorQueryOptions',
|
||||
};
|
||||
|
||||
/// Descriptor for `ActorQueryOptions`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List actorQueryOptionsDescriptor = $convert.base64Decode(
|
||||
'ChFBY3RvclF1ZXJ5T3B0aW9ucw==');
|
||||
|
||||
@$core.Deprecated('Use actorByMatchQueryDescriptor instead')
|
||||
const ActorByMatchQuery$json = {
|
||||
'1': 'ActorByMatchQuery',
|
||||
|
||||
@@ -23,10 +23,12 @@ class AppointmentByIdQuery extends $pb.GeneratedMessage {
|
||||
factory AppointmentByIdQuery({
|
||||
$1.QuerySiteHeader? header,
|
||||
$core.Iterable<$1.EntityID>? iDs,
|
||||
AppointmentQueryOptions? options,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iDs != null) result.iDs.addAll(iDs);
|
||||
if (options != null) result.options = options;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -38,6 +40,7 @@ class AppointmentByIdQuery extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.QuerySiteHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QuerySiteHeader.create)
|
||||
..pc<$1.EntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $1.EntityID.create)
|
||||
..aOM<AppointmentQueryOptions>(3, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: AppointmentQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -71,6 +74,17 @@ class AppointmentByIdQuery extends $pb.GeneratedMessage {
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$1.EntityID> get iDs => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
AppointmentQueryOptions get options => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set options(AppointmentQueryOptions value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasOptions() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearOptions() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
AppointmentQueryOptions ensureOptions() => $_ensure(2);
|
||||
}
|
||||
|
||||
class AppointmentByIdResult extends $pb.GeneratedMessage {
|
||||
@@ -133,12 +147,14 @@ class AppointmentByFilterQuery extends $pb.GeneratedMessage {
|
||||
$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;
|
||||
}
|
||||
|
||||
@@ -152,6 +168,7 @@ class AppointmentByFilterQuery extends $pb.GeneratedMessage {
|
||||
..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
|
||||
;
|
||||
|
||||
@@ -205,6 +222,17 @@ class AppointmentByFilterQuery extends $pb.GeneratedMessage {
|
||||
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
|
||||
@$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 AppointmentByFilterResult extends $pb.GeneratedMessage {
|
||||
@@ -273,6 +301,36 @@ class AppointmentByFilterResult extends $pb.GeneratedMessage {
|
||||
void clearQueryContext() => $_clearField(3);
|
||||
}
|
||||
|
||||
class AppointmentQueryOptions extends $pb.GeneratedMessage {
|
||||
factory AppointmentQueryOptions() => create();
|
||||
|
||||
AppointmentQueryOptions._();
|
||||
|
||||
factory AppointmentQueryOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory AppointmentQueryOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentQueryOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentQueryOptions clone() => AppointmentQueryOptions()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentQueryOptions copyWith(void Function(AppointmentQueryOptions) updates) => super.copyWith((message) => updates(message as AppointmentQueryOptions)) as AppointmentQueryOptions;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentQueryOptions create() => AppointmentQueryOptions._();
|
||||
@$core.override
|
||||
AppointmentQueryOptions createEmptyInstance() => create();
|
||||
static $pb.PbList<AppointmentQueryOptions> createRepeated() => $pb.PbList<AppointmentQueryOptions>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentQueryOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentQueryOptions>(create);
|
||||
static AppointmentQueryOptions? _defaultInstance;
|
||||
}
|
||||
|
||||
class AppointmentByMatchQuery extends $pb.GeneratedMessage {
|
||||
factory AppointmentByMatchQuery({
|
||||
$1.QuerySiteHeader? header,
|
||||
|
||||
@@ -20,6 +20,7 @@ const AppointmentByIdQuery$json = {
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QuerySiteHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'IDs', '3': 2, '4': 3, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'IDs'},
|
||||
{'1': 'Options', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -28,7 +29,8 @@ const AppointmentByIdQuery$json = {
|
||||
final $typed_data.Uint8List appointmentByIdQueryDescriptor = $convert.base64Decode(
|
||||
'ChRBcHBvaW50bWVudEJ5SWRRdWVyeRI2CgZIZWFkZXIYASABKAsyFC5hcGkuUXVlcnlTaXRlSG'
|
||||
'VhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEikKA0lEcxgCIAMoCzINLmFwaS5FbnRpdHlJREII+kIF'
|
||||
'kgECCAFSA0lEczodkkERCg/SAQZIZWFkZXLSAQNJRHOiuxgFUXVlcnk=');
|
||||
'kgECCAFSA0lEcxI2CgdPcHRpb25zGAMgASgLMhwuYXBpLkFwcG9pbnRtZW50UXVlcnlPcHRpb2'
|
||||
'5zUgdPcHRpb25zOh2SQREKD9IBBkhlYWRlctIBA0lEc6K7GAVRdWVyeQ==');
|
||||
|
||||
@$core.Deprecated('Use appointmentByIdResultDescriptor instead')
|
||||
const AppointmentByIdResult$json = {
|
||||
@@ -54,6 +56,7 @@ const AppointmentByFilterQuery$json = {
|
||||
{'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': {},
|
||||
};
|
||||
@@ -64,7 +67,8 @@ final $typed_data.Uint8List appointmentByFilterQueryDescriptor = $convert.base64
|
||||
'l0ZUhlYWRlckILkkEA+kIFigECEAFSBkhlYWRlchJGCgtsaW1pdEZpbHRlchgEIAEoCUIkkkEh'
|
||||
'MhhOdW1iZXIgb2YgbWF4aW11bSByZXN1bHRKBSI1MDAiUgtsaW1pdEZpbHRlchIiCgxxdWVyeU'
|
||||
'NvbnRleHQYBSABKAlSDHF1ZXJ5Q29udGV4dBI0CgxCbG9ja0ZpbHRlcnMYBiADKAsyEC5hcGku'
|
||||
'QmxvY2tGaWx0ZXJSDEJsb2NrRmlsdGVyczoOkkELCgnSAQZIZWFkZXI=');
|
||||
'QmxvY2tGaWx0ZXJSDEJsb2NrRmlsdGVycxI2CgdPcHRpb25zGAcgASgLMhwuYXBpLkFwcG9pbn'
|
||||
'RtZW50UXVlcnlPcHRpb25zUgdPcHRpb25zOg6SQQsKCdIBBkhlYWRlcg==');
|
||||
|
||||
@$core.Deprecated('Use appointmentByFilterResultDescriptor instead')
|
||||
const AppointmentByFilterResult$json = {
|
||||
@@ -82,6 +86,15 @@ final $typed_data.Uint8List appointmentByFilterResultDescriptor = $convert.base6
|
||||
'RIZWFkZXJSBkhlYWRlchIqCgdPYmplY3RzGAIgAygLMhAuYXBpLkFwcG9pbnRtZW50UgdPYmpl'
|
||||
'Y3RzEiIKDHF1ZXJ5Q29udGV4dBgDIAEoCVIMcXVlcnlDb250ZXh0');
|
||||
|
||||
@$core.Deprecated('Use appointmentQueryOptionsDescriptor instead')
|
||||
const AppointmentQueryOptions$json = {
|
||||
'1': 'AppointmentQueryOptions',
|
||||
};
|
||||
|
||||
/// Descriptor for `AppointmentQueryOptions`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List appointmentQueryOptionsDescriptor = $convert.base64Decode(
|
||||
'ChdBcHBvaW50bWVudFF1ZXJ5T3B0aW9ucw==');
|
||||
|
||||
@$core.Deprecated('Use appointmentByMatchQueryDescriptor instead')
|
||||
const AppointmentByMatchQuery$json = {
|
||||
'1': 'AppointmentByMatchQuery',
|
||||
|
||||
@@ -24,10 +24,12 @@ class ClaimByIdQuery extends $pb.GeneratedMessage {
|
||||
factory ClaimByIdQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
$core.Iterable<$1.EntityID>? iDs,
|
||||
ClaimQueryOptions? options,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iDs != null) result.iDs.addAll(iDs);
|
||||
if (options != null) result.options = options;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -39,6 +41,7 @@ class ClaimByIdQuery extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
|
||||
..pc<$1.EntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $1.EntityID.create)
|
||||
..aOM<ClaimQueryOptions>(3, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: ClaimQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -72,6 +75,17 @@ class ClaimByIdQuery extends $pb.GeneratedMessage {
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$1.EntityID> get iDs => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
ClaimQueryOptions get options => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set options(ClaimQueryOptions value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasOptions() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearOptions() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
ClaimQueryOptions ensureOptions() => $_ensure(2);
|
||||
}
|
||||
|
||||
class ClaimByIdResult extends $pb.GeneratedMessage {
|
||||
@@ -134,12 +148,14 @@ class ClaimByFilterQuery extends $pb.GeneratedMessage {
|
||||
$core.String? limitFilter,
|
||||
$core.String? queryContext,
|
||||
$core.Iterable<$1.BlockFilter>? blockFilters,
|
||||
ClaimQueryOptions? 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;
|
||||
}
|
||||
|
||||
@@ -153,6 +169,7 @@ class ClaimByFilterQuery extends $pb.GeneratedMessage {
|
||||
..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<ClaimQueryOptions>(7, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: ClaimQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -206,6 +223,17 @@ class ClaimByFilterQuery extends $pb.GeneratedMessage {
|
||||
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
|
||||
@$pb.TagNumber(6)
|
||||
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(3);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
ClaimQueryOptions get options => $_getN(4);
|
||||
@$pb.TagNumber(7)
|
||||
set options(ClaimQueryOptions value) => $_setField(7, value);
|
||||
@$pb.TagNumber(7)
|
||||
$core.bool hasOptions() => $_has(4);
|
||||
@$pb.TagNumber(7)
|
||||
void clearOptions() => $_clearField(7);
|
||||
@$pb.TagNumber(7)
|
||||
ClaimQueryOptions ensureOptions() => $_ensure(4);
|
||||
}
|
||||
|
||||
class ClaimByFilterResult extends $pb.GeneratedMessage {
|
||||
@@ -274,6 +302,36 @@ class ClaimByFilterResult extends $pb.GeneratedMessage {
|
||||
void clearQueryContext() => $_clearField(3);
|
||||
}
|
||||
|
||||
class ClaimQueryOptions extends $pb.GeneratedMessage {
|
||||
factory ClaimQueryOptions() => create();
|
||||
|
||||
ClaimQueryOptions._();
|
||||
|
||||
factory ClaimQueryOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ClaimQueryOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimQueryOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ClaimQueryOptions clone() => ClaimQueryOptions()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ClaimQueryOptions copyWith(void Function(ClaimQueryOptions) updates) => super.copyWith((message) => updates(message as ClaimQueryOptions)) as ClaimQueryOptions;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimQueryOptions create() => ClaimQueryOptions._();
|
||||
@$core.override
|
||||
ClaimQueryOptions createEmptyInstance() => create();
|
||||
static $pb.PbList<ClaimQueryOptions> createRepeated() => $pb.PbList<ClaimQueryOptions>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ClaimQueryOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimQueryOptions>(create);
|
||||
static ClaimQueryOptions? _defaultInstance;
|
||||
}
|
||||
|
||||
class ClaimByMatchQuery extends $pb.GeneratedMessage {
|
||||
factory ClaimByMatchQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
|
||||
@@ -20,6 +20,7 @@ const ClaimByIdQuery$json = {
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'IDs', '3': 2, '4': 3, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'IDs'},
|
||||
{'1': 'Options', '3': 3, '4': 1, '5': 11, '6': '.api.ClaimQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -28,7 +29,8 @@ const ClaimByIdQuery$json = {
|
||||
final $typed_data.Uint8List claimByIdQueryDescriptor = $convert.base64Decode(
|
||||
'Cg5DbGFpbUJ5SWRRdWVyeRI5CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SGVhZG'
|
||||
'VyQgj6QgWKAQIQAVIGSGVhZGVyEikKA0lEcxgCIAMoCzINLmFwaS5FbnRpdHlJREII+kIFkgEC'
|
||||
'CAFSA0lEczodkkERCg/SAQZIZWFkZXLSAQNJRHOiuxgFUXVlcnk=');
|
||||
'CAFSA0lEcxIwCgdPcHRpb25zGAMgASgLMhYuYXBpLkNsYWltUXVlcnlPcHRpb25zUgdPcHRpb2'
|
||||
'5zOh2SQREKD9IBBkhlYWRlctIBA0lEc6K7GAVRdWVyeQ==');
|
||||
|
||||
@$core.Deprecated('Use claimByIdResultDescriptor instead')
|
||||
const ClaimByIdResult$json = {
|
||||
@@ -54,6 +56,7 @@ const ClaimByFilterQuery$json = {
|
||||
{'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.ClaimQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -64,7 +67,8 @@ final $typed_data.Uint8List claimByFilterQueryDescriptor = $convert.base64Decode
|
||||
'hlYWRlckILkkEA+kIFigECEAFSBkhlYWRlchJGCgtsaW1pdEZpbHRlchgEIAEoCUIkkkEhMhhO'
|
||||
'dW1iZXIgb2YgbWF4aW11bSByZXN1bHRKBSI1MDAiUgtsaW1pdEZpbHRlchIiCgxxdWVyeUNvbn'
|
||||
'RleHQYBSABKAlSDHF1ZXJ5Q29udGV4dBI0CgxCbG9ja0ZpbHRlcnMYBiADKAsyEC5hcGkuQmxv'
|
||||
'Y2tGaWx0ZXJSDEJsb2NrRmlsdGVyczoOkkELCgnSAQZIZWFkZXI=');
|
||||
'Y2tGaWx0ZXJSDEJsb2NrRmlsdGVycxIwCgdPcHRpb25zGAcgASgLMhYuYXBpLkNsYWltUXVlcn'
|
||||
'lPcHRpb25zUgdPcHRpb25zOg6SQQsKCdIBBkhlYWRlcg==');
|
||||
|
||||
@$core.Deprecated('Use claimByFilterResultDescriptor instead')
|
||||
const ClaimByFilterResult$json = {
|
||||
@@ -82,6 +86,15 @@ final $typed_data.Uint8List claimByFilterResultDescriptor = $convert.base64Decod
|
||||
'JSBkhlYWRlchIkCgdPYmplY3RzGAIgAygLMgouYXBpLkNsYWltUgdPYmplY3RzEiIKDHF1ZXJ5'
|
||||
'Q29udGV4dBgDIAEoCVIMcXVlcnlDb250ZXh0');
|
||||
|
||||
@$core.Deprecated('Use claimQueryOptionsDescriptor instead')
|
||||
const ClaimQueryOptions$json = {
|
||||
'1': 'ClaimQueryOptions',
|
||||
};
|
||||
|
||||
/// Descriptor for `ClaimQueryOptions`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List claimQueryOptionsDescriptor = $convert.base64Decode(
|
||||
'ChFDbGFpbVF1ZXJ5T3B0aW9ucw==');
|
||||
|
||||
@$core.Deprecated('Use claimByMatchQueryDescriptor instead')
|
||||
const ClaimByMatchQuery$json = {
|
||||
'1': 'ClaimByMatchQuery',
|
||||
|
||||
@@ -23,10 +23,12 @@ class ExecutionflowByIdQuery extends $pb.GeneratedMessage {
|
||||
factory ExecutionflowByIdQuery({
|
||||
$2.QueryProjectHeader? header,
|
||||
$core.Iterable<$2.EntityID>? iDs,
|
||||
ExecutionflowQueryOptions? options,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iDs != null) result.iDs.addAll(iDs);
|
||||
if (options != null) result.options = options;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -38,6 +40,7 @@ class ExecutionflowByIdQuery extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ExecutionflowByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$2.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.QueryProjectHeader.create)
|
||||
..pc<$2.EntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $2.EntityID.create)
|
||||
..aOM<ExecutionflowQueryOptions>(3, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: ExecutionflowQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -71,6 +74,17 @@ class ExecutionflowByIdQuery extends $pb.GeneratedMessage {
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$2.EntityID> get iDs => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
ExecutionflowQueryOptions get options => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set options(ExecutionflowQueryOptions value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasOptions() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearOptions() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
ExecutionflowQueryOptions ensureOptions() => $_ensure(2);
|
||||
}
|
||||
|
||||
class ExecutionflowByIdResult extends $pb.GeneratedMessage {
|
||||
@@ -133,12 +147,14 @@ class ExecutionflowByFilterQuery extends $pb.GeneratedMessage {
|
||||
$core.String? limitFilter,
|
||||
$core.String? queryContext,
|
||||
$core.Iterable<$2.BlockFilter>? blockFilters,
|
||||
ExecutionflowQueryOptions? 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;
|
||||
}
|
||||
|
||||
@@ -152,6 +168,7 @@ class ExecutionflowByFilterQuery extends $pb.GeneratedMessage {
|
||||
..aOS(4, _omitFieldNames ? '' : 'limitFilter', protoName: 'limitFilter')
|
||||
..aOS(5, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
|
||||
..pc<$2.BlockFilter>(6, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $2.BlockFilter.create)
|
||||
..aOM<ExecutionflowQueryOptions>(7, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: ExecutionflowQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -205,6 +222,17 @@ class ExecutionflowByFilterQuery extends $pb.GeneratedMessage {
|
||||
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
|
||||
@$pb.TagNumber(6)
|
||||
$pb.PbList<$2.BlockFilter> get blockFilters => $_getList(3);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
ExecutionflowQueryOptions get options => $_getN(4);
|
||||
@$pb.TagNumber(7)
|
||||
set options(ExecutionflowQueryOptions value) => $_setField(7, value);
|
||||
@$pb.TagNumber(7)
|
||||
$core.bool hasOptions() => $_has(4);
|
||||
@$pb.TagNumber(7)
|
||||
void clearOptions() => $_clearField(7);
|
||||
@$pb.TagNumber(7)
|
||||
ExecutionflowQueryOptions ensureOptions() => $_ensure(4);
|
||||
}
|
||||
|
||||
class ExecutionflowByFilterResult extends $pb.GeneratedMessage {
|
||||
@@ -273,6 +301,52 @@ class ExecutionflowByFilterResult extends $pb.GeneratedMessage {
|
||||
void clearQueryContext() => $_clearField(3);
|
||||
}
|
||||
|
||||
class ExecutionflowQueryOptions extends $pb.GeneratedMessage {
|
||||
factory ExecutionflowQueryOptions({
|
||||
$core.bool? truncateLines,
|
||||
}) {
|
||||
final result = create();
|
||||
if (truncateLines != null) result.truncateLines = truncateLines;
|
||||
return result;
|
||||
}
|
||||
|
||||
ExecutionflowQueryOptions._();
|
||||
|
||||
factory ExecutionflowQueryOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ExecutionflowQueryOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ExecutionflowQueryOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOB(1, _omitFieldNames ? '' : 'TruncateLines', protoName: 'TruncateLines')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ExecutionflowQueryOptions clone() => ExecutionflowQueryOptions()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ExecutionflowQueryOptions copyWith(void Function(ExecutionflowQueryOptions) updates) => super.copyWith((message) => updates(message as ExecutionflowQueryOptions)) as ExecutionflowQueryOptions;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ExecutionflowQueryOptions create() => ExecutionflowQueryOptions._();
|
||||
@$core.override
|
||||
ExecutionflowQueryOptions createEmptyInstance() => create();
|
||||
static $pb.PbList<ExecutionflowQueryOptions> createRepeated() => $pb.PbList<ExecutionflowQueryOptions>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ExecutionflowQueryOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ExecutionflowQueryOptions>(create);
|
||||
static ExecutionflowQueryOptions? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool get truncateLines => $_getBF(0);
|
||||
@$pb.TagNumber(1)
|
||||
set truncateLines($core.bool value) => $_setBool(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasTruncateLines() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearTruncateLines() => $_clearField(1);
|
||||
}
|
||||
|
||||
|
||||
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
|
||||
@@ -20,6 +20,7 @@ const ExecutionflowByIdQuery$json = {
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'IDs', '3': 2, '4': 3, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'IDs'},
|
||||
{'1': 'Options', '3': 3, '4': 1, '5': 11, '6': '.api.ExecutionflowQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -28,7 +29,8 @@ const ExecutionflowByIdQuery$json = {
|
||||
final $typed_data.Uint8List executionflowByIdQueryDescriptor = $convert.base64Decode(
|
||||
'ChZFeGVjdXRpb25mbG93QnlJZFF1ZXJ5EjkKBkhlYWRlchgBIAEoCzIXLmFwaS5RdWVyeVByb2'
|
||||
'plY3RIZWFkZXJCCPpCBYoBAhABUgZIZWFkZXISKQoDSURzGAIgAygLMg0uYXBpLkVudGl0eUlE'
|
||||
'Qgj6QgWSAQIIAVIDSURzOh2SQREKD9IBBkhlYWRlctIBA0lEc6K7GAVRdWVyeQ==');
|
||||
'Qgj6QgWSAQIIAVIDSURzEjgKB09wdGlvbnMYAyABKAsyHi5hcGkuRXhlY3V0aW9uZmxvd1F1ZX'
|
||||
'J5T3B0aW9uc1IHT3B0aW9uczodkkERCg/SAQZIZWFkZXLSAQNJRHOiuxgFUXVlcnk=');
|
||||
|
||||
@$core.Deprecated('Use executionflowByIdResultDescriptor instead')
|
||||
const ExecutionflowByIdResult$json = {
|
||||
@@ -54,6 +56,7 @@ const ExecutionflowByFilterQuery$json = {
|
||||
{'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.ExecutionflowQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -64,7 +67,8 @@ final $typed_data.Uint8List executionflowByFilterQueryDescriptor = $convert.base
|
||||
'lQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEkYKC2xpbWl0RmlsdGVyGAQgASgJQiSS'
|
||||
'QSEyGE51bWJlciBvZiBtYXhpbXVtIHJlc3VsdEoFIjUwMCJSC2xpbWl0RmlsdGVyEiIKDHF1ZX'
|
||||
'J5Q29udGV4dBgFIAEoCVIMcXVlcnlDb250ZXh0EjQKDEJsb2NrRmlsdGVycxgGIAMoCzIQLmFw'
|
||||
'aS5CbG9ja0ZpbHRlclIMQmxvY2tGaWx0ZXJzOg6SQQsKCdIBBkhlYWRlcg==');
|
||||
'aS5CbG9ja0ZpbHRlclIMQmxvY2tGaWx0ZXJzEjgKB09wdGlvbnMYByABKAsyHi5hcGkuRXhlY3'
|
||||
'V0aW9uZmxvd1F1ZXJ5T3B0aW9uc1IHT3B0aW9uczoOkkELCgnSAQZIZWFkZXI=');
|
||||
|
||||
@$core.Deprecated('Use executionflowByFilterResultDescriptor instead')
|
||||
const ExecutionflowByFilterResult$json = {
|
||||
@@ -82,3 +86,16 @@ final $typed_data.Uint8List executionflowByFilterResultDescriptor = $convert.bas
|
||||
'VsdEhlYWRlclIGSGVhZGVyEiwKB09iamVjdHMYAiADKAsyEi5hcGkuRXhlY3V0aW9uZmxvd1IH'
|
||||
'T2JqZWN0cxIiCgxxdWVyeUNvbnRleHQYAyABKAlSDHF1ZXJ5Q29udGV4dA==');
|
||||
|
||||
@$core.Deprecated('Use executionflowQueryOptionsDescriptor instead')
|
||||
const ExecutionflowQueryOptions$json = {
|
||||
'1': 'ExecutionflowQueryOptions',
|
||||
'2': [
|
||||
{'1': 'TruncateLines', '3': 1, '4': 1, '5': 8, '10': 'TruncateLines'},
|
||||
],
|
||||
};
|
||||
|
||||
/// Descriptor for `ExecutionflowQueryOptions`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List executionflowQueryOptionsDescriptor = $convert.base64Decode(
|
||||
'ChlFeGVjdXRpb25mbG93UXVlcnlPcHRpb25zEiQKDVRydW5jYXRlTGluZXMYASABKAhSDVRydW'
|
||||
'5jYXRlTGluZXM=');
|
||||
|
||||
|
||||
@@ -23,10 +23,12 @@ class HandlingunitByIdQuery extends $pb.GeneratedMessage {
|
||||
factory HandlingunitByIdQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
$core.Iterable<$1.EntityID>? iDs,
|
||||
HandlingunitQueryOptions? options,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iDs != null) result.iDs.addAll(iDs);
|
||||
if (options != null) result.options = options;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -38,6 +40,7 @@ class HandlingunitByIdQuery extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'HandlingunitByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
|
||||
..pc<$1.EntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $1.EntityID.create)
|
||||
..aOM<HandlingunitQueryOptions>(3, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: HandlingunitQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -71,6 +74,17 @@ class HandlingunitByIdQuery extends $pb.GeneratedMessage {
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$1.EntityID> get iDs => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
HandlingunitQueryOptions get options => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set options(HandlingunitQueryOptions value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasOptions() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearOptions() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
HandlingunitQueryOptions ensureOptions() => $_ensure(2);
|
||||
}
|
||||
|
||||
class HandlingunitByIdResult extends $pb.GeneratedMessage {
|
||||
@@ -133,12 +147,14 @@ class HandlingunitByFilterQuery extends $pb.GeneratedMessage {
|
||||
$core.String? limitFilter,
|
||||
$core.String? queryContext,
|
||||
$core.Iterable<$1.BlockFilter>? blockFilters,
|
||||
HandlingunitQueryOptions? 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;
|
||||
}
|
||||
|
||||
@@ -152,6 +168,7 @@ class HandlingunitByFilterQuery extends $pb.GeneratedMessage {
|
||||
..aOS(4, _omitFieldNames ? '' : 'limitFilter', protoName: 'limitFilter')
|
||||
..aOS(5, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
|
||||
..pc<$1.BlockFilter>(7, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $1.BlockFilter.create)
|
||||
..aOM<HandlingunitQueryOptions>(8, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: HandlingunitQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -204,6 +221,17 @@ class HandlingunitByFilterQuery extends $pb.GeneratedMessage {
|
||||
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
|
||||
@$pb.TagNumber(7)
|
||||
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(3);
|
||||
|
||||
@$pb.TagNumber(8)
|
||||
HandlingunitQueryOptions get options => $_getN(4);
|
||||
@$pb.TagNumber(8)
|
||||
set options(HandlingunitQueryOptions value) => $_setField(8, value);
|
||||
@$pb.TagNumber(8)
|
||||
$core.bool hasOptions() => $_has(4);
|
||||
@$pb.TagNumber(8)
|
||||
void clearOptions() => $_clearField(8);
|
||||
@$pb.TagNumber(8)
|
||||
HandlingunitQueryOptions ensureOptions() => $_ensure(4);
|
||||
}
|
||||
|
||||
class HandlingunitByFilterResult extends $pb.GeneratedMessage {
|
||||
@@ -272,6 +300,36 @@ class HandlingunitByFilterResult extends $pb.GeneratedMessage {
|
||||
void clearQueryContext() => $_clearField(3);
|
||||
}
|
||||
|
||||
class HandlingunitQueryOptions extends $pb.GeneratedMessage {
|
||||
factory HandlingunitQueryOptions() => create();
|
||||
|
||||
HandlingunitQueryOptions._();
|
||||
|
||||
factory HandlingunitQueryOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory HandlingunitQueryOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'HandlingunitQueryOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
HandlingunitQueryOptions clone() => HandlingunitQueryOptions()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
HandlingunitQueryOptions copyWith(void Function(HandlingunitQueryOptions) updates) => super.copyWith((message) => updates(message as HandlingunitQueryOptions)) as HandlingunitQueryOptions;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static HandlingunitQueryOptions create() => HandlingunitQueryOptions._();
|
||||
@$core.override
|
||||
HandlingunitQueryOptions createEmptyInstance() => create();
|
||||
static $pb.PbList<HandlingunitQueryOptions> createRepeated() => $pb.PbList<HandlingunitQueryOptions>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static HandlingunitQueryOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<HandlingunitQueryOptions>(create);
|
||||
static HandlingunitQueryOptions? _defaultInstance;
|
||||
}
|
||||
|
||||
class HandlingunitByMatchQuery extends $pb.GeneratedMessage {
|
||||
factory HandlingunitByMatchQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
|
||||
@@ -20,6 +20,7 @@ const HandlingunitByIdQuery$json = {
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'IDs', '3': 2, '4': 3, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'IDs'},
|
||||
{'1': 'Options', '3': 3, '4': 1, '5': 11, '6': '.api.HandlingunitQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -28,7 +29,8 @@ const HandlingunitByIdQuery$json = {
|
||||
final $typed_data.Uint8List handlingunitByIdQueryDescriptor = $convert.base64Decode(
|
||||
'ChVIYW5kbGluZ3VuaXRCeUlkUXVlcnkSOQoGSGVhZGVyGAEgASgLMhcuYXBpLlF1ZXJ5UHJvam'
|
||||
'VjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchIpCgNJRHMYAiADKAsyDS5hcGkuRW50aXR5SURC'
|
||||
'CPpCBZIBAggBUgNJRHM6HZJBEQoP0gEGSGVhZGVy0gEDSURzorsYBVF1ZXJ5');
|
||||
'CPpCBZIBAggBUgNJRHMSNwoHT3B0aW9ucxgDIAEoCzIdLmFwaS5IYW5kbGluZ3VuaXRRdWVyeU'
|
||||
'9wdGlvbnNSB09wdGlvbnM6HZJBEQoP0gEGSGVhZGVy0gEDSURzorsYBVF1ZXJ5');
|
||||
|
||||
@$core.Deprecated('Use handlingunitByIdResultDescriptor instead')
|
||||
const HandlingunitByIdResult$json = {
|
||||
@@ -54,6 +56,7 @@ const HandlingunitByFilterQuery$json = {
|
||||
{'1': 'limitFilter', '3': 4, '4': 1, '5': 9, '10': 'limitFilter'},
|
||||
{'1': 'queryContext', '3': 5, '4': 1, '5': 9, '10': 'queryContext'},
|
||||
{'1': 'BlockFilters', '3': 7, '4': 3, '5': 11, '6': '.api.BlockFilter', '10': 'BlockFilters'},
|
||||
{'1': 'Options', '3': 8, '4': 1, '5': 11, '6': '.api.HandlingunitQueryOptions', '10': 'Options'},
|
||||
],
|
||||
};
|
||||
|
||||
@@ -62,7 +65,8 @@ final $typed_data.Uint8List handlingunitByFilterQueryDescriptor = $convert.base6
|
||||
'ChlIYW5kbGluZ3VuaXRCeUZpbHRlclF1ZXJ5Ei8KBkhlYWRlchgBIAEoCzIXLmFwaS5RdWVyeV'
|
||||
'Byb2plY3RIZWFkZXJSBkhlYWRlchIgCgtsaW1pdEZpbHRlchgEIAEoCVILbGltaXRGaWx0ZXIS'
|
||||
'IgoMcXVlcnlDb250ZXh0GAUgASgJUgxxdWVyeUNvbnRleHQSNAoMQmxvY2tGaWx0ZXJzGAcgAy'
|
||||
'gLMhAuYXBpLkJsb2NrRmlsdGVyUgxCbG9ja0ZpbHRlcnM=');
|
||||
'gLMhAuYXBpLkJsb2NrRmlsdGVyUgxCbG9ja0ZpbHRlcnMSNwoHT3B0aW9ucxgIIAEoCzIdLmFw'
|
||||
'aS5IYW5kbGluZ3VuaXRRdWVyeU9wdGlvbnNSB09wdGlvbnM=');
|
||||
|
||||
@$core.Deprecated('Use handlingunitByFilterResultDescriptor instead')
|
||||
const HandlingunitByFilterResult$json = {
|
||||
@@ -80,6 +84,15 @@ final $typed_data.Uint8List handlingunitByFilterResultDescriptor = $convert.base
|
||||
'x0SGVhZGVyUgZIZWFkZXISKwoHT2JqZWN0cxgCIAMoCzIRLmFwaS5IYW5kbGluZ3VuaXRSB09i'
|
||||
'amVjdHMSIgoMcXVlcnlDb250ZXh0GAMgASgJUgxxdWVyeUNvbnRleHQ=');
|
||||
|
||||
@$core.Deprecated('Use handlingunitQueryOptionsDescriptor instead')
|
||||
const HandlingunitQueryOptions$json = {
|
||||
'1': 'HandlingunitQueryOptions',
|
||||
};
|
||||
|
||||
/// Descriptor for `HandlingunitQueryOptions`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List handlingunitQueryOptionsDescriptor = $convert.base64Decode(
|
||||
'ChhIYW5kbGluZ3VuaXRRdWVyeU9wdGlvbnM=');
|
||||
|
||||
@$core.Deprecated('Use handlingunitByMatchQueryDescriptor instead')
|
||||
const HandlingunitByMatchQuery$json = {
|
||||
'1': 'HandlingunitByMatchQuery',
|
||||
|
||||
@@ -24,10 +24,12 @@ class ItemByIdQuery extends $pb.GeneratedMessage {
|
||||
factory ItemByIdQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
$core.Iterable<$1.EntityID>? iDs,
|
||||
ItemQueryOptions? options,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iDs != null) result.iDs.addAll(iDs);
|
||||
if (options != null) result.options = options;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -39,6 +41,7 @@ class ItemByIdQuery extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ItemByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
|
||||
..pc<$1.EntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $1.EntityID.create)
|
||||
..aOM<ItemQueryOptions>(3, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: ItemQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -72,6 +75,17 @@ class ItemByIdQuery extends $pb.GeneratedMessage {
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$1.EntityID> get iDs => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
ItemQueryOptions get options => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set options(ItemQueryOptions value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasOptions() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearOptions() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
ItemQueryOptions ensureOptions() => $_ensure(2);
|
||||
}
|
||||
|
||||
class ItemByIdResult extends $pb.GeneratedMessage {
|
||||
@@ -135,12 +149,14 @@ class ItemByFilterQuery extends $pb.GeneratedMessage {
|
||||
$core.String? limitFilter,
|
||||
$core.String? queryContext,
|
||||
$core.Iterable<$1.BlockFilter>? blockFilters,
|
||||
ItemQueryOptions? 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;
|
||||
}
|
||||
|
||||
@@ -154,6 +170,7 @@ class ItemByFilterQuery extends $pb.GeneratedMessage {
|
||||
..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<ItemQueryOptions>(7, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: ItemQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -207,6 +224,17 @@ class ItemByFilterQuery extends $pb.GeneratedMessage {
|
||||
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
|
||||
@$pb.TagNumber(6)
|
||||
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(3);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
ItemQueryOptions get options => $_getN(4);
|
||||
@$pb.TagNumber(7)
|
||||
set options(ItemQueryOptions value) => $_setField(7, value);
|
||||
@$pb.TagNumber(7)
|
||||
$core.bool hasOptions() => $_has(4);
|
||||
@$pb.TagNumber(7)
|
||||
void clearOptions() => $_clearField(7);
|
||||
@$pb.TagNumber(7)
|
||||
ItemQueryOptions ensureOptions() => $_ensure(4);
|
||||
}
|
||||
|
||||
class ItemByFilterResult extends $pb.GeneratedMessage {
|
||||
@@ -275,6 +303,36 @@ class ItemByFilterResult extends $pb.GeneratedMessage {
|
||||
void clearQueryContext() => $_clearField(3);
|
||||
}
|
||||
|
||||
class ItemQueryOptions extends $pb.GeneratedMessage {
|
||||
factory ItemQueryOptions() => create();
|
||||
|
||||
ItemQueryOptions._();
|
||||
|
||||
factory ItemQueryOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory ItemQueryOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ItemQueryOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ItemQueryOptions clone() => ItemQueryOptions()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
ItemQueryOptions copyWith(void Function(ItemQueryOptions) updates) => super.copyWith((message) => updates(message as ItemQueryOptions)) as ItemQueryOptions;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ItemQueryOptions create() => ItemQueryOptions._();
|
||||
@$core.override
|
||||
ItemQueryOptions createEmptyInstance() => create();
|
||||
static $pb.PbList<ItemQueryOptions> createRepeated() => $pb.PbList<ItemQueryOptions>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static ItemQueryOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ItemQueryOptions>(create);
|
||||
static ItemQueryOptions? _defaultInstance;
|
||||
}
|
||||
|
||||
class ItemByMatchQuery extends $pb.GeneratedMessage {
|
||||
factory ItemByMatchQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
@@ -383,12 +441,14 @@ class GetLVDetailedQuantityQuery extends $pb.GeneratedMessage {
|
||||
$1.EntityID? iD,
|
||||
$core.String? lVBranchID,
|
||||
$core.double? quantityInbaseLv,
|
||||
ItemQueryOptions? options,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iD != null) result.iD = iD;
|
||||
if (lVBranchID != null) result.lVBranchID = lVBranchID;
|
||||
if (quantityInbaseLv != null) result.quantityInbaseLv = quantityInbaseLv;
|
||||
if (options != null) result.options = options;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -402,6 +462,7 @@ class GetLVDetailedQuantityQuery extends $pb.GeneratedMessage {
|
||||
..aOM<$1.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $1.EntityID.create)
|
||||
..aOS(3, _omitFieldNames ? '' : 'LVBranchID', protoName: 'LVBranchID')
|
||||
..a<$core.double>(4, _omitFieldNames ? '' : 'quantityInbaseLv', $pb.PbFieldType.OF, protoName: 'quantityInbaseLv')
|
||||
..aOM<ItemQueryOptions>(5, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: ItemQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -461,6 +522,17 @@ class GetLVDetailedQuantityQuery extends $pb.GeneratedMessage {
|
||||
$core.bool hasQuantityInbaseLv() => $_has(3);
|
||||
@$pb.TagNumber(4)
|
||||
void clearQuantityInbaseLv() => $_clearField(4);
|
||||
|
||||
@$pb.TagNumber(5)
|
||||
ItemQueryOptions get options => $_getN(4);
|
||||
@$pb.TagNumber(5)
|
||||
set options(ItemQueryOptions value) => $_setField(5, value);
|
||||
@$pb.TagNumber(5)
|
||||
$core.bool hasOptions() => $_has(4);
|
||||
@$pb.TagNumber(5)
|
||||
void clearOptions() => $_clearField(5);
|
||||
@$pb.TagNumber(5)
|
||||
ItemQueryOptions ensureOptions() => $_ensure(4);
|
||||
}
|
||||
|
||||
class GetLVDetailedQuantityResult extends $pb.GeneratedMessage {
|
||||
|
||||
@@ -20,6 +20,7 @@ const ItemByIdQuery$json = {
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'IDs', '3': 2, '4': 3, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'IDs'},
|
||||
{'1': 'Options', '3': 3, '4': 1, '5': 11, '6': '.api.ItemQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -28,7 +29,8 @@ const ItemByIdQuery$json = {
|
||||
final $typed_data.Uint8List itemByIdQueryDescriptor = $convert.base64Decode(
|
||||
'Cg1JdGVtQnlJZFF1ZXJ5EjkKBkhlYWRlchgBIAEoCzIXLmFwaS5RdWVyeVByb2plY3RIZWFkZX'
|
||||
'JCCPpCBYoBAhABUgZIZWFkZXISKQoDSURzGAIgAygLMg0uYXBpLkVudGl0eUlEQgj6QgWSAQII'
|
||||
'AVIDSURzOh2SQREKD9IBBkhlYWRlctIBA0lEc6K7GAVRdWVyeQ==');
|
||||
'AVIDSURzEi8KB09wdGlvbnMYAyABKAsyFS5hcGkuSXRlbVF1ZXJ5T3B0aW9uc1IHT3B0aW9ucz'
|
||||
'odkkERCg/SAQZIZWFkZXLSAQNJRHOiuxgFUXVlcnk=');
|
||||
|
||||
@$core.Deprecated('Use itemByIdResultDescriptor instead')
|
||||
const ItemByIdResult$json = {
|
||||
@@ -54,6 +56,7 @@ const ItemByFilterQuery$json = {
|
||||
{'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.ItemQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -64,7 +67,8 @@ final $typed_data.Uint8List itemByFilterQueryDescriptor = $convert.base64Decode(
|
||||
'VhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEkYKC2xpbWl0RmlsdGVyGAQgASgJQiSSQSEyGE51bWJl'
|
||||
'ciBvZiBtYXhpbXVtIHJlc3VsdEoFIjUwMCJSC2xpbWl0RmlsdGVyEiIKDHF1ZXJ5Q29udGV4dB'
|
||||
'gFIAEoCVIMcXVlcnlDb250ZXh0EjQKDEJsb2NrRmlsdGVycxgGIAMoCzIQLmFwaS5CbG9ja0Zp'
|
||||
'bHRlclIMQmxvY2tGaWx0ZXJzOg6SQQsKCdIBBkhlYWRlcg==');
|
||||
'bHRlclIMQmxvY2tGaWx0ZXJzEi8KB09wdGlvbnMYByABKAsyFS5hcGkuSXRlbVF1ZXJ5T3B0aW'
|
||||
'9uc1IHT3B0aW9uczoOkkELCgnSAQZIZWFkZXI=');
|
||||
|
||||
@$core.Deprecated('Use itemByFilterResultDescriptor instead')
|
||||
const ItemByFilterResult$json = {
|
||||
@@ -82,6 +86,15 @@ final $typed_data.Uint8List itemByFilterResultDescriptor = $convert.base64Decode
|
||||
'IGSGVhZGVyEiMKB09iamVjdHMYAiADKAsyCS5hcGkuSXRlbVIHT2JqZWN0cxIiCgxxdWVyeUNv'
|
||||
'bnRleHQYAyABKAlSDHF1ZXJ5Q29udGV4dA==');
|
||||
|
||||
@$core.Deprecated('Use itemQueryOptionsDescriptor instead')
|
||||
const ItemQueryOptions$json = {
|
||||
'1': 'ItemQueryOptions',
|
||||
};
|
||||
|
||||
/// Descriptor for `ItemQueryOptions`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List itemQueryOptionsDescriptor = $convert.base64Decode(
|
||||
'ChBJdGVtUXVlcnlPcHRpb25z');
|
||||
|
||||
@$core.Deprecated('Use itemByMatchQueryDescriptor instead')
|
||||
const ItemByMatchQuery$json = {
|
||||
'1': 'ItemByMatchQuery',
|
||||
@@ -123,6 +136,7 @@ const GetLVDetailedQuantityQuery$json = {
|
||||
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
|
||||
{'1': 'LVBranchID', '3': 3, '4': 1, '5': 9, '10': 'LVBranchID'},
|
||||
{'1': 'quantityInbaseLv', '3': 4, '4': 1, '5': 2, '8': {}, '10': 'quantityInbaseLv'},
|
||||
{'1': 'Options', '3': 5, '4': 1, '5': 11, '6': '.api.ItemQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -133,7 +147,8 @@ final $typed_data.Uint8List getLVDetailedQuantityQueryDescriptor = $convert.base
|
||||
'lQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0uYXBpLkVudGl0'
|
||||
'eUlEQgj6QgWKAQIQAVICSUQSHgoKTFZCcmFuY2hJRBgDIAEoCVIKTFZCcmFuY2hJRBJOChBxdW'
|
||||
'FudGl0eUluYmFzZUx2GAQgASgCQiKSQR8yHVF1YW50aXR5IGluIGJhc2UgTFYgdG8gZGV0YWls'
|
||||
'UhBxdWFudGl0eUluYmFzZUx2OhKSQQ8KDdIBCkhlYWRlciwgSUQ=');
|
||||
'UhBxdWFudGl0eUluYmFzZUx2Ei8KB09wdGlvbnMYBSABKAsyFS5hcGkuSXRlbVF1ZXJ5T3B0aW'
|
||||
'9uc1IHT3B0aW9uczoSkkEPCg3SAQpIZWFkZXIsIElE');
|
||||
|
||||
@$core.Deprecated('Use getLVDetailedQuantityResultDescriptor instead')
|
||||
const GetLVDetailedQuantityResult$json = {
|
||||
|
||||
@@ -23,10 +23,12 @@ class MovementByIdQuery extends $pb.GeneratedMessage {
|
||||
factory MovementByIdQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
$core.Iterable<$1.EntityID>? iDs,
|
||||
MovementQueryOptions? options,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iDs != null) result.iDs.addAll(iDs);
|
||||
if (options != null) result.options = options;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -38,6 +40,7 @@ class MovementByIdQuery extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'MovementByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
|
||||
..pc<$1.EntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $1.EntityID.create)
|
||||
..aOM<MovementQueryOptions>(3, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: MovementQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -71,6 +74,17 @@ class MovementByIdQuery extends $pb.GeneratedMessage {
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$1.EntityID> get iDs => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
MovementQueryOptions get options => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set options(MovementQueryOptions value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasOptions() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearOptions() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
MovementQueryOptions ensureOptions() => $_ensure(2);
|
||||
}
|
||||
|
||||
class MovementByIdResult extends $pb.GeneratedMessage {
|
||||
@@ -133,12 +147,14 @@ class MovementByFilterQuery extends $pb.GeneratedMessage {
|
||||
$core.String? limitFilter,
|
||||
$core.String? queryContext,
|
||||
$core.Iterable<$1.BlockFilter>? blockFilters,
|
||||
MovementQueryOptions? 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;
|
||||
}
|
||||
|
||||
@@ -152,6 +168,7 @@ class MovementByFilterQuery extends $pb.GeneratedMessage {
|
||||
..aOS(4, _omitFieldNames ? '' : 'limitFilter', protoName: 'limitFilter')
|
||||
..aOS(5, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
|
||||
..pc<$1.BlockFilter>(7, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $1.BlockFilter.create)
|
||||
..aOM<MovementQueryOptions>(8, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: MovementQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -205,6 +222,17 @@ class MovementByFilterQuery extends $pb.GeneratedMessage {
|
||||
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
|
||||
@$pb.TagNumber(7)
|
||||
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(3);
|
||||
|
||||
@$pb.TagNumber(8)
|
||||
MovementQueryOptions get options => $_getN(4);
|
||||
@$pb.TagNumber(8)
|
||||
set options(MovementQueryOptions value) => $_setField(8, value);
|
||||
@$pb.TagNumber(8)
|
||||
$core.bool hasOptions() => $_has(4);
|
||||
@$pb.TagNumber(8)
|
||||
void clearOptions() => $_clearField(8);
|
||||
@$pb.TagNumber(8)
|
||||
MovementQueryOptions ensureOptions() => $_ensure(4);
|
||||
}
|
||||
|
||||
class MovementByFilterResult extends $pb.GeneratedMessage {
|
||||
@@ -273,6 +301,36 @@ class MovementByFilterResult extends $pb.GeneratedMessage {
|
||||
void clearQueryContext() => $_clearField(3);
|
||||
}
|
||||
|
||||
class MovementQueryOptions extends $pb.GeneratedMessage {
|
||||
factory MovementQueryOptions() => create();
|
||||
|
||||
MovementQueryOptions._();
|
||||
|
||||
factory MovementQueryOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory MovementQueryOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'MovementQueryOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
MovementQueryOptions clone() => MovementQueryOptions()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
MovementQueryOptions copyWith(void Function(MovementQueryOptions) updates) => super.copyWith((message) => updates(message as MovementQueryOptions)) as MovementQueryOptions;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static MovementQueryOptions create() => MovementQueryOptions._();
|
||||
@$core.override
|
||||
MovementQueryOptions createEmptyInstance() => create();
|
||||
static $pb.PbList<MovementQueryOptions> createRepeated() => $pb.PbList<MovementQueryOptions>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static MovementQueryOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<MovementQueryOptions>(create);
|
||||
static MovementQueryOptions? _defaultInstance;
|
||||
}
|
||||
|
||||
class MovementByMatchQuery extends $pb.GeneratedMessage {
|
||||
factory MovementByMatchQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
@@ -379,10 +437,12 @@ class MovementByOperationReferenceQuery extends $pb.GeneratedMessage {
|
||||
factory MovementByOperationReferenceQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
$core.Iterable<$core.String>? operationReferences,
|
||||
MovementQueryOptions? options,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (operationReferences != null) result.operationReferences.addAll(operationReferences);
|
||||
if (options != null) result.options = options;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -394,6 +454,7 @@ class MovementByOperationReferenceQuery extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'MovementByOperationReferenceQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
|
||||
..pPS(2, _omitFieldNames ? '' : 'OperationReferences', protoName: 'OperationReferences')
|
||||
..aOM<MovementQueryOptions>(3, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: MovementQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -427,6 +488,17 @@ class MovementByOperationReferenceQuery extends $pb.GeneratedMessage {
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$core.String> get operationReferences => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
MovementQueryOptions get options => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set options(MovementQueryOptions value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasOptions() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearOptions() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
MovementQueryOptions ensureOptions() => $_ensure(2);
|
||||
}
|
||||
|
||||
class MovementByOperationReferenceResult extends $pb.GeneratedMessage {
|
||||
|
||||
@@ -20,6 +20,7 @@ const MovementByIdQuery$json = {
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'IDs', '3': 2, '4': 3, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'IDs'},
|
||||
{'1': 'Options', '3': 3, '4': 1, '5': 11, '6': '.api.MovementQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -28,7 +29,8 @@ const MovementByIdQuery$json = {
|
||||
final $typed_data.Uint8List movementByIdQueryDescriptor = $convert.base64Decode(
|
||||
'ChFNb3ZlbWVudEJ5SWRRdWVyeRI5CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SG'
|
||||
'VhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEikKA0lEcxgCIAMoCzINLmFwaS5FbnRpdHlJREII+kIF'
|
||||
'kgECCAFSA0lEczodkkERCg/SAQZIZWFkZXLSAQNJRHOiuxgFUXVlcnk=');
|
||||
'kgECCAFSA0lEcxIzCgdPcHRpb25zGAMgASgLMhkuYXBpLk1vdmVtZW50UXVlcnlPcHRpb25zUg'
|
||||
'dPcHRpb25zOh2SQREKD9IBBkhlYWRlctIBA0lEc6K7GAVRdWVyeQ==');
|
||||
|
||||
@$core.Deprecated('Use movementByIdResultDescriptor instead')
|
||||
const MovementByIdResult$json = {
|
||||
@@ -54,6 +56,7 @@ const MovementByFilterQuery$json = {
|
||||
{'1': 'limitFilter', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'limitFilter'},
|
||||
{'1': 'queryContext', '3': 5, '4': 1, '5': 9, '10': 'queryContext'},
|
||||
{'1': 'BlockFilters', '3': 7, '4': 3, '5': 11, '6': '.api.BlockFilter', '10': 'BlockFilters'},
|
||||
{'1': 'Options', '3': 8, '4': 1, '5': 11, '6': '.api.MovementQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -64,7 +67,8 @@ final $typed_data.Uint8List movementByFilterQueryDescriptor = $convert.base64Dec
|
||||
'VjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchJGCgtsaW1pdEZpbHRlchgEIAEoCUIkkkEhMhhO'
|
||||
'dW1iZXIgb2YgbWF4aW11bSByZXN1bHRKBSI1MDAiUgtsaW1pdEZpbHRlchIiCgxxdWVyeUNvbn'
|
||||
'RleHQYBSABKAlSDHF1ZXJ5Q29udGV4dBI0CgxCbG9ja0ZpbHRlcnMYByADKAsyEC5hcGkuQmxv'
|
||||
'Y2tGaWx0ZXJSDEJsb2NrRmlsdGVyczoOkkELCgnSAQZIZWFkZXI=');
|
||||
'Y2tGaWx0ZXJSDEJsb2NrRmlsdGVycxIzCgdPcHRpb25zGAggASgLMhkuYXBpLk1vdmVtZW50UX'
|
||||
'VlcnlPcHRpb25zUgdPcHRpb25zOg6SQQsKCdIBBkhlYWRlcg==');
|
||||
|
||||
@$core.Deprecated('Use movementByFilterResultDescriptor instead')
|
||||
const MovementByFilterResult$json = {
|
||||
@@ -82,6 +86,15 @@ final $typed_data.Uint8List movementByFilterResultDescriptor = $convert.base64De
|
||||
'FkZXJSBkhlYWRlchInCgdPYmplY3RzGAIgAygLMg0uYXBpLk1vdmVtZW50UgdPYmplY3RzEiIK'
|
||||
'DHF1ZXJ5Q29udGV4dBgDIAEoCVIMcXVlcnlDb250ZXh0');
|
||||
|
||||
@$core.Deprecated('Use movementQueryOptionsDescriptor instead')
|
||||
const MovementQueryOptions$json = {
|
||||
'1': 'MovementQueryOptions',
|
||||
};
|
||||
|
||||
/// Descriptor for `MovementQueryOptions`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List movementQueryOptionsDescriptor = $convert.base64Decode(
|
||||
'ChRNb3ZlbWVudFF1ZXJ5T3B0aW9ucw==');
|
||||
|
||||
@$core.Deprecated('Use movementByMatchQueryDescriptor instead')
|
||||
const MovementByMatchQuery$json = {
|
||||
'1': 'MovementByMatchQuery',
|
||||
@@ -120,6 +133,7 @@ const MovementByOperationReferenceQuery$json = {
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'OperationReferences', '3': 2, '4': 3, '5': 9, '10': 'OperationReferences'},
|
||||
{'1': 'Options', '3': 3, '4': 1, '5': 11, '6': '.api.MovementQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -128,8 +142,8 @@ const MovementByOperationReferenceQuery$json = {
|
||||
final $typed_data.Uint8List movementByOperationReferenceQueryDescriptor = $convert.base64Decode(
|
||||
'CiFNb3ZlbWVudEJ5T3BlcmF0aW9uUmVmZXJlbmNlUXVlcnkSOQoGSGVhZGVyGAEgASgLMhcuYX'
|
||||
'BpLlF1ZXJ5UHJvamVjdEhlYWRlckII+kIFigECEAFSBkhlYWRlchIwChNPcGVyYXRpb25SZWZl'
|
||||
'cmVuY2VzGAIgAygJUhNPcGVyYXRpb25SZWZlcmVuY2VzOheSQQsKCdIBBkhlYWRlcqK7GAVRdW'
|
||||
'VyeQ==');
|
||||
'cmVuY2VzGAIgAygJUhNPcGVyYXRpb25SZWZlcmVuY2VzEjMKB09wdGlvbnMYAyABKAsyGS5hcG'
|
||||
'kuTW92ZW1lbnRRdWVyeU9wdGlvbnNSB09wdGlvbnM6F5JBCwoJ0gEGSGVhZGVyorsYBVF1ZXJ5');
|
||||
|
||||
@$core.Deprecated('Use movementByOperationReferenceResultDescriptor instead')
|
||||
const MovementByOperationReferenceResult$json = {
|
||||
|
||||
@@ -23,10 +23,12 @@ class OrderByIdQuery extends $pb.GeneratedMessage {
|
||||
factory OrderByIdQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
$core.Iterable<$1.EntityID>? iDs,
|
||||
OrderQueryOptions? options,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iDs != null) result.iDs.addAll(iDs);
|
||||
if (options != null) result.options = options;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -38,6 +40,7 @@ class OrderByIdQuery extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'OrderByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
|
||||
..pc<$1.EntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $1.EntityID.create)
|
||||
..aOM<OrderQueryOptions>(3, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: OrderQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -71,6 +74,17 @@ class OrderByIdQuery extends $pb.GeneratedMessage {
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$1.EntityID> get iDs => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
OrderQueryOptions get options => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set options(OrderQueryOptions value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasOptions() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearOptions() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
OrderQueryOptions ensureOptions() => $_ensure(2);
|
||||
}
|
||||
|
||||
class OrderByIdResult extends $pb.GeneratedMessage {
|
||||
@@ -133,12 +147,14 @@ class OrderByFilterQuery extends $pb.GeneratedMessage {
|
||||
$core.String? limitFilter,
|
||||
$core.String? queryContext,
|
||||
$core.Iterable<$1.BlockFilter>? blockFilters,
|
||||
OrderQueryOptions? 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;
|
||||
}
|
||||
|
||||
@@ -152,6 +168,7 @@ class OrderByFilterQuery extends $pb.GeneratedMessage {
|
||||
..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<OrderQueryOptions>(7, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: OrderQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -205,6 +222,17 @@ class OrderByFilterQuery extends $pb.GeneratedMessage {
|
||||
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
|
||||
@$pb.TagNumber(6)
|
||||
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(3);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
OrderQueryOptions get options => $_getN(4);
|
||||
@$pb.TagNumber(7)
|
||||
set options(OrderQueryOptions value) => $_setField(7, value);
|
||||
@$pb.TagNumber(7)
|
||||
$core.bool hasOptions() => $_has(4);
|
||||
@$pb.TagNumber(7)
|
||||
void clearOptions() => $_clearField(7);
|
||||
@$pb.TagNumber(7)
|
||||
OrderQueryOptions ensureOptions() => $_ensure(4);
|
||||
}
|
||||
|
||||
class OrderByFilterResult extends $pb.GeneratedMessage {
|
||||
@@ -273,6 +301,36 @@ class OrderByFilterResult extends $pb.GeneratedMessage {
|
||||
void clearQueryContext() => $_clearField(3);
|
||||
}
|
||||
|
||||
class OrderQueryOptions extends $pb.GeneratedMessage {
|
||||
factory OrderQueryOptions() => create();
|
||||
|
||||
OrderQueryOptions._();
|
||||
|
||||
factory OrderQueryOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory OrderQueryOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'OrderQueryOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
OrderQueryOptions clone() => OrderQueryOptions()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
OrderQueryOptions copyWith(void Function(OrderQueryOptions) updates) => super.copyWith((message) => updates(message as OrderQueryOptions)) as OrderQueryOptions;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static OrderQueryOptions create() => OrderQueryOptions._();
|
||||
@$core.override
|
||||
OrderQueryOptions createEmptyInstance() => create();
|
||||
static $pb.PbList<OrderQueryOptions> createRepeated() => $pb.PbList<OrderQueryOptions>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static OrderQueryOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<OrderQueryOptions>(create);
|
||||
static OrderQueryOptions? _defaultInstance;
|
||||
}
|
||||
|
||||
class OrderByMatchQuery extends $pb.GeneratedMessage {
|
||||
factory OrderByMatchQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
|
||||
@@ -20,6 +20,7 @@ const OrderByIdQuery$json = {
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'IDs', '3': 2, '4': 3, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'IDs'},
|
||||
{'1': 'Options', '3': 3, '4': 1, '5': 11, '6': '.api.OrderQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -28,7 +29,8 @@ const OrderByIdQuery$json = {
|
||||
final $typed_data.Uint8List orderByIdQueryDescriptor = $convert.base64Decode(
|
||||
'Cg5PcmRlckJ5SWRRdWVyeRI5CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SGVhZG'
|
||||
'VyQgj6QgWKAQIQAVIGSGVhZGVyEikKA0lEcxgCIAMoCzINLmFwaS5FbnRpdHlJREII+kIFkgEC'
|
||||
'CAFSA0lEczodkkERCg/SAQZIZWFkZXLSAQNJRHOiuxgFUXVlcnk=');
|
||||
'CAFSA0lEcxIwCgdPcHRpb25zGAMgASgLMhYuYXBpLk9yZGVyUXVlcnlPcHRpb25zUgdPcHRpb2'
|
||||
'5zOh2SQREKD9IBBkhlYWRlctIBA0lEc6K7GAVRdWVyeQ==');
|
||||
|
||||
@$core.Deprecated('Use orderByIdResultDescriptor instead')
|
||||
const OrderByIdResult$json = {
|
||||
@@ -53,6 +55,7 @@ const OrderByFilterQuery$json = {
|
||||
{'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.OrderQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -63,7 +66,8 @@ final $typed_data.Uint8List orderByFilterQueryDescriptor = $convert.base64Decode
|
||||
'hlYWRlckII+kIFigECEAFSBkhlYWRlchJGCgtsaW1pdEZpbHRlchgEIAEoCUIkkkEhMhhOdW1i'
|
||||
'ZXIgb2YgbWF4aW11bSByZXN1bHRKBSI1MDAiUgtsaW1pdEZpbHRlchIiCgxxdWVyeUNvbnRleH'
|
||||
'QYBSABKAlSDHF1ZXJ5Q29udGV4dBI0CgxCbG9ja0ZpbHRlcnMYBiADKAsyEC5hcGkuQmxvY2tG'
|
||||
'aWx0ZXJSDEJsb2NrRmlsdGVyczoOkkELCgnSAQZIZWFkZXI=');
|
||||
'aWx0ZXJSDEJsb2NrRmlsdGVycxIwCgdPcHRpb25zGAcgASgLMhYuYXBpLk9yZGVyUXVlcnlPcH'
|
||||
'Rpb25zUgdPcHRpb25zOg6SQQsKCdIBBkhlYWRlcg==');
|
||||
|
||||
@$core.Deprecated('Use orderByFilterResultDescriptor instead')
|
||||
const OrderByFilterResult$json = {
|
||||
@@ -81,6 +85,15 @@ final $typed_data.Uint8List orderByFilterResultDescriptor = $convert.base64Decod
|
||||
'JSBkhlYWRlchIkCgdPYmplY3RzGAIgAygLMgouYXBpLk9yZGVyUgdPYmplY3RzEiIKDHF1ZXJ5'
|
||||
'Q29udGV4dBgDIAEoCVIMcXVlcnlDb250ZXh0');
|
||||
|
||||
@$core.Deprecated('Use orderQueryOptionsDescriptor instead')
|
||||
const OrderQueryOptions$json = {
|
||||
'1': 'OrderQueryOptions',
|
||||
};
|
||||
|
||||
/// Descriptor for `OrderQueryOptions`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List orderQueryOptionsDescriptor = $convert.base64Decode(
|
||||
'ChFPcmRlclF1ZXJ5T3B0aW9ucw==');
|
||||
|
||||
@$core.Deprecated('Use orderByMatchQueryDescriptor instead')
|
||||
const OrderByMatchQuery$json = {
|
||||
'1': 'OrderByMatchQuery',
|
||||
|
||||
@@ -23,10 +23,12 @@ class PartnerByIdQuery extends $pb.GeneratedMessage {
|
||||
factory PartnerByIdQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
$core.Iterable<$1.EntityID>? iDs,
|
||||
PartnerQueryOptions? options,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iDs != null) result.iDs.addAll(iDs);
|
||||
if (options != null) result.options = options;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -38,6 +40,7 @@ class PartnerByIdQuery extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'PartnerByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
|
||||
..pc<$1.EntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $1.EntityID.create)
|
||||
..aOM<PartnerQueryOptions>(3, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: PartnerQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -71,6 +74,17 @@ class PartnerByIdQuery extends $pb.GeneratedMessage {
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$1.EntityID> get iDs => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
PartnerQueryOptions get options => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set options(PartnerQueryOptions value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasOptions() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearOptions() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
PartnerQueryOptions ensureOptions() => $_ensure(2);
|
||||
}
|
||||
|
||||
class PartnerByIdResult extends $pb.GeneratedMessage {
|
||||
@@ -133,12 +147,14 @@ class PartnerByFilterQuery extends $pb.GeneratedMessage {
|
||||
$core.String? limitFilter,
|
||||
$core.String? queryContext,
|
||||
$core.Iterable<$1.BlockFilter>? blockFilters,
|
||||
PartnerQueryOptions? 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;
|
||||
}
|
||||
|
||||
@@ -152,6 +168,7 @@ class PartnerByFilterQuery extends $pb.GeneratedMessage {
|
||||
..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<PartnerQueryOptions>(7, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: PartnerQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -205,6 +222,17 @@ class PartnerByFilterQuery extends $pb.GeneratedMessage {
|
||||
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
|
||||
@$pb.TagNumber(6)
|
||||
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(3);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
PartnerQueryOptions get options => $_getN(4);
|
||||
@$pb.TagNumber(7)
|
||||
set options(PartnerQueryOptions value) => $_setField(7, value);
|
||||
@$pb.TagNumber(7)
|
||||
$core.bool hasOptions() => $_has(4);
|
||||
@$pb.TagNumber(7)
|
||||
void clearOptions() => $_clearField(7);
|
||||
@$pb.TagNumber(7)
|
||||
PartnerQueryOptions ensureOptions() => $_ensure(4);
|
||||
}
|
||||
|
||||
class PartnerByFilterResult extends $pb.GeneratedMessage {
|
||||
@@ -273,6 +301,36 @@ class PartnerByFilterResult extends $pb.GeneratedMessage {
|
||||
void clearQueryContext() => $_clearField(3);
|
||||
}
|
||||
|
||||
class PartnerQueryOptions extends $pb.GeneratedMessage {
|
||||
factory PartnerQueryOptions() => create();
|
||||
|
||||
PartnerQueryOptions._();
|
||||
|
||||
factory PartnerQueryOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory PartnerQueryOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'PartnerQueryOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
PartnerQueryOptions clone() => PartnerQueryOptions()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
PartnerQueryOptions copyWith(void Function(PartnerQueryOptions) updates) => super.copyWith((message) => updates(message as PartnerQueryOptions)) as PartnerQueryOptions;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static PartnerQueryOptions create() => PartnerQueryOptions._();
|
||||
@$core.override
|
||||
PartnerQueryOptions createEmptyInstance() => create();
|
||||
static $pb.PbList<PartnerQueryOptions> createRepeated() => $pb.PbList<PartnerQueryOptions>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static PartnerQueryOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<PartnerQueryOptions>(create);
|
||||
static PartnerQueryOptions? _defaultInstance;
|
||||
}
|
||||
|
||||
class PartnerByMatchQuery extends $pb.GeneratedMessage {
|
||||
factory PartnerByMatchQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
|
||||
@@ -20,6 +20,7 @@ const PartnerByIdQuery$json = {
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'IDs', '3': 2, '4': 3, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'IDs'},
|
||||
{'1': 'Options', '3': 3, '4': 1, '5': 11, '6': '.api.PartnerQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -28,7 +29,8 @@ const PartnerByIdQuery$json = {
|
||||
final $typed_data.Uint8List partnerByIdQueryDescriptor = $convert.base64Decode(
|
||||
'ChBQYXJ0bmVyQnlJZFF1ZXJ5EjkKBkhlYWRlchgBIAEoCzIXLmFwaS5RdWVyeVByb2plY3RIZW'
|
||||
'FkZXJCCPpCBYoBAhABUgZIZWFkZXISKQoDSURzGAIgAygLMg0uYXBpLkVudGl0eUlEQgj6QgWS'
|
||||
'AQIIAVIDSURzOh2SQREKD9IBBkhlYWRlctIBA0lEc6K7GAVRdWVyeQ==');
|
||||
'AQIIAVIDSURzEjIKB09wdGlvbnMYAyABKAsyGC5hcGkuUGFydG5lclF1ZXJ5T3B0aW9uc1IHT3'
|
||||
'B0aW9uczodkkERCg/SAQZIZWFkZXLSAQNJRHOiuxgFUXVlcnk=');
|
||||
|
||||
@$core.Deprecated('Use partnerByIdResultDescriptor instead')
|
||||
const PartnerByIdResult$json = {
|
||||
@@ -54,6 +56,7 @@ const PartnerByFilterQuery$json = {
|
||||
{'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.PartnerQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -64,7 +67,8 @@ final $typed_data.Uint8List partnerByFilterQueryDescriptor = $convert.base64Deco
|
||||
'N0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEkYKC2xpbWl0RmlsdGVyGAQgASgJQiSSQSEyGE51'
|
||||
'bWJlciBvZiBtYXhpbXVtIHJlc3VsdEoFIjUwMCJSC2xpbWl0RmlsdGVyEiIKDHF1ZXJ5Q29udG'
|
||||
'V4dBgFIAEoCVIMcXVlcnlDb250ZXh0EjQKDEJsb2NrRmlsdGVycxgGIAMoCzIQLmFwaS5CbG9j'
|
||||
'a0ZpbHRlclIMQmxvY2tGaWx0ZXJzOg6SQQsKCdIBBkhlYWRlcg==');
|
||||
'a0ZpbHRlclIMQmxvY2tGaWx0ZXJzEjIKB09wdGlvbnMYByABKAsyGC5hcGkuUGFydG5lclF1ZX'
|
||||
'J5T3B0aW9uc1IHT3B0aW9uczoOkkELCgnSAQZIZWFkZXI=');
|
||||
|
||||
@$core.Deprecated('Use partnerByFilterResultDescriptor instead')
|
||||
const PartnerByFilterResult$json = {
|
||||
@@ -82,6 +86,15 @@ final $typed_data.Uint8List partnerByFilterResultDescriptor = $convert.base64Dec
|
||||
'RlclIGSGVhZGVyEiYKB09iamVjdHMYAiADKAsyDC5hcGkuUGFydG5lclIHT2JqZWN0cxIiCgxx'
|
||||
'dWVyeUNvbnRleHQYAyABKAlSDHF1ZXJ5Q29udGV4dA==');
|
||||
|
||||
@$core.Deprecated('Use partnerQueryOptionsDescriptor instead')
|
||||
const PartnerQueryOptions$json = {
|
||||
'1': 'PartnerQueryOptions',
|
||||
};
|
||||
|
||||
/// Descriptor for `PartnerQueryOptions`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List partnerQueryOptionsDescriptor = $convert.base64Decode(
|
||||
'ChNQYXJ0bmVyUXVlcnlPcHRpb25z');
|
||||
|
||||
@$core.Deprecated('Use partnerByMatchQueryDescriptor instead')
|
||||
const PartnerByMatchQuery$json = {
|
||||
'1': 'PartnerByMatchQuery',
|
||||
|
||||
@@ -23,10 +23,12 @@ class StockByIdQuery extends $pb.GeneratedMessage {
|
||||
factory StockByIdQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
$core.Iterable<$1.EntityID>? iDs,
|
||||
StockQueryOptions? options,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iDs != null) result.iDs.addAll(iDs);
|
||||
if (options != null) result.options = options;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -38,6 +40,7 @@ class StockByIdQuery extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StockByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
|
||||
..pc<$1.EntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $1.EntityID.create)
|
||||
..aOM<StockQueryOptions>(3, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: StockQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -71,6 +74,17 @@ class StockByIdQuery extends $pb.GeneratedMessage {
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$1.EntityID> get iDs => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
StockQueryOptions get options => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set options(StockQueryOptions value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasOptions() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearOptions() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
StockQueryOptions ensureOptions() => $_ensure(2);
|
||||
}
|
||||
|
||||
class StockByIdResult extends $pb.GeneratedMessage {
|
||||
@@ -133,12 +147,14 @@ class StockByFilterQuery extends $pb.GeneratedMessage {
|
||||
$core.String? limitFilter,
|
||||
$core.String? queryContext,
|
||||
$core.Iterable<$1.BlockFilter>? blockFilters,
|
||||
StockQueryOptions? 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;
|
||||
}
|
||||
|
||||
@@ -152,6 +168,7 @@ class StockByFilterQuery extends $pb.GeneratedMessage {
|
||||
..aOS(4, _omitFieldNames ? '' : 'limitFilter', protoName: 'limitFilter')
|
||||
..aOS(5, _omitFieldNames ? '' : 'queryContext', protoName: 'queryContext')
|
||||
..pc<$1.BlockFilter>(7, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $1.BlockFilter.create)
|
||||
..aOM<StockQueryOptions>(8, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: StockQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -205,6 +222,17 @@ class StockByFilterQuery extends $pb.GeneratedMessage {
|
||||
/// list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
|
||||
@$pb.TagNumber(7)
|
||||
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(3);
|
||||
|
||||
@$pb.TagNumber(8)
|
||||
StockQueryOptions get options => $_getN(4);
|
||||
@$pb.TagNumber(8)
|
||||
set options(StockQueryOptions value) => $_setField(8, value);
|
||||
@$pb.TagNumber(8)
|
||||
$core.bool hasOptions() => $_has(4);
|
||||
@$pb.TagNumber(8)
|
||||
void clearOptions() => $_clearField(8);
|
||||
@$pb.TagNumber(8)
|
||||
StockQueryOptions ensureOptions() => $_ensure(4);
|
||||
}
|
||||
|
||||
class StockByFilterResult extends $pb.GeneratedMessage {
|
||||
@@ -273,16 +301,48 @@ class StockByFilterResult extends $pb.GeneratedMessage {
|
||||
void clearQueryContext() => $_clearField(3);
|
||||
}
|
||||
|
||||
class StockQueryOptions extends $pb.GeneratedMessage {
|
||||
factory StockQueryOptions() => create();
|
||||
|
||||
StockQueryOptions._();
|
||||
|
||||
factory StockQueryOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory StockQueryOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StockQueryOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
StockQueryOptions clone() => StockQueryOptions()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
StockQueryOptions copyWith(void Function(StockQueryOptions) updates) => super.copyWith((message) => updates(message as StockQueryOptions)) as StockQueryOptions;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static StockQueryOptions create() => StockQueryOptions._();
|
||||
@$core.override
|
||||
StockQueryOptions createEmptyInstance() => create();
|
||||
static $pb.PbList<StockQueryOptions> createRepeated() => $pb.PbList<StockQueryOptions>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static StockQueryOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StockQueryOptions>(create);
|
||||
static StockQueryOptions? _defaultInstance;
|
||||
}
|
||||
|
||||
class StockByMatchQuery extends $pb.GeneratedMessage {
|
||||
factory StockByMatchQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
$core.Iterable<$1.BlockFilter>? blockFilters,
|
||||
$core.Iterable<$1.MatchField>? matchFields,
|
||||
StockQueryOptions? options,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (blockFilters != null) result.blockFilters.addAll(blockFilters);
|
||||
if (matchFields != null) result.matchFields.addAll(matchFields);
|
||||
if (options != null) result.options = options;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -295,6 +355,7 @@ class StockByMatchQuery extends $pb.GeneratedMessage {
|
||||
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.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)
|
||||
..aOM<StockQueryOptions>(7, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: StockQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -333,6 +394,17 @@ class StockByMatchQuery extends $pb.GeneratedMessage {
|
||||
/// MatchField list structure, for FindMatching query
|
||||
@$pb.TagNumber(6)
|
||||
$pb.PbList<$1.MatchField> get matchFields => $_getList(2);
|
||||
|
||||
@$pb.TagNumber(7)
|
||||
StockQueryOptions get options => $_getN(3);
|
||||
@$pb.TagNumber(7)
|
||||
set options(StockQueryOptions value) => $_setField(7, value);
|
||||
@$pb.TagNumber(7)
|
||||
$core.bool hasOptions() => $_has(3);
|
||||
@$pb.TagNumber(7)
|
||||
void clearOptions() => $_clearField(7);
|
||||
@$pb.TagNumber(7)
|
||||
StockQueryOptions ensureOptions() => $_ensure(3);
|
||||
}
|
||||
|
||||
class StockByMatchResult extends $pb.GeneratedMessage {
|
||||
|
||||
@@ -20,6 +20,7 @@ const StockByIdQuery$json = {
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'IDs', '3': 2, '4': 3, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'IDs'},
|
||||
{'1': 'Options', '3': 3, '4': 1, '5': 11, '6': '.api.StockQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -28,7 +29,8 @@ const StockByIdQuery$json = {
|
||||
final $typed_data.Uint8List stockByIdQueryDescriptor = $convert.base64Decode(
|
||||
'Cg5TdG9ja0J5SWRRdWVyeRI5CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SGVhZG'
|
||||
'VyQgj6QgWKAQIQAVIGSGVhZGVyEikKA0lEcxgCIAMoCzINLmFwaS5FbnRpdHlJREII+kIFkgEC'
|
||||
'CAFSA0lEczodkkERCg/SAQZIZWFkZXLSAQNJRHOiuxgFUXVlcnk=');
|
||||
'CAFSA0lEcxIwCgdPcHRpb25zGAMgASgLMhYuYXBpLlN0b2NrUXVlcnlPcHRpb25zUgdPcHRpb2'
|
||||
'5zOh2SQREKD9IBBkhlYWRlctIBA0lEc6K7GAVRdWVyeQ==');
|
||||
|
||||
@$core.Deprecated('Use stockByIdResultDescriptor instead')
|
||||
const StockByIdResult$json = {
|
||||
@@ -53,6 +55,7 @@ const StockByFilterQuery$json = {
|
||||
{'1': 'limitFilter', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'limitFilter'},
|
||||
{'1': 'queryContext', '3': 5, '4': 1, '5': 9, '10': 'queryContext'},
|
||||
{'1': 'BlockFilters', '3': 7, '4': 3, '5': 11, '6': '.api.BlockFilter', '10': 'BlockFilters'},
|
||||
{'1': 'Options', '3': 8, '4': 1, '5': 11, '6': '.api.StockQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -63,7 +66,8 @@ final $typed_data.Uint8List stockByFilterQueryDescriptor = $convert.base64Decode
|
||||
'hlYWRlckII+kIFigECEAFSBkhlYWRlchJGCgtsaW1pdEZpbHRlchgEIAEoCUIkkkEhMhhOdW1i'
|
||||
'ZXIgb2YgbWF4aW11bSByZXN1bHRKBSI1MDAiUgtsaW1pdEZpbHRlchIiCgxxdWVyeUNvbnRleH'
|
||||
'QYBSABKAlSDHF1ZXJ5Q29udGV4dBI0CgxCbG9ja0ZpbHRlcnMYByADKAsyEC5hcGkuQmxvY2tG'
|
||||
'aWx0ZXJSDEJsb2NrRmlsdGVyczoOkkELCgnSAQZIZWFkZXI=');
|
||||
'aWx0ZXJSDEJsb2NrRmlsdGVycxIwCgdPcHRpb25zGAggASgLMhYuYXBpLlN0b2NrUXVlcnlPcH'
|
||||
'Rpb25zUgdPcHRpb25zOg6SQQsKCdIBBkhlYWRlcg==');
|
||||
|
||||
@$core.Deprecated('Use stockByFilterResultDescriptor instead')
|
||||
const StockByFilterResult$json = {
|
||||
@@ -81,6 +85,15 @@ final $typed_data.Uint8List stockByFilterResultDescriptor = $convert.base64Decod
|
||||
'JSBkhlYWRlchIkCgdPYmplY3RzGAIgAygLMgouYXBpLlN0b2NrUgdPYmplY3RzEiIKDHF1ZXJ5'
|
||||
'Q29udGV4dBgDIAEoCVIMcXVlcnlDb250ZXh0');
|
||||
|
||||
@$core.Deprecated('Use stockQueryOptionsDescriptor instead')
|
||||
const StockQueryOptions$json = {
|
||||
'1': 'StockQueryOptions',
|
||||
};
|
||||
|
||||
/// Descriptor for `StockQueryOptions`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List stockQueryOptionsDescriptor = $convert.base64Decode(
|
||||
'ChFTdG9ja1F1ZXJ5T3B0aW9ucw==');
|
||||
|
||||
@$core.Deprecated('Use stockByMatchQueryDescriptor instead')
|
||||
const StockByMatchQuery$json = {
|
||||
'1': 'StockByMatchQuery',
|
||||
@@ -88,6 +101,7 @@ const StockByMatchQuery$json = {
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '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'},
|
||||
{'1': 'Options', '3': 7, '4': 1, '5': 11, '6': '.api.StockQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -98,7 +112,8 @@ final $typed_data.Uint8List stockByMatchQueryDescriptor = $convert.base64Decode(
|
||||
'VhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEjQKDEJsb2NrRmlsdGVycxgFIAMoCzIQLmFwaS5CbG9j'
|
||||
'a0ZpbHRlclIMQmxvY2tGaWx0ZXJzEmkKC01hdGNoRmllbGRzGAYgAygLMg8uYXBpLk1hdGNoRm'
|
||||
'llbGRCNpJBMzIxTWF0Y2hGaWVsZCBsaXN0IHN0cnVjdHVyZSwgZm9yIEZpbmRNYXRjaGluZyBx'
|
||||
'dWVyeVILTWF0Y2hGaWVsZHM6DpJBCwoJ0gEGSGVhZGVy');
|
||||
'dWVyeVILTWF0Y2hGaWVsZHMSMAoHT3B0aW9ucxgHIAEoCzIWLmFwaS5TdG9ja1F1ZXJ5T3B0aW'
|
||||
'9uc1IHT3B0aW9uczoOkkELCgnSAQZIZWFkZXI=');
|
||||
|
||||
@$core.Deprecated('Use stockByMatchResultDescriptor instead')
|
||||
const StockByMatchResult$json = {
|
||||
|
||||
@@ -23,10 +23,12 @@ class TrackingByIdQuery extends $pb.GeneratedMessage {
|
||||
factory TrackingByIdQuery({
|
||||
$1.QueryProjectHeader? header,
|
||||
$core.Iterable<$1.EntityID>? iDs,
|
||||
TrackingQueryOptions? options,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iDs != null) result.iDs.addAll(iDs);
|
||||
if (options != null) result.options = options;
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -38,6 +40,7 @@ class TrackingByIdQuery extends $pb.GeneratedMessage {
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'TrackingByIdQuery', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$1.QueryProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $1.QueryProjectHeader.create)
|
||||
..pc<$1.EntityID>(2, _omitFieldNames ? '' : 'IDs', $pb.PbFieldType.PM, protoName: 'IDs', subBuilder: $1.EntityID.create)
|
||||
..aOM<TrackingQueryOptions>(3, _omitFieldNames ? '' : 'Options', protoName: 'Options', subBuilder: TrackingQueryOptions.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -71,6 +74,17 @@ class TrackingByIdQuery extends $pb.GeneratedMessage {
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$pb.PbList<$1.EntityID> get iDs => $_getList(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
TrackingQueryOptions get options => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set options(TrackingQueryOptions value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasOptions() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearOptions() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
TrackingQueryOptions ensureOptions() => $_ensure(2);
|
||||
}
|
||||
|
||||
class TrackingByIdResult extends $pb.GeneratedMessage {
|
||||
@@ -127,6 +141,36 @@ class TrackingByIdResult extends $pb.GeneratedMessage {
|
||||
$pb.PbList<$2.Tracking> get objects => $_getList(1);
|
||||
}
|
||||
|
||||
class TrackingQueryOptions extends $pb.GeneratedMessage {
|
||||
factory TrackingQueryOptions() => create();
|
||||
|
||||
TrackingQueryOptions._();
|
||||
|
||||
factory TrackingQueryOptions.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory TrackingQueryOptions.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'TrackingQueryOptions', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
TrackingQueryOptions clone() => TrackingQueryOptions()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
TrackingQueryOptions copyWith(void Function(TrackingQueryOptions) updates) => super.copyWith((message) => updates(message as TrackingQueryOptions)) as TrackingQueryOptions;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static TrackingQueryOptions create() => TrackingQueryOptions._();
|
||||
@$core.override
|
||||
TrackingQueryOptions createEmptyInstance() => create();
|
||||
static $pb.PbList<TrackingQueryOptions> createRepeated() => $pb.PbList<TrackingQueryOptions>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static TrackingQueryOptions getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<TrackingQueryOptions>(create);
|
||||
static TrackingQueryOptions? _defaultInstance;
|
||||
}
|
||||
|
||||
|
||||
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
||||
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|
||||
|
||||
@@ -20,6 +20,7 @@ const TrackingByIdQuery$json = {
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.QueryProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'IDs', '3': 2, '4': 3, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'IDs'},
|
||||
{'1': 'Options', '3': 3, '4': 1, '5': 11, '6': '.api.TrackingQueryOptions', '10': 'Options'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
@@ -28,7 +29,8 @@ const TrackingByIdQuery$json = {
|
||||
final $typed_data.Uint8List trackingByIdQueryDescriptor = $convert.base64Decode(
|
||||
'ChFUcmFja2luZ0J5SWRRdWVyeRI5CgZIZWFkZXIYASABKAsyFy5hcGkuUXVlcnlQcm9qZWN0SG'
|
||||
'VhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEikKA0lEcxgCIAMoCzINLmFwaS5FbnRpdHlJREII+kIF'
|
||||
'kgECCAFSA0lEczodkkERCg/SAQZIZWFkZXLSAQNJRHOiuxgFUXVlcnk=');
|
||||
'kgECCAFSA0lEcxIzCgdPcHRpb25zGAMgASgLMhkuYXBpLlRyYWNraW5nUXVlcnlPcHRpb25zUg'
|
||||
'dPcHRpb25zOh2SQREKD9IBBkhlYWRlctIBA0lEc6K7GAVRdWVyeQ==');
|
||||
|
||||
@$core.Deprecated('Use trackingByIdResultDescriptor instead')
|
||||
const TrackingByIdResult$json = {
|
||||
@@ -46,3 +48,12 @@ final $typed_data.Uint8List trackingByIdResultDescriptor = $convert.base64Decode
|
||||
'IGSGVhZGVyEicKB09iamVjdHMYAiADKAsyDS5hcGkuVHJhY2tpbmdSB09iamVjdHM6CqK7GAZS'
|
||||
'ZXN1bHQ=');
|
||||
|
||||
@$core.Deprecated('Use trackingQueryOptionsDescriptor instead')
|
||||
const TrackingQueryOptions$json = {
|
||||
'1': 'TrackingQueryOptions',
|
||||
};
|
||||
|
||||
/// Descriptor for `TrackingQueryOptions`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List trackingQueryOptionsDescriptor = $convert.base64Decode(
|
||||
'ChRUcmFja2luZ1F1ZXJ5T3B0aW9ucw==');
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: dart_core_sdk
|
||||
description: dart libs from core model proto files
|
||||
version: 1.11.0-SNAPSHOT-250819142540
|
||||
version: 1.11.0-SNAPSHOT-250820082309
|
||||
homepage: ''
|
||||
publish_to: ''
|
||||
repository: ''
|
||||
|
||||
Reference in New Issue
Block a user