You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
# CHANGELOG
|
||||
|
||||
Lib version: 1.13.0-SNAPSHOT-251217170909
|
||||
Lib version: 1.13.0-SNAPSHOT-251222085450
|
||||
|
||||
@@ -2320,6 +2320,270 @@ class AppointmentCarrierExpectedResponse extends $pb.GeneratedMessage {
|
||||
$2.EntityID ensureID() => $_ensure(1);
|
||||
}
|
||||
|
||||
/// Event Payload
|
||||
class AppointmentAllocationErrorPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentAllocationErrorPayload({
|
||||
$core.String? actorID,
|
||||
}) {
|
||||
final result = create();
|
||||
if (actorID != null) result.actorID = actorID;
|
||||
return result;
|
||||
}
|
||||
|
||||
AppointmentAllocationErrorPayload._();
|
||||
|
||||
factory AppointmentAllocationErrorPayload.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory AppointmentAllocationErrorPayload.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAllocationErrorPayload', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOS(1, _omitFieldNames ? '' : 'ActorID', protoName: 'ActorID')
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentAllocationErrorPayload clone() => AppointmentAllocationErrorPayload()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentAllocationErrorPayload copyWith(void Function(AppointmentAllocationErrorPayload) updates) => super.copyWith((message) => updates(message as AppointmentAllocationErrorPayload)) as AppointmentAllocationErrorPayload;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentAllocationErrorPayload create() => AppointmentAllocationErrorPayload._();
|
||||
@$core.override
|
||||
AppointmentAllocationErrorPayload createEmptyInstance() => create();
|
||||
static $pb.PbList<AppointmentAllocationErrorPayload> createRepeated() => $pb.PbList<AppointmentAllocationErrorPayload>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentAllocationErrorPayload getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentAllocationErrorPayload>(create);
|
||||
static AppointmentAllocationErrorPayload? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$core.String get actorID => $_getSZ(0);
|
||||
@$pb.TagNumber(1)
|
||||
set actorID($core.String value) => $_setString(0, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasActorID() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearActorID() => $_clearField(1);
|
||||
}
|
||||
|
||||
/// Event message
|
||||
class AppointmentAllocationErrorEvent extends $pb.GeneratedMessage {
|
||||
factory AppointmentAllocationErrorEvent({
|
||||
$2.EventHeader? header,
|
||||
$2.EntityID? iD,
|
||||
AppointmentAllocationErrorPayload? payload,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iD != null) result.iD = iD;
|
||||
if (payload != null) result.payload = payload;
|
||||
return result;
|
||||
}
|
||||
|
||||
AppointmentAllocationErrorEvent._();
|
||||
|
||||
factory AppointmentAllocationErrorEvent.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory AppointmentAllocationErrorEvent.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAllocationErrorEvent', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$2.EventHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.EventHeader.create)
|
||||
..aOM<$2.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $2.EntityID.create)
|
||||
..aOM<AppointmentAllocationErrorPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: AppointmentAllocationErrorPayload.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentAllocationErrorEvent clone() => AppointmentAllocationErrorEvent()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentAllocationErrorEvent copyWith(void Function(AppointmentAllocationErrorEvent) updates) => super.copyWith((message) => updates(message as AppointmentAllocationErrorEvent)) as AppointmentAllocationErrorEvent;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentAllocationErrorEvent create() => AppointmentAllocationErrorEvent._();
|
||||
@$core.override
|
||||
AppointmentAllocationErrorEvent createEmptyInstance() => create();
|
||||
static $pb.PbList<AppointmentAllocationErrorEvent> createRepeated() => $pb.PbList<AppointmentAllocationErrorEvent>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentAllocationErrorEvent getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentAllocationErrorEvent>(create);
|
||||
static AppointmentAllocationErrorEvent? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$2.EventHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($2.EventHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$2.EventHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$2.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($2.EntityID value) => $_setField(2, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$2.EntityID ensureID() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
AppointmentAllocationErrorPayload get payload => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set payload(AppointmentAllocationErrorPayload value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasPayload() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearPayload() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
AppointmentAllocationErrorPayload ensurePayload() => $_ensure(2);
|
||||
}
|
||||
|
||||
/// API Request
|
||||
class AppointmentAllocationErrorRequest extends $pb.GeneratedMessage {
|
||||
factory AppointmentAllocationErrorRequest({
|
||||
$2.RequestProjectHeader? header,
|
||||
$2.EntityID? iD,
|
||||
AppointmentAllocationErrorPayload? payload,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iD != null) result.iD = iD;
|
||||
if (payload != null) result.payload = payload;
|
||||
return result;
|
||||
}
|
||||
|
||||
AppointmentAllocationErrorRequest._();
|
||||
|
||||
factory AppointmentAllocationErrorRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory AppointmentAllocationErrorRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAllocationErrorRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$2.RequestProjectHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.RequestProjectHeader.create)
|
||||
..aOM<$2.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $2.EntityID.create)
|
||||
..aOM<AppointmentAllocationErrorPayload>(3, _omitFieldNames ? '' : 'Payload', protoName: 'Payload', subBuilder: AppointmentAllocationErrorPayload.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentAllocationErrorRequest clone() => AppointmentAllocationErrorRequest()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentAllocationErrorRequest copyWith(void Function(AppointmentAllocationErrorRequest) updates) => super.copyWith((message) => updates(message as AppointmentAllocationErrorRequest)) as AppointmentAllocationErrorRequest;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentAllocationErrorRequest create() => AppointmentAllocationErrorRequest._();
|
||||
@$core.override
|
||||
AppointmentAllocationErrorRequest createEmptyInstance() => create();
|
||||
static $pb.PbList<AppointmentAllocationErrorRequest> createRepeated() => $pb.PbList<AppointmentAllocationErrorRequest>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentAllocationErrorRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentAllocationErrorRequest>(create);
|
||||
static AppointmentAllocationErrorRequest? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$2.RequestProjectHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($2.RequestProjectHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$2.RequestProjectHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$2.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($2.EntityID value) => $_setField(2, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$2.EntityID ensureID() => $_ensure(1);
|
||||
|
||||
@$pb.TagNumber(3)
|
||||
AppointmentAllocationErrorPayload get payload => $_getN(2);
|
||||
@$pb.TagNumber(3)
|
||||
set payload(AppointmentAllocationErrorPayload value) => $_setField(3, value);
|
||||
@$pb.TagNumber(3)
|
||||
$core.bool hasPayload() => $_has(2);
|
||||
@$pb.TagNumber(3)
|
||||
void clearPayload() => $_clearField(3);
|
||||
@$pb.TagNumber(3)
|
||||
AppointmentAllocationErrorPayload ensurePayload() => $_ensure(2);
|
||||
}
|
||||
|
||||
/// API Response
|
||||
class AppointmentAllocationErrorResponse extends $pb.GeneratedMessage {
|
||||
factory AppointmentAllocationErrorResponse({
|
||||
$2.ResponseHeader? header,
|
||||
$2.EntityID? iD,
|
||||
}) {
|
||||
final result = create();
|
||||
if (header != null) result.header = header;
|
||||
if (iD != null) result.iD = iD;
|
||||
return result;
|
||||
}
|
||||
|
||||
AppointmentAllocationErrorResponse._();
|
||||
|
||||
factory AppointmentAllocationErrorResponse.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
||||
factory AppointmentAllocationErrorResponse.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
||||
|
||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'AppointmentAllocationErrorResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
||||
..aOM<$2.ResponseHeader>(1, _omitFieldNames ? '' : 'Header', protoName: 'Header', subBuilder: $2.ResponseHeader.create)
|
||||
..aOM<$2.EntityID>(2, _omitFieldNames ? '' : 'ID', protoName: 'ID', subBuilder: $2.EntityID.create)
|
||||
..hasRequiredFields = false
|
||||
;
|
||||
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentAllocationErrorResponse clone() => AppointmentAllocationErrorResponse()..mergeFromMessage(this);
|
||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
||||
AppointmentAllocationErrorResponse copyWith(void Function(AppointmentAllocationErrorResponse) updates) => super.copyWith((message) => updates(message as AppointmentAllocationErrorResponse)) as AppointmentAllocationErrorResponse;
|
||||
|
||||
@$core.override
|
||||
$pb.BuilderInfo get info_ => _i;
|
||||
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentAllocationErrorResponse create() => AppointmentAllocationErrorResponse._();
|
||||
@$core.override
|
||||
AppointmentAllocationErrorResponse createEmptyInstance() => create();
|
||||
static $pb.PbList<AppointmentAllocationErrorResponse> createRepeated() => $pb.PbList<AppointmentAllocationErrorResponse>();
|
||||
@$core.pragma('dart2js:noInline')
|
||||
static AppointmentAllocationErrorResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<AppointmentAllocationErrorResponse>(create);
|
||||
static AppointmentAllocationErrorResponse? _defaultInstance;
|
||||
|
||||
@$pb.TagNumber(1)
|
||||
$2.ResponseHeader get header => $_getN(0);
|
||||
@$pb.TagNumber(1)
|
||||
set header($2.ResponseHeader value) => $_setField(1, value);
|
||||
@$pb.TagNumber(1)
|
||||
$core.bool hasHeader() => $_has(0);
|
||||
@$pb.TagNumber(1)
|
||||
void clearHeader() => $_clearField(1);
|
||||
@$pb.TagNumber(1)
|
||||
$2.ResponseHeader ensureHeader() => $_ensure(0);
|
||||
|
||||
@$pb.TagNumber(2)
|
||||
$2.EntityID get iD => $_getN(1);
|
||||
@$pb.TagNumber(2)
|
||||
set iD($2.EntityID value) => $_setField(2, value);
|
||||
@$pb.TagNumber(2)
|
||||
$core.bool hasID() => $_has(1);
|
||||
@$pb.TagNumber(2)
|
||||
void clearID() => $_clearField(2);
|
||||
@$pb.TagNumber(2)
|
||||
$2.EntityID ensureID() => $_ensure(1);
|
||||
}
|
||||
|
||||
/// Event Payload
|
||||
class AppointmentCarrierArrivedPayload extends $pb.GeneratedMessage {
|
||||
factory AppointmentCarrierArrivedPayload({
|
||||
|
||||
@@ -58,6 +58,10 @@ class AppointmentInputAPIClient extends $grpc.Client {
|
||||
return $createUnaryCall(_$carrierExpected, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.AppointmentAllocationErrorResponse> allocationError($0.AppointmentAllocationErrorRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$allocationError, request, options: options);
|
||||
}
|
||||
|
||||
$grpc.ResponseFuture<$0.AppointmentCarrierArrivedResponse> carrierArrived($0.AppointmentCarrierArrivedRequest request, {$grpc.CallOptions? options,}) {
|
||||
return $createUnaryCall(_$carrierArrived, request, options: options);
|
||||
}
|
||||
@@ -136,6 +140,10 @@ class AppointmentInputAPIClient extends $grpc.Client {
|
||||
'/api.AppointmentInputAPI/CarrierExpected',
|
||||
($0.AppointmentCarrierExpectedRequest value) => value.writeToBuffer(),
|
||||
$0.AppointmentCarrierExpectedResponse.fromBuffer);
|
||||
static final _$allocationError = $grpc.ClientMethod<$0.AppointmentAllocationErrorRequest, $0.AppointmentAllocationErrorResponse>(
|
||||
'/api.AppointmentInputAPI/AllocationError',
|
||||
($0.AppointmentAllocationErrorRequest value) => value.writeToBuffer(),
|
||||
$0.AppointmentAllocationErrorResponse.fromBuffer);
|
||||
static final _$carrierArrived = $grpc.ClientMethod<$0.AppointmentCarrierArrivedRequest, $0.AppointmentCarrierArrivedResponse>(
|
||||
'/api.AppointmentInputAPI/CarrierArrived',
|
||||
($0.AppointmentCarrierArrivedRequest value) => value.writeToBuffer(),
|
||||
@@ -237,6 +245,13 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.AppointmentCarrierExpectedRequest.fromBuffer(value),
|
||||
($0.AppointmentCarrierExpectedResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.AppointmentAllocationErrorRequest, $0.AppointmentAllocationErrorResponse>(
|
||||
'AllocationError',
|
||||
allocationError_Pre,
|
||||
false,
|
||||
false,
|
||||
($core.List<$core.int> value) => $0.AppointmentAllocationErrorRequest.fromBuffer(value),
|
||||
($0.AppointmentAllocationErrorResponse value) => value.writeToBuffer()));
|
||||
$addMethod($grpc.ServiceMethod<$0.AppointmentCarrierArrivedRequest, $0.AppointmentCarrierArrivedResponse>(
|
||||
'CarrierArrived',
|
||||
carrierArrived_Pre,
|
||||
@@ -366,6 +381,12 @@ abstract class AppointmentInputAPIServiceBase extends $grpc.Service {
|
||||
|
||||
$async.Future<$0.AppointmentCarrierExpectedResponse> carrierExpected($grpc.ServiceCall call, $0.AppointmentCarrierExpectedRequest request);
|
||||
|
||||
$async.Future<$0.AppointmentAllocationErrorResponse> allocationError_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentAllocationErrorRequest> $request) async {
|
||||
return allocationError($call, await $request);
|
||||
}
|
||||
|
||||
$async.Future<$0.AppointmentAllocationErrorResponse> allocationError($grpc.ServiceCall call, $0.AppointmentAllocationErrorRequest request);
|
||||
|
||||
$async.Future<$0.AppointmentCarrierArrivedResponse> carrierArrived_Pre($grpc.ServiceCall $call, $async.Future<$0.AppointmentCarrierArrivedRequest> $request) async {
|
||||
return carrierArrived($call, await $request);
|
||||
}
|
||||
|
||||
@@ -611,6 +611,75 @@ final $typed_data.Uint8List appointmentCarrierExpectedResponseDescriptor = $conv
|
||||
'FwaS5SZXNwb25zZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJ'
|
||||
'RDoforsYCFJlc3BvbnNlursYD0NhcnJpZXJFeHBlY3RlZA==');
|
||||
|
||||
@$core.Deprecated('Use appointmentAllocationErrorPayloadDescriptor instead')
|
||||
const AppointmentAllocationErrorPayload$json = {
|
||||
'1': 'AppointmentAllocationErrorPayload',
|
||||
'2': [
|
||||
{'1': 'ActorID', '3': 1, '4': 1, '5': 9, '10': 'ActorID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `AppointmentAllocationErrorPayload`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List appointmentAllocationErrorPayloadDescriptor = $convert.base64Decode(
|
||||
'CiFBcHBvaW50bWVudEFsbG9jYXRpb25FcnJvclBheWxvYWQSGAoHQWN0b3JJRBgBIAEoCVIHQW'
|
||||
'N0b3JJRDo0kkERCg8yDUV2ZW50IFBheWxvYWSiuxgFRXZlbnSouxgBursYD0FsbG9jYXRpb25F'
|
||||
'cnJvcg==');
|
||||
|
||||
@$core.Deprecated('Use appointmentAllocationErrorEventDescriptor instead')
|
||||
const AppointmentAllocationErrorEvent$json = {
|
||||
'1': 'AppointmentAllocationErrorEvent',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.EventHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
|
||||
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentAllocationErrorPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `AppointmentAllocationErrorEvent`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List appointmentAllocationErrorEventDescriptor = $convert.base64Decode(
|
||||
'Ch9BcHBvaW50bWVudEFsbG9jYXRpb25FcnJvckV2ZW50EjIKBkhlYWRlchgBIAEoCzIQLmFwaS'
|
||||
'5FdmVudEhlYWRlckII+kIFigECEAFSBkhlYWRlchInCgJJRBgCIAEoCzINLmFwaS5FbnRpdHlJ'
|
||||
'REII+kIFigECEAFSAklEEkoKB1BheWxvYWQYAyABKAsyJi5hcGkuQXBwb2ludG1lbnRBbGxvY2'
|
||||
'F0aW9uRXJyb3JQYXlsb2FkQgj6QgWKAQIQAVIHUGF5bG9hZDo5kkEaChjSAQZIZWFkZXLSAQJJ'
|
||||
'RNIBB1BheWxvYWSiuxgFRXZlbnS6uxgPQWxsb2NhdGlvbkVycm9y');
|
||||
|
||||
@$core.Deprecated('Use appointmentAllocationErrorRequestDescriptor instead')
|
||||
const AppointmentAllocationErrorRequest$json = {
|
||||
'1': 'AppointmentAllocationErrorRequest',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.RequestProjectHeader', '8': {}, '10': 'Header'},
|
||||
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '8': {}, '10': 'ID'},
|
||||
{'1': 'Payload', '3': 3, '4': 1, '5': 11, '6': '.api.AppointmentAllocationErrorPayload', '8': {}, '10': 'Payload'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `AppointmentAllocationErrorRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List appointmentAllocationErrorRequestDescriptor = $convert.base64Decode(
|
||||
'CiFBcHBvaW50bWVudEFsbG9jYXRpb25FcnJvclJlcXVlc3QSOwoGSGVhZGVyGAEgASgLMhkuYX'
|
||||
'BpLlJlcXVlc3RQcm9qZWN0SGVhZGVyQgj6QgWKAQIQAVIGSGVhZGVyEicKAklEGAIgASgLMg0u'
|
||||
'YXBpLkVudGl0eUlEQgj6QgWKAQIQAVICSUQSSgoHUGF5bG9hZBgDIAEoCzImLmFwaS5BcHBvaW'
|
||||
'50bWVudEFsbG9jYXRpb25FcnJvclBheWxvYWRCCPpCBYoBAhABUgdQYXlsb2FkOjuSQRoKGNIB'
|
||||
'BkhlYWRlctIBAklE0gEHUGF5bG9hZKK7GAdSZXF1ZXN0ursYD0FsbG9jYXRpb25FcnJvcg==');
|
||||
|
||||
@$core.Deprecated('Use appointmentAllocationErrorResponseDescriptor instead')
|
||||
const AppointmentAllocationErrorResponse$json = {
|
||||
'1': 'AppointmentAllocationErrorResponse',
|
||||
'2': [
|
||||
{'1': 'Header', '3': 1, '4': 1, '5': 11, '6': '.api.ResponseHeader', '10': 'Header'},
|
||||
{'1': 'ID', '3': 2, '4': 1, '5': 11, '6': '.api.EntityID', '10': 'ID'},
|
||||
],
|
||||
'7': {},
|
||||
};
|
||||
|
||||
/// Descriptor for `AppointmentAllocationErrorResponse`. Decode as a `google.protobuf.DescriptorProto`.
|
||||
final $typed_data.Uint8List appointmentAllocationErrorResponseDescriptor = $convert.base64Decode(
|
||||
'CiJBcHBvaW50bWVudEFsbG9jYXRpb25FcnJvclJlc3BvbnNlEisKBkhlYWRlchgBIAEoCzITLm'
|
||||
'FwaS5SZXNwb25zZUhlYWRlclIGSGVhZGVyEh0KAklEGAIgASgLMg0uYXBpLkVudGl0eUlEUgJJ'
|
||||
'RDoforsYCFJlc3BvbnNlursYD0FsbG9jYXRpb25FcnJvcg==');
|
||||
|
||||
@$core.Deprecated('Use appointmentCarrierArrivedPayloadDescriptor instead')
|
||||
const AppointmentCarrierArrivedPayload$json = {
|
||||
'1': 'AppointmentCarrierArrivedPayload',
|
||||
|
||||
@@ -50,6 +50,7 @@ class NotifTypeEnum extends $pb.ProtobufEnum {
|
||||
class AppointmentStatusCode extends $pb.ProtobufEnum {
|
||||
static const AppointmentStatusCode APPOINTMENT_0000_STATUS_UNKNOWN = AppointmentStatusCode._(0, _omitEnumNames ? '' : 'APPOINTMENT_0000_STATUS_UNKNOWN');
|
||||
static const AppointmentStatusCode APPOINTMENT_0100_CREATED = AppointmentStatusCode._(100, _omitEnumNames ? '' : 'APPOINTMENT_0100_CREATED');
|
||||
static const AppointmentStatusCode APPOINTMENT_0150_ALLOCATION_ERROR = AppointmentStatusCode._(104, _omitEnumNames ? '' : 'APPOINTMENT_0150_ALLOCATION_ERROR');
|
||||
/// APPOINTMENT_0200_CARRIER_VALIDATION = 200;
|
||||
static const AppointmentStatusCode APPOINTMENT_0300_CARRIER_EXPECTED = AppointmentStatusCode._(300, _omitEnumNames ? '' : 'APPOINTMENT_0300_CARRIER_EXPECTED');
|
||||
static const AppointmentStatusCode APPOINTMENT_0400_CARRIER_ARRIVED = AppointmentStatusCode._(400, _omitEnumNames ? '' : 'APPOINTMENT_0400_CARRIER_ARRIVED');
|
||||
@@ -65,6 +66,7 @@ class AppointmentStatusCode extends $pb.ProtobufEnum {
|
||||
static const $core.List<AppointmentStatusCode> values = <AppointmentStatusCode> [
|
||||
APPOINTMENT_0000_STATUS_UNKNOWN,
|
||||
APPOINTMENT_0100_CREATED,
|
||||
APPOINTMENT_0150_ALLOCATION_ERROR,
|
||||
APPOINTMENT_0300_CARRIER_EXPECTED,
|
||||
APPOINTMENT_0400_CARRIER_ARRIVED,
|
||||
APPOINTMENT_0600_UNLOADING,
|
||||
|
||||
@@ -46,6 +46,7 @@ const AppointmentStatusCode$json = {
|
||||
'2': [
|
||||
{'1': 'APPOINTMENT_0000_STATUS_UNKNOWN', '2': 0},
|
||||
{'1': 'APPOINTMENT_0100_CREATED', '2': 100},
|
||||
{'1': 'APPOINTMENT_0150_ALLOCATION_ERROR', '2': 104},
|
||||
{'1': 'APPOINTMENT_0300_CARRIER_EXPECTED', '2': 300},
|
||||
{'1': 'APPOINTMENT_0400_CARRIER_ARRIVED', '2': 400},
|
||||
{'1': 'APPOINTMENT_0600_UNLOADING', '2': 600},
|
||||
@@ -61,13 +62,13 @@ const AppointmentStatusCode$json = {
|
||||
/// Descriptor for `AppointmentStatusCode`. Decode as a `google.protobuf.EnumDescriptorProto`.
|
||||
final $typed_data.Uint8List appointmentStatusCodeDescriptor = $convert.base64Decode(
|
||||
'ChVBcHBvaW50bWVudFN0YXR1c0NvZGUSIwofQVBQT0lOVE1FTlRfMDAwMF9TVEFUVVNfVU5LTk'
|
||||
'9XThAAEhwKGEFQUE9JTlRNRU5UXzAxMDBfQ1JFQVRFRBBkEiYKIUFQUE9JTlRNRU5UXzAzMDBf'
|
||||
'Q0FSUklFUl9FWFBFQ1RFRBCsAhIlCiBBUFBPSU5UTUVOVF8wNDAwX0NBUlJJRVJfQVJSSVZFRB'
|
||||
'CQAxIfChpBUFBPSU5UTUVOVF8wNjAwX1VOTE9BRElORxDYBBIeChlBUFBPSU5UTUVOVF8wNzAw'
|
||||
'X1VOTE9BREVEELwFEh0KGEFQUE9JTlRNRU5UXzA4MDBfTE9BRElORxCgBhIcChdBUFBPSU5UTU'
|
||||
'VOVF8wOTAwX0xPQURFRBCEBxImCiFBUFBPSU5UTUVOVF8xMDAwX0NBUlJJRVJfREVQQVJURUQQ'
|
||||
'6AcSHgoZQVBQT0lOVE1FTlRfMTEwMF9DQU5DRUxFRBDMCBIdChhBUFBPSU5UTUVOVF85NTAwX0'
|
||||
'FOT01BTFkQnEo=');
|
||||
'9XThAAEhwKGEFQUE9JTlRNRU5UXzAxMDBfQ1JFQVRFRBBkEiUKIUFQUE9JTlRNRU5UXzAxNTBf'
|
||||
'QUxMT0NBVElPTl9FUlJPUhBoEiYKIUFQUE9JTlRNRU5UXzAzMDBfQ0FSUklFUl9FWFBFQ1RFRB'
|
||||
'CsAhIlCiBBUFBPSU5UTUVOVF8wNDAwX0NBUlJJRVJfQVJSSVZFRBCQAxIfChpBUFBPSU5UTUVO'
|
||||
'VF8wNjAwX1VOTE9BRElORxDYBBIeChlBUFBPSU5UTUVOVF8wNzAwX1VOTE9BREVEELwFEh0KGE'
|
||||
'FQUE9JTlRNRU5UXzA4MDBfTE9BRElORxCgBhIcChdBUFBPSU5UTUVOVF8wOTAwX0xPQURFRBCE'
|
||||
'BxImCiFBUFBPSU5UTUVOVF8xMDAwX0NBUlJJRVJfREVQQVJURUQQ6AcSHgoZQVBQT0lOVE1FTl'
|
||||
'RfMTEwMF9DQU5DRUxFRBDMCBIdChhBUFBPSU5UTUVOVF85NTAwX0FOT01BTFkQnEo=');
|
||||
|
||||
@$core.Deprecated('Use claimStatusDefDescriptor instead')
|
||||
const ClaimStatusDef$json = {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
name: dart_core_sdk
|
||||
description: dart libs from core model proto files
|
||||
version: 1.13.0-SNAPSHOT-251217170909
|
||||
version: 1.13.0-SNAPSHOT-251222085450
|
||||
homepage: ''
|
||||
publish_to: ''
|
||||
repository: ''
|
||||
|
||||
Reference in New Issue
Block a user