Latest generation

This commit is contained in:
ci core model
2025-08-21 07:55:07 +00:00
parent abefd5111c
commit a91ad3e23f
6 changed files with 33 additions and 5 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG
Lib version: 1.11.0-SNAPSHOT-250820091843
Lib version: 1.11.0-SNAPSHOT-250821075417

View File

@@ -119,6 +119,7 @@ class ClaimPayload extends $pb.GeneratedMessage {
$core.Iterable<$0.MetadataElement>? metaData,
$core.String? title,
$core.String? displayID,
$core.String? message,
}) {
final result = create();
if (claimTypeID != null) result.claimTypeID = claimTypeID;
@@ -141,6 +142,7 @@ class ClaimPayload extends $pb.GeneratedMessage {
if (metaData != null) result.metaData.addAll(metaData);
if (title != null) result.title = title;
if (displayID != null) result.displayID = displayID;
if (message != null) result.message = message;
return result;
}
@@ -170,6 +172,7 @@ class ClaimPayload extends $pb.GeneratedMessage {
..pc<$0.MetadataElement>(19, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $0.MetadataElement.create)
..aOS(20, _omitFieldNames ? '' : 'Title', protoName: 'Title')
..aOS(21, _omitFieldNames ? '' : 'DisplayID', protoName: 'DisplayID')
..aOS(22, _omitFieldNames ? '' : 'Message', protoName: 'Message')
..hasRequiredFields = false
;
@@ -358,6 +361,15 @@ class ClaimPayload extends $pb.GeneratedMessage {
$core.bool hasDisplayID() => $_has(19);
@$pb.TagNumber(21)
void clearDisplayID() => $_clearField(21);
@$pb.TagNumber(22)
$core.String get message => $_getSZ(20);
@$pb.TagNumber(22)
set message($core.String value) => $_setString(20, value);
@$pb.TagNumber(22)
$core.bool hasMessage() => $_has(20);
@$pb.TagNumber(22)
void clearMessage() => $_clearField(22);
}
class ClaimTriplet extends $pb.GeneratedMessage {

View File

@@ -56,6 +56,7 @@ const ClaimPayload$json = {
{'1': 'MetaData', '3': 19, '4': 3, '5': 11, '6': '.api.MetadataElement', '8': {}, '10': 'MetaData'},
{'1': 'Title', '3': 20, '4': 1, '5': 9, '8': {}, '10': 'Title'},
{'1': 'DisplayID', '3': 21, '4': 1, '5': 9, '8': {}, '10': 'DisplayID'},
{'1': 'Message', '3': 22, '4': 1, '5': 9, '8': {}, '10': 'Message'},
],
'7': {},
};
@@ -99,8 +100,9 @@ final $typed_data.Uint8List claimPayloadDescriptor = $convert.base64Decode(
'aGUgY2xhaW1SBVRpdGxlErYBCglEaXNwbGF5SUQYFSABKAlClwGSQUAyPklkZW50aWZpZXIgdG'
'8gZGlzcGxheSwgYmVjYXVzZSBpdCBtYXkgZGlmZmVyIGZyb20gdGhlIEVudGl0eUlE+kIEcgIQ'
'AcrCGBwKGgoBKhIVZ2VuZXJhdGVkVGV4dCxrZXl3b3Jk0sIYEgoQCgVDbGFpbRIFY2xhaW0YAd'
'rCGBMKEQoBKhIMc2hvcnRLZXl3b3JkUglEaXNwbGF5SUQ6NZJBMgow0gELQ2xhaW1UeXBlSUTS'
'AQhFbnRpdHlJRNIBC0NyaXRpY2FsaXR50gEGU3RhdHVz');
'rCGBMKEQoBKhIMc2hvcnRLZXl3b3JkUglEaXNwbGF5SUQSKQoHTWVzc2FnZRgWIAEoCUIP8sEY'
'C01lc3NhZ2VTZW50UgdNZXNzYWdlOjWSQTIKMNIBC0NsYWltVHlwZUlE0gEIRW50aXR5SUTSAQ'
'tDcml0aWNhbGl0edIBBlN0YXR1cw==');
@$core.Deprecated('Use claimTripletDescriptor instead')
const ClaimTriplet$json = {

View File

@@ -37,6 +37,7 @@ class ClaimNotifyPayload extends $pb.GeneratedMessage {
$core.String? title,
$core.Iterable<$1.MetadataElement>? metaData,
$core.String? displayID,
$core.String? message,
}) {
final result = create();
if (assignees != null) result.assignees.addAll(assignees);
@@ -53,6 +54,7 @@ class ClaimNotifyPayload extends $pb.GeneratedMessage {
if (title != null) result.title = title;
if (metaData != null) result.metaData.addAll(metaData);
if (displayID != null) result.displayID = displayID;
if (message != null) result.message = message;
return result;
}
@@ -76,6 +78,7 @@ class ClaimNotifyPayload extends $pb.GeneratedMessage {
..aOS(12, _omitFieldNames ? '' : 'Title', protoName: 'Title')
..pc<$1.MetadataElement>(13, _omitFieldNames ? '' : 'MetaData', $pb.PbFieldType.PM, protoName: 'MetaData', subBuilder: $1.MetadataElement.create)
..aOS(14, _omitFieldNames ? '' : 'DisplayID', protoName: 'DisplayID')
..aOS(15, _omitFieldNames ? '' : 'Message', protoName: 'Message')
..hasRequiredFields = false
;
@@ -203,6 +206,15 @@ class ClaimNotifyPayload extends $pb.GeneratedMessage {
$core.bool hasDisplayID() => $_has(13);
@$pb.TagNumber(14)
void clearDisplayID() => $_clearField(14);
@$pb.TagNumber(15)
$core.String get message => $_getSZ(14);
@$pb.TagNumber(15)
set message($core.String value) => $_setString(14, value);
@$pb.TagNumber(15)
$core.bool hasMessage() => $_has(14);
@$pb.TagNumber(15)
void clearMessage() => $_clearField(15);
}
class ClaimNotify extends $pb.GeneratedMessage {

View File

@@ -32,6 +32,7 @@ const ClaimNotifyPayload$json = {
{'1': 'Title', '3': 12, '4': 1, '5': 9, '10': 'Title'},
{'1': 'MetaData', '3': 13, '4': 3, '5': 11, '6': '.api.MetadataElement', '10': 'MetaData'},
{'1': 'DisplayID', '3': 14, '4': 1, '5': 9, '10': 'DisplayID'},
{'1': 'Message', '3': 15, '4': 1, '5': 9, '10': 'Message'},
],
'7': {},
};
@@ -48,7 +49,8 @@ final $typed_data.Uint8List claimNotifyPayloadDescriptor = $convert.base64Decode
'lwZRgKIAEoDjIULmFwaS5DbGFpbUVudGl0eVR5cGVSCkVudGl0eVR5cGUSGgoIRW50aXR5SUQY'
'CyABKAlSCEVudGl0eUlEEhQKBVRpdGxlGAwgASgJUgVUaXRsZRIwCghNZXRhRGF0YRgNIAMoCz'
'IULmFwaS5NZXRhZGF0YUVsZW1lbnRSCE1ldGFEYXRhEhwKCURpc3BsYXlJRBgOIAEoCVIJRGlz'
'cGxheUlEOhmiuxgHQ29tbWFuZKi7GAGyuxgGTm90aWZ5');
'cGxheUlEEhgKB01lc3NhZ2UYDyABKAlSB01lc3NhZ2U6GaK7GAdDb21tYW5kqLsYAbK7GAZOb3'
'RpZnk=');
@$core.Deprecated('Use claimNotifyDescriptor instead')
const ClaimNotify$json = {

View File

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