Latest generation

This commit is contained in:
ci core model
2026-06-08 07:48:43 +00:00
parent c6aeb82284
commit 3a136e01db
6 changed files with 234 additions and 7 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG
Lib version: 1.14.0-SNAPSHOT-260605124714
Lib version: 1.14.0-SNAPSHOT-260608074758

View File

@@ -36,6 +36,8 @@ class CreateClaimTypeRequest extends $pb.GeneratedMessage {
$1.ClaimStatus? defaultStatus,
$1.ClaimSector? sector,
$core.Iterable<$core.String>? defaultAssignees,
$1.ClaimTypeExtraAllowedUsers? allowedAppointmentReaders,
$1.ClaimTypeExtraAllowedUsers? allowedAppointmentAttendees,
}) {
final result = create();
if (header != null) result.header = header;
@@ -53,6 +55,8 @@ class CreateClaimTypeRequest extends $pb.GeneratedMessage {
if (defaultStatus != null) result.defaultStatus = defaultStatus;
if (sector != null) result.sector = sector;
if (defaultAssignees != null) result.defaultAssignees.addAll(defaultAssignees);
if (allowedAppointmentReaders != null) result.allowedAppointmentReaders = allowedAppointmentReaders;
if (allowedAppointmentAttendees != null) result.allowedAppointmentAttendees = allowedAppointmentAttendees;
return result;
}
@@ -77,6 +81,8 @@ class CreateClaimTypeRequest extends $pb.GeneratedMessage {
..e<$1.ClaimStatus>(13, _omitFieldNames ? '' : 'DefaultStatus', $pb.PbFieldType.OE, protoName: 'DefaultStatus', defaultOrMaker: $1.ClaimStatus.CLAIM_STATUS_UNKNOWN, valueOf: $1.ClaimStatus.valueOf, enumValues: $1.ClaimStatus.values)
..e<$1.ClaimSector>(14, _omitFieldNames ? '' : 'Sector', $pb.PbFieldType.OE, protoName: 'Sector', defaultOrMaker: $1.ClaimSector.CLAIM_SECTOR_UNKNOWN, valueOf: $1.ClaimSector.valueOf, enumValues: $1.ClaimSector.values)
..pPS(15, _omitFieldNames ? '' : 'DefaultAssignees', protoName: 'DefaultAssignees')
..aOM<$1.ClaimTypeExtraAllowedUsers>(16, _omitFieldNames ? '' : 'AllowedAppointmentReaders', protoName: 'AllowedAppointmentReaders', subBuilder: $1.ClaimTypeExtraAllowedUsers.create)
..aOM<$1.ClaimTypeExtraAllowedUsers>(17, _omitFieldNames ? '' : 'AllowedAppointmentAttendees', protoName: 'AllowedAppointmentAttendees', subBuilder: $1.ClaimTypeExtraAllowedUsers.create)
..hasRequiredFields = false
;
@@ -185,6 +191,28 @@ class CreateClaimTypeRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(15)
$pb.PbList<$core.String> get defaultAssignees => $_getList(14);
@$pb.TagNumber(16)
$1.ClaimTypeExtraAllowedUsers get allowedAppointmentReaders => $_getN(15);
@$pb.TagNumber(16)
set allowedAppointmentReaders($1.ClaimTypeExtraAllowedUsers value) => $_setField(16, value);
@$pb.TagNumber(16)
$core.bool hasAllowedAppointmentReaders() => $_has(15);
@$pb.TagNumber(16)
void clearAllowedAppointmentReaders() => $_clearField(16);
@$pb.TagNumber(16)
$1.ClaimTypeExtraAllowedUsers ensureAllowedAppointmentReaders() => $_ensure(15);
@$pb.TagNumber(17)
$1.ClaimTypeExtraAllowedUsers get allowedAppointmentAttendees => $_getN(16);
@$pb.TagNumber(17)
set allowedAppointmentAttendees($1.ClaimTypeExtraAllowedUsers value) => $_setField(17, value);
@$pb.TagNumber(17)
$core.bool hasAllowedAppointmentAttendees() => $_has(16);
@$pb.TagNumber(17)
void clearAllowedAppointmentAttendees() => $_clearField(17);
@$pb.TagNumber(17)
$1.ClaimTypeExtraAllowedUsers ensureAllowedAppointmentAttendees() => $_ensure(16);
}
class CreateClaimTypeResponse extends $pb.GeneratedMessage {
@@ -449,6 +477,8 @@ class UpdateClaimTypeRequest extends $pb.GeneratedMessage {
$1.ClaimStatus? defaultStatus,
$1.ClaimSector? sector,
$core.Iterable<$core.String>? defaultAssignees,
$1.ClaimTypeExtraAllowedUsers? allowedAppointmentReaders,
$1.ClaimTypeExtraAllowedUsers? allowedAppointmentAttendees,
}) {
final result = create();
if (header != null) result.header = header;
@@ -464,6 +494,8 @@ class UpdateClaimTypeRequest extends $pb.GeneratedMessage {
if (defaultStatus != null) result.defaultStatus = defaultStatus;
if (sector != null) result.sector = sector;
if (defaultAssignees != null) result.defaultAssignees.addAll(defaultAssignees);
if (allowedAppointmentReaders != null) result.allowedAppointmentReaders = allowedAppointmentReaders;
if (allowedAppointmentAttendees != null) result.allowedAppointmentAttendees = allowedAppointmentAttendees;
return result;
}
@@ -486,6 +518,8 @@ class UpdateClaimTypeRequest extends $pb.GeneratedMessage {
..e<$1.ClaimStatus>(11, _omitFieldNames ? '' : 'DefaultStatus', $pb.PbFieldType.OE, protoName: 'DefaultStatus', defaultOrMaker: $1.ClaimStatus.CLAIM_STATUS_UNKNOWN, valueOf: $1.ClaimStatus.valueOf, enumValues: $1.ClaimStatus.values)
..e<$1.ClaimSector>(12, _omitFieldNames ? '' : 'Sector', $pb.PbFieldType.OE, protoName: 'Sector', defaultOrMaker: $1.ClaimSector.CLAIM_SECTOR_UNKNOWN, valueOf: $1.ClaimSector.valueOf, enumValues: $1.ClaimSector.values)
..pPS(13, _omitFieldNames ? '' : 'DefaultAssignees', protoName: 'DefaultAssignees')
..aOM<$1.ClaimTypeExtraAllowedUsers>(14, _omitFieldNames ? '' : 'AllowedAppointmentReaders', protoName: 'AllowedAppointmentReaders', subBuilder: $1.ClaimTypeExtraAllowedUsers.create)
..aOM<$1.ClaimTypeExtraAllowedUsers>(15, _omitFieldNames ? '' : 'AllowedAppointmentAttendees', protoName: 'AllowedAppointmentAttendees', subBuilder: $1.ClaimTypeExtraAllowedUsers.create)
..hasRequiredFields = false
;
@@ -576,6 +610,28 @@ class UpdateClaimTypeRequest extends $pb.GeneratedMessage {
@$pb.TagNumber(13)
$pb.PbList<$core.String> get defaultAssignees => $_getList(12);
@$pb.TagNumber(14)
$1.ClaimTypeExtraAllowedUsers get allowedAppointmentReaders => $_getN(13);
@$pb.TagNumber(14)
set allowedAppointmentReaders($1.ClaimTypeExtraAllowedUsers value) => $_setField(14, value);
@$pb.TagNumber(14)
$core.bool hasAllowedAppointmentReaders() => $_has(13);
@$pb.TagNumber(14)
void clearAllowedAppointmentReaders() => $_clearField(14);
@$pb.TagNumber(14)
$1.ClaimTypeExtraAllowedUsers ensureAllowedAppointmentReaders() => $_ensure(13);
@$pb.TagNumber(15)
$1.ClaimTypeExtraAllowedUsers get allowedAppointmentAttendees => $_getN(14);
@$pb.TagNumber(15)
set allowedAppointmentAttendees($1.ClaimTypeExtraAllowedUsers value) => $_setField(15, value);
@$pb.TagNumber(15)
$core.bool hasAllowedAppointmentAttendees() => $_has(14);
@$pb.TagNumber(15)
void clearAllowedAppointmentAttendees() => $_clearField(15);
@$pb.TagNumber(15)
$1.ClaimTypeExtraAllowedUsers ensureAllowedAppointmentAttendees() => $_ensure(14);
}
class UpdateClaimTypeResponse extends $pb.GeneratedMessage {

View File

@@ -33,6 +33,8 @@ const CreateClaimTypeRequest$json = {
{'1': 'DefaultStatus', '3': 13, '4': 1, '5': 14, '6': '.api.ClaimStatus', '8': {}, '10': 'DefaultStatus'},
{'1': 'Sector', '3': 14, '4': 1, '5': 14, '6': '.api.ClaimSector', '8': {}, '10': 'Sector'},
{'1': 'DefaultAssignees', '3': 15, '4': 3, '5': 9, '10': 'DefaultAssignees'},
{'1': 'AllowedAppointmentReaders', '3': 16, '4': 1, '5': 11, '6': '.api.ClaimTypeExtraAllowedUsers', '10': 'AllowedAppointmentReaders'},
{'1': 'AllowedAppointmentAttendees', '3': 17, '4': 1, '5': 11, '6': '.api.ClaimTypeExtraAllowedUsers', '10': 'AllowedAppointmentAttendees'},
],
'7': {},
};
@@ -55,8 +57,11 @@ final $typed_data.Uint8List createClaimTypeRequestDescriptor = $convert.base64De
'F0dXNlcxJBCg1EZWZhdWx0U3RhdHVzGA0gASgOMhAuYXBpLkNsYWltU3RhdHVzQgm6gQEFggEC'
'EAFSDURlZmF1bHRTdGF0dXMSMwoGU2VjdG9yGA4gASgOMhAuYXBpLkNsYWltU2VjdG9yQgm6gQ'
'EFggECEAFSBlNlY3RvchIqChBEZWZhdWx0QXNzaWduZWVzGA8gAygJUhBEZWZhdWx0QXNzaWdu'
'ZWVzOjmSQTYKNNIBBkhlYWRlctIBBlJlYXNvbtIBCkVudGl0eVR5cGXSARJEZWZhdWx0Q3JpdG'
'ljYWxpdHk=');
'ZWVzEl0KGUFsbG93ZWRBcHBvaW50bWVudFJlYWRlcnMYECABKAsyHy5hcGkuQ2xhaW1UeXBlRX'
'h0cmFBbGxvd2VkVXNlcnNSGUFsbG93ZWRBcHBvaW50bWVudFJlYWRlcnMSYQobQWxsb3dlZEFw'
'cG9pbnRtZW50QXR0ZW5kZWVzGBEgASgLMh8uYXBpLkNsYWltVHlwZUV4dHJhQWxsb3dlZFVzZX'
'JzUhtBbGxvd2VkQXBwb2ludG1lbnRBdHRlbmRlZXM6OZJBNgo00gEGSGVhZGVy0gEGUmVhc29u'
'0gEKRW50aXR5VHlwZdIBEkRlZmF1bHRDcml0aWNhbGl0eQ==');
@$core.Deprecated('Use createClaimTypeResponseDescriptor instead')
const CreateClaimTypeResponse$json = {
@@ -144,6 +149,8 @@ const UpdateClaimTypeRequest$json = {
{'1': 'DefaultStatus', '3': 11, '4': 1, '5': 14, '6': '.api.ClaimStatus', '8': {}, '10': 'DefaultStatus'},
{'1': 'Sector', '3': 12, '4': 1, '5': 14, '6': '.api.ClaimSector', '8': {}, '10': 'Sector'},
{'1': 'DefaultAssignees', '3': 13, '4': 3, '5': 9, '10': 'DefaultAssignees'},
{'1': 'AllowedAppointmentReaders', '3': 14, '4': 1, '5': 11, '6': '.api.ClaimTypeExtraAllowedUsers', '10': 'AllowedAppointmentReaders'},
{'1': 'AllowedAppointmentAttendees', '3': 15, '4': 1, '5': 11, '6': '.api.ClaimTypeExtraAllowedUsers', '10': 'AllowedAppointmentAttendees'},
],
'7': {},
};
@@ -163,7 +170,11 @@ final $typed_data.Uint8List updateClaimTypeRequestDescriptor = $convert.base64De
'c1IPQWxsb3dlZFN0YXR1c2VzEkEKDURlZmF1bHRTdGF0dXMYCyABKA4yEC5hcGkuQ2xhaW1TdG'
'F0dXNCCbqBAQWCAQIQAVINRGVmYXVsdFN0YXR1cxIzCgZTZWN0b3IYDCABKA4yEC5hcGkuQ2xh'
'aW1TZWN0b3JCCbqBAQWCAQIQAVIGU2VjdG9yEioKEERlZmF1bHRBc3NpZ25lZXMYDSADKAlSEE'
'RlZmF1bHRBc3NpZ25lZXM6HJJBGQoX0gEGSGVhZGVy0gECSUTSAQZSZWFzb24=');
'RlZmF1bHRBc3NpZ25lZXMSXQoZQWxsb3dlZEFwcG9pbnRtZW50UmVhZGVycxgOIAEoCzIfLmFw'
'aS5DbGFpbVR5cGVFeHRyYUFsbG93ZWRVc2Vyc1IZQWxsb3dlZEFwcG9pbnRtZW50UmVhZGVycx'
'JhChtBbGxvd2VkQXBwb2ludG1lbnRBdHRlbmRlZXMYDyABKAsyHy5hcGkuQ2xhaW1UeXBlRXh0'
'cmFBbGxvd2VkVXNlcnNSG0FsbG93ZWRBcHBvaW50bWVudEF0dGVuZGVlczockkEZChfSAQZIZW'
'FkZXLSAQJJRNIBBlJlYXNvbg==');
@$core.Deprecated('Use updateClaimTypeResponseDescriptor instead')
const UpdateClaimTypeResponse$json = {

View File

@@ -4376,6 +4376,8 @@ class ClaimType extends $pb.GeneratedMessage {
ClaimSector? sector,
$core.Iterable<$core.String>? defaultAssignees,
$core.String? resourceID,
ClaimTypeExtraAllowedUsers? allowedAppointmentReaders,
ClaimTypeExtraAllowedUsers? allowedAppointmentAttendees,
}) {
final result = create();
if (iD != null) result.iD = iD;
@@ -4395,6 +4397,8 @@ class ClaimType extends $pb.GeneratedMessage {
if (sector != null) result.sector = sector;
if (defaultAssignees != null) result.defaultAssignees.addAll(defaultAssignees);
if (resourceID != null) result.resourceID = resourceID;
if (allowedAppointmentReaders != null) result.allowedAppointmentReaders = allowedAppointmentReaders;
if (allowedAppointmentAttendees != null) result.allowedAppointmentAttendees = allowedAppointmentAttendees;
return result;
}
@@ -4421,6 +4425,8 @@ class ClaimType extends $pb.GeneratedMessage {
..e<ClaimSector>(15, _omitFieldNames ? '' : 'Sector', $pb.PbFieldType.OE, protoName: 'Sector', defaultOrMaker: ClaimSector.CLAIM_SECTOR_UNKNOWN, valueOf: ClaimSector.valueOf, enumValues: ClaimSector.values)
..pPS(16, _omitFieldNames ? '' : 'DefaultAssignees', protoName: 'DefaultAssignees')
..aOS(17, _omitFieldNames ? '' : 'ResourceID', protoName: 'ResourceID')
..aOM<ClaimTypeExtraAllowedUsers>(18, _omitFieldNames ? '' : 'AllowedAppointmentReaders', protoName: 'AllowedAppointmentReaders', subBuilder: ClaimTypeExtraAllowedUsers.create)
..aOM<ClaimTypeExtraAllowedUsers>(19, _omitFieldNames ? '' : 'AllowedAppointmentAttendees', protoName: 'AllowedAppointmentAttendees', subBuilder: ClaimTypeExtraAllowedUsers.create)
..hasRequiredFields = false
;
@@ -4549,6 +4555,28 @@ class ClaimType extends $pb.GeneratedMessage {
$core.bool hasResourceID() => $_has(16);
@$pb.TagNumber(17)
void clearResourceID() => $_clearField(17);
@$pb.TagNumber(18)
ClaimTypeExtraAllowedUsers get allowedAppointmentReaders => $_getN(17);
@$pb.TagNumber(18)
set allowedAppointmentReaders(ClaimTypeExtraAllowedUsers value) => $_setField(18, value);
@$pb.TagNumber(18)
$core.bool hasAllowedAppointmentReaders() => $_has(17);
@$pb.TagNumber(18)
void clearAllowedAppointmentReaders() => $_clearField(18);
@$pb.TagNumber(18)
ClaimTypeExtraAllowedUsers ensureAllowedAppointmentReaders() => $_ensure(17);
@$pb.TagNumber(19)
ClaimTypeExtraAllowedUsers get allowedAppointmentAttendees => $_getN(18);
@$pb.TagNumber(19)
set allowedAppointmentAttendees(ClaimTypeExtraAllowedUsers value) => $_setField(19, value);
@$pb.TagNumber(19)
$core.bool hasAllowedAppointmentAttendees() => $_has(18);
@$pb.TagNumber(19)
void clearAllowedAppointmentAttendees() => $_clearField(19);
@$pb.TagNumber(19)
ClaimTypeExtraAllowedUsers ensureAllowedAppointmentAttendees() => $_ensure(18);
}
/// Message defining the structure of a ClaimTransition.
@@ -4558,12 +4586,16 @@ class ClaimTransition extends $pb.GeneratedMessage {
ClaimStatus? toStatus,
$core.Iterable<$core.String>? allowedRoles,
$core.bool? shouldNotify,
$core.bool? allowAppointmentReaders,
$core.bool? allowAppointmentAttendees,
}) {
final result = create();
if (fromStatus != null) result.fromStatus = fromStatus;
if (toStatus != null) result.toStatus = toStatus;
if (allowedRoles != null) result.allowedRoles.addAll(allowedRoles);
if (shouldNotify != null) result.shouldNotify = shouldNotify;
if (allowAppointmentReaders != null) result.allowAppointmentReaders = allowAppointmentReaders;
if (allowAppointmentAttendees != null) result.allowAppointmentAttendees = allowAppointmentAttendees;
return result;
}
@@ -4577,6 +4609,8 @@ class ClaimTransition extends $pb.GeneratedMessage {
..e<ClaimStatus>(2, _omitFieldNames ? '' : 'ToStatus', $pb.PbFieldType.OE, protoName: 'ToStatus', defaultOrMaker: ClaimStatus.CLAIM_STATUS_UNKNOWN, valueOf: ClaimStatus.valueOf, enumValues: ClaimStatus.values)
..pPS(3, _omitFieldNames ? '' : 'AllowedRoles', protoName: 'AllowedRoles')
..aOB(4, _omitFieldNames ? '' : 'ShouldNotify', protoName: 'ShouldNotify')
..aOB(5, _omitFieldNames ? '' : 'AllowAppointmentReaders', protoName: 'AllowAppointmentReaders')
..aOB(6, _omitFieldNames ? '' : 'AllowAppointmentAttendees', protoName: 'AllowAppointmentAttendees')
..hasRequiredFields = false
;
@@ -4626,6 +4660,24 @@ class ClaimTransition extends $pb.GeneratedMessage {
$core.bool hasShouldNotify() => $_has(3);
@$pb.TagNumber(4)
void clearShouldNotify() => $_clearField(4);
@$pb.TagNumber(5)
$core.bool get allowAppointmentReaders => $_getBF(4);
@$pb.TagNumber(5)
set allowAppointmentReaders($core.bool value) => $_setBool(4, value);
@$pb.TagNumber(5)
$core.bool hasAllowAppointmentReaders() => $_has(4);
@$pb.TagNumber(5)
void clearAllowAppointmentReaders() => $_clearField(5);
@$pb.TagNumber(6)
$core.bool get allowAppointmentAttendees => $_getBF(5);
@$pb.TagNumber(6)
set allowAppointmentAttendees($core.bool value) => $_setBool(5, value);
@$pb.TagNumber(6)
$core.bool hasAllowAppointmentAttendees() => $_has(5);
@$pb.TagNumber(6)
void clearAllowAppointmentAttendees() => $_clearField(6);
}
/// Message defining the structure of a ClaimTypeClosure for ClaimTypes.
@@ -4813,6 +4865,88 @@ class ClaimSummary extends $pb.GeneratedMessage {
void clearNumber() => $_clearField(3);
}
class ClaimTypeExtraAllowedUsers extends $pb.GeneratedMessage {
factory ClaimTypeExtraAllowedUsers({
$core.bool? read,
$core.bool? write,
$core.bool? assign,
$core.bool? criticality,
}) {
final result = create();
if (read != null) result.read = read;
if (write != null) result.write = write;
if (assign != null) result.assign = assign;
if (criticality != null) result.criticality = criticality;
return result;
}
ClaimTypeExtraAllowedUsers._();
factory ClaimTypeExtraAllowedUsers.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory ClaimTypeExtraAllowedUsers.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ClaimTypeExtraAllowedUsers', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOB(1, _omitFieldNames ? '' : 'Read', protoName: 'Read')
..aOB(2, _omitFieldNames ? '' : 'Write', protoName: 'Write')
..aOB(3, _omitFieldNames ? '' : 'Assign', protoName: 'Assign')
..aOB(4, _omitFieldNames ? '' : 'Criticality', protoName: 'Criticality')
..hasRequiredFields = false
;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ClaimTypeExtraAllowedUsers clone() => ClaimTypeExtraAllowedUsers()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
ClaimTypeExtraAllowedUsers copyWith(void Function(ClaimTypeExtraAllowedUsers) updates) => super.copyWith((message) => updates(message as ClaimTypeExtraAllowedUsers)) as ClaimTypeExtraAllowedUsers;
@$core.override
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ClaimTypeExtraAllowedUsers create() => ClaimTypeExtraAllowedUsers._();
@$core.override
ClaimTypeExtraAllowedUsers createEmptyInstance() => create();
static $pb.PbList<ClaimTypeExtraAllowedUsers> createRepeated() => $pb.PbList<ClaimTypeExtraAllowedUsers>();
@$core.pragma('dart2js:noInline')
static ClaimTypeExtraAllowedUsers getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ClaimTypeExtraAllowedUsers>(create);
static ClaimTypeExtraAllowedUsers? _defaultInstance;
@$pb.TagNumber(1)
$core.bool get read => $_getBF(0);
@$pb.TagNumber(1)
set read($core.bool value) => $_setBool(0, value);
@$pb.TagNumber(1)
$core.bool hasRead() => $_has(0);
@$pb.TagNumber(1)
void clearRead() => $_clearField(1);
@$pb.TagNumber(2)
$core.bool get write => $_getBF(1);
@$pb.TagNumber(2)
set write($core.bool value) => $_setBool(1, value);
@$pb.TagNumber(2)
$core.bool hasWrite() => $_has(1);
@$pb.TagNumber(2)
void clearWrite() => $_clearField(2);
@$pb.TagNumber(3)
$core.bool get assign => $_getBF(2);
@$pb.TagNumber(3)
set assign($core.bool value) => $_setBool(2, value);
@$pb.TagNumber(3)
$core.bool hasAssign() => $_has(2);
@$pb.TagNumber(3)
void clearAssign() => $_clearField(3);
@$pb.TagNumber(4)
$core.bool get criticality => $_getBF(3);
@$pb.TagNumber(4)
set criticality($core.bool value) => $_setBool(3, value);
@$pb.TagNumber(4)
$core.bool hasCriticality() => $_has(3);
@$pb.TagNumber(4)
void clearCriticality() => $_clearField(4);
}
class AttachmentType extends $pb.GeneratedMessage {
factory AttachmentType({
$core.String? iD,

View File

@@ -1616,6 +1616,8 @@ const ClaimType$json = {
{'1': 'Sector', '3': 15, '4': 1, '5': 14, '6': '.api.ClaimSector', '10': 'Sector'},
{'1': 'DefaultAssignees', '3': 16, '4': 3, '5': 9, '10': 'DefaultAssignees'},
{'1': 'ResourceID', '3': 17, '4': 1, '5': 9, '8': {}, '10': 'ResourceID'},
{'1': 'AllowedAppointmentReaders', '3': 18, '4': 1, '5': 11, '6': '.api.ClaimTypeExtraAllowedUsers', '10': 'AllowedAppointmentReaders'},
{'1': 'AllowedAppointmentAttendees', '3': 19, '4': 1, '5': 11, '6': '.api.ClaimTypeExtraAllowedUsers', '10': 'AllowedAppointmentAttendees'},
],
};
@@ -1637,7 +1639,10 @@ final $typed_data.Uint8List claimTypeDescriptor = $convert.base64Decode(
'AuYXBpLkNsYWltU3RhdHVzQgm6gQEFggECEAFSDURlZmF1bHRTdGF0dXMSKAoGU2VjdG9yGA8g'
'ASgOMhAuYXBpLkNsYWltU2VjdG9yUgZTZWN0b3ISKgoQRGVmYXVsdEFzc2lnbmVlcxgQIAMoCV'
'IQRGVmYXVsdEFzc2lnbmVlcxIoCgpSZXNvdXJjZUlEGBEgASgJQgi6gQEEcgIQAVIKUmVzb3Vy'
'Y2VJRA==');
'Y2VJRBJdChlBbGxvd2VkQXBwb2ludG1lbnRSZWFkZXJzGBIgASgLMh8uYXBpLkNsYWltVHlwZU'
'V4dHJhQWxsb3dlZFVzZXJzUhlBbGxvd2VkQXBwb2ludG1lbnRSZWFkZXJzEmEKG0FsbG93ZWRB'
'cHBvaW50bWVudEF0dGVuZGVlcxgTIAEoCzIfLmFwaS5DbGFpbVR5cGVFeHRyYUFsbG93ZWRVc2'
'Vyc1IbQWxsb3dlZEFwcG9pbnRtZW50QXR0ZW5kZWVz');
@$core.Deprecated('Use claimTransitionDescriptor instead')
const ClaimTransition$json = {
@@ -1647,6 +1652,8 @@ const ClaimTransition$json = {
{'1': 'ToStatus', '3': 2, '4': 1, '5': 14, '6': '.api.ClaimStatus', '8': {}, '10': 'ToStatus'},
{'1': 'AllowedRoles', '3': 3, '4': 3, '5': 9, '10': 'AllowedRoles'},
{'1': 'ShouldNotify', '3': 4, '4': 1, '5': 8, '10': 'ShouldNotify'},
{'1': 'AllowAppointmentReaders', '3': 5, '4': 1, '5': 8, '10': 'AllowAppointmentReaders'},
{'1': 'AllowAppointmentAttendees', '3': 6, '4': 1, '5': 8, '10': 'AllowAppointmentAttendees'},
],
};
@@ -1655,7 +1662,9 @@ final $typed_data.Uint8List claimTransitionDescriptor = $convert.base64Decode(
'Cg9DbGFpbVRyYW5zaXRpb24SOwoKRnJvbVN0YXR1cxgBIAEoDjIQLmFwaS5DbGFpbVN0YXR1c0'
'IJuoEBBYIBAhABUgpGcm9tU3RhdHVzEjcKCFRvU3RhdHVzGAIgASgOMhAuYXBpLkNsYWltU3Rh'
'dHVzQgm6gQEFggECEAFSCFRvU3RhdHVzEiIKDEFsbG93ZWRSb2xlcxgDIAMoCVIMQWxsb3dlZF'
'JvbGVzEiIKDFNob3VsZE5vdGlmeRgEIAEoCFIMU2hvdWxkTm90aWZ5');
'JvbGVzEiIKDFNob3VsZE5vdGlmeRgEIAEoCFIMU2hvdWxkTm90aWZ5EjgKF0FsbG93QXBwb2lu'
'dG1lbnRSZWFkZXJzGAUgASgIUhdBbGxvd0FwcG9pbnRtZW50UmVhZGVycxI8ChlBbGxvd0FwcG'
'9pbnRtZW50QXR0ZW5kZWVzGAYgASgIUhlBbGxvd0FwcG9pbnRtZW50QXR0ZW5kZWVz');
@$core.Deprecated('Use claimTypeClosureDescriptor instead')
const ClaimTypeClosure$json = {
@@ -1705,6 +1714,23 @@ final $typed_data.Uint8List claimSummaryDescriptor = $convert.base64Decode(
'UmVhc29uEjwKBk51bWJlchgDIAEoBUIkkkEhMh9OdW1iZXIgb2YgY2xhaW1zIHdpdGggdGhpcy'
'B0eXBlUgZOdW1iZXI=');
@$core.Deprecated('Use claimTypeExtraAllowedUsersDescriptor instead')
const ClaimTypeExtraAllowedUsers$json = {
'1': 'ClaimTypeExtraAllowedUsers',
'2': [
{'1': 'Read', '3': 1, '4': 1, '5': 8, '10': 'Read'},
{'1': 'Write', '3': 2, '4': 1, '5': 8, '10': 'Write'},
{'1': 'Assign', '3': 3, '4': 1, '5': 8, '10': 'Assign'},
{'1': 'Criticality', '3': 4, '4': 1, '5': 8, '10': 'Criticality'},
],
};
/// Descriptor for `ClaimTypeExtraAllowedUsers`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List claimTypeExtraAllowedUsersDescriptor = $convert.base64Decode(
'ChpDbGFpbVR5cGVFeHRyYUFsbG93ZWRVc2VycxISCgRSZWFkGAEgASgIUgRSZWFkEhQKBVdyaX'
'RlGAIgASgIUgVXcml0ZRIWCgZBc3NpZ24YAyABKAhSBkFzc2lnbhIgCgtDcml0aWNhbGl0eRgE'
'IAEoCFILQ3JpdGljYWxpdHk=');
@$core.Deprecated('Use attachmentTypeDescriptor instead')
const AttachmentType$json = {
'1': 'AttachmentType',

View File

@@ -1,6 +1,6 @@
name: dart_core_sdk
description: dart libs from core model proto files
version: 1.14.0-SNAPSHOT-260605124714
version: 1.14.0-SNAPSHOT-260608074758
homepage: ''
publish_to: ''
repository: ''