You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
# CHANGELOG
|
||||
|
||||
Lib version: 1.14.0-SNAPSHOT-260605093044
|
||||
Lib version: 1.14.0-SNAPSHOT-260605100014
|
||||
|
||||
@@ -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<PossibleExecutionFlow> createRepeated() => $pb.PbList<PossibleExecutionFlow>();
|
||||
PossibleReference createEmptyInstance() => create();
|
||||
static $pb.PbList<PossibleReference> createRepeated() => $pb.PbList<PossibleReference>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static PossibleExecutionFlow getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<PossibleExecutionFlow>(create);
|
||||
static PossibleExecutionFlow? _defaultInstance;
|
||||
static PossibleReference getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<PossibleReference>(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<PossibleExecutionFlow>? possibleExecutionFlows,
|
||||
$core.Iterable<PossibleReference>? 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<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
|
||||
;
|
||||
|
||||
@@ -1893,7 +1905,7 @@ class CheckAppointmentCommissionResponse extends $pb.GeneratedMessage {
|
||||
$3.ResponseHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
$pb.PbList<PossibleExecutionFlow> get possibleExecutionFlows => $_getList(1);
|
||||
$pb.PbList<PossibleReference> get possibleReferences => $_getList(1);
|
||||
}
|
||||
|
||||
class StandAloneConf extends $pb.GeneratedMessage {
|
||||
|
||||
@@ -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 = {
|
||||
|
||||
@@ -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: ''
|
||||
|
||||
Reference in New Issue
Block a user