You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
Lib version: 1.12.0-SNAPSHOT-251007143334
|
Lib version: 1.12.0-SNAPSHOT-251008090357
|
||||||
|
|||||||
@@ -16,6 +16,8 @@ import 'package:protobuf/protobuf.dart' as $pb;
|
|||||||
|
|
||||||
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
||||||
|
|
||||||
|
export 'base.pbenum.dart';
|
||||||
|
|
||||||
class AdminAddress extends $pb.GeneratedMessage {
|
class AdminAddress extends $pb.GeneratedMessage {
|
||||||
factory AdminAddress({
|
factory AdminAddress({
|
||||||
$core.String? city,
|
$core.String? city,
|
||||||
|
|||||||
@@ -10,3 +10,26 @@
|
|||||||
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
||||||
// ignore_for_file: non_constant_identifier_names
|
// ignore_for_file: non_constant_identifier_names
|
||||||
|
|
||||||
|
import 'dart:core' as $core;
|
||||||
|
|
||||||
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
|
class ProjectType extends $pb.ProtobufEnum {
|
||||||
|
static const ProjectType PROJECT_TYPE_UNKNOWN = ProjectType._(0, _omitEnumNames ? '' : 'PROJECT_TYPE_UNKNOWN');
|
||||||
|
static const ProjectType PROJECT_TYPE_ACTIVITY = ProjectType._(1, _omitEnumNames ? '' : 'PROJECT_TYPE_ACTIVITY');
|
||||||
|
static const ProjectType PROJECT_TYPE_SITE = ProjectType._(2, _omitEnumNames ? '' : 'PROJECT_TYPE_SITE');
|
||||||
|
|
||||||
|
static const $core.List<ProjectType> values = <ProjectType> [
|
||||||
|
PROJECT_TYPE_UNKNOWN,
|
||||||
|
PROJECT_TYPE_ACTIVITY,
|
||||||
|
PROJECT_TYPE_SITE,
|
||||||
|
];
|
||||||
|
|
||||||
|
static final $core.List<ProjectType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
||||||
|
static ProjectType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
||||||
|
|
||||||
|
const ProjectType._(super.value, super.name);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|
||||||
|
|||||||
@@ -14,6 +14,21 @@ import 'dart:convert' as $convert;
|
|||||||
import 'dart:core' as $core;
|
import 'dart:core' as $core;
|
||||||
import 'dart:typed_data' as $typed_data;
|
import 'dart:typed_data' as $typed_data;
|
||||||
|
|
||||||
|
@$core.Deprecated('Use projectTypeDescriptor instead')
|
||||||
|
const ProjectType$json = {
|
||||||
|
'1': 'ProjectType',
|
||||||
|
'2': [
|
||||||
|
{'1': 'PROJECT_TYPE_UNKNOWN', '2': 0},
|
||||||
|
{'1': 'PROJECT_TYPE_ACTIVITY', '2': 1},
|
||||||
|
{'1': 'PROJECT_TYPE_SITE', '2': 2},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Descriptor for `ProjectType`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||||
|
final $typed_data.Uint8List projectTypeDescriptor = $convert.base64Decode(
|
||||||
|
'CgtQcm9qZWN0VHlwZRIYChRQUk9KRUNUX1RZUEVfVU5LTk9XThAAEhkKFVBST0pFQ1RfVFlQRV'
|
||||||
|
'9BQ1RJVklUWRABEhUKEVBST0pFQ1RfVFlQRV9TSVRFEAI=');
|
||||||
|
|
||||||
@$core.Deprecated('Use adminAddressDescriptor instead')
|
@$core.Deprecated('Use adminAddressDescriptor instead')
|
||||||
const AdminAddress$json = {
|
const AdminAddress$json = {
|
||||||
'1': 'AdminAddress',
|
'1': 'AdminAddress',
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ class ProjectCreation extends $pb.GeneratedMessage {
|
|||||||
$core.String? iD,
|
$core.String? iD,
|
||||||
$core.String? name,
|
$core.String? name,
|
||||||
$core.Iterable<$1.Module>? modules,
|
$core.Iterable<$1.Module>? modules,
|
||||||
ProjectType? type,
|
$3.ProjectType? type,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (iD != null) result.iD = iD;
|
if (iD != null) result.iD = iD;
|
||||||
@@ -50,7 +50,7 @@ class ProjectCreation extends $pb.GeneratedMessage {
|
|||||||
..aOS(1, _omitFieldNames ? '' : 'ID', protoName: 'ID')
|
..aOS(1, _omitFieldNames ? '' : 'ID', protoName: 'ID')
|
||||||
..aOS(2, _omitFieldNames ? '' : 'Name', protoName: 'Name')
|
..aOS(2, _omitFieldNames ? '' : 'Name', protoName: 'Name')
|
||||||
..pc<$1.Module>(3, _omitFieldNames ? '' : 'Modules', $pb.PbFieldType.PM, protoName: 'Modules', subBuilder: $1.Module.create)
|
..pc<$1.Module>(3, _omitFieldNames ? '' : 'Modules', $pb.PbFieldType.PM, protoName: 'Modules', subBuilder: $1.Module.create)
|
||||||
..e<ProjectType>(4, _omitFieldNames ? '' : 'Type', $pb.PbFieldType.OE, protoName: 'Type', defaultOrMaker: ProjectType.PROJECT_TYPE_UNKNOWN, valueOf: ProjectType.valueOf, enumValues: ProjectType.values)
|
..e<$3.ProjectType>(4, _omitFieldNames ? '' : 'Type', $pb.PbFieldType.OE, protoName: 'Type', defaultOrMaker: $3.ProjectType.PROJECT_TYPE_UNKNOWN, valueOf: $3.ProjectType.valueOf, enumValues: $3.ProjectType.values)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -93,9 +93,9 @@ class ProjectCreation extends $pb.GeneratedMessage {
|
|||||||
$pb.PbList<$1.Module> get modules => $_getList(2);
|
$pb.PbList<$1.Module> get modules => $_getList(2);
|
||||||
|
|
||||||
@$pb.TagNumber(4)
|
@$pb.TagNumber(4)
|
||||||
ProjectType get type => $_getN(3);
|
$3.ProjectType get type => $_getN(3);
|
||||||
@$pb.TagNumber(4)
|
@$pb.TagNumber(4)
|
||||||
set type(ProjectType value) => $_setField(4, value);
|
set type($3.ProjectType value) => $_setField(4, value);
|
||||||
@$pb.TagNumber(4)
|
@$pb.TagNumber(4)
|
||||||
$core.bool hasType() => $_has(3);
|
$core.bool hasType() => $_has(3);
|
||||||
@$pb.TagNumber(4)
|
@$pb.TagNumber(4)
|
||||||
@@ -109,7 +109,7 @@ class Project extends $pb.GeneratedMessage {
|
|||||||
$core.String? organisationID,
|
$core.String? organisationID,
|
||||||
ProjectStatusEnum? status,
|
ProjectStatusEnum? status,
|
||||||
$core.Iterable<$1.Module>? modules,
|
$core.Iterable<$1.Module>? modules,
|
||||||
ProjectType? type,
|
$3.ProjectType? type,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (iD != null) result.iD = iD;
|
if (iD != null) result.iD = iD;
|
||||||
@@ -132,7 +132,7 @@ class Project extends $pb.GeneratedMessage {
|
|||||||
..aOS(3, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
|
..aOS(3, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
|
||||||
..e<ProjectStatusEnum>(4, _omitFieldNames ? '' : 'status', $pb.PbFieldType.OE, defaultOrMaker: ProjectStatusEnum.PROJECT_STATUS_UNKNOWN, valueOf: ProjectStatusEnum.valueOf, enumValues: ProjectStatusEnum.values)
|
..e<ProjectStatusEnum>(4, _omitFieldNames ? '' : 'status', $pb.PbFieldType.OE, defaultOrMaker: ProjectStatusEnum.PROJECT_STATUS_UNKNOWN, valueOf: ProjectStatusEnum.valueOf, enumValues: ProjectStatusEnum.values)
|
||||||
..pc<$1.Module>(5, _omitFieldNames ? '' : 'Modules', $pb.PbFieldType.PM, protoName: 'Modules', subBuilder: $1.Module.create)
|
..pc<$1.Module>(5, _omitFieldNames ? '' : 'Modules', $pb.PbFieldType.PM, protoName: 'Modules', subBuilder: $1.Module.create)
|
||||||
..e<ProjectType>(6, _omitFieldNames ? '' : 'Type', $pb.PbFieldType.OE, protoName: 'Type', defaultOrMaker: ProjectType.PROJECT_TYPE_UNKNOWN, valueOf: ProjectType.valueOf, enumValues: ProjectType.values)
|
..e<$3.ProjectType>(6, _omitFieldNames ? '' : 'Type', $pb.PbFieldType.OE, protoName: 'Type', defaultOrMaker: $3.ProjectType.PROJECT_TYPE_UNKNOWN, valueOf: $3.ProjectType.valueOf, enumValues: $3.ProjectType.values)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -193,9 +193,9 @@ class Project extends $pb.GeneratedMessage {
|
|||||||
$pb.PbList<$1.Module> get modules => $_getList(4);
|
$pb.PbList<$1.Module> get modules => $_getList(4);
|
||||||
|
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
ProjectType get type => $_getN(5);
|
$3.ProjectType get type => $_getN(5);
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
set type(ProjectType value) => $_setField(6, value);
|
set type($3.ProjectType value) => $_setField(6, value);
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
$core.bool hasType() => $_has(5);
|
$core.bool hasType() => $_has(5);
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
@@ -315,7 +315,7 @@ class ListProjectRequest extends $pb.GeneratedMessage {
|
|||||||
$3.Paging? paging,
|
$3.Paging? paging,
|
||||||
$2.RequestOrganisationHeader? header,
|
$2.RequestOrganisationHeader? header,
|
||||||
$core.bool? showInactiveProjects,
|
$core.bool? showInactiveProjects,
|
||||||
ProjectType? type,
|
$3.ProjectType? type,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (paging != null) result.paging = paging;
|
if (paging != null) result.paging = paging;
|
||||||
@@ -334,7 +334,7 @@ class ListProjectRequest extends $pb.GeneratedMessage {
|
|||||||
..aOM<$3.Paging>(3, _omitFieldNames ? '' : 'Paging', protoName: 'Paging', subBuilder: $3.Paging.create)
|
..aOM<$3.Paging>(3, _omitFieldNames ? '' : 'Paging', protoName: 'Paging', subBuilder: $3.Paging.create)
|
||||||
..aOM<$2.RequestOrganisationHeader>(4, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.RequestOrganisationHeader.create)
|
..aOM<$2.RequestOrganisationHeader>(4, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.RequestOrganisationHeader.create)
|
||||||
..aOB(5, _omitFieldNames ? '' : 'ShowInactiveProjects', protoName: 'ShowInactiveProjects')
|
..aOB(5, _omitFieldNames ? '' : 'ShowInactiveProjects', protoName: 'ShowInactiveProjects')
|
||||||
..e<ProjectType>(6, _omitFieldNames ? '' : 'Type', $pb.PbFieldType.OE, protoName: 'Type', defaultOrMaker: ProjectType.PROJECT_TYPE_UNKNOWN, valueOf: ProjectType.valueOf, enumValues: ProjectType.values)
|
..e<$3.ProjectType>(6, _omitFieldNames ? '' : 'Type', $pb.PbFieldType.OE, protoName: 'Type', defaultOrMaker: $3.ProjectType.PROJECT_TYPE_UNKNOWN, valueOf: $3.ProjectType.valueOf, enumValues: $3.ProjectType.values)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -387,9 +387,9 @@ class ListProjectRequest extends $pb.GeneratedMessage {
|
|||||||
void clearShowInactiveProjects() => $_clearField(5);
|
void clearShowInactiveProjects() => $_clearField(5);
|
||||||
|
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
ProjectType get type => $_getN(3);
|
$3.ProjectType get type => $_getN(3);
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
set type(ProjectType value) => $_setField(6, value);
|
set type($3.ProjectType value) => $_setField(6, value);
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
$core.bool hasType() => $_has(3);
|
$core.bool hasType() => $_has(3);
|
||||||
@$pb.TagNumber(6)
|
@$pb.TagNumber(6)
|
||||||
@@ -399,7 +399,7 @@ class ListProjectRequest extends $pb.GeneratedMessage {
|
|||||||
class ListAllProjectRequest extends $pb.GeneratedMessage {
|
class ListAllProjectRequest extends $pb.GeneratedMessage {
|
||||||
factory ListAllProjectRequest({
|
factory ListAllProjectRequest({
|
||||||
$core.bool? showInactiveProjects,
|
$core.bool? showInactiveProjects,
|
||||||
ProjectType? type,
|
$3.ProjectType? type,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (showInactiveProjects != null) result.showInactiveProjects = showInactiveProjects;
|
if (showInactiveProjects != null) result.showInactiveProjects = showInactiveProjects;
|
||||||
@@ -414,7 +414,7 @@ class ListAllProjectRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAllProjectRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ListAllProjectRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||||
..aOB(1, _omitFieldNames ? '' : 'ShowInactiveProjects', protoName: 'ShowInactiveProjects')
|
..aOB(1, _omitFieldNames ? '' : 'ShowInactiveProjects', protoName: 'ShowInactiveProjects')
|
||||||
..e<ProjectType>(2, _omitFieldNames ? '' : 'Type', $pb.PbFieldType.OE, protoName: 'Type', defaultOrMaker: ProjectType.PROJECT_TYPE_UNKNOWN, valueOf: ProjectType.valueOf, enumValues: ProjectType.values)
|
..e<$3.ProjectType>(2, _omitFieldNames ? '' : 'Type', $pb.PbFieldType.OE, protoName: 'Type', defaultOrMaker: $3.ProjectType.PROJECT_TYPE_UNKNOWN, valueOf: $3.ProjectType.valueOf, enumValues: $3.ProjectType.values)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -445,9 +445,9 @@ class ListAllProjectRequest extends $pb.GeneratedMessage {
|
|||||||
void clearShowInactiveProjects() => $_clearField(1);
|
void clearShowInactiveProjects() => $_clearField(1);
|
||||||
|
|
||||||
@$pb.TagNumber(2)
|
@$pb.TagNumber(2)
|
||||||
ProjectType get type => $_getN(1);
|
$3.ProjectType get type => $_getN(1);
|
||||||
@$pb.TagNumber(2)
|
@$pb.TagNumber(2)
|
||||||
set type(ProjectType value) => $_setField(2, value);
|
set type($3.ProjectType value) => $_setField(2, value);
|
||||||
@$pb.TagNumber(2)
|
@$pb.TagNumber(2)
|
||||||
$core.bool hasType() => $_has(1);
|
$core.bool hasType() => $_has(1);
|
||||||
@$pb.TagNumber(2)
|
@$pb.TagNumber(2)
|
||||||
@@ -632,7 +632,7 @@ class UpdateProjectRequest extends $pb.GeneratedMessage {
|
|||||||
factory UpdateProjectRequest({
|
factory UpdateProjectRequest({
|
||||||
$2.RequestProjectHeader? header,
|
$2.RequestProjectHeader? header,
|
||||||
$core.String? name,
|
$core.String? name,
|
||||||
ProjectType? type,
|
$3.ProjectType? type,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (header != null) result.header = header;
|
if (header != null) result.header = header;
|
||||||
@@ -649,7 +649,7 @@ class UpdateProjectRequest extends $pb.GeneratedMessage {
|
|||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateProjectRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'UpdateProjectRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||||
..aOM<$2.RequestProjectHeader>(2, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.RequestProjectHeader.create)
|
..aOM<$2.RequestProjectHeader>(2, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.RequestProjectHeader.create)
|
||||||
..aOS(3, _omitFieldNames ? '' : 'Name', protoName: 'Name')
|
..aOS(3, _omitFieldNames ? '' : 'Name', protoName: 'Name')
|
||||||
..e<ProjectType>(4, _omitFieldNames ? '' : 'Type', $pb.PbFieldType.OE, protoName: 'Type', defaultOrMaker: ProjectType.PROJECT_TYPE_UNKNOWN, valueOf: ProjectType.valueOf, enumValues: ProjectType.values)
|
..e<$3.ProjectType>(4, _omitFieldNames ? '' : 'Type', $pb.PbFieldType.OE, protoName: 'Type', defaultOrMaker: $3.ProjectType.PROJECT_TYPE_UNKNOWN, valueOf: $3.ProjectType.valueOf, enumValues: $3.ProjectType.values)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -691,9 +691,9 @@ class UpdateProjectRequest extends $pb.GeneratedMessage {
|
|||||||
void clearName() => $_clearField(3);
|
void clearName() => $_clearField(3);
|
||||||
|
|
||||||
@$pb.TagNumber(4)
|
@$pb.TagNumber(4)
|
||||||
ProjectType get type => $_getN(2);
|
$3.ProjectType get type => $_getN(2);
|
||||||
@$pb.TagNumber(4)
|
@$pb.TagNumber(4)
|
||||||
set type(ProjectType value) => $_setField(4, value);
|
set type($3.ProjectType value) => $_setField(4, value);
|
||||||
@$pb.TagNumber(4)
|
@$pb.TagNumber(4)
|
||||||
$core.bool hasType() => $_has(2);
|
$core.bool hasType() => $_has(2);
|
||||||
@$pb.TagNumber(4)
|
@$pb.TagNumber(4)
|
||||||
|
|||||||
@@ -37,22 +37,5 @@ class ProjectStatusEnum extends $pb.ProtobufEnum {
|
|||||||
const ProjectStatusEnum._(super.value, super.name);
|
const ProjectStatusEnum._(super.value, super.name);
|
||||||
}
|
}
|
||||||
|
|
||||||
class ProjectType extends $pb.ProtobufEnum {
|
|
||||||
static const ProjectType PROJECT_TYPE_UNKNOWN = ProjectType._(0, _omitEnumNames ? '' : 'PROJECT_TYPE_UNKNOWN');
|
|
||||||
static const ProjectType PROJECT_TYPE_ACTIVITY = ProjectType._(1, _omitEnumNames ? '' : 'PROJECT_TYPE_ACTIVITY');
|
|
||||||
static const ProjectType PROJECT_TYPE_SITE = ProjectType._(2, _omitEnumNames ? '' : 'PROJECT_TYPE_SITE');
|
|
||||||
|
|
||||||
static const $core.List<ProjectType> values = <ProjectType> [
|
|
||||||
PROJECT_TYPE_UNKNOWN,
|
|
||||||
PROJECT_TYPE_ACTIVITY,
|
|
||||||
PROJECT_TYPE_SITE,
|
|
||||||
];
|
|
||||||
|
|
||||||
static final $core.List<ProjectType?> _byValue = $pb.ProtobufEnum.$_initByValueList(values, 2);
|
|
||||||
static ProjectType? valueOf($core.int value) => value < 0 || value >= _byValue.length ? null : _byValue[value];
|
|
||||||
|
|
||||||
const ProjectType._(super.value, super.name);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|
const $core.bool _omitEnumNames = $core.bool.fromEnvironment('protobuf.omit_enum_names');
|
||||||
|
|||||||
@@ -34,21 +34,6 @@ final $typed_data.Uint8List projectStatusEnumDescriptor = $convert.base64Decode(
|
|||||||
'UFJPSkVDVF9TVEFUVVNfREVQUk9WSVNJT05OSU5HEAMSIQodUFJPSkVDVF9TVEFUVVNfREVQUk'
|
'UFJPSkVDVF9TVEFUVVNfREVQUk9WSVNJT05OSU5HEAMSIQodUFJPSkVDVF9TVEFUVVNfREVQUk'
|
||||||
'9WSVNJT05ORUQQBBIYChRQUk9KRUNUX1NUQVRVU19FUlJPUhAF');
|
'9WSVNJT05ORUQQBBIYChRQUk9KRUNUX1NUQVRVU19FUlJPUhAF');
|
||||||
|
|
||||||
@$core.Deprecated('Use projectTypeDescriptor instead')
|
|
||||||
const ProjectType$json = {
|
|
||||||
'1': 'ProjectType',
|
|
||||||
'2': [
|
|
||||||
{'1': 'PROJECT_TYPE_UNKNOWN', '2': 0},
|
|
||||||
{'1': 'PROJECT_TYPE_ACTIVITY', '2': 1},
|
|
||||||
{'1': 'PROJECT_TYPE_SITE', '2': 2},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `ProjectType`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
|
||||||
final $typed_data.Uint8List projectTypeDescriptor = $convert.base64Decode(
|
|
||||||
'CgtQcm9qZWN0VHlwZRIYChRQUk9KRUNUX1RZUEVfVU5LTk9XThAAEhkKFVBST0pFQ1RfVFlQRV'
|
|
||||||
'9BQ1RJVklUWRABEhUKEVBST0pFQ1RfVFlQRV9TSVRFEAI=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use projectCreationDescriptor instead')
|
@$core.Deprecated('Use projectCreationDescriptor instead')
|
||||||
const ProjectCreation$json = {
|
const ProjectCreation$json = {
|
||||||
'1': 'ProjectCreation',
|
'1': 'ProjectCreation',
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ import 'dart:core' as $core;
|
|||||||
|
|
||||||
import 'package:protobuf/protobuf.dart' as $pb;
|
import 'package:protobuf/protobuf.dart' as $pb;
|
||||||
|
|
||||||
|
import 'base.pbenum.dart' as $4;
|
||||||
import 'clickhouse.pb.dart' as $3;
|
import 'clickhouse.pb.dart' as $3;
|
||||||
import 'module.pb.dart' as $2;
|
import 'module.pb.dart' as $2;
|
||||||
import 'shared.pb.dart' as $1;
|
import 'shared.pb.dart' as $1;
|
||||||
@@ -147,6 +148,7 @@ class StartWorkflowCreateProjectRequest extends $pb.GeneratedMessage {
|
|||||||
$core.String? userSub,
|
$core.String? userSub,
|
||||||
$core.String? managerEmail,
|
$core.String? managerEmail,
|
||||||
$core.Iterable<$2.Module>? modules,
|
$core.Iterable<$2.Module>? modules,
|
||||||
|
$4.ProjectType? projectType,
|
||||||
}) {
|
}) {
|
||||||
final result = create();
|
final result = create();
|
||||||
if (organisationId != null) result.organisationId = organisationId;
|
if (organisationId != null) result.organisationId = organisationId;
|
||||||
@@ -154,6 +156,7 @@ class StartWorkflowCreateProjectRequest extends $pb.GeneratedMessage {
|
|||||||
if (userSub != null) result.userSub = userSub;
|
if (userSub != null) result.userSub = userSub;
|
||||||
if (managerEmail != null) result.managerEmail = managerEmail;
|
if (managerEmail != null) result.managerEmail = managerEmail;
|
||||||
if (modules != null) result.modules.addAll(modules);
|
if (modules != null) result.modules.addAll(modules);
|
||||||
|
if (projectType != null) result.projectType = projectType;
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -168,6 +171,7 @@ class StartWorkflowCreateProjectRequest extends $pb.GeneratedMessage {
|
|||||||
..aOS(3, _omitFieldNames ? '' : 'UserSub', protoName: 'UserSub')
|
..aOS(3, _omitFieldNames ? '' : 'UserSub', protoName: 'UserSub')
|
||||||
..aOS(4, _omitFieldNames ? '' : 'ManagerEmail', protoName: 'ManagerEmail')
|
..aOS(4, _omitFieldNames ? '' : 'ManagerEmail', protoName: 'ManagerEmail')
|
||||||
..pc<$2.Module>(5, _omitFieldNames ? '' : 'Modules', $pb.PbFieldType.PM, protoName: 'Modules', subBuilder: $2.Module.create)
|
..pc<$2.Module>(5, _omitFieldNames ? '' : 'Modules', $pb.PbFieldType.PM, protoName: 'Modules', subBuilder: $2.Module.create)
|
||||||
|
..e<$4.ProjectType>(6, _omitFieldNames ? '' : 'ProjectType', $pb.PbFieldType.OE, protoName: 'ProjectType', defaultOrMaker: $4.ProjectType.PROJECT_TYPE_UNKNOWN, valueOf: $4.ProjectType.valueOf, enumValues: $4.ProjectType.values)
|
||||||
..hasRequiredFields = false
|
..hasRequiredFields = false
|
||||||
;
|
;
|
||||||
|
|
||||||
@@ -226,6 +230,15 @@ class StartWorkflowCreateProjectRequest extends $pb.GeneratedMessage {
|
|||||||
|
|
||||||
@$pb.TagNumber(5)
|
@$pb.TagNumber(5)
|
||||||
$pb.PbList<$2.Module> get modules => $_getList(4);
|
$pb.PbList<$2.Module> get modules => $_getList(4);
|
||||||
|
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
$4.ProjectType get projectType => $_getN(5);
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
set projectType($4.ProjectType value) => $_setField(6, value);
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
$core.bool hasProjectType() => $_has(5);
|
||||||
|
@$pb.TagNumber(6)
|
||||||
|
void clearProjectType() => $_clearField(6);
|
||||||
}
|
}
|
||||||
|
|
||||||
class StartWorkflowCreateProjectResult extends $pb.GeneratedMessage {
|
class StartWorkflowCreateProjectResult extends $pb.GeneratedMessage {
|
||||||
|
|||||||
@@ -68,6 +68,7 @@ const StartWorkflowCreateProjectRequest$json = {
|
|||||||
{'1': 'UserSub', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'UserSub'},
|
{'1': 'UserSub', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'UserSub'},
|
||||||
{'1': 'ManagerEmail', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'ManagerEmail'},
|
{'1': 'ManagerEmail', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'ManagerEmail'},
|
||||||
{'1': 'Modules', '3': 5, '4': 3, '5': 11, '6': '.api.Module', '10': 'Modules'},
|
{'1': 'Modules', '3': 5, '4': 3, '5': 11, '6': '.api.Module', '10': 'Modules'},
|
||||||
|
{'1': 'ProjectType', '3': 6, '4': 1, '5': 14, '6': '.api.ProjectType', '10': 'ProjectType'},
|
||||||
],
|
],
|
||||||
'7': {},
|
'7': {},
|
||||||
};
|
};
|
||||||
@@ -78,8 +79,9 @@ final $typed_data.Uint8List startWorkflowCreateProjectRequestDescriptor = $conve
|
|||||||
'ABKAlCB/pCBHICEAFSDk9yZ2FuaXNhdGlvbklkEiUKCVByb2plY3RJZBgCIAEoCUIH+kIEcgIQ'
|
'ABKAlCB/pCBHICEAFSDk9yZ2FuaXNhdGlvbklkEiUKCVByb2plY3RJZBgCIAEoCUIH+kIEcgIQ'
|
||||||
'AVIJUHJvamVjdElkEiEKB1VzZXJTdWIYAyABKAlCB/pCBHICEAFSB1VzZXJTdWISKwoMTWFuYW'
|
'AVIJUHJvamVjdElkEiEKB1VzZXJTdWIYAyABKAlCB/pCBHICEAFSB1VzZXJTdWISKwoMTWFuYW'
|
||||||
'dlckVtYWlsGAQgASgJQgf6QgRyAhABUgxNYW5hZ2VyRW1haWwSJQoHTW9kdWxlcxgFIAMoCzIL'
|
'dlckVtYWlsGAQgASgJQgf6QgRyAhABUgxNYW5hZ2VyRW1haWwSJQoHTW9kdWxlcxgFIAMoCzIL'
|
||||||
'LmFwaS5Nb2R1bGVSB01vZHVsZXM6O5JBOAo20gEOT3JnYW5pc2F0aW9uSWTSAQlQcm9qZWN0SW'
|
'LmFwaS5Nb2R1bGVSB01vZHVsZXMSMgoLUHJvamVjdFR5cGUYBiABKA4yEC5hcGkuUHJvamVjdF'
|
||||||
'TSAQdVc2VyU3Vi0gEMTWFuYWdlckVtYWls');
|
'R5cGVSC1Byb2plY3RUeXBlOjuSQTgKNtIBDk9yZ2FuaXNhdGlvbklk0gEJUHJvamVjdElk0gEH'
|
||||||
|
'VXNlclN1YtIBDE1hbmFnZXJFbWFpbA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use startWorkflowCreateProjectResultDescriptor instead')
|
@$core.Deprecated('Use startWorkflowCreateProjectResultDescriptor instead')
|
||||||
const StartWorkflowCreateProjectResult$json = {
|
const StartWorkflowCreateProjectResult$json = {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
name: dart_core_sdk
|
name: dart_core_sdk
|
||||||
description: dart libs from core model proto files
|
description: dart libs from core model proto files
|
||||||
version: 1.12.0-SNAPSHOT-251007143334
|
version: 1.12.0-SNAPSHOT-251008090357
|
||||||
homepage: ''
|
homepage: ''
|
||||||
publish_to: ''
|
publish_to: ''
|
||||||
repository: ''
|
repository: ''
|
||||||
|
|||||||
Reference in New Issue
Block a user