Latest generation

This commit is contained in:
ci core model
2025-08-20 08:23:31 +00:00
parent 576662e08c
commit 5bfe7acc93
24 changed files with 859 additions and 27 deletions

View File

@@ -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,