Latest generation

This commit is contained in:
ci core model
2026-06-05 10:00:41 +00:00
parent af5a873395
commit f979df5f46
4 changed files with 43 additions and 30 deletions

View File

@@ -1,3 +1,3 @@
# CHANGELOG # CHANGELOG
Lib version: 1.14.0-SNAPSHOT-260605093044 Lib version: 1.14.0-SNAPSHOT-260605100014

View File

@@ -1782,44 +1782,47 @@ class CheckAppointmentCommissionRequest extends $pb.GeneratedMessage {
$2.AppointmentCommission ensureAppointmentCommission() => $_ensure(4); $2.AppointmentCommission ensureAppointmentCommission() => $_ensure(4);
} }
class PossibleExecutionFlow extends $pb.GeneratedMessage { class PossibleReference extends $pb.GeneratedMessage {
factory PossibleExecutionFlow({ factory PossibleReference({
$core.String? refID, $core.String? refID,
$3.DateTime? requestedDeliveryDateTime, $3.DateTime? requestedDeliveryDateTime,
$core.bool? isOrderID,
}) { }) {
final result = create(); final result = create();
if (refID != null) result.refID = refID; if (refID != null) result.refID = refID;
if (requestedDeliveryDateTime != null) result.requestedDeliveryDateTime = requestedDeliveryDateTime; if (requestedDeliveryDateTime != null) result.requestedDeliveryDateTime = requestedDeliveryDateTime;
if (isOrderID != null) result.isOrderID = isOrderID;
return result; return result;
} }
PossibleExecutionFlow._(); PossibleReference._();
factory PossibleExecutionFlow.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry); factory PossibleReference.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
factory PossibleExecutionFlow.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry); factory PossibleReference.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'PossibleExecutionFlow', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'PossibleReference', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOS(1, _omitFieldNames ? '' : 'RefID', protoName: 'RefID') ..aOS(1, _omitFieldNames ? '' : 'RefID', protoName: 'RefID')
..aOM<$3.DateTime>(2, _omitFieldNames ? '' : 'RequestedDeliveryDateTime', protoName: 'RequestedDeliveryDateTime', subBuilder: $3.DateTime.create) ..aOM<$3.DateTime>(2, _omitFieldNames ? '' : 'RequestedDeliveryDateTime', protoName: 'RequestedDeliveryDateTime', subBuilder: $3.DateTime.create)
..aOB(3, _omitFieldNames ? '' : 'IsOrderID', protoName: 'IsOrderID')
..hasRequiredFields = false ..hasRequiredFields = false
; ;
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
PossibleExecutionFlow clone() => PossibleExecutionFlow()..mergeFromMessage(this); PossibleReference clone() => PossibleReference()..mergeFromMessage(this);
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
PossibleExecutionFlow copyWith(void Function(PossibleExecutionFlow) updates) => super.copyWith((message) => updates(message as PossibleExecutionFlow)) as PossibleExecutionFlow; PossibleReference copyWith(void Function(PossibleReference) updates) => super.copyWith((message) => updates(message as PossibleReference)) as PossibleReference;
@$core.override @$core.override
$pb.BuilderInfo get info_ => _i; $pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline') @$core.pragma('dart2js:noInline')
static PossibleExecutionFlow create() => PossibleExecutionFlow._(); static PossibleReference create() => PossibleReference._();
@$core.override @$core.override
PossibleExecutionFlow createEmptyInstance() => create(); PossibleReference createEmptyInstance() => create();
static $pb.PbList<PossibleExecutionFlow> createRepeated() => $pb.PbList<PossibleExecutionFlow>(); static $pb.PbList<PossibleReference> createRepeated() => $pb.PbList<PossibleReference>();
@$core.pragma('dart2js:noInline') @$core.pragma('dart2js:noInline')
static PossibleExecutionFlow getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<PossibleExecutionFlow>(create); static PossibleReference getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<PossibleReference>(create);
static PossibleExecutionFlow? _defaultInstance; static PossibleReference? _defaultInstance;
@$pb.TagNumber(1) @$pb.TagNumber(1)
$core.String get refID => $_getSZ(0); $core.String get refID => $_getSZ(0);
@@ -1840,16 +1843,25 @@ class PossibleExecutionFlow extends $pb.GeneratedMessage {
void clearRequestedDeliveryDateTime() => $_clearField(2); void clearRequestedDeliveryDateTime() => $_clearField(2);
@$pb.TagNumber(2) @$pb.TagNumber(2)
$3.DateTime ensureRequestedDeliveryDateTime() => $_ensure(1); $3.DateTime ensureRequestedDeliveryDateTime() => $_ensure(1);
@$pb.TagNumber(3)
$core.bool get isOrderID => $_getBF(2);
@$pb.TagNumber(3)
set isOrderID($core.bool value) => $_setBool(2, value);
@$pb.TagNumber(3)
$core.bool hasIsOrderID() => $_has(2);
@$pb.TagNumber(3)
void clearIsOrderID() => $_clearField(3);
} }
class CheckAppointmentCommissionResponse extends $pb.GeneratedMessage { class CheckAppointmentCommissionResponse extends $pb.GeneratedMessage {
factory CheckAppointmentCommissionResponse({ factory CheckAppointmentCommissionResponse({
$3.ResponseHeader? header, $3.ResponseHeader? header,
$core.Iterable<PossibleExecutionFlow>? possibleExecutionFlows, $core.Iterable<PossibleReference>? possibleReferences,
}) { }) {
final result = create(); final result = create();
if (header != null) result.header = header; if (header != null) result.header = header;
if (possibleExecutionFlows != null) result.possibleExecutionFlows.addAll(possibleExecutionFlows); if (possibleReferences != null) result.possibleReferences.addAll(possibleReferences);
return result; return result;
} }
@@ -1860,7 +1872,7 @@ class CheckAppointmentCommissionResponse extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CheckAppointmentCommissionResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CheckAppointmentCommissionResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
..aOM<$3.ResponseHeader>(2, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.ResponseHeader.create) ..aOM<$3.ResponseHeader>(2, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.ResponseHeader.create)
..pc<PossibleExecutionFlow>(3, _omitFieldNames ? '' : 'PossibleExecutionFlows', $pb.PbFieldType.PM, protoName: 'PossibleExecutionFlows', subBuilder: PossibleExecutionFlow.create) ..pc<PossibleReference>(3, _omitFieldNames ? '' : 'PossibleReferences', $pb.PbFieldType.PM, protoName: 'PossibleReferences', subBuilder: PossibleReference.create)
..hasRequiredFields = false ..hasRequiredFields = false
; ;
@@ -1893,7 +1905,7 @@ class CheckAppointmentCommissionResponse extends $pb.GeneratedMessage {
$3.ResponseHeader ensureHeader() => $_ensure(0); $3.ResponseHeader ensureHeader() => $_ensure(0);
@$pb.TagNumber(3) @$pb.TagNumber(3)
$pb.PbList<PossibleExecutionFlow> get possibleExecutionFlows => $_getList(1); $pb.PbList<PossibleReference> get possibleReferences => $_getList(1);
} }
class StandAloneConf extends $pb.GeneratedMessage { class StandAloneConf extends $pb.GeneratedMessage {

View File

@@ -485,35 +485,36 @@ final $typed_data.Uint8List checkAppointmentCommissionRequestDescriptor = $conve
'lvbhgFIAEoCzIaLmFwaS5BcHBvaW50bWVudENvbW1pc3Npb25SFUFwcG9pbnRtZW50Q29tbWlz' 'lvbhgFIAEoCzIaLmFwaS5BcHBvaW50bWVudENvbW1pc3Npb25SFUFwcG9pbnRtZW50Q29tbWlz'
'c2lvbjogkkEdChvSAQZIZWFkZXLSAQ9BcHBvaW50bWVudFR5cGU='); 'c2lvbjogkkEdChvSAQZIZWFkZXLSAQ9BcHBvaW50bWVudFR5cGU=');
@$core.Deprecated('Use possibleExecutionFlowDescriptor instead') @$core.Deprecated('Use possibleReferenceDescriptor instead')
const PossibleExecutionFlow$json = { const PossibleReference$json = {
'1': 'PossibleExecutionFlow', '1': 'PossibleReference',
'2': [ '2': [
{'1': 'RefID', '3': 1, '4': 1, '5': 9, '10': 'RefID'}, {'1': 'RefID', '3': 1, '4': 1, '5': 9, '10': 'RefID'},
{'1': 'RequestedDeliveryDateTime', '3': 2, '4': 1, '5': 11, '6': '.api.DateTime', '10': 'RequestedDeliveryDateTime'}, {'1': 'RequestedDeliveryDateTime', '3': 2, '4': 1, '5': 11, '6': '.api.DateTime', '10': 'RequestedDeliveryDateTime'},
{'1': 'IsOrderID', '3': 3, '4': 1, '5': 8, '10': 'IsOrderID'},
], ],
}; };
/// Descriptor for `PossibleExecutionFlow`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `PossibleReference`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List possibleExecutionFlowDescriptor = $convert.base64Decode( final $typed_data.Uint8List possibleReferenceDescriptor = $convert.base64Decode(
'ChVQb3NzaWJsZUV4ZWN1dGlvbkZsb3cSFAoFUmVmSUQYASABKAlSBVJlZklEEksKGVJlcXVlc3' 'ChFQb3NzaWJsZVJlZmVyZW5jZRIUCgVSZWZJRBgBIAEoCVIFUmVmSUQSSwoZUmVxdWVzdGVkRG'
'RlZERlbGl2ZXJ5RGF0ZVRpbWUYAiABKAsyDS5hcGkuRGF0ZVRpbWVSGVJlcXVlc3RlZERlbGl2' 'VsaXZlcnlEYXRlVGltZRgCIAEoCzINLmFwaS5EYXRlVGltZVIZUmVxdWVzdGVkRGVsaXZlcnlE'
'ZXJ5RGF0ZVRpbWU='); 'YXRlVGltZRIcCglJc09yZGVySUQYAyABKAhSCUlzT3JkZXJJRA==');
@$core.Deprecated('Use checkAppointmentCommissionResponseDescriptor instead') @$core.Deprecated('Use checkAppointmentCommissionResponseDescriptor instead')
const CheckAppointmentCommissionResponse$json = { const CheckAppointmentCommissionResponse$json = {
'1': 'CheckAppointmentCommissionResponse', '1': 'CheckAppointmentCommissionResponse',
'2': [ '2': [
{'1': 'Header', '3': 2, '4': 1, '5': 11, '6': '.api.ResponseHeader', '10': 'Header'}, {'1': 'Header', '3': 2, '4': 1, '5': 11, '6': '.api.ResponseHeader', '10': 'Header'},
{'1': 'PossibleExecutionFlows', '3': 3, '4': 3, '5': 11, '6': '.api.PossibleExecutionFlow', '10': 'PossibleExecutionFlows'}, {'1': 'PossibleReferences', '3': 3, '4': 3, '5': 11, '6': '.api.PossibleReference', '10': 'PossibleReferences'},
], ],
}; };
/// Descriptor for `CheckAppointmentCommissionResponse`. Decode as a `google.protobuf.DescriptorProto`. /// Descriptor for `CheckAppointmentCommissionResponse`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List checkAppointmentCommissionResponseDescriptor = $convert.base64Decode( final $typed_data.Uint8List checkAppointmentCommissionResponseDescriptor = $convert.base64Decode(
'CiJDaGVja0FwcG9pbnRtZW50Q29tbWlzc2lvblJlc3BvbnNlEisKBkhlYWRlchgCIAEoCzITLm' 'CiJDaGVja0FwcG9pbnRtZW50Q29tbWlzc2lvblJlc3BvbnNlEisKBkhlYWRlchgCIAEoCzITLm'
'FwaS5SZXNwb25zZUhlYWRlclIGSGVhZGVyElIKFlBvc3NpYmxlRXhlY3V0aW9uRmxvd3MYAyAD' 'FwaS5SZXNwb25zZUhlYWRlclIGSGVhZGVyEkYKElBvc3NpYmxlUmVmZXJlbmNlcxgDIAMoCzIW'
'KAsyGi5hcGkuUG9zc2libGVFeGVjdXRpb25GbG93UhZQb3NzaWJsZUV4ZWN1dGlvbkZsb3dz'); 'LmFwaS5Qb3NzaWJsZVJlZmVyZW5jZVISUG9zc2libGVSZWZlcmVuY2Vz');
@$core.Deprecated('Use standAloneConfDescriptor instead') @$core.Deprecated('Use standAloneConfDescriptor instead')
const StandAloneConf$json = { const StandAloneConf$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-260605093044 version: 1.14.0-SNAPSHOT-260605100014
homepage: '' homepage: ''
publish_to: '' publish_to: ''
repository: '' repository: ''