From f979df5f4673b22ef694fa7bb90ba34f1f8567f3 Mon Sep 17 00:00:00 2001 From: ci core model Date: Fri, 5 Jun 2026 10:00:41 +0000 Subject: [PATCH] Latest generation --- CHANGELOG.md | 2 +- lib/site.pb.dart | 46 ++++++++++++++++++++++++++++---------------- lib/site.pbjson.dart | 23 +++++++++++----------- pubspec.yaml | 2 +- 4 files changed, 43 insertions(+), 30 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a198f7f1..76492b1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ # CHANGELOG -Lib version: 1.14.0-SNAPSHOT-260605093044 +Lib version: 1.14.0-SNAPSHOT-260605100014 diff --git a/lib/site.pb.dart b/lib/site.pb.dart index 13ddb09b..d9c91a9d 100644 --- a/lib/site.pb.dart +++ b/lib/site.pb.dart @@ -1782,44 +1782,47 @@ class CheckAppointmentCommissionRequest extends $pb.GeneratedMessage { $2.AppointmentCommission ensureAppointmentCommission() => $_ensure(4); } -class PossibleExecutionFlow extends $pb.GeneratedMessage { - factory PossibleExecutionFlow({ +class PossibleReference extends $pb.GeneratedMessage { + factory PossibleReference({ $core.String? refID, $3.DateTime? requestedDeliveryDateTime, + $core.bool? isOrderID, }) { final result = create(); if (refID != null) result.refID = refID; if (requestedDeliveryDateTime != null) result.requestedDeliveryDateTime = requestedDeliveryDateTime; + if (isOrderID != null) result.isOrderID = isOrderID; return result; } - PossibleExecutionFlow._(); + PossibleReference._(); - factory PossibleExecutionFlow.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.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, 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') ..aOM<$3.DateTime>(2, _omitFieldNames ? '' : 'RequestedDeliveryDateTime', protoName: 'RequestedDeliveryDateTime', subBuilder: $3.DateTime.create) + ..aOB(3, _omitFieldNames ? '' : 'IsOrderID', protoName: 'IsOrderID') ..hasRequiredFields = false ; @$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.') - 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 $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') - static PossibleExecutionFlow create() => PossibleExecutionFlow._(); + static PossibleReference create() => PossibleReference._(); @$core.override - PossibleExecutionFlow createEmptyInstance() => create(); - static $pb.PbList createRepeated() => $pb.PbList(); + PossibleReference createEmptyInstance() => create(); + static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') - static PossibleExecutionFlow getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); - static PossibleExecutionFlow? _defaultInstance; + static PossibleReference getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); + static PossibleReference? _defaultInstance; @$pb.TagNumber(1) $core.String get refID => $_getSZ(0); @@ -1840,16 +1843,25 @@ class PossibleExecutionFlow extends $pb.GeneratedMessage { void clearRequestedDeliveryDateTime() => $_clearField(2); @$pb.TagNumber(2) $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 { factory CheckAppointmentCommissionResponse({ $3.ResponseHeader? header, - $core.Iterable? possibleExecutionFlows, + $core.Iterable? possibleReferences, }) { final result = create(); if (header != null) result.header = header; - if (possibleExecutionFlows != null) result.possibleExecutionFlows.addAll(possibleExecutionFlows); + if (possibleReferences != null) result.possibleReferences.addAll(possibleReferences); 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) ..aOM<$3.ResponseHeader>(2, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $3.ResponseHeader.create) - ..pc(3, _omitFieldNames ? '' : 'PossibleExecutionFlows', $pb.PbFieldType.PM, protoName: 'PossibleExecutionFlows', subBuilder: PossibleExecutionFlow.create) + ..pc(3, _omitFieldNames ? '' : 'PossibleReferences', $pb.PbFieldType.PM, protoName: 'PossibleReferences', subBuilder: PossibleReference.create) ..hasRequiredFields = false ; @@ -1893,7 +1905,7 @@ class CheckAppointmentCommissionResponse extends $pb.GeneratedMessage { $3.ResponseHeader ensureHeader() => $_ensure(0); @$pb.TagNumber(3) - $pb.PbList get possibleExecutionFlows => $_getList(1); + $pb.PbList get possibleReferences => $_getList(1); } class StandAloneConf extends $pb.GeneratedMessage { diff --git a/lib/site.pbjson.dart b/lib/site.pbjson.dart index b9a55505..52a39ff6 100644 --- a/lib/site.pbjson.dart +++ b/lib/site.pbjson.dart @@ -485,35 +485,36 @@ final $typed_data.Uint8List checkAppointmentCommissionRequestDescriptor = $conve 'lvbhgFIAEoCzIaLmFwaS5BcHBvaW50bWVudENvbW1pc3Npb25SFUFwcG9pbnRtZW50Q29tbWlz' 'c2lvbjogkkEdChvSAQZIZWFkZXLSAQ9BcHBvaW50bWVudFR5cGU='); -@$core.Deprecated('Use possibleExecutionFlowDescriptor instead') -const PossibleExecutionFlow$json = { - '1': 'PossibleExecutionFlow', +@$core.Deprecated('Use possibleReferenceDescriptor instead') +const PossibleReference$json = { + '1': 'PossibleReference', '2': [ {'1': 'RefID', '3': 1, '4': 1, '5': 9, '10': 'RefID'}, {'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`. -final $typed_data.Uint8List possibleExecutionFlowDescriptor = $convert.base64Decode( - 'ChVQb3NzaWJsZUV4ZWN1dGlvbkZsb3cSFAoFUmVmSUQYASABKAlSBVJlZklEEksKGVJlcXVlc3' - 'RlZERlbGl2ZXJ5RGF0ZVRpbWUYAiABKAsyDS5hcGkuRGF0ZVRpbWVSGVJlcXVlc3RlZERlbGl2' - 'ZXJ5RGF0ZVRpbWU='); +/// Descriptor for `PossibleReference`. Decode as a `google.protobuf.DescriptorProto`. +final $typed_data.Uint8List possibleReferenceDescriptor = $convert.base64Decode( + 'ChFQb3NzaWJsZVJlZmVyZW5jZRIUCgVSZWZJRBgBIAEoCVIFUmVmSUQSSwoZUmVxdWVzdGVkRG' + 'VsaXZlcnlEYXRlVGltZRgCIAEoCzINLmFwaS5EYXRlVGltZVIZUmVxdWVzdGVkRGVsaXZlcnlE' + 'YXRlVGltZRIcCglJc09yZGVySUQYAyABKAhSCUlzT3JkZXJJRA=='); @$core.Deprecated('Use checkAppointmentCommissionResponseDescriptor instead') const CheckAppointmentCommissionResponse$json = { '1': 'CheckAppointmentCommissionResponse', '2': [ {'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`. final $typed_data.Uint8List checkAppointmentCommissionResponseDescriptor = $convert.base64Decode( 'CiJDaGVja0FwcG9pbnRtZW50Q29tbWlzc2lvblJlc3BvbnNlEisKBkhlYWRlchgCIAEoCzITLm' - 'FwaS5SZXNwb25zZUhlYWRlclIGSGVhZGVyElIKFlBvc3NpYmxlRXhlY3V0aW9uRmxvd3MYAyAD' - 'KAsyGi5hcGkuUG9zc2libGVFeGVjdXRpb25GbG93UhZQb3NzaWJsZUV4ZWN1dGlvbkZsb3dz'); + 'FwaS5SZXNwb25zZUhlYWRlclIGSGVhZGVyEkYKElBvc3NpYmxlUmVmZXJlbmNlcxgDIAMoCzIW' + 'LmFwaS5Qb3NzaWJsZVJlZmVyZW5jZVISUG9zc2libGVSZWZlcmVuY2Vz'); @$core.Deprecated('Use standAloneConfDescriptor instead') const StandAloneConf$json = { diff --git a/pubspec.yaml b/pubspec.yaml index aa675039..fb698df4 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: dart_core_sdk description: dart libs from core model proto files -version: 1.14.0-SNAPSHOT-260605093044 +version: 1.14.0-SNAPSHOT-260605100014 homepage: '' publish_to: '' repository: ''