Latest generation

This commit is contained in:
ci core model
2026-06-25 15:34:34 +00:00
parent 349cdc30de
commit 8bb166a51f
4 changed files with 11 additions and 3 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG # CHANGELOG
Lib version: 1.14.0-SNAPSHOT-260622141413 Lib version: 1.14.0-SNAPSHOT-260625153355

View File

@@ -2199,10 +2199,12 @@ class SegmentationsByType extends $pb.GeneratedMessage {
factory SegmentationsByType({ factory SegmentationsByType({
$3.AppointmentType? appointmentType, $3.AppointmentType? appointmentType,
$core.Iterable<$2.SegmentationFilter>? segmentations, $core.Iterable<$2.SegmentationFilter>? segmentations,
$core.Iterable<$4.PrjMetadata>? segmentationKeys,
}) { }) {
final result = create(); final result = create();
if (appointmentType != null) result.appointmentType = appointmentType; if (appointmentType != null) result.appointmentType = appointmentType;
if (segmentations != null) result.segmentations.addAll(segmentations); if (segmentations != null) result.segmentations.addAll(segmentations);
if (segmentationKeys != null) result.segmentationKeys.addAll(segmentationKeys);
return result; return result;
} }
@@ -2214,6 +2216,7 @@ class SegmentationsByType extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SegmentationsByType', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'SegmentationsByType', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..e<$3.AppointmentType>(1, _omitFieldNames ? '' : 'AppointmentType', $pb.PbFieldType.OE, protoName: 'AppointmentType', defaultOrMaker: $3.AppointmentType.APPOINTMENT_TYPE_UNKNOWN, valueOf: $3.AppointmentType.valueOf, enumValues: $3.AppointmentType.values) ..e<$3.AppointmentType>(1, _omitFieldNames ? '' : 'AppointmentType', $pb.PbFieldType.OE, protoName: 'AppointmentType', defaultOrMaker: $3.AppointmentType.APPOINTMENT_TYPE_UNKNOWN, valueOf: $3.AppointmentType.valueOf, enumValues: $3.AppointmentType.values)
..pc<$2.SegmentationFilter>(2, _omitFieldNames ? '' : 'Segmentations', $pb.PbFieldType.PM, protoName: 'Segmentations', subBuilder: $2.SegmentationFilter.create) ..pc<$2.SegmentationFilter>(2, _omitFieldNames ? '' : 'Segmentations', $pb.PbFieldType.PM, protoName: 'Segmentations', subBuilder: $2.SegmentationFilter.create)
..pc<$4.PrjMetadata>(3, _omitFieldNames ? '' : 'SegmentationKeys', $pb.PbFieldType.PM, protoName: 'SegmentationKeys', subBuilder: $4.PrjMetadata.create)
..hasRequiredFields = false ..hasRequiredFields = false
; ;
@@ -2245,6 +2248,9 @@ class SegmentationsByType extends $pb.GeneratedMessage {
@$pb.TagNumber(2) @$pb.TagNumber(2)
$pb.PbList<$2.SegmentationFilter> get segmentations => $_getList(1); $pb.PbList<$2.SegmentationFilter> get segmentations => $_getList(1);
@$pb.TagNumber(3)
$pb.PbList<$4.PrjMetadata> get segmentationKeys => $_getList(2);
} }
class DeleteSettingsRequest extends $pb.GeneratedMessage { class DeleteSettingsRequest extends $pb.GeneratedMessage {

View File

@@ -596,6 +596,7 @@ const SegmentationsByType$json = {
'2': [ '2': [
{'1': 'AppointmentType', '3': 1, '4': 1, '5': 14, '6': '.api.AppointmentType', '10': 'AppointmentType'}, {'1': 'AppointmentType', '3': 1, '4': 1, '5': 14, '6': '.api.AppointmentType', '10': 'AppointmentType'},
{'1': 'Segmentations', '3': 2, '4': 3, '5': 11, '6': '.api.SegmentationFilter', '10': 'Segmentations'}, {'1': 'Segmentations', '3': 2, '4': 3, '5': 11, '6': '.api.SegmentationFilter', '10': 'Segmentations'},
{'1': 'SegmentationKeys', '3': 3, '4': 3, '5': 11, '6': '.api.PrjMetadata', '10': 'SegmentationKeys'},
], ],
}; };
@@ -603,7 +604,8 @@ const SegmentationsByType$json = {
final $typed_data.Uint8List segmentationsByTypeDescriptor = $convert.base64Decode( final $typed_data.Uint8List segmentationsByTypeDescriptor = $convert.base64Decode(
'ChNTZWdtZW50YXRpb25zQnlUeXBlEj4KD0FwcG9pbnRtZW50VHlwZRgBIAEoDjIULmFwaS5BcH' 'ChNTZWdtZW50YXRpb25zQnlUeXBlEj4KD0FwcG9pbnRtZW50VHlwZRgBIAEoDjIULmFwaS5BcH'
'BvaW50bWVudFR5cGVSD0FwcG9pbnRtZW50VHlwZRI9Cg1TZWdtZW50YXRpb25zGAIgAygLMhcu' 'BvaW50bWVudFR5cGVSD0FwcG9pbnRtZW50VHlwZRI9Cg1TZWdtZW50YXRpb25zGAIgAygLMhcu'
'YXBpLlNlZ21lbnRhdGlvbkZpbHRlclINU2VnbWVudGF0aW9ucw=='); 'YXBpLlNlZ21lbnRhdGlvbkZpbHRlclINU2VnbWVudGF0aW9ucxI8ChBTZWdtZW50YXRpb25LZX'
'lzGAMgAygLMhAuYXBpLlByak1ldGFkYXRhUhBTZWdtZW50YXRpb25LZXlz');
@$core.Deprecated('Use deleteSettingsRequestDescriptor instead') @$core.Deprecated('Use deleteSettingsRequestDescriptor instead')
const DeleteSettingsRequest$json = { const DeleteSettingsRequest$json = {

View File

@@ -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.14.0-SNAPSHOT-260622141413 version: 1.14.0-SNAPSHOT-260625153355
homepage: '' homepage: ''
publish_to: '' publish_to: ''
repository: '' repository: ''