Latest generation

This commit is contained in:
ci core model
2025-05-19 09:58:50 +00:00
parent 98e41e556e
commit 81c248c61e
5 changed files with 66 additions and 63 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG
Lib version: 1.11.0-SNAPSHOT-250516084918
Lib version: 1.11.0-SNAPSHOT-250519095809

View File

@@ -74,8 +74,8 @@ const CreateSiteRequest$json = {
'1': 'CreateSiteRequest',
'2': [
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestOrganisationHeader', '8': {}, '10': 'Header'},
{'1': 'SiteID', '3': 2, '4': 1, '5': 9, '10': 'SiteID'},
{'1': 'SiteName', '3': 3, '4': 1, '5': 9, '10': 'SiteName'},
{'1': 'SiteID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'SiteID'},
{'1': 'SiteName', '3': 3, '4': 1, '5': 9, '8': {}, '10': 'SiteName'},
{'1': 'Email', '3': 4, '4': 1, '5': 9, '8': {}, '10': 'Email'},
],
'7': {},
@@ -84,9 +84,10 @@ const CreateSiteRequest$json = {
/// Descriptor for `CreateSiteRequest`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List createSiteRequestDescriptor = $convert.base64Decode(
'ChFDcmVhdGVTaXRlUmVxdWVzdBJACgZIZWFkZXIYASABKAsyHi5hcGkuUmVxdWVzdE9yZ2FuaX'
'NhdGlvbkhlYWRlckII+kIFigECEAFSBkhlYWRlchIWCgZTaXRlSUQYAiABKAlSBlNpdGVJRBIa'
'CghTaXRlTmFtZRgDIAEoCVIIU2l0ZU5hbWUSHwoFRW1haWwYBCABKAlCCfpCBnIEEAFgAVIFRW'
'1haWw6HJJBGQoX0gEUSGVhZGVyLFNpdGVJRCxFbWFpbHM=');
'NhdGlvbkhlYWRlckII+kIFigECEAFSBkhlYWRlchIfCgZTaXRlSUQYAiABKAlCB/pCBHICEAFS'
'BlNpdGVJRBIjCghTaXRlTmFtZRgDIAEoCUIH+kIEcgIQAVIIU2l0ZU5hbWUSHwoFRW1haWwYBC'
'ABKAlCCfpCBnIEEAFgAVIFRW1haWw6JZJBIgog0gEdSGVhZGVyLFNpdGVJRCxFbWFpbHMsU2l0'
'ZU5hbWU=');
@$core.Deprecated('Use createSiteResponseDescriptor instead')
const CreateSiteResponse$json = {

View File

@@ -1395,8 +1395,8 @@ class ProjectAuthorisation extends $pb.GeneratedMessage {
factory ProjectAuthorisation({
$core.String? organisationID,
$core.String? projectID,
ProjectConstraints? inConstraints,
ProjectConstraints? outConstraints,
ProjectConstraints? unloadingConstraints,
ProjectConstraints? loadingConstraints,
}) {
final $result = create();
if (organisationID != null) {
@@ -1405,11 +1405,11 @@ class ProjectAuthorisation extends $pb.GeneratedMessage {
if (projectID != null) {
$result.projectID = projectID;
}
if (inConstraints != null) {
$result.inConstraints = inConstraints;
if (unloadingConstraints != null) {
$result.unloadingConstraints = unloadingConstraints;
}
if (outConstraints != null) {
$result.outConstraints = outConstraints;
if (loadingConstraints != null) {
$result.loadingConstraints = loadingConstraints;
}
return $result;
}
@@ -1420,8 +1420,8 @@ class ProjectAuthorisation extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ProjectAuthorisation', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
..aOS(2, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
..aOM<ProjectConstraints>(3, _omitFieldNames ? '' : 'InConstraints', protoName: 'InConstraints', subBuilder: ProjectConstraints.create)
..aOM<ProjectConstraints>(4, _omitFieldNames ? '' : 'OutConstraints', protoName: 'OutConstraints', subBuilder: ProjectConstraints.create)
..aOM<ProjectConstraints>(3, _omitFieldNames ? '' : 'UnloadingConstraints', protoName: 'UnloadingConstraints', subBuilder: ProjectConstraints.create)
..aOM<ProjectConstraints>(4, _omitFieldNames ? '' : 'LoadingConstraints', protoName: 'LoadingConstraints', subBuilder: ProjectConstraints.create)
..hasRequiredFields = false
;
@@ -1469,27 +1469,27 @@ class ProjectAuthorisation extends $pb.GeneratedMessage {
/// TODO Do we need explicit flags to show if receipt / ship is allowed / forbidden ?
/// Constraints applied for reception appointment
@$pb.TagNumber(3)
ProjectConstraints get inConstraints => $_getN(2);
ProjectConstraints get unloadingConstraints => $_getN(2);
@$pb.TagNumber(3)
set inConstraints(ProjectConstraints v) { $_setField(3, v); }
set unloadingConstraints(ProjectConstraints v) { $_setField(3, v); }
@$pb.TagNumber(3)
$core.bool hasInConstraints() => $_has(2);
$core.bool hasUnloadingConstraints() => $_has(2);
@$pb.TagNumber(3)
void clearInConstraints() => $_clearField(3);
void clearUnloadingConstraints() => $_clearField(3);
@$pb.TagNumber(3)
ProjectConstraints ensureInConstraints() => $_ensure(2);
ProjectConstraints ensureUnloadingConstraints() => $_ensure(2);
/// Constraints applied for expedition appointment
@$pb.TagNumber(4)
ProjectConstraints get outConstraints => $_getN(3);
ProjectConstraints get loadingConstraints => $_getN(3);
@$pb.TagNumber(4)
set outConstraints(ProjectConstraints v) { $_setField(4, v); }
set loadingConstraints(ProjectConstraints v) { $_setField(4, v); }
@$pb.TagNumber(4)
$core.bool hasOutConstraints() => $_has(3);
$core.bool hasLoadingConstraints() => $_has(3);
@$pb.TagNumber(4)
void clearOutConstraints() => $_clearField(4);
void clearLoadingConstraints() => $_clearField(4);
@$pb.TagNumber(4)
ProjectConstraints ensureOutConstraints() => $_ensure(3);
ProjectConstraints ensureLoadingConstraints() => $_ensure(3);
}
class ProjectConstraints extends $pb.GeneratedMessage {
@@ -1574,7 +1574,7 @@ class ProjectConstraints extends $pb.GeneratedMessage {
class SegmentationConstraint extends $pb.GeneratedMessage {
factory SegmentationConstraint({
$core.String? segmentationID,
$core.Iterable<$fixnum.Int64>? restrictedValueIDs,
$core.Iterable<$core.String>? restrictedValueIDs,
$core.bool? allValues,
}) {
final $result = create();
@@ -1595,7 +1595,7 @@ class SegmentationConstraint extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SegmentationConstraint', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'SegmentationID', protoName: 'SegmentationID')
..p<$fixnum.Int64>(2, _omitFieldNames ? '' : 'RestrictedValueIDs', $pb.PbFieldType.K6, protoName: 'RestrictedValueIDs')
..pPS(2, _omitFieldNames ? '' : 'RestrictedValueIDs', protoName: 'RestrictedValueIDs')
..aOB(3, _omitFieldNames ? '' : 'AllValues', protoName: 'AllValues')
..hasRequiredFields = false
;
@@ -1633,7 +1633,7 @@ class SegmentationConstraint extends $pb.GeneratedMessage {
/// If some Segmentation values are restricted, define here the identifiers to keep
@$pb.TagNumber(2)
$pb.PbList<$fixnum.Int64> get restrictedValueIDs => $_getList(1);
$pb.PbList<$core.String> get restrictedValueIDs => $_getList(1);
/// Set to not apply Segmentation value restriction and keep all the values
@$pb.TagNumber(3)
@@ -1648,15 +1648,15 @@ class SegmentationConstraint extends $pb.GeneratedMessage {
class ActorAuthorisation extends $pb.GeneratedMessage {
factory ActorAuthorisation({
ActorConstraints? inConstraints,
ActorConstraints? outConstraints,
ActorConstraints? unloadingConstraints,
ActorConstraints? loadingConstraints,
}) {
final $result = create();
if (inConstraints != null) {
$result.inConstraints = inConstraints;
if (unloadingConstraints != null) {
$result.unloadingConstraints = unloadingConstraints;
}
if (outConstraints != null) {
$result.outConstraints = outConstraints;
if (loadingConstraints != null) {
$result.loadingConstraints = loadingConstraints;
}
return $result;
}
@@ -1665,8 +1665,8 @@ class ActorAuthorisation extends $pb.GeneratedMessage {
factory ActorAuthorisation.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ActorAuthorisation', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<ActorConstraints>(3, _omitFieldNames ? '' : 'InConstraints', protoName: 'InConstraints', subBuilder: ActorConstraints.create)
..aOM<ActorConstraints>(4, _omitFieldNames ? '' : 'OutConstraints', protoName: 'OutConstraints', subBuilder: ActorConstraints.create)
..aOM<ActorConstraints>(3, _omitFieldNames ? '' : 'UnloadingConstraints', protoName: 'UnloadingConstraints', subBuilder: ActorConstraints.create)
..aOM<ActorConstraints>(4, _omitFieldNames ? '' : 'LoadingConstraints', protoName: 'LoadingConstraints', subBuilder: ActorConstraints.create)
..hasRequiredFields = false
;
@@ -1693,27 +1693,27 @@ class ActorAuthorisation extends $pb.GeneratedMessage {
/// Constraints applied for reception appointment
@$pb.TagNumber(3)
ActorConstraints get inConstraints => $_getN(0);
ActorConstraints get unloadingConstraints => $_getN(0);
@$pb.TagNumber(3)
set inConstraints(ActorConstraints v) { $_setField(3, v); }
set unloadingConstraints(ActorConstraints v) { $_setField(3, v); }
@$pb.TagNumber(3)
$core.bool hasInConstraints() => $_has(0);
$core.bool hasUnloadingConstraints() => $_has(0);
@$pb.TagNumber(3)
void clearInConstraints() => $_clearField(3);
void clearUnloadingConstraints() => $_clearField(3);
@$pb.TagNumber(3)
ActorConstraints ensureInConstraints() => $_ensure(0);
ActorConstraints ensureUnloadingConstraints() => $_ensure(0);
/// Constraints applied for expedition appointment
@$pb.TagNumber(4)
ActorConstraints get outConstraints => $_getN(1);
ActorConstraints get loadingConstraints => $_getN(1);
@$pb.TagNumber(4)
set outConstraints(ActorConstraints v) { $_setField(4, v); }
set loadingConstraints(ActorConstraints v) { $_setField(4, v); }
@$pb.TagNumber(4)
$core.bool hasOutConstraints() => $_has(1);
$core.bool hasLoadingConstraints() => $_has(1);
@$pb.TagNumber(4)
void clearOutConstraints() => $_clearField(4);
void clearLoadingConstraints() => $_clearField(4);
@$pb.TagNumber(4)
ActorConstraints ensureOutConstraints() => $_ensure(1);
ActorConstraints ensureLoadingConstraints() => $_ensure(1);
}
class ActorConstraints extends $pb.GeneratedMessage {
@@ -1781,7 +1781,7 @@ class ActorConstraints extends $pb.GeneratedMessage {
class SegmentationActorConstraint extends $pb.GeneratedMessage {
factory SegmentationActorConstraint({
$core.String? segmentationID,
$core.Iterable<$fixnum.Int64>? restrictedValueIDs,
$core.Iterable<$core.String>? restrictedValueIDs,
$core.bool? allValues,
SegmentationConstraintType? type,
$core.String? attributePath,
@@ -1810,7 +1810,7 @@ class SegmentationActorConstraint extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SegmentationActorConstraint', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'SegmentationID', protoName: 'SegmentationID')
..p<$fixnum.Int64>(2, _omitFieldNames ? '' : 'RestrictedValueIDs', $pb.PbFieldType.K6, protoName: 'RestrictedValueIDs')
..pPS(2, _omitFieldNames ? '' : 'RestrictedValueIDs', protoName: 'RestrictedValueIDs')
..aOB(3, _omitFieldNames ? '' : 'AllValues', protoName: 'AllValues')
..e<SegmentationConstraintType>(4, _omitFieldNames ? '' : 'Type', $pb.PbFieldType.OE, protoName: 'Type', defaultOrMaker: SegmentationConstraintType.SegmentationConstraintType_UNKNOWN, valueOf: SegmentationConstraintType.valueOf, enumValues: SegmentationConstraintType.values)
..aOS(5, _omitFieldNames ? '' : 'AttributePath', protoName: 'AttributePath')
@@ -1850,7 +1850,7 @@ class SegmentationActorConstraint extends $pb.GeneratedMessage {
/// If some Segmentation values are restricted, define here the identifiers to keep
@$pb.TagNumber(2)
$pb.PbList<$fixnum.Int64> get restrictedValueIDs => $_getList(1);
$pb.PbList<$core.String> get restrictedValueIDs => $_getList(1);
/// In case of user value choice, to restrict Segmentation values
@$pb.TagNumber(3)

View File

@@ -409,17 +409,18 @@ const ProjectAuthorisation$json = {
'2': [
{'1': 'OrganisationID', '3': 1, '4': 1, '5': 9, '10': 'OrganisationID'},
{'1': 'ProjectID', '3': 2, '4': 1, '5': 9, '10': 'ProjectID'},
{'1': 'InConstraints', '3': 3, '4': 1, '5': 11, '6': '.api.ProjectConstraints', '10': 'InConstraints'},
{'1': 'OutConstraints', '3': 4, '4': 1, '5': 11, '6': '.api.ProjectConstraints', '10': 'OutConstraints'},
{'1': 'UnloadingConstraints', '3': 3, '4': 1, '5': 11, '6': '.api.ProjectConstraints', '10': 'UnloadingConstraints'},
{'1': 'LoadingConstraints', '3': 4, '4': 1, '5': 11, '6': '.api.ProjectConstraints', '10': 'LoadingConstraints'},
],
};
/// Descriptor for `ProjectAuthorisation`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List projectAuthorisationDescriptor = $convert.base64Decode(
'ChRQcm9qZWN0QXV0aG9yaXNhdGlvbhImCg5PcmdhbmlzYXRpb25JRBgBIAEoCVIOT3JnYW5pc2'
'F0aW9uSUQSHAoJUHJvamVjdElEGAIgASgJUglQcm9qZWN0SUQSPQoNSW5Db25zdHJhaW50cxgD'
'IAEoCzIXLmFwaS5Qcm9qZWN0Q29uc3RyYWludHNSDUluQ29uc3RyYWludHMSPwoOT3V0Q29uc3'
'RyYWludHMYBCABKAsyFy5hcGkuUHJvamVjdENvbnN0cmFpbnRzUg5PdXRDb25zdHJhaW50cw==');
'F0aW9uSUQSHAoJUHJvamVjdElEGAIgASgJUglQcm9qZWN0SUQSSwoUVW5sb2FkaW5nQ29uc3Ry'
'YWludHMYAyABKAsyFy5hcGkuUHJvamVjdENvbnN0cmFpbnRzUhRVbmxvYWRpbmdDb25zdHJhaW'
'50cxJHChJMb2FkaW5nQ29uc3RyYWludHMYBCABKAsyFy5hcGkuUHJvamVjdENvbnN0cmFpbnRz'
'UhJMb2FkaW5nQ29uc3RyYWludHM=');
@$core.Deprecated('Use projectConstraintsDescriptor instead')
const ProjectConstraints$json = {
@@ -444,7 +445,7 @@ const SegmentationConstraint$json = {
'1': 'SegmentationConstraint',
'2': [
{'1': 'SegmentationID', '3': 1, '4': 1, '5': 9, '10': 'SegmentationID'},
{'1': 'RestrictedValueIDs', '3': 2, '4': 3, '5': 3, '10': 'RestrictedValueIDs'},
{'1': 'RestrictedValueIDs', '3': 2, '4': 3, '5': 9, '10': 'RestrictedValueIDs'},
{'1': 'AllValues', '3': 3, '4': 1, '5': 8, '10': 'AllValues'},
],
};
@@ -452,23 +453,24 @@ const SegmentationConstraint$json = {
/// Descriptor for `SegmentationConstraint`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List segmentationConstraintDescriptor = $convert.base64Decode(
'ChZTZWdtZW50YXRpb25Db25zdHJhaW50EiYKDlNlZ21lbnRhdGlvbklEGAEgASgJUg5TZWdtZW'
'50YXRpb25JRBIuChJSZXN0cmljdGVkVmFsdWVJRHMYAiADKANSElJlc3RyaWN0ZWRWYWx1ZUlE'
'50YXRpb25JRBIuChJSZXN0cmljdGVkVmFsdWVJRHMYAiADKAlSElJlc3RyaWN0ZWRWYWx1ZUlE'
'cxIcCglBbGxWYWx1ZXMYAyABKAhSCUFsbFZhbHVlcw==');
@$core.Deprecated('Use actorAuthorisationDescriptor instead')
const ActorAuthorisation$json = {
'1': 'ActorAuthorisation',
'2': [
{'1': 'InConstraints', '3': 3, '4': 1, '5': 11, '6': '.api.ActorConstraints', '10': 'InConstraints'},
{'1': 'OutConstraints', '3': 4, '4': 1, '5': 11, '6': '.api.ActorConstraints', '10': 'OutConstraints'},
{'1': 'UnloadingConstraints', '3': 3, '4': 1, '5': 11, '6': '.api.ActorConstraints', '10': 'UnloadingConstraints'},
{'1': 'LoadingConstraints', '3': 4, '4': 1, '5': 11, '6': '.api.ActorConstraints', '10': 'LoadingConstraints'},
],
};
/// Descriptor for `ActorAuthorisation`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List actorAuthorisationDescriptor = $convert.base64Decode(
'ChJBY3RvckF1dGhvcmlzYXRpb24SOwoNSW5Db25zdHJhaW50cxgDIAEoCzIVLmFwaS5BY3Rvck'
'NvbnN0cmFpbnRzUg1JbkNvbnN0cmFpbnRzEj0KDk91dENvbnN0cmFpbnRzGAQgASgLMhUuYXBp'
'LkFjdG9yQ29uc3RyYWludHNSDk91dENvbnN0cmFpbnRz');
'ChJBY3RvckF1dGhvcmlzYXRpb24SSQoUVW5sb2FkaW5nQ29uc3RyYWludHMYAyABKAsyFS5hcG'
'kuQWN0b3JDb25zdHJhaW50c1IUVW5sb2FkaW5nQ29uc3RyYWludHMSRQoSTG9hZGluZ0NvbnN0'
'cmFpbnRzGAQgASgLMhUuYXBpLkFjdG9yQ29uc3RyYWludHNSEkxvYWRpbmdDb25zdHJhaW50cw'
'==');
@$core.Deprecated('Use actorConstraintsDescriptor instead')
const ActorConstraints$json = {
@@ -491,7 +493,7 @@ const SegmentationActorConstraint$json = {
'1': 'SegmentationActorConstraint',
'2': [
{'1': 'SegmentationID', '3': 1, '4': 1, '5': 9, '10': 'SegmentationID'},
{'1': 'RestrictedValueIDs', '3': 2, '4': 3, '5': 3, '10': 'RestrictedValueIDs'},
{'1': 'RestrictedValueIDs', '3': 2, '4': 3, '5': 9, '10': 'RestrictedValueIDs'},
{'1': 'AllValues', '3': 3, '4': 1, '5': 8, '10': 'AllValues'},
{'1': 'Type', '3': 4, '4': 1, '5': 14, '6': '.api.SegmentationConstraintType', '10': 'Type'},
{'1': 'AttributePath', '3': 5, '4': 1, '5': 9, '10': 'AttributePath'},
@@ -501,7 +503,7 @@ const SegmentationActorConstraint$json = {
/// Descriptor for `SegmentationActorConstraint`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List segmentationActorConstraintDescriptor = $convert.base64Decode(
'ChtTZWdtZW50YXRpb25BY3RvckNvbnN0cmFpbnQSJgoOU2VnbWVudGF0aW9uSUQYASABKAlSDl'
'NlZ21lbnRhdGlvbklEEi4KElJlc3RyaWN0ZWRWYWx1ZUlEcxgCIAMoA1ISUmVzdHJpY3RlZFZh'
'NlZ21lbnRhdGlvbklEEi4KElJlc3RyaWN0ZWRWYWx1ZUlEcxgCIAMoCVISUmVzdHJpY3RlZFZh'
'bHVlSURzEhwKCUFsbFZhbHVlcxgDIAEoCFIJQWxsVmFsdWVzEjMKBFR5cGUYBCABKA4yHy5hcG'
'kuU2VnbWVudGF0aW9uQ29uc3RyYWludFR5cGVSBFR5cGUSJAoNQXR0cmlidXRlUGF0aBgFIAEo'
'CVINQXR0cmlidXRlUGF0aA==');

View File

@@ -1,6 +1,6 @@
name: dart_core_sdk
description: dart libs from core model proto files
version: 1.11.0-SNAPSHOT-250516084918
version: 1.11.0-SNAPSHOT-250519095809
homepage: ''
publish_to: ''
repository: ''