You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -13,7 +13,7 @@ import 'dart:core' as $core;
|
||||
|
||||
import 'package:protobuf/protobuf.dart' as $pb;
|
||||
|
||||
import 'shared.pbenum.dart' as $35;
|
||||
import 'shared.pbenum.dart' as $3;
|
||||
|
||||
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
||||
|
||||
@@ -51,11 +51,11 @@ class UpdateModelMappingsRequest extends $pb.GeneratedMessage {
|
||||
|
||||
class UpdateModelMappingsResult extends $pb.GeneratedMessage {
|
||||
factory UpdateModelMappingsResult({
|
||||
$pb.PbMap<$core.String, $core.bool>? templateGeneration,
|
||||
$core.Iterable<$core.MapEntry<$core.String, $core.bool>>? templateGeneration,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (templateGeneration != null) {
|
||||
$result.templateGeneration.addAll(templateGeneration);
|
||||
$result.templateGeneration.addEntries(templateGeneration);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
@@ -145,11 +145,11 @@ class CreateProjectMappingsRequest extends $pb.GeneratedMessage {
|
||||
|
||||
class CreateProjectMappingsResult extends $pb.GeneratedMessage {
|
||||
factory CreateProjectMappingsResult({
|
||||
$pb.PbMap<$core.String, $core.bool>? templateGeneration,
|
||||
$core.Iterable<$core.MapEntry<$core.String, $core.bool>>? templateGeneration,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (templateGeneration != null) {
|
||||
$result.templateGeneration.addAll(templateGeneration);
|
||||
$result.templateGeneration.addEntries(templateGeneration);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
@@ -239,11 +239,11 @@ class DeleteProjectMappingsRequest extends $pb.GeneratedMessage {
|
||||
|
||||
class DeleteProjectMappingsResult extends $pb.GeneratedMessage {
|
||||
factory DeleteProjectMappingsResult({
|
||||
$pb.PbMap<$core.String, $core.bool>? templateDeletion,
|
||||
$core.Iterable<$core.MapEntry<$core.String, $core.bool>>? templateDeletion,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (templateDeletion != null) {
|
||||
$result.templateDeletion.addAll(templateDeletion);
|
||||
$result.templateDeletion.addEntries(templateDeletion);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
@@ -284,7 +284,7 @@ class DeleteProjectMappingsResult extends $pb.GeneratedMessage {
|
||||
class ClearIndexEntityRequest extends $pb.GeneratedMessage {
|
||||
factory ClearIndexEntityRequest({
|
||||
$core.String? projectID,
|
||||
$35.ModelDataSetEnum? entity,
|
||||
$3.ModelDataSetEnum? entity,
|
||||
}) {
|
||||
final $result = create();
|
||||
if (projectID != null) {
|
||||
@@ -301,7 +301,7 @@ class ClearIndexEntityRequest extends $pb.GeneratedMessage {
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClearIndexEntityRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
||||
..e<$35.ModelDataSetEnum>(2, _omitFieldNames ? '' : 'Entity', $pb.PbFieldType.OE, protoName: 'Entity', defaultOrMaker: $35.ModelDataSetEnum.ACTOR, valueOf: $35.ModelDataSetEnum.valueOf, enumValues: $35.ModelDataSetEnum.values)
|
||||
..e<$3.ModelDataSetEnum>(2, _omitFieldNames ? '' : 'Entity', $pb.PbFieldType.OE, protoName: 'Entity', defaultOrMaker: $3.ModelDataSetEnum.ACTOR, valueOf: $3.ModelDataSetEnum.valueOf, enumValues: $3.ModelDataSetEnum.values)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@@ -336,9 +336,9 @@ class ClearIndexEntityRequest extends $pb.GeneratedMessage {
|
||||
void clearProjectID() => $_clearField(1);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$35.ModelDataSetEnum get entity => $_getN(1);
|
||||
$3.ModelDataSetEnum get entity => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set entity($35.ModelDataSetEnum v) { $_setField(2, v); }
|
||||
set entity($3.ModelDataSetEnum v) { $_setField(2, v); }
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasEntity() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
|
||||
Reference in New Issue
Block a user